Skip to content

Commit

Permalink
### Changed
Browse files Browse the repository at this point in the history
- Separate make targets within recovery test for termination & waiter 
[shinesolutions#47]
- Update AOC component recovery test to wait until provisioning was 
successful [shinesolutions#46]
  • Loading branch information
mbloch1986 committed Mar 4, 2020
1 parent 2857288 commit 7c30b86
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Separate make targets within recovery test for termination & waiter [#47]
- Update AOC component recovery test to wait until provisioning was successful [#46]

## [1.10.0] - 2020-03-01
### Added
- Add new configuration parameter `aws.region`[#42]
Expand Down
47 changes: 34 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ test-recovery: test-recovery-orchestrator test-recovery-author-dispatcher test-r

test-recovery-with-disabled-chaosmonkey: test-recovery-orchestrator test-recovery-author-dispatcher test-recovery-publish-dispatcher test-recovery-publish

test-recovery-author-dispatcher: terminate-random-author-dispatcher-instance recover-from-author-dispatcher-termination test-successful-provisioning-author-dispatcher

test-recovery-publish-dispatcher: terminate-random-publish-dispatcher-instance recover-from-publish-dispatcher-termination recover-from-publish-termination test-successful-provisioning-publish

test-recovery-publish: terminate-random-publish-instance recover-from-publish-termination test-successful-provisioning-publish recover-from-publish-dispatcher-termination test-successful-provisioning-publish-dispatcher

test-recovery-chaosmonkey: terminate-chaosmonkey-instance recover-from-chaosmonkey-termination test-successful-provisioning-chaosmonkey

test-recovery-orchestrator: terminate-orchestrator-instance recover-from-orchestrator-termination test-successful-provisioning-orchestrator

test-readiness-author:
inspec exec . --show-progress --controls=\
author-instances-ready
Expand Down Expand Up @@ -98,33 +108,44 @@ terminate-author-primary:
inspec exec . --show-progress --controls=\
terminate-author-primary-instance

test-recovery-author-dispatcher:
terminate-random-author-dispatcher-instance:
inspec exec . --show-progress --controls=\
terminate-random-author-dispatcher-instance

recover-from-author-dispatcher-termination:
inspec exec . --show-progress --controls=\
terminate-random-author-dispatcher-instance \
recover-from-author-dispatcher-termination
recover-from-author-dispatcher-termination

test-recovery-publish-dispatcher:
terminate-random-publish-dispatcher-instance:
inspec exec . --show-progress --controls=\
terminate-random-publish-dispatcher-instance

recover-from-publish-dispatcher-termination:
inspec exec . --show-progress --controls=\
terminate-random-publish-dispatcher-instance \
recover-from-publish-dispatcher-termination

terminate-random-publish-instance:
inspec exec . --show-progress --controls=\
recover-from-publish-termination
terminate-random-publish-instance

test-recovery-publish:
recover-from-publish-termination:
inspec exec . --show-progress --controls=\
terminate-random-publish-instance \
recover-from-publish-termination

terminate-chaosmonkey-instance:
inspec exec . --show-progress --controls=\
recover-from-publish-dispatcher-termination
terminate-chaosmonkey-instance

test-recovery-chaosmonkey:
recover-from-chaosmonkey-termination:
inspec exec . --show-progress --controls=\
terminate-chaosmonkey-instance \
recover-from-chaosmonkey-termination

test-recovery-orchestrator:
terminate-orchestrator-instance:
inspec exec . --show-progress --controls=\
terminate-orchestrator-instance

recover-from-orchestrator-termination:
inspec exec . --show-progress --controls=\
terminate-orchestrator-instance \
recover-from-orchestrator-termination

test-acceptance-full-set:
Expand Down

0 comments on commit 7c30b86

Please sign in to comment.