ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

235 lines
6.8 KiB

  1. import { LoginPage } from '../po/login.po'
  2. import { MyAccountPage } from '../po/my-account.po'
  3. import { PlayerPage } from '../po/player.po'
  4. import { VideoListPage } from '../po/video-list.po'
  5. import { VideoUpdatePage } from '../po/video-update.po'
  6. import { VideoUploadPage } from '../po/video-upload.po'
  7. import { VideoWatchPage } from '../po/video-watch.po'
  8. import { FIXTURE_URLS, go, isIOS, isMobileDevice, isSafari, waitServerUp } from '../utils'
  9. function isUploadUnsupported () {
  10. if (isMobileDevice() || isSafari()) {
  11. console.log('Skipping because we are on a real device or Safari and BrowserStack does not support file upload.')
  12. return true
  13. }
  14. return false
  15. }
  16. describe('Videos all workflow', () => {
  17. let videoWatchPage: VideoWatchPage
  18. let videoListPage: VideoListPage
  19. let videoUploadPage: VideoUploadPage
  20. let videoUpdatePage: VideoUpdatePage
  21. let myAccountPage: MyAccountPage
  22. let loginPage: LoginPage
  23. let playerPage: PlayerPage
  24. let videoName = Math.random() + ' video'
  25. const video2Name = Math.random() + ' second video'
  26. const playlistName = Math.random() + ' playlist'
  27. let videoWatchUrl: string
  28. before(async () => {
  29. if (isIOS()) {
  30. console.log('iOS detected')
  31. } else if (isMobileDevice()) {
  32. console.log('Android detected.')
  33. } else if (isSafari()) {
  34. console.log('Safari detected.')
  35. }
  36. if (isUploadUnsupported()) return
  37. await waitServerUp()
  38. })
  39. beforeEach(async () => {
  40. videoWatchPage = new VideoWatchPage(isMobileDevice(), isSafari())
  41. videoUploadPage = new VideoUploadPage()
  42. videoUpdatePage = new VideoUpdatePage()
  43. myAccountPage = new MyAccountPage()
  44. loginPage = new LoginPage(isMobileDevice())
  45. playerPage = new PlayerPage()
  46. videoListPage = new VideoListPage(isMobileDevice(), isSafari())
  47. if (!isMobileDevice()) {
  48. await browser.maximizeWindow()
  49. }
  50. })
  51. it('Should log in', async () => {
  52. if (isMobileDevice() || isSafari()) {
  53. console.log('Skipping because we are on a real device or Safari and BrowserStack does not support file upload.')
  54. return
  55. }
  56. return loginPage.loginAsRootUser()
  57. })
  58. it('Should upload a video', async () => {
  59. if (isUploadUnsupported()) return
  60. await videoUploadPage.navigateTo()
  61. await videoUploadPage.uploadVideo('video.mp4')
  62. return videoUploadPage.validSecondUploadStep(videoName)
  63. })
  64. it('Should list videos', async () => {
  65. await videoListPage.goOnVideosList()
  66. if (isUploadUnsupported()) return
  67. const videoNames = await videoListPage.getVideosListName()
  68. expect(videoNames).toContain(videoName)
  69. })
  70. it('Should go on video watch page', async () => {
  71. let videoNameToExcept = videoName
  72. if (isMobileDevice() || isSafari()) {
  73. await go(FIXTURE_URLS.WEB_VIDEO)
  74. videoNameToExcept = 'E2E tests'
  75. } else {
  76. await videoListPage.clickOnVideo(videoName)
  77. }
  78. return videoWatchPage.waitWatchVideoName(videoNameToExcept)
  79. })
  80. it('Should play the video', async () => {
  81. videoWatchUrl = await browser.getUrl()
  82. await playerPage.playAndPauseVideo(true, 2)
  83. expect(await playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2)
  84. })
  85. it('Should watch the associated embed video', async () => {
  86. await videoWatchPage.goOnAssociatedEmbed()
  87. await playerPage.playAndPauseVideo(false, 2)
  88. expect(await playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2)
  89. })
  90. it('Should watch the p2p media loader embed video', async () => {
  91. await videoWatchPage.goOnP2PMediaLoaderEmbed()
  92. await playerPage.playAndPauseVideo(false, 2)
  93. expect(await playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2)
  94. })
  95. it('Should update the video', async () => {
  96. if (isUploadUnsupported()) return
  97. await go(videoWatchUrl)
  98. await videoWatchPage.clickOnUpdate()
  99. videoName += ' updated'
  100. await videoUpdatePage.updateName(videoName)
  101. await videoUpdatePage.validUpdate()
  102. const name = await videoWatchPage.getVideoName()
  103. expect(name).toEqual(videoName)
  104. })
  105. it('Should add the video in my playlist', async () => {
  106. if (isUploadUnsupported()) return
  107. await videoWatchPage.clickOnSave()
  108. await videoWatchPage.createPlaylist(playlistName)
  109. await videoWatchPage.saveToPlaylist(playlistName)
  110. await browser.pause(5000)
  111. await videoUploadPage.navigateTo()
  112. await videoUploadPage.uploadVideo('video2.mp4')
  113. await videoUploadPage.validSecondUploadStep(video2Name)
  114. await videoWatchPage.clickOnSave()
  115. await videoWatchPage.saveToPlaylist(playlistName)
  116. })
  117. it('Should have the playlist in my account', async () => {
  118. if (isUploadUnsupported()) return
  119. await myAccountPage.navigateToMyPlaylists()
  120. const videosNumberText = await myAccountPage.getPlaylistVideosText(playlistName)
  121. expect(videosNumberText).toEqual('2 videos')
  122. await myAccountPage.clickOnPlaylist(playlistName)
  123. const count = await myAccountPage.countTotalPlaylistElements()
  124. expect(count).toEqual(2)
  125. })
  126. it('Should watch the playlist', async () => {
  127. if (isUploadUnsupported()) return
  128. await myAccountPage.playPlaylist()
  129. await videoWatchPage.waitUntilVideoName(video2Name, 40 * 1000)
  130. })
  131. it('Should watch the Web Video playlist in the embed', async () => {
  132. if (isUploadUnsupported()) return
  133. const accessToken = await browser.execute(`return window.localStorage.getItem('access_token');`)
  134. const refreshToken = await browser.execute(`return window.localStorage.getItem('refresh_token');`)
  135. await myAccountPage.goOnAssociatedPlaylistEmbed()
  136. await playerPage.waitUntilPlayerWrapper()
  137. console.log('Will set %s and %s tokens in local storage.', accessToken, refreshToken)
  138. await browser.execute(`window.localStorage.setItem('access_token', '${accessToken}');`)
  139. await browser.execute(`window.localStorage.setItem('refresh_token', '${refreshToken}');`)
  140. await browser.execute(`window.localStorage.setItem('token_type', 'Bearer');`)
  141. await browser.refresh()
  142. await playerPage.playVideo()
  143. await playerPage.waitUntilPlaylistInfo('2/2', 30 * 1000)
  144. })
  145. it('Should watch the HLS playlist in the embed', async () => {
  146. await videoWatchPage.goOnP2PMediaLoaderPlaylistEmbed()
  147. await playerPage.playVideo()
  148. await playerPage.waitUntilPlaylistInfo('2/2', 30 * 1000)
  149. })
  150. it('Should delete the video 2', async () => {
  151. if (isUploadUnsupported()) return
  152. // Go to the dev website
  153. await go(videoWatchUrl)
  154. await myAccountPage.navigateToMyVideos()
  155. await myAccountPage.removeVideo(video2Name)
  156. await myAccountPage.validRemove()
  157. await browser.waitUntil(async () => {
  158. const count = await myAccountPage.countVideos([ videoName, video2Name ])
  159. return count === 1
  160. })
  161. })
  162. it('Should delete the first video', async () => {
  163. if (isUploadUnsupported()) return
  164. await myAccountPage.removeVideo(videoName)
  165. await myAccountPage.validRemove()
  166. })
  167. })