]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/plugins/plugin-storage.ts
Merge branch 'release/3.3.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / plugins / plugin-storage.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import 'mocha'
4 import { expect } from 'chai'
5 import { pathExists, readdir, readFile } from 'fs-extra'
6 import { join } from 'path'
7 import {
8 cleanupTests,
9 createSingleServer,
10 makeGetRequest,
11 PeerTubeServer,
12 PluginsCommand,
13 setAccessTokensToServers
14 } from '@shared/extra-utils'
15 import { HttpStatusCode } from '@shared/models'
16
17 describe('Test plugin storage', function () {
18 let server: PeerTubeServer
19
20 before(async function () {
21 this.timeout(30000)
22
23 server = await createSingleServer(1)
24 await setAccessTokensToServers([ server ])
25
26 await server.plugins.install({ path: PluginsCommand.getPluginTestPath('-six') })
27 })
28
29 describe('DB storage', function () {
30
31 it('Should correctly store a subkey', async function () {
32 await server.servers.waitUntilLog('superkey stored value is toto')
33 })
34 })
35
36 describe('Disk storage', function () {
37 let dataPath: string
38 let pluginDataPath: string
39
40 async function getFileContent () {
41 const files = await readdir(pluginDataPath)
42 expect(files).to.have.lengthOf(1)
43
44 return readFile(join(pluginDataPath, files[0]), 'utf8')
45 }
46
47 before(function () {
48 dataPath = server.servers.buildDirectory('plugins/data')
49 pluginDataPath = join(dataPath, 'peertube-plugin-test-six')
50 })
51
52 it('Should have created the directory on install', async function () {
53 const dataPath = server.servers.buildDirectory('plugins/data')
54 const pluginDataPath = join(dataPath, 'peertube-plugin-test-six')
55
56 expect(await pathExists(dataPath)).to.be.true
57 expect(await pathExists(pluginDataPath)).to.be.true
58 expect(await readdir(pluginDataPath)).to.have.lengthOf(0)
59 })
60
61 it('Should have created a file', async function () {
62 await makeGetRequest({
63 url: server.url,
64 token: server.accessToken,
65 path: '/plugins/test-six/router/create-file',
66 expectedStatus: HttpStatusCode.OK_200
67 })
68
69 const content = await getFileContent()
70 expect(content).to.equal('Prince Ali')
71 })
72
73 it('Should still have the file after an uninstallation', async function () {
74 await server.plugins.uninstall({ npmName: 'peertube-plugin-test-six' })
75
76 const content = await getFileContent()
77 expect(content).to.equal('Prince Ali')
78 })
79
80 it('Should still have the file after the reinstallation', async function () {
81 await server.plugins.install({ path: PluginsCommand.getPluginTestPath('-six') })
82
83 const content = await getFileContent()
84 expect(content).to.equal('Prince Ali')
85 })
86 })
87
88 after(async function () {
89 await cleanupTests([ server ])
90 })
91 })