From 59fe98324dd8b080c93cf55fb687529b6747d906 Mon Sep 17 00:00:00 2001 From: baloola <baloola-mu@hotmail.com> Date: Wed, 6 Apr 2022 16:20:29 +0200 Subject: [PATCH] initial test addetion --- testing/cypress.json | 3 +++ testing/integration/client-spec.ts | 29 +++++++++++++++++++++++++++++ testing/run_integration_test.sh | 2 ++ testing/tsconfig.json | 9 +++++++++ 4 files changed, 43 insertions(+) create mode 100644 testing/cypress.json create mode 100644 testing/integration/client-spec.ts create mode 100644 testing/tsconfig.json diff --git a/testing/cypress.json b/testing/cypress.json new file mode 100644 index 0000000..e18754f --- /dev/null +++ b/testing/cypress.json @@ -0,0 +1,3 @@ +{ + "baseUrl": "http://localhost:80" +} diff --git a/testing/integration/client-spec.ts b/testing/integration/client-spec.ts new file mode 100644 index 0000000..e0691e7 --- /dev/null +++ b/testing/integration/client-spec.ts @@ -0,0 +1,29 @@ +const loadingText = "Select a parcel to load data"; +const appSel ="div#app"; +const parcelChartSel ="canvas#parcelChart"; +const mapSel = ".ol-layer > canvas"; + + +describe('VS App', () => { + + beforeEach(() => { + cy.visit('/'); + // This is necessary because we want to click a canvas element + // and cypress has no idea when it has been loaded. + cy.wait(3000); + }); + + it('Testing zoom button', () => { + // cy.get(appSel).debug() + cy.get('.anno-content > :nth-child(1)').should("contain", "Welcome to the Catalog Client"); + cy.get('.anno-btn-low-importance').click(); + // cy.get('.ol-zoom-in') + // cy.get('.ol-zoom-in').click() + }); + it('Testing header', () => { + cy.get('#header > h3').should("contain" , "PRISM View Server") + }); + + +}) + diff --git a/testing/run_integration_test.sh b/testing/run_integration_test.sh index e360d10..d202a27 100755 --- a/testing/run_integration_test.sh +++ b/testing/run_integration_test.sh @@ -51,6 +51,8 @@ sleep 80 # run ingestor kubectl exec deployment/my-helm-release-ingestor -- ls /var/ingestor/success > success_list.csv kubectl exec deployment/my-helm-release-ingestor -- ls /var/ingestor/fail > failure_list.csv +# client testing +docker run --name cypress --network host -v ${PWD}:/mnt/ --rm -t --user 1000:1000 cypress/browsers:node16.14.0-slim-chrome99-ff97 bash -c "cd /mnt && npm ci && npm run e2e" # fetch logs for ingestor tests kubectl logs $(kubectl get po -l app.kubernetes.io/name=ingestor -o name | cut -d'/' -f2) > ingestor_log.txt # sleep 10 # not sure why we wait here? diff --git a/testing/tsconfig.json b/testing/tsconfig.json new file mode 100644 index 0000000..a599a71 --- /dev/null +++ b/testing/tsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["es5", "dom"], + "types": ["cypress"] + }, + "include": ["**/*.ts"] + } + \ No newline at end of file -- GitLab