open-nomad/e2e
Mahmood Ali 919827f2df
Merge pull request #5632 from hashicorp/f-nomad-exec-parts-01-base
nomad exec part 1: plumbing and docker driver
2019-05-09 18:09:27 -04:00
..
affinities e2e: add tests for nomad driver upgrade path 2019-01-17 23:32:45 -05:00
allocstats Remove unnecessary step in getting node client 2019-04-01 10:45:41 -05:00
cli fix panic 2018-09-18 13:02:03 -07:00
clientstate test: properly skip client state in beforeall 2019-03-22 06:42:04 -07:00
consul Moved in place upgrade canary test over to new e2e framework 2019-01-27 20:15:35 -06:00
consultemplate Fix double restart counting for templates 2019-01-25 15:38:13 -08:00
e2eutil e2e: add NomadAgent and basic client state test 2019-03-21 07:14:34 -07:00
example e2e/cli: fix formatting 2018-07-31 13:52:25 -04:00
execagent e2e: add NomadAgent and basic client state test 2019-03-21 07:14:34 -07:00
fabio prometheus and fabio for metrics 2019-03-11 09:21:04 -05:00
framework remove stray println 2019-03-21 09:23:37 -05:00
metrics docs: update s3 urls to use virtual bucket style 2019-05-06 10:39:51 -04:00
migrations remove unnecessary test output print 2017-11-01 15:21:05 -05:00
nomad09upgrade e2e: add NomadAgent and basic client state test 2019-03-21 07:14:34 -07:00
nomadexec add e2e tests for nomad exec 2019-05-09 16:49:08 -04:00
prometheus prometheus and fabio for metrics 2019-03-11 09:21:04 -05:00
rescheduling Add more end to end tests for progress deadline and fix flaky test 2018-06-05 17:25:28 -05:00
spread e2e: add tests for nomad driver upgrade path 2019-01-17 23:32:45 -05:00
taskevents e2e: add tests for nomad driver upgrade path 2019-01-17 23:32:45 -05:00
terraform Merge pull request #5647 from hashicorp/e2e-tf 2019-05-06 15:42:52 -07:00
upgrades scripts for upgrade testing 2019-04-04 22:31:57 -05:00
vault vault e2e: pass vault version into setup instead of having to infer it from test name 2019-04-10 10:34:10 -05:00
README.md Update README.md 2019-01-03 16:15:59 -06:00
e2e.go e2e: skip e2e tests during normal go test runs 2018-07-31 12:42:36 -04:00
e2e_test.go add e2e tests for nomad exec 2019-05-09 16:49:08 -04:00

README.md

End to End Tests

This package contains integration tests.

The terraform folder has provisioning code to spin up a Nomad cluster on AWS. The tests work with the NOMAD_ADDR environment variable which can be set either to a local dev Nomad agent or a Nomad client on AWS.

Local Development

The workflow when developing end to end tests locally is to run the provisioning step described below once, and then run the tests as described below.

Provisioning

You'll need AWS credentials (AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY) to create the Nomad cluster. See the README for details. The number of servers and clients is configurable, as is the configuration file for each client and server.

Running

After completing the provisioning step above, you should see CLI output showing the IP addresses of Nomad client machines. To run the tests, set the NOMAD_ADDR variable to one of the client IPs.

$ NOMAD_ADDR=<> $NOMAD_E2E=1 go test -v