diff options
author | Chocobozzz <me@florianbigard.com> | 2021-02-01 09:24:14 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-02-01 11:23:11 +0100 |
commit | 33c7131be5883d1b25c49adbcf5750b63905a368 (patch) | |
tree | 5e5a3ed4158734b3e6f25a7eb7f20f4dc93ed6c3 /server/tests/external-plugins | |
parent | e01146559acd32e009ad7d399a4af151fa0d4c52 (diff) | |
download | PeerTube-33c7131be5883d1b25c49adbcf5750b63905a368.tar.gz PeerTube-33c7131be5883d1b25c49adbcf5750b63905a368.tar.zst PeerTube-33c7131be5883d1b25c49adbcf5750b63905a368.zip |
Check banned status for external auths
Diffstat (limited to 'server/tests/external-plugins')
-rw-r--r-- | server/tests/external-plugins/auth-ldap.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/server/tests/external-plugins/auth-ldap.ts b/server/tests/external-plugins/auth-ldap.ts index 4ce8e82cb..e4eae7e8c 100644 --- a/server/tests/external-plugins/auth-ldap.ts +++ b/server/tests/external-plugins/auth-ldap.ts | |||
@@ -4,9 +4,11 @@ import 'mocha' | |||
4 | import { expect } from 'chai' | 4 | import { expect } from 'chai' |
5 | import { User } from '@shared/models/users/user.model' | 5 | import { User } from '@shared/models/users/user.model' |
6 | import { | 6 | import { |
7 | blockUser, | ||
7 | getMyUserInformation, | 8 | getMyUserInformation, |
8 | installPlugin, | 9 | installPlugin, |
9 | setAccessTokensToServers, | 10 | setAccessTokensToServers, |
11 | unblockUser, | ||
10 | uninstallPlugin, | 12 | uninstallPlugin, |
11 | updatePluginSettings, | 13 | updatePluginSettings, |
12 | uploadVideo, | 14 | uploadVideo, |
@@ -17,6 +19,7 @@ import { cleanupTests, flushAndRunServer, ServerInfo } from '../../../shared/ext | |||
17 | describe('Official plugin auth-ldap', function () { | 19 | describe('Official plugin auth-ldap', function () { |
18 | let server: ServerInfo | 20 | let server: ServerInfo |
19 | let accessToken: string | 21 | let accessToken: string |
22 | let userId: number | ||
20 | 23 | ||
21 | before(async function () { | 24 | before(async function () { |
22 | this.timeout(30000) | 25 | this.timeout(30000) |
@@ -90,12 +93,26 @@ describe('Official plugin auth-ldap', function () { | |||
90 | 93 | ||
91 | expect(body.username).to.equal('fry') | 94 | expect(body.username).to.equal('fry') |
92 | expect(body.email).to.equal('fry@planetexpress.com') | 95 | expect(body.email).to.equal('fry@planetexpress.com') |
96 | |||
97 | userId = body.id | ||
93 | }) | 98 | }) |
94 | 99 | ||
95 | it('Should upload a video', async function () { | 100 | it('Should upload a video', async function () { |
96 | await uploadVideo(server.url, accessToken, { name: 'my super video' }) | 101 | await uploadVideo(server.url, accessToken, { name: 'my super video' }) |
97 | }) | 102 | }) |
98 | 103 | ||
104 | it('Should not be able to login if the user is banned', async function () { | ||
105 | await blockUser(server.url, userId, server.accessToken) | ||
106 | |||
107 | await userLogin(server, { username: 'fry@planetexpress.com', password: 'fry' }, 400) | ||
108 | }) | ||
109 | |||
110 | it('Should be able to login if the user is unbanned', async function () { | ||
111 | await unblockUser(server.url, userId, server.accessToken) | ||
112 | |||
113 | await userLogin(server, { username: 'fry@planetexpress.com', password: 'fry' }) | ||
114 | }) | ||
115 | |||
99 | it('Should not login if the plugin is uninstalled', async function () { | 116 | it('Should not login if the plugin is uninstalled', async function () { |
100 | await uninstallPlugin({ url: server.url, accessToken: server.accessToken, npmName: 'peertube-plugin-auth-ldap' }) | 117 | await uninstallPlugin({ url: server.url, accessToken: server.accessToken, npmName: 'peertube-plugin-auth-ldap' }) |
101 | 118 | ||