mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
Add plugin ldap tests
This commit is contained in:
parent
2db9c70f67
commit
829b794a85
4 changed files with 134 additions and 1 deletions
100
server/tests/external-plugins/auth-ldap.ts
Normal file
100
server/tests/external-plugins/auth-ldap.ts
Normal file
|
@ -0,0 +1,100 @@
|
|||
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
||||
|
||||
import 'mocha'
|
||||
import { getMyUserInformation, installPlugin, setAccessTokensToServers, updatePluginSettings, userLogin, uploadVideo, uninstallPlugin } from '../../../shared/extra-utils'
|
||||
import { cleanupTests, flushAndRunServer, ServerInfo } from '../../../shared/extra-utils/server/servers'
|
||||
import { User } from '@shared/models/users/user.model'
|
||||
import { expect } from 'chai'
|
||||
|
||||
describe('Official plugin auth-ldap', function () {
|
||||
let server: ServerInfo
|
||||
let accessToken: string
|
||||
|
||||
before(async function () {
|
||||
this.timeout(30000)
|
||||
|
||||
server = await flushAndRunServer(1)
|
||||
await setAccessTokensToServers([ server ])
|
||||
|
||||
await installPlugin({
|
||||
url: server.url,
|
||||
accessToken: server.accessToken,
|
||||
npmName: 'peertube-plugin-auth-ldap'
|
||||
})
|
||||
})
|
||||
|
||||
it('Should not login with without LDAP settings', async function () {
|
||||
await userLogin(server, { username: 'fry', password: 'fry' }, 400)
|
||||
})
|
||||
|
||||
it('Should not login with bad LDAP settings', async function () {
|
||||
await updatePluginSettings({
|
||||
url: server.url,
|
||||
accessToken: server.accessToken,
|
||||
npmName: 'peertube-plugin-auth-ldap',
|
||||
settings: {
|
||||
'bind-credentials': 'GoodNewsEveryone',
|
||||
'bind-dn': 'cn=admin,dc=planetexpress,dc=com',
|
||||
'insecure-tls': false,
|
||||
'mail-property': 'mail',
|
||||
'search-base': 'ou=people,dc=planetexpress,dc=com',
|
||||
'search-filter': '(|(mail={{username}})(uid={{username}}))',
|
||||
'url': 'ldap://ldap:390',
|
||||
'username-property': 'uid'
|
||||
}
|
||||
})
|
||||
|
||||
await userLogin(server, { username: 'fry', password: 'fry' }, 400)
|
||||
})
|
||||
|
||||
it('Should not login with good LDAP settings but wrong username/password', async function () {
|
||||
await updatePluginSettings({
|
||||
url: server.url,
|
||||
accessToken: server.accessToken,
|
||||
npmName: 'peertube-plugin-auth-ldap',
|
||||
settings: {
|
||||
'bind-credentials': 'GoodNewsEveryone',
|
||||
'bind-dn': 'cn=admin,dc=planetexpress,dc=com',
|
||||
'insecure-tls': false,
|
||||
'mail-property': 'mail',
|
||||
'search-base': 'ou=people,dc=planetexpress,dc=com',
|
||||
'search-filter': '(|(mail={{username}})(uid={{username}}))',
|
||||
'url': 'ldap://ldap:389',
|
||||
'username-property': 'uid'
|
||||
}
|
||||
})
|
||||
|
||||
await userLogin(server, { username: 'fry', password: 'bad password' }, 400)
|
||||
await userLogin(server, { username: 'fryr', password: 'fry' }, 400)
|
||||
})
|
||||
|
||||
it('Should login with the appropriate username/password', async function () {
|
||||
accessToken = await userLogin(server, { username: 'fry', password: 'fry' })
|
||||
})
|
||||
|
||||
it('Should login with the appropriate email/password', async function () {
|
||||
accessToken = await userLogin(server, { username: 'fry@planetexpress.com', password: 'fry' })
|
||||
})
|
||||
|
||||
it('Should login get my profile', async function () {
|
||||
const res = await getMyUserInformation(server.url, accessToken)
|
||||
const body: User = res.body
|
||||
|
||||
expect(body.username).to.equal('fry')
|
||||
expect(body.email).to.equal('fry@planetexpress.com')
|
||||
})
|
||||
|
||||
it('Should upload a video', async function () {
|
||||
await uploadVideo(server.url, accessToken, { name: 'my super video' })
|
||||
})
|
||||
|
||||
it('Should not login if the plugin is uninstalled', async function () {
|
||||
await uninstallPlugin({ url: server.url, accessToken: server.accessToken, npmName: 'peertube-plugin-auth-ldap' })
|
||||
|
||||
await userLogin(server, { username: 'fry@planetexpress.com', password: 'fry' }, 400)
|
||||
})
|
||||
|
||||
after(async function () {
|
||||
await cleanupTests([ server ])
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue