-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added tests for 'show details' when sha256.txt release already downlo…
…aded
- Loading branch information
Showing
3 changed files
with
220 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
...e2e/specs/022.already-downloaded-selfcustody-release-zip-sha256-click-back-button.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
const expectChai = require('chai').expect | ||
const expectWDIO = require('@wdio/globals').expect | ||
const { describe, it } = require('mocha') | ||
|
||
const App = require('../pageobjects/app.page') | ||
|
||
describe('KruxInstaller SelectVersion page (already downloaded release sha256.txt - show only)', () => { | ||
|
||
let instance: any; | ||
|
||
before(async function () { | ||
instance = new App() | ||
await instance.app.waitForExist() | ||
await instance.main.waitForExist() | ||
await instance.logo.waitForExist() | ||
await instance.logo.waitForExist({ reverse: true }) | ||
await instance.loadingDataMsg.waitForExist() | ||
await instance.verifyingOpensslMsg.waitForExist() | ||
if (process.platform === 'linux') { | ||
await instance.opensslForLinuxFound.waitForExist() | ||
} else if (process.platform === 'darwin') { | ||
await instance.opensslForDarwinFound.waitForExist() | ||
} else if (process.platform === 'win32') { | ||
await instance.opensslForWin32Found.waitForExist() | ||
} | ||
await instance.loadingDataMsg.waitForExist({ reverse: true }) | ||
await instance.verifyingOpensslMsg.waitForExist({ reverse: true }) | ||
await instance.opensslForLinuxFound.waitForExist({ reverse: true }) | ||
await instance.mainPage.waitForExist() | ||
await instance.mainSelectDeviceButton.waitForExist() | ||
await instance.mainSelectVersionButton.waitForExist() | ||
await instance.mainSelectVersionButton.click() | ||
await instance.mainPage.waitForExist({ reverse: true }) | ||
await instance.githubOctocatCheckerLogo.waitForExist({ timeout: 3000 }) | ||
await instance.selectVersionPage.waitForExist() | ||
await instance.selectVersionSelfcustodyButton.waitForExist() | ||
await instance.selectVersionSelfcustodyText.waitForExist() | ||
await instance.selectVersionOdudexButton.waitForExist() | ||
await instance.selectVersionOdudexText.waitForExist() | ||
await instance.selectVersionSelfcustodyButton.click() | ||
await instance.selectVersionPage.waitForExist({ reverse: true }) | ||
await instance.checkingReleaseZipMsg.waitForExist() | ||
await instance.foundReleaseZipMsg.waitForExist() | ||
await instance.warningDownloadPage.waitForExist() | ||
await instance.warningAlreadyDownloadedText.waitForExist() | ||
await instance.warningDownloadProceedButton.waitForExist() | ||
await instance.warningDownloadProceedButtonText.waitForExist() | ||
await instance.warningDownloadAgainButton.waitForExist() | ||
await instance.warningDownloadAgainButtonText.waitForExist() | ||
await instance.warningDownloadShowDetailsButton.waitForExist() | ||
await instance.warningDownloadShowDetailsButtonText.waitForExist() | ||
await instance.warningDownloadBackButton.waitForExist() | ||
await instance.warningDownloadBackButtonText.waitForExist() | ||
await instance.warningDownloadProceedButton.click() | ||
await instance.warningDownloadPage.waitForExist({ reverse: true }) | ||
await instance.checkingReleaseZipSha256txtMsg.waitForExist() | ||
await instance.foundReleaseZipSha256txtMsg.waitForExist() | ||
await instance.warningDownloadPage.waitForExist() | ||
await instance.warningDownloadBackButton.waitForExist() | ||
}) | ||
|
||
it ('should click \'Back\' button and go out from WarningDownload page', async () => { | ||
await instance.warningDownloadBackButton.click() | ||
await instance.warningDownloadPage.waitForExist({ reverse: true }) | ||
await expectWDIO(instance.warningDownloadPage).not.toBeDisplayed() | ||
}) | ||
|
||
it('should Main Page be displayed', async () => { | ||
await instance.mainPage.waitForExist() | ||
await expectWDIO(instance.mainPage).toBeDisplayed() | ||
}) | ||
|
||
it('should \'Select version\' button changed to \'Version: selfcustody/krux/releases/tag/v22.08.2\'', async () => { | ||
await instance.mainSelectVersionText.waitForExist() | ||
await expectWDIO(instance.mainSelectVersionText).toBeDisplayed() | ||
await expectWDIO(instance.mainSelectVersionText).toHaveText('Version: selfcustody/krux/releases/tag/v22.08.2') | ||
}) | ||
|
||
}) |
140 changes: 140 additions & 0 deletions
140
...s/023.already-downloaded-selfcustody-release-zip-sha256-click-show-details-button.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
const expectChai = require('chai').expect | ||
const expectWDIO = require('@wdio/globals').expect | ||
const { join } = require('path') | ||
const { homedir } = require('os') | ||
const { osLangSync } = require('os-lang') | ||
const { describe, it } = require('mocha') | ||
|
||
const App = require('../pageobjects/app.page') | ||
|
||
describe('KruxInstaller SelectVersion page (already downloaded release sha256.txt - click show details button)', () => { | ||
|
||
let instance: any; | ||
|
||
before(async function () { | ||
instance = new App() | ||
await instance.app.waitForExist() | ||
await instance.main.waitForExist() | ||
await instance.logo.waitForExist() | ||
await instance.logo.waitForExist({ reverse: true }) | ||
await instance.loadingDataMsg.waitForExist() | ||
await instance.verifyingOpensslMsg.waitForExist() | ||
if (process.platform === 'linux') { | ||
await instance.opensslForLinuxFound.waitForExist() | ||
} else if (process.platform === 'darwin') { | ||
await instance.opensslForDarwinFound.waitForExist() | ||
} else if (process.platform === 'win32') { | ||
await instance.opensslForWin32Found.waitForExist() | ||
} | ||
await instance.loadingDataMsg.waitForExist({ reverse: true }) | ||
await instance.verifyingOpensslMsg.waitForExist({ reverse: true }) | ||
await instance.opensslForLinuxFound.waitForExist({ reverse: true }) | ||
await instance.mainPage.waitForExist() | ||
await instance.mainSelectDeviceButton.waitForExist() | ||
await instance.mainSelectVersionButton.waitForExist() | ||
await instance.mainSelectVersionButton.click() | ||
await instance.mainPage.waitForExist({ reverse: true }) | ||
await instance.githubOctocatCheckerLogo.waitForExist({ timeout: 3000 }) | ||
await instance.selectVersionPage.waitForExist() | ||
await instance.selectVersionSelfcustodyButton.waitForExist() | ||
await instance.selectVersionSelfcustodyText.waitForExist() | ||
await instance.selectVersionOdudexButton.waitForExist() | ||
await instance.selectVersionOdudexText.waitForExist() | ||
await instance.selectVersionSelfcustodyButton.click() | ||
await instance.selectVersionPage.waitForExist({ reverse: true }) | ||
await instance.checkingReleaseZipMsg.waitForExist() | ||
await instance.foundReleaseZipMsg.waitForExist() | ||
await instance.warningDownloadPage.waitForExist() | ||
await instance.warningAlreadyDownloadedText.waitForExist() | ||
await instance.warningDownloadProceedButton.waitForExist() | ||
await instance.warningDownloadProceedButtonText.waitForExist() | ||
await instance.warningDownloadAgainButton.waitForExist() | ||
await instance.warningDownloadAgainButtonText.waitForExist() | ||
await instance.warningDownloadShowDetailsButton.waitForExist() | ||
await instance.warningDownloadShowDetailsButtonText.waitForExist() | ||
await instance.warningDownloadBackButton.waitForExist() | ||
await instance.warningDownloadBackButtonText.waitForExist() | ||
await instance.warningDownloadProceedButton.click() | ||
await instance.warningDownloadPage.waitForExist({ reverse: true }) | ||
await instance.checkingReleaseZipSha256txtMsg.waitForExist() | ||
await instance.foundReleaseZipSha256txtMsg.waitForExist() | ||
await instance.warningDownloadPage.waitForExist() | ||
await instance.warningDownloadShowDetailsButton.waitForExist() | ||
}) | ||
|
||
it ('should overlay not be shown', async () => { | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlay).not.toBeDisplayed() | ||
}) | ||
|
||
it ('should click \'Show details\' button and overlay must be visible', async () => { | ||
await instance.warningDownloadShowDetailsButton.click() | ||
await instance.warningAlreadyDownloadedOverlay.waitForExist() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlay).toBeDisplayed() | ||
}) | ||
|
||
it('should overlay title be \'Resource details\'', async () => { | ||
await instance.warningAlreadyDownloadedOverlayTitle.waitForExist() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayTitle).toBeDisplayed() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayTitle).toHaveText('Resource details') | ||
}) | ||
|
||
it ('should overlay subtitle be \'v22.08.2/krux-v22.08.2.zip.sha256.txt\'', async () => { | ||
await instance.warningAlreadyDownloadedOverlayTitle.waitForExist() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlaySubtitle).toBeDisplayed() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlaySubtitle).toHaveText('v22.08.2/krux-v22.08.2.zip.sha256.txt') | ||
}) | ||
|
||
it ('should a overlay text have \'Remote: https://github.com/selfcustody/krux/releases/download/v22.08.2/krux-v22.08.2.zip.sha256.txt\'', async () => { | ||
await instance.warningAlreadyDownloadedOverlayTextRemote.waitForExist() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayTextRemote).toBeDisplayed() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayTextRemote).toHaveText('Remote:\nhttps://github.com/selfcustody/krux/releases/download/v22.08.2/krux-v22.08.2.zip.sha256.txt') | ||
}) | ||
|
||
it ('should a overlay text have properly local resource', async () => { | ||
await instance.warningAlreadyDownloadedOverlayTextLocal.waitForExist() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayTextLocal).toBeDisplayed() | ||
|
||
let resources = '' | ||
if (process.env.CI && process.env.GITHUB_ACTION) { | ||
if (process.platform === 'linux') { | ||
resources = '/home/runner/krux-installer' | ||
} else if (process.platform === 'win32') { | ||
resources = 'C:\\Users\\runneradmin\\Documents\\krux-installer' | ||
} else if (process.platform === 'darwin') { | ||
resources = '/Users/runner/Documents/krux-installer' | ||
} | ||
} else { | ||
const lang = osLangSync() | ||
const home = homedir() | ||
if ( lang.match(/en-*/g)) { | ||
resources = join(home, 'Documents', 'krux-installer') | ||
} else if ( lang.match(/pt-*/g)) { | ||
resources = join(home, 'Documentos', 'krux-installer') | ||
} else { | ||
throw new Error(`${lang} not implemented. Please implement it with correct \'Documents\' folder name`) | ||
} | ||
} | ||
|
||
const resource = join(resources, 'v22.08.2', 'krux-v22.08.2.zip.sha256.txt') | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayTextLocal).toHaveText(`Local:\n${resource}`) | ||
}) | ||
|
||
it('should a overlay text have the properly description', async () => { | ||
await instance.warningAlreadyDownloadedOverlayTextWhatdo.waitForExist() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayTextWhatdo).toBeDisplayed() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayTextWhatdo).toHaveText('Description:\nThis file proves the integrity of previous file. It uses the sha256 algorithm to check if zip file has not be changed during download.') | ||
}) | ||
|
||
it('should \'close\' have \'Close\' text',async () => { | ||
await instance.warningAlreadyDownloadedOverlayButtonClose.waitForExist() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayButtonClose).toBeDisplayed() | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlayButtonClose).toHaveText('Close') | ||
}) | ||
|
||
it('should \'close\' button make overlay not visible', async () => { | ||
await instance.warningAlreadyDownloadedOverlayButtonClose.click() | ||
await instance.warningAlreadyDownloadedOverlay.waitForExist({ reverse: true }) | ||
await expectWDIO(instance.warningAlreadyDownloadedOverlay).not.toBeDisplayed() | ||
}) | ||
|
||
}) |