mirror of https://github.com/Chocobozzz/PeerTube
253 lines
7.8 KiB
TypeScript
253 lines
7.8 KiB
TypeScript
import { browser } from 'protractor'
|
|
import { LoginPage } from './po/login.po'
|
|
import { MyAccountPage } from './po/my-account'
|
|
import { PlayerPage } from './po/player.po'
|
|
import { VideoUpdatePage } from './po/video-update.po'
|
|
import { VideoUploadPage } from './po/video-upload.po'
|
|
import { VideoWatchPage } from './po/video-watch.po'
|
|
import { isIOS, isMobileDevice, isSafari } from './utils'
|
|
|
|
async function skipIfUploadNotSupported () {
|
|
if (await isMobileDevice() || await isSafari()) {
|
|
console.log('Skipping because we are on a real device or Safari and BrowserStack does not support file upload.')
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
describe('Videos workflow', () => {
|
|
let videoWatchPage: VideoWatchPage
|
|
let videoUploadPage: VideoUploadPage
|
|
let videoUpdatePage: VideoUpdatePage
|
|
let myAccountPage: MyAccountPage
|
|
let loginPage: LoginPage
|
|
let playerPage: PlayerPage
|
|
|
|
let videoName = new Date().getTime() + ' video'
|
|
const video2Name = new Date().getTime() + ' second video'
|
|
const playlistName = new Date().getTime() + ' playlist'
|
|
let videoWatchUrl: string
|
|
|
|
beforeEach(async () => {
|
|
videoWatchPage = new VideoWatchPage()
|
|
videoUploadPage = new VideoUploadPage()
|
|
videoUpdatePage = new VideoUpdatePage()
|
|
myAccountPage = new MyAccountPage()
|
|
loginPage = new LoginPage()
|
|
playerPage = new PlayerPage()
|
|
|
|
if (await isIOS()) {
|
|
// iOS does not seem to work with protractor
|
|
// https://github.com/angular/protractor/issues/2840
|
|
browser.waitForAngularEnabled(false)
|
|
|
|
console.log('iOS detected')
|
|
} else if (await isMobileDevice()) {
|
|
console.log('Android detected.')
|
|
} else if (await isSafari()) {
|
|
console.log('Safari detected.')
|
|
}
|
|
|
|
if (!await isMobileDevice()) {
|
|
await browser.driver.manage().window().maximize()
|
|
}
|
|
})
|
|
|
|
it('Should log in', async () => {
|
|
if (await isMobileDevice() || await isSafari()) {
|
|
console.log('Skipping because we are on a real device or Safari and BrowserStack does not support file upload.')
|
|
return
|
|
}
|
|
|
|
return loginPage.loginAsRootUser()
|
|
})
|
|
|
|
it('Should upload a video', async () => {
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
await videoUploadPage.navigateTo()
|
|
|
|
await videoUploadPage.uploadVideo()
|
|
return videoUploadPage.validSecondUploadStep(videoName)
|
|
})
|
|
|
|
it('Should list videos', async () => {
|
|
await videoWatchPage.goOnVideosList(await isMobileDevice(), await isSafari())
|
|
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
const videoNames = videoWatchPage.getVideosListName()
|
|
expect(videoNames).toContain(videoName)
|
|
})
|
|
|
|
it('Should go on video watch page', async () => {
|
|
let videoNameToExcept = videoName
|
|
|
|
if (await isMobileDevice() || await isSafari()) {
|
|
await browser.get('https://peertube2.cpy.re/w/122d093a-1ede-43bd-bd34-59d2931ffc5e')
|
|
videoNameToExcept = 'E2E tests'
|
|
} else {
|
|
await videoWatchPage.clickOnVideo(videoName)
|
|
}
|
|
|
|
return videoWatchPage.waitWatchVideoName(videoNameToExcept, await isMobileDevice(), await isSafari())
|
|
})
|
|
|
|
it('Should play the video', async () => {
|
|
videoWatchUrl = await browser.getCurrentUrl()
|
|
|
|
await playerPage.playAndPauseVideo(true)
|
|
expect(playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2)
|
|
})
|
|
|
|
it('Should watch the associated embed video', async () => {
|
|
const oldValue = await browser.waitForAngularEnabled()
|
|
await browser.waitForAngularEnabled(false)
|
|
|
|
await videoWatchPage.goOnAssociatedEmbed()
|
|
|
|
await playerPage.playAndPauseVideo(false)
|
|
expect(playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2)
|
|
|
|
await browser.waitForAngularEnabled(oldValue)
|
|
})
|
|
|
|
it('Should watch the p2p media loader embed video', async () => {
|
|
const oldValue = await browser.waitForAngularEnabled()
|
|
await browser.waitForAngularEnabled(false)
|
|
|
|
await videoWatchPage.goOnP2PMediaLoaderEmbed()
|
|
|
|
await playerPage.playAndPauseVideo(false)
|
|
expect(playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2)
|
|
|
|
await browser.waitForAngularEnabled(oldValue)
|
|
})
|
|
|
|
it('Should update the video', async () => {
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
await browser.get(videoWatchUrl)
|
|
|
|
await videoWatchPage.clickOnUpdate()
|
|
|
|
videoName += ' updated'
|
|
await videoUpdatePage.updateName(videoName)
|
|
|
|
await videoUpdatePage.validUpdate()
|
|
|
|
const name = await videoWatchPage.getVideoName()
|
|
expect(name).toEqual(videoName)
|
|
})
|
|
|
|
it('Should add the video in my playlist', async () => {
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
await videoWatchPage.clickOnSave()
|
|
|
|
await videoWatchPage.createPlaylist(playlistName)
|
|
|
|
await videoWatchPage.saveToPlaylist(playlistName)
|
|
await browser.sleep(5000)
|
|
|
|
await videoUploadPage.navigateTo()
|
|
|
|
await videoUploadPage.uploadVideo()
|
|
await videoUploadPage.validSecondUploadStep(video2Name)
|
|
|
|
await videoWatchPage.clickOnSave()
|
|
await videoWatchPage.saveToPlaylist(playlistName)
|
|
})
|
|
|
|
it('Should have the playlist in my account', async () => {
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
await myAccountPage.navigateToMyPlaylists()
|
|
|
|
const videosNumberText = await myAccountPage.getPlaylistVideosText(playlistName)
|
|
expect(videosNumberText).toEqual('2 videos')
|
|
|
|
await myAccountPage.clickOnPlaylist(playlistName)
|
|
|
|
const count = await myAccountPage.countTotalPlaylistElements()
|
|
expect(count).toEqual(2)
|
|
})
|
|
|
|
it('Should watch the playlist', async () => {
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
await myAccountPage.playPlaylist()
|
|
|
|
const oldValue = await browser.waitForAngularEnabled()
|
|
await browser.waitForAngularEnabled(false)
|
|
|
|
await videoWatchPage.waitUntilVideoName(video2Name, 20000 * 1000)
|
|
|
|
await browser.waitForAngularEnabled(oldValue)
|
|
})
|
|
|
|
it('Should watch the webtorrent playlist in the embed', async () => {
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
const accessToken = await browser.executeScript(`return window.localStorage.getItem('access_token');`)
|
|
const refreshToken = await browser.executeScript(`return window.localStorage.getItem('refresh_token');`)
|
|
|
|
const oldValue = await browser.waitForAngularEnabled()
|
|
await browser.waitForAngularEnabled(false)
|
|
|
|
await myAccountPage.goOnAssociatedPlaylistEmbed()
|
|
|
|
await playerPage.waitUntilPlayerWrapper()
|
|
|
|
console.log('Will set %s and %s tokens in local storage.', accessToken, refreshToken)
|
|
|
|
await browser.executeScript(`window.localStorage.setItem('access_token', '${accessToken}');`)
|
|
await browser.executeScript(`window.localStorage.setItem('refresh_token', '${refreshToken}');`)
|
|
await browser.executeScript(`window.localStorage.setItem('token_type', 'Bearer');`)
|
|
|
|
await browser.refresh()
|
|
|
|
await playerPage.playVideo()
|
|
|
|
await playerPage.waitUntilPlaylistInfo('2/2')
|
|
|
|
await browser.waitForAngularEnabled(oldValue)
|
|
})
|
|
|
|
it('Should watch the HLS playlist in the embed', async () => {
|
|
const oldValue = await browser.waitForAngularEnabled()
|
|
await browser.waitForAngularEnabled(false)
|
|
|
|
await videoWatchPage.goOnP2PMediaLoaderPlaylistEmbed()
|
|
|
|
await playerPage.playVideo()
|
|
|
|
await playerPage.waitUntilPlaylistInfo('2/2')
|
|
|
|
await browser.waitForAngularEnabled(oldValue)
|
|
})
|
|
|
|
it('Should delete the video 2', async () => {
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
// Go to the dev website
|
|
await browser.get(videoWatchUrl)
|
|
|
|
await myAccountPage.navigateToMyVideos()
|
|
|
|
await myAccountPage.removeVideo(video2Name)
|
|
await myAccountPage.validRemove()
|
|
|
|
const count = await myAccountPage.countVideos([ videoName, video2Name ])
|
|
expect(count).toEqual(1)
|
|
})
|
|
|
|
it('Should delete the first video', async () => {
|
|
if (await skipIfUploadNotSupported()) return
|
|
|
|
await myAccountPage.removeVideo(videoName)
|
|
await myAccountPage.validRemove()
|
|
})
|
|
})
|