1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import { expect } from 'chai'
import {
cleanupTests,
createSingleServer,
makeGetRequest,
makePostBodyRequest,
PeerTubeServer,
PluginsCommand,
setAccessTokensToServers
} from '@shared/server-commands'
import { HttpStatusCode } from '@shared/models'
describe('Test plugin helpers', function () {
let server: PeerTubeServer
const basePaths = [
'/plugins/test-five/router/',
'/plugins/test-five/0.0.1/router/'
]
before(async function () {
this.timeout(30000)
server = await createSingleServer(1)
await setAccessTokensToServers([ server ])
await server.plugins.install({ path: PluginsCommand.getPluginTestPath('-five') })
})
it('Should answer "pong"', async function () {
for (const path of basePaths) {
const res = await makeGetRequest({
url: server.url,
path: path + 'ping',
expectedStatus: HttpStatusCode.OK_200
})
expect(res.body.message).to.equal('pong')
}
})
it('Should check if authenticated', async function () {
for (const path of basePaths) {
const res = await makeGetRequest({
url: server.url,
path: path + 'is-authenticated',
token: server.accessToken,
expectedStatus: 200
})
expect(res.body.isAuthenticated).to.equal(true)
const secRes = await makeGetRequest({
url: server.url,
path: path + 'is-authenticated',
expectedStatus: 200
})
expect(secRes.body.isAuthenticated).to.equal(false)
}
})
it('Should mirror post body', async function () {
const body = {
hello: 'world',
riri: 'fifi',
loulou: 'picsou'
}
for (const path of basePaths) {
const res = await makePostBodyRequest({
url: server.url,
path: path + 'form/post/mirror',
fields: body,
expectedStatus: HttpStatusCode.OK_200
})
expect(res.body).to.deep.equal(body)
}
})
it('Should remove the plugin and remove the routes', async function () {
await server.plugins.uninstall({ npmName: 'peertube-plugin-test-five' })
for (const path of basePaths) {
await makeGetRequest({
url: server.url,
path: path + 'ping',
expectedStatus: HttpStatusCode.NOT_FOUND_404
})
await makePostBodyRequest({
url: server.url,
path: path + 'ping',
fields: {},
expectedStatus: HttpStatusCode.NOT_FOUND_404
})
}
})
after(async function () {
await cleanupTests([ server ])
})
})
|