diff options
author | Clement Delafargue <clement.delafargue@fretlink.com> | 2020-06-30 09:33:18 +0200 |
---|---|---|
committer | Clement Delafargue <clement.delafargue@fretlink.com> | 2020-06-30 16:26:19 +0200 |
commit | 75a2a2fbcc31766e2debab1c8bd5cdce42f14fb7 (patch) | |
tree | 969db0f1818a878a21b921d31eff555d7c9d4a5a /tests | |
parent | 783f91c2e0228ef9e057b810b4b60c4f669ebab4 (diff) | |
download | ansible-clever-75a2a2fbcc31766e2debab1c8bd5cdce42f14fb7.tar.gz ansible-clever-75a2a2fbcc31766e2debab1c8bd5cdce42f14fb7.tar.zst ansible-clever-75a2a2fbcc31766e2debab1c8bd5cdce42f14fb7.zip |
add a test for `noop-if-up-to-date`
It makes sure `clever deploy` is _not_ called if the application
is up-to-date on clever cloud
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-all.yml | 1 | ||||
-rw-r--r-- | tests/test-noop-deploy.yml | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/tests/test-all.yml b/tests/test-all.yml index 64eb239..145b16d 100644 --- a/tests/test-all.yml +++ b/tests/test-all.yml | |||
@@ -2,5 +2,6 @@ | |||
2 | - import_playbook: ./test-simple-app.yml | 2 | - import_playbook: ./test-simple-app.yml |
3 | - import_playbook: ./test-configure-app.yml | 3 | - import_playbook: ./test-configure-app.yml |
4 | - import_playbook: ./test-haskell-app.yml | 4 | - import_playbook: ./test-haskell-app.yml |
5 | - import_playbook: ./test-noop-deploy.yml | ||
5 | - import_playbook: ./test-scalability.yml | 6 | - import_playbook: ./test-scalability.yml |
6 | - import_playbook: ./test-restart-app.yml | 7 | - import_playbook: ./test-restart-app.yml |
diff --git a/tests/test-noop-deploy.yml b/tests/test-noop-deploy.yml new file mode 100644 index 0000000..13eed20 --- /dev/null +++ b/tests/test-noop-deploy.yml | |||
@@ -0,0 +1,35 @@ | |||
1 | --- | ||
2 | - name: Do nothing if the app is up-to-date on clever | ||
3 | hosts: localhost | ||
4 | remote_user: root | ||
5 | pre_tasks: | ||
6 | - file: | ||
7 | state: absent | ||
8 | path: ../clever-commands | ||
9 | roles: | ||
10 | - role: clever | ||
11 | vars: | ||
12 | clever_token: 123abc | ||
13 | clever_secret: cba321 | ||
14 | clever_app: app_00000000-0000-0000-0000-000000000000 | ||
15 | environment: | ||
16 | PRETEND_REMOTE_COMMIT: aaa000aaa000aaa000aaa000aaa000aaa000aaa0 | ||
17 | post_tasks: | ||
18 | - name: Check stubbed commands | ||
19 | shell: "{{ item.cmd }}" | ||
20 | ignore_errors: true | ||
21 | with_list: | ||
22 | - cmd: "! grep deploy ../clever-commands" | ||
23 | display: "Expected 'clever deploy' command to NOT be called" | ||
24 | vars: | ||
25 | display: "{{ item.display }}" | ||
26 | register: tests_results | ||
27 | - name: show results | ||
28 | debug: | ||
29 | msg: | ||
30 | - "failed_results: {{ failed_results }}" | ||
31 | - "success_results: {{ success_results }}" | ||
32 | failed_when: tests_results is failed | ||
33 | vars: | ||
34 | failed_results: "{{ tests_results.results | selectattr('failed') | map(attribute='item.display') | list }}" | ||
35 | success_results: "{{ tests_results.results | rejectattr('failed') | map(attribute='item.display') | list }}" | ||