1
0
Fork 0
peertube/packages/tests/src/cli/plugins.ts

77 lines
2.1 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2019-07-19 08:37:35 +00:00
2021-07-05 14:37:50 +00:00
import { expect } from 'chai'
2019-07-19 08:37:35 +00:00
import {
cleanupTests,
2021-07-16 07:47:51 +00:00
createSingleServer,
2019-07-19 15:30:41 +00:00
killallServers,
2021-07-16 07:47:51 +00:00
PeerTubeServer,
2021-07-16 12:27:30 +00:00
PluginsCommand,
2019-07-19 08:37:35 +00:00
setAccessTokensToServers
} from '@peertube/peertube-server-commands'
2019-07-19 08:37:35 +00:00
describe('Test plugin scripts', function () {
2021-07-16 07:47:51 +00:00
let server: PeerTubeServer
2019-07-19 08:37:35 +00:00
before(async function () {
this.timeout(30000)
2021-07-16 07:47:51 +00:00
server = await createSingleServer(1)
2019-07-19 08:37:35 +00:00
await setAccessTokensToServers([ server ])
})
it('Should install a plugin from stateless CLI', async function () {
this.timeout(60000)
2021-07-07 08:33:49 +00:00
const packagePath = PluginsCommand.getPluginTestPath()
2019-07-19 08:37:35 +00:00
2021-07-16 07:04:35 +00:00
await server.cli.execWithEnv(`npm run plugin:install -- --plugin-path ${packagePath}`)
2019-07-19 08:37:35 +00:00
})
it('Should install a theme from stateless CLI', async function () {
this.timeout(60000)
2021-07-16 07:04:35 +00:00
await server.cli.execWithEnv(`npm run plugin:install -- --npm-name peertube-theme-background-red`)
2019-07-19 08:37:35 +00:00
})
it('Should have the theme and the plugin registered when we restart peertube', async function () {
this.timeout(30000)
2021-07-09 13:37:43 +00:00
await killallServers([ server ])
2021-07-16 07:47:51 +00:00
await server.run()
2019-07-19 08:37:35 +00:00
2021-07-16 07:04:35 +00:00
const config = await server.config.getConfig()
2019-07-19 08:37:35 +00: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-16 07:04:35 +00:00
await server.cli.execWithEnv(`npm run plugin:uninstall -- --npm-name peertube-plugin-test`)
2019-07-19 08:37:35 +00:00
})
it('Should have removed the plugin on another peertube restart', async function () {
this.timeout(30000)
2021-07-09 13:37:43 +00:00
await killallServers([ server ])
2021-07-16 07:47:51 +00:00
await server.run()
2019-07-19 08:37:35 +00:00
2021-07-16 07:04:35 +00:00
const config = await server.config.getConfig()
2019-07-19 08:37:35 +00:00
const plugin = config.plugin.registered
.find(p => p.name === 'test')
expect(plugin).to.be.undefined
})
after(async function () {
await cleanupTests([ server ])
})
})