ci(e2e): firefox (#4310)

fix: remove unnecessary cypress get

Co-authored-by: Elio Bischof <eliobischof@gmail.com>
This commit is contained in:
Max Peintner 2022-09-06 11:36:37 +02:00 committed by GitHub
parent 4723e911f4
commit 3a643d87b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,42 +1,50 @@
import { Apps, ensureProjectExists, ensureProjectResourceDoesntExist } from "../../support/api/projects"; import {
Apps,
ensureProjectExists,
ensureProjectResourceDoesntExist,
} from "../../support/api/projects";
import { apiAuth } from "../../support/api/apiauth"; import { apiAuth } from "../../support/api/apiauth";
describe('applications', () => { describe("applications", () => {
const testProjectName = "e2eprojectapplication";
const testProjectName = 'e2eprojectapplication' const testAppName = "e2eappundertest";
const testAppName = 'e2eappundertest'
beforeEach(`ensure it doesn't exist already`, () => { beforeEach(`ensure it doesn't exist already`, () => {
apiAuth().then(api => { apiAuth().then((api) => {
ensureProjectExists(api, testProjectName).then(projectID => { ensureProjectExists(api, testProjectName).then((projectID) => {
ensureProjectResourceDoesntExist(api, projectID, Apps, testAppName).then(() => { ensureProjectResourceDoesntExist(
cy.visit(`/projects/${projectID}`) api,
}) projectID,
}) Apps,
}) testAppName
}) ).then(() => {
cy.visit(`/projects/${projectID}`);
});
});
});
});
it('add app', () => { it("add app", () => {
cy.get('mat-spinner') cy.get('[data-e2e="app-card-add"]').should("be.visible").click();
cy.get('mat-spinner').should('not.exist')
cy.get('[data-e2e="app-card-add"]').should('be.visible').click()
// select webapp // select webapp
cy.get('[formcontrolname="name"]').type(testAppName) cy.get('[formcontrolname="name"]').type(testAppName);
cy.get('[for="WEB"]').click() cy.get('[for="WEB"]').click();
cy.get('[data-e2e="continue-button-nameandtype"]').click() cy.get('[data-e2e="continue-button-nameandtype"]').click();
//select authentication //select authentication
cy.get('[for="PKCE"]').click() cy.get('[for="PKCE"]').click();
cy.get('[data-e2e="continue-button-authmethod"]').click() cy.get('[data-e2e="continue-button-authmethod"]').click();
//enter URL //enter URL
cy.get('cnsl-redirect-uris').eq(0).type("https://testurl.org") cy.get("cnsl-redirect-uris").eq(0).type("https://testurl.org");
cy.get('cnsl-redirect-uris').eq(1).type("https://testlogouturl.org") cy.get("cnsl-redirect-uris").eq(1).type("https://testlogouturl.org");
cy.get('[data-e2e="continue-button-redirecturis"]').click() cy.get('[data-e2e="continue-button-redirecturis"]').click();
cy.get('[data-e2e="create-button"]').click().then(() => { cy.get('[data-e2e="create-button"]')
cy.get('[id*=overlay]').should('exist') .click()
}) .then(() => {
cy.get('.data-e2e-success') cy.get("[id*=overlay]").should("exist");
cy.wait(200) });
cy.get('.data-e2e-failure', { timeout: 0 }).should('not.exist') cy.get(".data-e2e-success");
cy.wait(200);
cy.get(".data-e2e-failure", { timeout: 0 }).should("not.exist");
//TODO: check client ID/Secret //TODO: check client ID/Secret
}) });
}) });