1
0
Fork 0
peertube/server/tests/plugins/plugin-storage.ts

95 lines
2.9 KiB
TypeScript
Raw Normal View History

2020-05-04 07:44:00 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import { expect } from 'chai'
import { pathExists, readdir, readFile } from 'fs-extra'
import { join } from 'path'
2021-07-16 07:47:51 +00:00
import {
cleanupTests,
createSingleServer,
makeGetRequest,
PeerTubeServer,
PluginsCommand,
setAccessTokensToServers
} from '@shared/server-commands'
2021-07-16 12:27:30 +00:00
import { HttpStatusCode } from '@shared/models'
2020-05-04 07:44:00 +00:00
describe('Test plugin storage', function () {
2021-07-16 07:47:51 +00:00
let server: PeerTubeServer
2020-05-04 07:44:00 +00:00
before(async function () {
this.timeout(30000)
2021-07-16 07:47:51 +00:00
server = await createSingleServer(1)
2020-05-04 07:44:00 +00:00
await setAccessTokensToServers([ server ])
2021-07-16 07:04:35 +00:00
await server.plugins.install({ path: PluginsCommand.getPluginTestPath('-six') })
2020-05-04 07:44:00 +00:00
})
describe('DB storage', function () {
it('Should correctly store a subkey', async function () {
2021-07-16 07:04:35 +00:00
await server.servers.waitUntilLog('superkey stored value is toto')
})
it('Should correctly retrieve an array as array from the storage.', async function () {
2021-12-16 09:15:27 +00:00
await server.servers.waitUntilLog('storedArrayKey isArray is true')
await server.servers.waitUntilLog('storedArrayKey stored value is toto, toto2')
})
})
describe('Disk storage', function () {
let dataPath: string
let pluginDataPath: string
async function getFileContent () {
const files = await readdir(pluginDataPath)
expect(files).to.have.lengthOf(1)
return readFile(join(pluginDataPath, files[0]), 'utf8')
}
before(function () {
2021-07-16 07:04:35 +00:00
dataPath = server.servers.buildDirectory('plugins/data')
pluginDataPath = join(dataPath, 'peertube-plugin-test-six')
})
it('Should have created the directory on install', async function () {
2021-07-16 07:04:35 +00:00
const dataPath = server.servers.buildDirectory('plugins/data')
const pluginDataPath = join(dataPath, 'peertube-plugin-test-six')
expect(await pathExists(dataPath)).to.be.true
expect(await pathExists(pluginDataPath)).to.be.true
expect(await readdir(pluginDataPath)).to.have.lengthOf(0)
})
it('Should have created a file', async function () {
await makeGetRequest({
url: server.url,
token: server.accessToken,
path: '/plugins/test-six/router/create-file',
2021-07-16 08:42:24 +00:00
expectedStatus: HttpStatusCode.OK_200
})
const content = await getFileContent()
expect(content).to.equal('Prince Ali')
})
it('Should still have the file after an uninstallation', async function () {
2021-07-16 07:04:35 +00:00
await server.plugins.uninstall({ npmName: 'peertube-plugin-test-six' })
const content = await getFileContent()
expect(content).to.equal('Prince Ali')
})
it('Should still have the file after the reinstallation', async function () {
2021-07-16 07:04:35 +00:00
await server.plugins.install({ path: PluginsCommand.getPluginTestPath('-six') })
const content = await getFileContent()
expect(content).to.equal('Prince Ali')
})
2020-05-04 07:44:00 +00:00
})
after(async function () {
await cleanupTests([ server ])
})
})