Merge branch 'move-utils-to-shared' of https://github.com/buoyantair/PeerTube into...
[oweals/peertube.git] / server / tests / misc-endpoints.ts
1 /* tslint:disable:no-unused-expression */
2
3 import 'mocha'
4 import * as chai from 'chai'
5 import {
6   addVideoChannel,
7   createUser,
8   flushTests,
9   killallServers,
10   makeGetRequest,
11   runServer,
12   ServerInfo,
13   setAccessTokensToServers,
14   uploadVideo
15 } from '../../shared/utils'
16 import { VideoPrivacy } from '../../shared/models/videos'
17
18 const expect = chai.expect
19
20 describe('Test misc endpoints', function () {
21   let server: ServerInfo
22
23   before(async function () {
24     this.timeout(120000)
25
26     await flushTests()
27
28     server = await runServer(1)
29     await setAccessTokensToServers([ server ])
30   })
31
32   describe('Test a well known endpoints', function () {
33
34     it('Should get security.txt', async function () {
35       const res = await makeGetRequest({
36         url: server.url,
37         path: '/.well-known/security.txt',
38         statusCodeExpected: 200
39       })
40
41       expect(res.text).to.contain('security issue')
42     })
43
44     it('Should get nodeinfo', async function () {
45       const res = await makeGetRequest({
46         url: server.url,
47         path: '/.well-known/nodeinfo',
48         statusCodeExpected: 200
49       })
50
51       expect(res.body.links).to.be.an('array')
52       expect(res.body.links).to.have.lengthOf(1)
53       expect(res.body.links[0].rel).to.equal('http://nodeinfo.diaspora.software/ns/schema/2.0')
54     })
55
56     it('Should get dnt policy text', async function () {
57       const res = await makeGetRequest({
58         url: server.url,
59         path: '/.well-known/dnt-policy.txt',
60         statusCodeExpected: 200
61       })
62
63       expect(res.text).to.contain('http://www.w3.org/TR/tracking-dnt')
64     })
65
66     it('Should get dnt policy', async function () {
67       const res = await makeGetRequest({
68         url: server.url,
69         path: '/.well-known/dnt',
70         statusCodeExpected: 200
71       })
72
73       expect(res.body.tracking).to.equal('N')
74     })
75
76     it('Should get change-password location', async function () {
77       const res = await makeGetRequest({
78         url: server.url,
79         path: '/.well-known/change-password',
80         statusCodeExpected: 302
81       })
82
83       expect(res.header.location).to.equal('/my-account/settings')
84     })
85   })
86
87   describe('Test classic static endpoints', function () {
88
89     it('Should get robots.txt', async function () {
90       const res = await makeGetRequest({
91         url: server.url,
92         path: '/robots.txt',
93         statusCodeExpected: 200
94       })
95
96       expect(res.text).to.contain('User-agent')
97     })
98
99     it('Should get security.txt', async function () {
100       await makeGetRequest({
101         url: server.url,
102         path: '/security.txt',
103         statusCodeExpected: 301
104       })
105     })
106
107     it('Should get nodeinfo', async function () {
108       const res = await makeGetRequest({
109         url: server.url,
110         path: '/nodeinfo/2.0.json',
111         statusCodeExpected: 200
112       })
113
114       expect(res.body.software.name).to.equal('peertube')
115     })
116   })
117
118   describe('Test bots endpoints', function () {
119
120     it('Should get the empty sitemap', async function () {
121       const res = await makeGetRequest({
122         url: server.url,
123         path: '/sitemap.xml',
124         statusCodeExpected: 200
125       })
126
127       expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"')
128       expect(res.text).to.contain('<url><loc>http://localhost:9001/about/instance</loc></url>')
129     })
130
131     it('Should get the empty cached sitemap', async function () {
132       const res = await makeGetRequest({
133         url: server.url,
134         path: '/sitemap.xml',
135         statusCodeExpected: 200
136       })
137
138       expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"')
139       expect(res.text).to.contain('<url><loc>http://localhost:9001/about/instance</loc></url>')
140     })
141
142     it('Should add videos, channel and accounts and get sitemap', async function () {
143       this.timeout(35000)
144
145       await uploadVideo(server.url, server.accessToken, { name: 'video 1', nsfw: false })
146       await uploadVideo(server.url, server.accessToken, { name: 'video 2', nsfw: false })
147       await uploadVideo(server.url, server.accessToken, { name: 'video 3', privacy: VideoPrivacy.PRIVATE })
148
149       await addVideoChannel(server.url, server.accessToken, { name: 'channel1', displayName: 'channel 1' })
150       await addVideoChannel(server.url, server.accessToken, { name: 'channel2', displayName: 'channel 2' })
151
152       await createUser(server.url, server.accessToken, 'user1', 'password')
153       await createUser(server.url, server.accessToken, 'user2', 'password')
154
155       const res = await makeGetRequest({
156         url: server.url,
157         path: '/sitemap.xml?t=1', // avoid using cache
158         statusCodeExpected: 200
159       })
160
161       expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"')
162       expect(res.text).to.contain('<url><loc>http://localhost:9001/about/instance</loc></url>')
163
164       expect(res.text).to.contain('<video:title><![CDATA[video 1]]></video:title>')
165       expect(res.text).to.contain('<video:title><![CDATA[video 2]]></video:title>')
166       expect(res.text).to.not.contain('<video:title><![CDATA[video 3]]></video:title>')
167
168       expect(res.text).to.contain('<url><loc>http://localhost:9001/video-channels/channel1</loc></url>')
169       expect(res.text).to.contain('<url><loc>http://localhost:9001/video-channels/channel2</loc></url>')
170
171       expect(res.text).to.contain('<url><loc>http://localhost:9001/accounts/user1</loc></url>')
172       expect(res.text).to.contain('<url><loc>http://localhost:9001/accounts/user2</loc></url>')
173     })
174   })
175
176   after(async function () {
177     killallServers([ server ])
178   })
179 })