aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/search/search-activitypub-video-channels.ts
blob: 512cb32fd655f5d54deba7ce0eebebc42c36caf7 (plain) (blame)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* tslint:disable:no-unused-expression */

import * as chai from 'chai'
import 'mocha'
import {
  addVideoChannel,
  createUser,
  deleteVideoChannel,
  flushAndRunMultipleServers,
  flushTests,
  getVideoChannelsList,
  killallServers,
  ServerInfo,
  setAccessTokensToServers,
  updateMyUser,
  updateVideoChannel,
  uploadVideo,
  userLogin,
  wait
} from '../../utils'
import { waitJobs } from '../../utils/server/jobs'
import { VideoChannel } from '../../../../shared/models/videos'
import { searchVideoChannel } from '../../utils/search/video-channels'

const expect = chai.expect

describe('Test a ActivityPub video channels search', function () {
  let servers: ServerInfo[]
  let userServer2Token: string

  before(async function () {
    this.timeout(120000)

    await flushTests()

    servers = await flushAndRunMultipleServers(2)

    await setAccessTokensToServers(servers)

    {
      await createUser(servers[0].url, servers[0].accessToken, 'user1_server1', 'password')
      const channel = {
        name: 'channel1_server1',
        displayName: 'Channel 1 server 1'
      }
      await addVideoChannel(servers[0].url, servers[0].accessToken, channel)
    }

    {
      const user = { username: 'user1_server2', password: 'password' }
      await createUser(servers[1].url, servers[1].accessToken, user.username, user.password)
      userServer2Token = await userLogin(servers[1], user)

      const channel = {
        name: 'channel1_server2',
        displayName: 'Channel 1 server 2'
      }
      const resChannel = await addVideoChannel(servers[1].url, userServer2Token, channel)
      const channelId = resChannel.body.videoChannel.id

      await uploadVideo(servers[1].url, userServer2Token, { name: 'video 1 server 2', channelId })
      await uploadVideo(servers[1].url, userServer2Token, { name: 'video 2 server 2', channelId })
    }

    await waitJobs(servers)
  })

  it('Should not find a remote video channel', async function () {
    {
      const search = 'http://localhost:9002/video-channels/channel1_server3'
      const res = await searchVideoChannel(servers[ 0 ].url, search, servers[ 0 ].accessToken)

      expect(res.body.total).to.equal(0)
      expect(res.body.data).to.be.an('array')
      expect(res.body.data).to.have.lengthOf(0)
    }

    {
      // Without token
      const search = 'http://localhost:9002/video-channels/channel1_server2'
      const res = await searchVideoChannel(servers[0].url, search)

      expect(res.body.total).to.equal(0)
      expect(res.body.data).to.be.an('array')
      expect(res.body.data).to.have.lengthOf(0)
    }
  })

  it('Should search a local video channel', async function () {
    const searches = [
      'http://localhost:9001/video-channels/channel1_server1',
      'channel1_server1@localhost:9001'
    ]

    for (const search of searches) {
      const res = await searchVideoChannel(servers[ 0 ].url, search)

      expect(res.body.total).to.equal(1)
      expect(res.body.data).to.be.an('array')
      expect(res.body.data).to.have.lengthOf(1)
      expect(res.body.data[ 0 ].name).to.equal('channel1_server1')
      expect(res.body.data[ 0 ].displayName).to.equal('Channel 1 server 1')
    }
  })

  it('Should search a remote video channel with URL or handle', async function () {
    const searches = [
      'http://localhost:9002/video-channels/channel1_server2',
      'channel1_server2@localhost:9002'
    ]

    for (const search of searches) {
      const res = await searchVideoChannel(servers[ 0 ].url, search, servers[ 0 ].accessToken)

      expect(res.body.total).to.equal(1)
      expect(res.body.data).to.be.an('array')
      expect(res.body.data).to.have.lengthOf(1)
      expect(res.body.data[ 0 ].name).to.equal('channel1_server2')
      expect(res.body.data[ 0 ].displayName).to.equal('Channel 1 server 2')
    }
  })

  it('Should not list this remote video channel', async function () {
    const res = await getVideoChannelsList(servers[0].url, 0, 5)
    expect(res.body.total).to.equal(3)
    expect(res.body.data).to.have.lengthOf(3)
    expect(res.body.data[0].name).to.equal('channel1_server1')
    expect(res.body.data[1].name).to.equal('user1_server1_channel')
    expect(res.body.data[2].name).to.equal('root_channel')
  })

  it('Should update video channel of server 2, and refresh it on server 1', async function () {
    this.timeout(60000)

    await updateVideoChannel(servers[1].url, userServer2Token, 'channel1_server2', { displayName: 'channel updated' })
    await updateMyUser({ url: servers[1].url, accessToken: userServer2Token, displayName: 'user updated' })

    await waitJobs(servers)
    // Expire video channel
    await wait(10000)

    const search = 'http://localhost:9002/video-channels/channel1_server2'
    const res = await searchVideoChannel(servers[0].url, search, servers[0].accessToken)
    expect(res.body.total).to.equal(1)
    expect(res.body.data).to.have.lengthOf(1)

    const videoChannel: VideoChannel = res.body.data[0]
    expect(videoChannel.displayName).to.equal('channel updated')

    // We don't return the owner account for now
    // expect(videoChannel.ownerAccount.displayName).to.equal('user updated')
  })

  it('Should delete video channel of server 2, and delete it on server 1', async function () {
    this.timeout(60000)

    await deleteVideoChannel(servers[1].url, userServer2Token, 'channel1_server2')

    await waitJobs(servers)
    // Expire video
    await wait(10000)

    const res = await searchVideoChannel(servers[0].url, 'http://localhost:9002/video-channels/channel1_server2', servers[0].accessToken)
    expect(res.body.total).to.equal(0)
    expect(res.body.data).to.have.lengthOf(0)
  })

  after(async function () {
    killallServers(servers)

    // Keep the logs if the test failed
    if (this['ok']) {
      await flushTests()
    }
  })
})