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