Merge from upstream
authorbuoyantair <buoyantair@protonmail.com>
Thu, 15 Nov 2018 21:07:16 +0000 (02:37 +0530)
committerbuoyantair <buoyantair@protonmail.com>
Thu, 15 Nov 2018 21:07:16 +0000 (02:37 +0530)
1  2 
server/tests/api/activitypub/client.ts
server/tests/api/redundancy/redundancy.ts
server/tests/api/server/handle-down.ts
server/tests/cli/peertube.ts
shared/utils/index.ts
shared/utils/server/servers.ts

index 0000000000000000000000000000000000000000,5ca8bdfd3c015dc385552d4d1ffbbc794a22e054..334cd4e5ccc000e5de18994d732a190ae92d3e5d
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,35 +1,43 @@@
 -import { flushTests, killallServers, makeActivityPubGetRequest, runServer, ServerInfo, setAccessTokensToServers } from '../../utils'
+ /* tslint:disable:no-unused-expression */
+ import * as chai from 'chai'
+ import 'mocha'
++import {
++  flushTests,
++  killallServers,
++  makeActivityPubGetRequest,
++  runServer,
++  ServerInfo,
++  setAccessTokensToServers
++} from '../../shared/utils'
++
+ const expect = chai.expect
+ describe('Test activitypub', function () {
+   let server: ServerInfo = null
+   before(async function () {
+     this.timeout(30000)
+     await flushTests()
+     server = await runServer(1)
+     await setAccessTokensToServers([ server ])
+   })
+   it('Should return the account object', async function () {
+     const res = await makeActivityPubGetRequest(server.url, '/accounts/root')
+     const object = res.body
+     expect(object.type).to.equal('Person')
+     expect(object.id).to.equal('http://localhost:9001/accounts/root')
+     expect(object.name).to.equal('root')
+     expect(object.preferredUsername).to.equal('root')
+   })
+   after(async function () {
+     killallServers([ server ])
+   })
+ })
index e6e0d6c7a6b9b23a49009299fc12b70620d07c59,0421b2b40eeeeeec281b52b9f5ded9b908fcdaac..8e162b69ec1452a144ae1a0b1c612f5e64bde4dc
@@@ -5,23 -5,18 +5,25 @@@ import 'mocha
  import { JobState, Video } from '../../../../shared/models'
  import { VideoPrivacy } from '../../../../shared/models/videos'
  import { VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
 -import { completeVideoCheck, getVideo, immutableAssign, reRunServer, unfollow, updateVideo, viewVideo } from '../../utils'
++
  import {
 +  completeVideoCheck,
 +  getVideo,
 +  immutableAssign,
 +  reRunServer,
 +  unfollow,
 +  viewVideo,
    flushAndRunMultipleServers,
    getVideosList,
    killallServers,
    ServerInfo,
    setAccessTokensToServers,
    uploadVideo,
++  updateVideo,
    wait
 -} from '../../utils/index'
 -import { follow, getFollowersListPaginationAndSort } from '../../utils/server/follows'
 -import { getJobsListPaginationAndSort, waitJobs } from '../../utils/server/jobs'
 +} from '../../../../shared/utils'
 +import { follow, getFollowersListPaginationAndSort } from '../../../../shared/utils/server/follows'
 +import { getJobsListPaginationAndSort, waitJobs } from '../../../../shared/utils/server/jobs'
  import {
    addVideoCommentReply,
    addVideoCommentThread,
Simple merge
index 897389824d165d84cedf35fe11e3b06d7f477f93,0000000000000000000000000000000000000000..905d938238ac6588aeb185a9f1fa056747ffb761
mode 100644,000000..100644
--- /dev/null
@@@ -1,18 -1,0 +1,20 @@@
 +export * from './server/activitypub'
 +export * from './cli/cli'
 +export * from './server/clients'
 +export * from './server/config'
 +export * from './users/login'
 +export * from './miscs/miscs'
++export * from './miscs/stubs'
 +export * from './server/follows'
 +export * from './requests/requests'
++export * from './requests/activitypub'
 +export * from './server/servers'
 +export * from './videos/services'
 +export * from './users/users'
 +export * from './videos/video-abuses'
 +export * from './videos/video-blacklist'
 +export * from './videos/video-channels'
 +export * from './videos/videos'
 +export * from './videos/video-change-ownership'
 +export * from './feeds/feeds'
 +export * from './search/videos'
index 3c946db273d6014bb90c790c9c6d193b79b8143d,0000000000000000000000000000000000000000..f358a21f13f37dddb2d2a5244fc76de7c8a09e20
mode 100644,000000..100644
--- /dev/null
@@@ -1,185 -1,0 +1,185 @@@
- function runServer (serverNumber: number, configOverride?: Object) {
 +import { ChildProcess, exec, fork } from 'child_process'
 +import { join } from 'path'
 +import { root, wait } from '../miscs/miscs'
 +import { readFile } from 'fs-extra'
 +
 +interface ServerInfo {
 +  app: ChildProcess,
 +  url: string
 +  host: string
 +  serverNumber: number
 +
 +  client: {
 +    id: string,
 +    secret: string
 +  }
 +
 +  user: {
 +    username: string,
 +    password: string,
 +    email?: string
 +  }
 +
 +  accessToken?: string
 +
 +  video?: {
 +    id: number
 +    uuid: string
 +    name: string
 +    account: {
 +      name: string
 +    }
 +  }
 +
 +  remoteVideo?: {
 +    id: number
 +    uuid: string
 +  }
 +}
 +
 +function flushAndRunMultipleServers (totalServers: number, configOverride?: Object) {
 +  let apps = []
 +  let i = 0
 +
 +  return new Promise<ServerInfo[]>(res => {
 +    function anotherServerDone (serverNumber, app) {
 +      apps[serverNumber - 1] = app
 +      i++
 +      if (i === totalServers) {
 +        return res(apps)
 +      }
 +    }
 +
 +    flushTests()
 +      .then(() => {
 +        for (let j = 1; j <= totalServers; j++) {
 +          runServer(j, configOverride).then(app => anotherServerDone(j, app))
 +        }
 +      })
 +  })
 +}
 +
 +function flushTests () {
 +  return new Promise<void>((res, rej) => {
 +    return exec('npm run clean:server:test', err => {
 +      if (err) return rej(err)
 +
 +      return res()
 +    })
 +  })
 +}
 +
-     server.app = fork(join(__dirname, '..', '..', '..', '..', 'dist', 'server.js'), [], options)
++function runServer (serverNumber: number, configOverride?: Object, args = []) {
 +  const server: ServerInfo = {
 +    app: null,
 +    serverNumber: serverNumber,
 +    url: `http://localhost:${9000 + serverNumber}`,
 +    host: `localhost:${9000 + serverNumber}`,
 +    client: {
 +      id: null,
 +      secret: null
 +    },
 +    user: {
 +      username: null,
 +      password: null
 +    }
 +  }
 +
 +  // These actions are async so we need to be sure that they have both been done
 +  const serverRunString = {
 +    'Server listening': false
 +  }
 +  const key = 'Database peertube_test' + serverNumber + ' is ready'
 +  serverRunString[key] = false
 +
 +  const regexps = {
 +    client_id: 'Client id: (.+)',
 +    client_secret: 'Client secret: (.+)',
 +    user_username: 'Username: (.+)',
 +    user_password: 'User password: (.+)'
 +  }
 +
 +  // Share the environment
 +  const env = Object.create(process.env)
 +  env['NODE_ENV'] = 'test'
 +  env['NODE_APP_INSTANCE'] = serverNumber.toString()
 +
 +  if (configOverride !== undefined) {
 +    env['NODE_CONFIG'] = JSON.stringify(configOverride)
 +  }
 +
 +  const options = {
 +    silent: true,
 +    env: env,
 +    detached: true
 +  }
 +
 +  return new Promise<ServerInfo>(res => {
++    server.app = fork(join(__dirname, '..', '..', '..', '..', 'dist', 'server.js'), args, options)
 +    server.app.stdout.on('data', function onStdout (data) {
 +      let dontContinue = false
 +
 +      // Capture things if we want to
 +      for (const key of Object.keys(regexps)) {
 +        const regexp = regexps[key]
 +        const matches = data.toString().match(regexp)
 +        if (matches !== null) {
 +          if (key === 'client_id') server.client.id = matches[1]
 +          else if (key === 'client_secret') server.client.secret = matches[1]
 +          else if (key === 'user_username') server.user.username = matches[1]
 +          else if (key === 'user_password') server.user.password = matches[1]
 +        }
 +      }
 +
 +      // Check if all required sentences are here
 +      for (const key of Object.keys(serverRunString)) {
 +        if (data.toString().indexOf(key) !== -1) serverRunString[key] = true
 +        if (serverRunString[key] === false) dontContinue = true
 +      }
 +
 +      // If no, there is maybe one thing not already initialized (client/user credentials generation...)
 +      if (dontContinue === true) return
 +
 +      server.app.stdout.removeListener('data', onStdout)
 +      res(server)
 +    })
 +  })
 +}
 +
 +async function reRunServer (server: ServerInfo, configOverride?: any) {
 +  const newServer = await runServer(server.serverNumber, configOverride)
 +  server.app = newServer.app
 +
 +  return server
 +}
 +
 +function killallServers (servers: ServerInfo[]) {
 +  for (const server of servers) {
 +    process.kill(-server.app.pid)
 +  }
 +}
 +
 +async function waitUntilLog (server: ServerInfo, str: string, count = 1) {
 +  const logfile = join(root(), 'test' + server.serverNumber, 'logs/peertube.log')
 +
 +  while (true) {
 +    const buf = await readFile(logfile)
 +
 +    const matches = buf.toString().match(new RegExp(str, 'g'))
 +    if (matches && matches.length === count) return
 +
 +    await wait(1000)
 +  }
 +}
 +
 +// ---------------------------------------------------------------------------
 +
 +export {
 +  ServerInfo,
 +  flushAndRunMultipleServers,
 +  flushTests,
 +  runServer,
 +  killallServers,
 +  reRunServer,
 +  waitUntilLog
 +}