Fix tests

pull/175/head
Chocobozzz 2017-12-29 14:32:51 +01:00
parent b1f5b93e4f
commit 8b0d42ee37
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
4 changed files with 15 additions and 44 deletions

View File

@ -10,7 +10,7 @@ import {
flushAndRunMultipleServers, flushTests, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo,
wait
} from '../../utils/index'
import { dateIsValid, webtorrentAdd } from '../../utils/miscs/miscs'
import { dateIsValid } from '../../utils/miscs/miscs'
import { follow, getFollowersListPaginationAndSort, getFollowingListPaginationAndSort, unfollow } from '../../utils/server/follows'
import { userLogin } from '../../utils/users/login'
import { createUser } from '../../utils/users/users'
@ -18,7 +18,7 @@ import {
addVideoCommentReply, addVideoCommentThread, getVideoCommentThreads,
getVideoThreadComments
} from '../../utils/videos/video-comments'
import { getVideo, rateVideo, testVideoImage } from '../../utils/videos/videos'
import { rateVideo } from '../../utils/videos/videos'
const expect = chai.expect

View File

@ -98,7 +98,7 @@ describe('Test multiple servers', function () {
description: 'super channel',
isLocal
},
fixture: 'video_short.webm',
fixture: 'video_short1.webm',
files: [
{
resolution: 720,
@ -289,7 +289,7 @@ describe('Test multiple servers', function () {
description: '',
isLocal
},
fixture: 'video_short3.webm',
fixture: 'video_short.webm',
files: [
{
resolution: 720,

View File

@ -1,20 +1,12 @@
/* tslint:disable:no-unused-expression */
import 'mocha'
import * as chai from 'chai'
const expect = chai.expect
import {
ServerInfo,
flushTests,
uploadVideo,
getVideosList,
setAccessTokensToServers,
killallServers,
getOEmbed
} from '../../utils/index'
import 'mocha'
import { flushTests, getOEmbed, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../utils/index'
import { runServer } from '../../utils/server/servers'
const expect = chai.expect
describe('Test services', function () {
let server: ServerInfo = null
@ -30,8 +22,10 @@ describe('Test services', function () {
const videoAttributes = {
name: 'my super name'
}
const res = await uploadVideo(server.url, server.accessToken, videoAttributes)
server.video = res.body.video
await uploadVideo(server.url, server.accessToken, videoAttributes)
const res = await getVideosList(server.url)
server.video = res.body.data[0]
})
it('Should have a valid oEmbed response', async function () {

View File

@ -6,32 +6,9 @@ import 'mocha'
import { join } from 'path'
import { VideoPrivacy } from '../../../../shared/models/videos'
import {
dateIsValid,
flushTests,
getVideo,
getVideoCategories,
getVideoLanguages,
getVideoLicences,
getVideoPrivacies,
getVideosList,
getVideosListPagination,
getVideosListSort,
killallServers,
rateVideo,
readdirPromise,
removeVideo,
runServer,
searchVideo,
searchVideoWithPagination,
searchVideoWithSort,
ServerInfo,
setAccessTokensToServers,
testVideoImage,
updateVideo,
uploadVideo,
wait,
webtorrentAdd,
viewVideo, completeVideoCheck, immutableAssign
completeVideoCheck, flushTests, getVideo, getVideoCategories, getVideoLanguages, getVideoLicences, getVideoPrivacies,
getVideosList, getVideosListPagination, getVideosListSort, killallServers, rateVideo, readdirPromise, removeVideo, runServer, searchVideo,
searchVideoWithPagination, searchVideoWithSort, ServerInfo, setAccessTokensToServers, testVideoImage, updateVideo, uploadVideo, viewVideo
} from '../../utils'
const expect = chai.expect