diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-20 13:53:51 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-20 13:53:51 +0200 |
commit | 745437e3ab402d5b8f85de6e9c09c3b6092e5904 (patch) | |
tree | f93e8cc7bdffe19b6c19251512b2fd31bfe4f41d /server/tests/plugins/external-auth.ts | |
parent | 148ab2f0f043a4c7cc28f9497cb6ae3819e8b838 (diff) | |
parent | f33dc6ab2db1c733f09dcb039b8bf46c69854753 (diff) | |
download | PeerTube-745437e3ab402d5b8f85de6e9c09c3b6092e5904.tar.gz PeerTube-745437e3ab402d5b8f85de6e9c09c3b6092e5904.tar.zst PeerTube-745437e3ab402d5b8f85de6e9c09c3b6092e5904.zip |
Merge branch 'release/2.2.0' into develop
Diffstat (limited to 'server/tests/plugins/external-auth.ts')
-rw-r--r-- | server/tests/plugins/external-auth.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server/tests/plugins/external-auth.ts b/server/tests/plugins/external-auth.ts index a85672782..57361be05 100644 --- a/server/tests/plugins/external-auth.ts +++ b/server/tests/plugins/external-auth.ts | |||
@@ -255,6 +255,16 @@ describe('Test external auth plugins', function () { | |||
255 | expect(body.role).to.equal(UserRole.USER) | 255 | expect(body.role).to.equal(UserRole.USER) |
256 | }) | 256 | }) |
257 | 257 | ||
258 | it('Should not update an external auth email', async function () { | ||
259 | await updateMyUser({ | ||
260 | url: server.url, | ||
261 | accessToken: cyanAccessToken, | ||
262 | email: 'toto@example.com', | ||
263 | currentPassword: 'toto', | ||
264 | statusCodeExpected: 400 | ||
265 | }) | ||
266 | }) | ||
267 | |||
258 | it('Should reject token of Kefka by the plugin hook', async function () { | 268 | it('Should reject token of Kefka by the plugin hook', async function () { |
259 | this.timeout(10000) | 269 | this.timeout(10000) |
260 | 270 | ||