PeerTube/server/tests/cli/plugins.ts

79 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2019-07-19 10:37:35 +02:00
import 'mocha'
2021-07-05 16:37:50 +02:00
import { expect } from 'chai'
2019-07-19 10:37:35 +02:00
import {
cleanupTests,
flushAndRunServer,
2019-07-19 17:30:41 +02:00
killallServers,
2021-07-07 10:33:49 +02:00
PluginsCommand,
2019-07-19 10:37:35 +02:00
reRunServer,
ServerInfo,
setAccessTokensToServers
} from '../../../shared/extra-utils'
describe('Test plugin scripts', function () {
let server: ServerInfo
before(async function () {
this.timeout(30000)
server = await flushAndRunServer(1)
await setAccessTokensToServers([ server ])
})
it('Should install a plugin from stateless CLI', async function () {
this.timeout(60000)
2021-07-07 10:33:49 +02:00
const packagePath = PluginsCommand.getPluginTestPath()
2019-07-19 10:37:35 +02:00
2021-07-05 16:37:50 +02:00
await server.cliCommand.execWithEnv(`npm run plugin:install -- --plugin-path ${packagePath}`)
2019-07-19 10:37:35 +02:00
})
it('Should install a theme from stateless CLI', async function () {
this.timeout(60000)
2021-07-05 16:37:50 +02:00
await server.cliCommand.execWithEnv(`npm run plugin:install -- --npm-name peertube-theme-background-red`)
2019-07-19 10:37:35 +02:00
})
it('Should have the theme and the plugin registered when we restart peertube', async function () {
this.timeout(30000)
2021-07-09 15:37:43 +02:00
await killallServers([ server ])
2019-07-19 10:37:35 +02:00
await reRunServer(server)
2021-07-07 11:51:09 +02:00
const config = await server.configCommand.getConfig()
2019-07-19 10:37:35 +02:00
const plugin = config.plugin.registered
.find(p => p.name === 'test')
expect(plugin).to.not.be.undefined
const theme = config.theme.registered
.find(t => t.name === 'background-red')
expect(theme).to.not.be.undefined
})
it('Should uninstall a plugin from stateless CLI', async function () {
this.timeout(60000)
2021-07-05 16:37:50 +02:00
await server.cliCommand.execWithEnv(`npm run plugin:uninstall -- --npm-name peertube-plugin-test`)
2019-07-19 10:37:35 +02:00
})
it('Should have removed the plugin on another peertube restart', async function () {
this.timeout(30000)
2021-07-09 15:37:43 +02:00
await killallServers([ server ])
2019-07-19 10:37:35 +02:00
await reRunServer(server)
2021-07-07 11:51:09 +02:00
const config = await server.configCommand.getConfig()
2019-07-19 10:37:35 +02:00
const plugin = config.plugin.registered
.find(p => p.name === 'test')
expect(plugin).to.be.undefined
})
after(async function () {
await cleanupTests([ server ])
})
})