aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/src/suites-local/plugins.e2e-spec.ts
blob: 14802c1ca286eef2a7a24e353276fbb5d0817058 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { AdminPluginPage } from '../po/admin-plugin.po'
import { LoginPage } from '../po/login.po'
import { VideoUploadPage } from '../po/video-upload.po'
import { browserSleep, getCheckbox, waitServerUp } from '../utils'

describe('Plugins', () => {
  let videoUploadPage: VideoUploadPage
  let loginPage: LoginPage
  let adminPluginPage: AdminPluginPage

  function getPluginCheckbox () {
    return getCheckbox('hello-world-field-4')
  }

  async function expectSubmitState ({ disabled }: { disabled: boolean }) {
    const disabledSubmit = await $('my-button .disabled')

    if (disabled) expect(await disabledSubmit.isDisplayed()).toBeTruthy()
    else expect(await disabledSubmit.isDisplayed()).toBeFalsy()
  }

  before(async () => {
    await waitServerUp()
  })

  beforeEach(async () => {
    loginPage = new LoginPage()
    videoUploadPage = new VideoUploadPage()
    adminPluginPage = new AdminPluginPage()

    await browser.maximizeWindow()
  })

  it('Should install hello world plugin', async () => {
    await loginPage.loginAsRootUser()

    await adminPluginPage.navigateToSearch()
    await adminPluginPage.search('hello-world')
    await adminPluginPage.installHelloWorld()
    await browser.refresh()
  })

  it('Should have checkbox in video edit page', async () => {
    await videoUploadPage.navigateTo()
    await videoUploadPage.uploadVideo()

    await $('span=Super field 4 in main tab').waitForDisplayed()

    const checkbox = await getPluginCheckbox()
    expect(await checkbox.isDisplayed()).toBeTruthy()

    await expectSubmitState({ disabled: true })
  })

  it('Should check the checkbox and be able to submit the video', async function () {
    const checkbox = await getPluginCheckbox()
    await checkbox.click()

    await expectSubmitState({ disabled: false })
  })

  it('Should uncheck the checkbox and not be able to submit the video', async function () {
    const checkbox = await getPluginCheckbox()
    await checkbox.click()

    await browserSleep(5000)

    await expectSubmitState({ disabled: true })

    const error = await $('.form-error*=Should be enabled')
    expect(await error.isDisplayed()).toBeTruthy()
  })

  it('Should change the privacy and should hide the checkbox', async function () {
    await videoUploadPage.setAsPrivate()

    await expectSubmitState({ disabled: false })
  })
})