@@ -27,7 +27,7 @@ This will also deploy the HAProxy Ingress Controller using config in `deploy/tes
2727kubectl apply -f ./config/echo-app.yaml
2828```
2929
30- Deploys [ http-echo ] ( https://github.com/Mo3m3n/ http-echo) as a test application.
30+ Deploys ` haproxytech/ http-echo` as a test application.
3131
3232``` bash
3333curl --header " Host: echo.haproxy.local" 127.0.0.1:30080
@@ -41,22 +41,22 @@ Response will include a couple of useful information:
4141### E2E tests
4242
4343``` bash
44- go test -v --tags=< tag_name> ./e2e/...
44+ go test -v --tags=< tag_name> ./e2e/...
4545```
4646
47- This will run all e2e tests in ` ./e2e ` directory tagged with ` <tag_name> ` .
47+ This will run all e2e tests in ` ./e2e ` directory tagged with ` <tag_name> ` .
4848There are two available tags:
49- - ** e2e_parallel** : which will run tests in parallel
49+ - ** e2e_parallel** : which will run tests in parallel
5050- ** e2e_sequential** : which will run tests in sequence
5151
5252Currently two tests are run sequentially:
5353- endpoints: in order to test endpoints scaling without reloading haproxy.
5454- tls-auth: tls authentication is a global config that will impact other tests running in parallel.
5555
56- Each E2E test runs in its ** own Namespace** and has its own directory.
57- Tests are deployed by applying yaml files or/and templates from the ` config ` directory of the corresponding test.
58- When using yaml templates, the generated yaml files are stored in a temporary directory in ` /tmp/ ` .
59- Using ` --dev ` option will keep generated files after test execution.
56+ Each E2E test runs in its ** own Namespace** and has its own directory.
57+ Tests are deployed by applying yaml files or/and templates from the ` config ` directory of the corresponding test.
58+ When using yaml templates, the generated yaml files are stored in a temporary directory in ` /tmp/ ` .
59+ Using ` --dev ` option will keep generated files after test execution.
6060Example:
6161``` bash
6262go test -v --tags=e2e_sequential --dev ./e2e/endpoints/
0 commit comments