]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/e2e/src/po/video-watch.po.ts
Add ability for admins to set default p2p policy
[github/Chocobozzz/PeerTube.git] / client / e2e / src / po / video-watch.po.ts
index b5df1cbc529a8709a694cdff2e690f42d5bce2c1..cecda3a8b941a1092d558294ccf10bda4952acc6 100644 (file)
-import { by, element, browser } from 'protractor'
+import { browserSleep, FIXTURE_URLS, go } from '../utils'
 
 export class VideoWatchPage {
-  async goOnRecentlyAdded () {
-    const url = '/videos/recently-added'
 
-    await browser.get(url)
-    return browser.wait(browser.ExpectedConditions.elementToBeClickable(element(this.getFirstVideoListSelector())))
-  }
+  constructor (private isMobileDevice: boolean, private isSafari: boolean) {
 
-  getVideosListName () {
-    return element.all(this.getFirstVideoListSelector()).getText()
   }
 
   waitWatchVideoName (videoName: string) {
-    const elem = element(by.css('.video-info .video-info-name'))
-    return browser.wait(browser.ExpectedConditions.textToBePresentInElement(elem, videoName))
+    if (this.isSafari) return browserSleep(5000)
+
+    // On mobile we display the first node, on desktop the second
+    const index = this.isMobileDevice ? 0 : 1
+
+    return browser.waitUntil(async () => {
+      return (await $$('.video-info .video-info-name')[index].getText()).includes(videoName)
+    })
   }
 
-  getWatchVideoPlayerCurrentTime () {
-    return element(by.css('.video-js .vjs-current-time-display'))
-      .getText()
-      .then((t: string) => t.split(':')[1])
-      .then(seconds => parseInt(seconds, 10))
+  getVideoName () {
+    return this.getVideoNameElement().then(e => e.getText())
   }
 
-  async pauseVideo (pauseAfterMs: number) {
-    await browser.wait(browser.ExpectedConditions.invisibilityOf(element(by.css('.vjs-loading-spinner'))))
+  getPrivacy () {
+    return $('.attribute-privacy .attribute-value').getText()
+  }
 
-    const el = element(by.css('div.video-js'))
-    await browser.wait(browser.ExpectedConditions.elementToBeClickable(el))
+  getLicence () {
+    return $('.attribute-licence .attribute-value').getText()
+  }
 
-    await browser.sleep(pauseAfterMs)
+  async isDownloadEnabled () {
+    await this.clickOnMoreDropdownIcon()
 
-    return el.click()
+    return $('.dropdown-item .icon-download').isExisting()
   }
 
-  async clickOnVideo (videoName: string) {
-    const video = element(by.css('.videos .video-miniature .video-thumbnail[title="' + videoName + '"]'))
+  areCommentsEnabled () {
+    return $('my-video-comment-add').isExisting()
+  }
+
+  isPrivacyWarningDisplayed () {
+    return $('my-privacy-concerns').isDisplayed()
+  }
+
+  async goOnAssociatedEmbed () {
+    let url = await browser.getUrl()
+    url = url.replace('/w/', '/videos/embed/')
+    url = url.replace(':3333', ':9001')
+
+    await go(url)
+    await $('.vjs-big-play-button').waitForDisplayed()
+  }
 
-    await video.click()
+  async isEmbedWarningDisplayed () {
+    const text = await $('.vjs-dock-description').getText()
 
-    await browser.wait(browser.ExpectedConditions.urlContains('/watch/'))
+    return !!text.trim()
   }
 
-  private getFirstVideoListSelector () {
-    return by.css('.videos .video-miniature-name')
+  goOnP2PMediaLoaderEmbed () {
+    return go(FIXTURE_URLS.HLS_EMBED)
+  }
+
+  goOnP2PMediaLoaderPlaylistEmbed () {
+    return go(FIXTURE_URLS.HLS_PLAYLIST_EMBED)
+  }
+
+  async clickOnUpdate () {
+    await this.clickOnMoreDropdownIcon()
+
+    const items = await $$('.dropdown-menu.show .dropdown-item')
+
+    for (const item of items) {
+      const href = await item.getAttribute('href')
+
+      if (href?.includes('/update/')) {
+        await item.click()
+        return
+      }
+    }
+  }
+
+  clickOnSave () {
+    return $('.action-button-save').click()
+  }
+
+  async createPlaylist (name: string) {
+    const newPlaylistButton = () => $('.new-playlist-button')
+
+    await newPlaylistButton().waitForClickable()
+    await newPlaylistButton().click()
+
+    const displayName = () => $('#displayName')
+
+    await displayName().waitForDisplayed()
+    await displayName().setValue(name)
+
+    return $('.new-playlist-block input[type=submit]').click()
+  }
+
+  async saveToPlaylist (name: string) {
+    const playlist = () => $('my-video-add-to-playlist').$(`.playlist=${name}`)
+
+    await playlist().waitForDisplayed()
+
+    return playlist().click()
+  }
+
+  waitUntilVideoName (name: string, maxTime: number) {
+    return browser.waitUntil(async () => {
+      return (await this.getVideoName()) === name
+    }, { timeout: maxTime })
+  }
+
+  async clickOnMoreDropdownIcon () {
+    const dropdown = $('my-video-actions-dropdown .action-button')
+    await dropdown.click()
+
+    await $('.dropdown-menu.show .dropdown-item').waitForDisplayed()
+  }
+
+  private async getVideoNameElement () {
+    // We have 2 video info name block, pick the first that is not empty
+    const elem = async () => {
+      const elems = await $$('.video-info-first-row .video-info-name').filter(e => e.isDisplayed())
+
+      return elems[0]
+    }
+
+    await browser.waitUntil(async () => {
+      const e = await elem()
+
+      return e?.isDisplayed()
+    })
+
+    return elem()
   }
 }