Skip to content

Commit 4909d07

Browse files
committed
Infrastructure: Added E2E testing with Cypress.
1 parent 37be01e commit 4909d07

File tree

8 files changed

+115
-0
lines changed

8 files changed

+115
-0
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ The all-in-one DataHack management platform, from registration to communications
1818
3. Wait for backups to be pulled from AWS automatically
1919
4. Populate the database by running `./scripts/backup restore lastest`
2020

21+
## Testing
22+
23+
To test the project we use [Cypress](https://www.cypress.io/) running through docker and X11 rendering server.
24+
25+
- In order to run the tests through CLI run `./scripts test cli`
26+
- If you want to run the tests interactively you should run `./scripts test gui`
27+
28+
> *Note:* On macOS and Windows, and X11 server will be required, [XQuartz](https://www.xquartz.org/) is the standard X11 server for macOS and you will need to tick the [Allow connections from network clients](https://blogs.oracle.com/oraclewebcentersuite/running-gui-applications-on-native-docker-containers-for-mac) and restart Quartz.
29+
2130
## Contributing
2231

2332
Please read [CONTRIBUTING](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.

cypress.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

cypress/fixtures/example.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "Using fixtures to represent data",
3+
"email": "[email protected]",
4+
"body": "Fixtures are a great way to mock data for responses to routes"
5+
}

cypress/integration/sample_spec.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
describe('Sample test', function() {
2+
it('Does not do much!', function() {
3+
expect(true).to.equal(true)
4+
})
5+
})

cypress/plugins/index.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// ***********************************************************
2+
// This example plugins/index.js can be used to load plugins
3+
//
4+
// You can change the location of this file or turn off loading
5+
// the plugins file with the 'pluginsFile' configuration option.
6+
//
7+
// You can read more here:
8+
// https://on.cypress.io/plugins-guide
9+
// ***********************************************************
10+
11+
// This function is called when a project is opened or re-opened (e.g. due to
12+
// the project's config changing)
13+
14+
module.exports = (on, config) => {
15+
// `on` is used to hook into various events Cypress emits
16+
// `config` is the resolved Cypress config
17+
}

cypress/support/commands.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// ***********************************************
2+
// This example commands.js shows you how to
3+
// create various custom commands and overwrite
4+
// existing commands.
5+
//
6+
// For more comprehensive examples of custom
7+
// commands please read more here:
8+
// https://on.cypress.io/custom-commands
9+
// ***********************************************
10+
//
11+
//
12+
// -- This is a parent command --
13+
// Cypress.Commands.add("login", (email, password) => { ... })
14+
//
15+
//
16+
// -- This is a child command --
17+
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
18+
//
19+
//
20+
// -- This is a dual command --
21+
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
22+
//
23+
//
24+
// -- This is will overwrite an existing command --
25+
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })

cypress/support/index.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// ***********************************************************
2+
// This example support/index.js is processed and
3+
// loaded automatically before your test files.
4+
//
5+
// This is a great place to put global configuration and
6+
// behavior that modifies Cypress.
7+
//
8+
// You can change the location of this file or turn off
9+
// automatically serving support files with the
10+
// 'supportFile' configuration option.
11+
//
12+
// You can read more here:
13+
// https://on.cypress.io/configuration
14+
// ***********************************************************
15+
16+
// Import commands.js using ES2015 syntax:
17+
import './commands'
18+
19+
// Alternatively you can use CommonJS syntax:
20+
// require('./commands')

scripts/test

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#!/usr/bin/env bash
2+
3+
SCRIPTS_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
4+
ROOT_DIRECTORY=${SCRIPTS_DIR}/..
5+
6+
function test_in_cli() {
7+
docker run -it -v "$ROOT_DIRECTORY:/e2e" -e CYPRESS_VIDEO=false -w /e2e cypress/included:3.2.0
8+
}
9+
10+
function test_in_gui() {
11+
if hash xhost 2>/dev/null; then
12+
xhost + 127.0.0.1
13+
docker run --rm -it -v "$ROOT_DIRECTORY:/e2e" -w /e2e \
14+
-e DISPLAY=host.docker.internal:0 -e CYPRESS_VIDEO=false \
15+
--entrypoint cypress cypress/included:3.2.0 open --project .
16+
else
17+
echo "Oh no! You need to install Quartz X11 for GUI binding :("
18+
fi
19+
}
20+
21+
case "$1" in
22+
cli)
23+
test_in_cli
24+
;;
25+
26+
gui)
27+
test_in_gui
28+
;;
29+
*)
30+
echo $"Usage: ${0##*/} {cli | gui}"
31+
exit 1
32+
;;
33+
esac

0 commit comments

Comments
 (0)