-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dev: behave: add functional tests for pre-migration checks (jsc#PED-1…
…1808) (cherry picked from commit 8e83574)
- Loading branch information
1 parent
50af7fc
commit 9e1b95b
Showing
6 changed files
with
57 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# vim: sw=2 sts=2 | ||
Feature: migration | ||
|
||
Test migration and pre-migration checks | ||
Need nodes: hanode1 hanode2 | ||
|
||
Scenario: Run pre-migration checks when cluster services are running. | ||
Given Cluster service is "stopped" on "hanode1" | ||
And Cluster service is "stopped" on "hanode2" | ||
And Run "crm cluster init -y -N hanode2" OK on "hanode1" | ||
When Try "crm cluster health sles16" on "hanode1" | ||
Then Expected return code is "1" | ||
And Expected "[FAIL] Cluster services are running" in stdout | ||
|
||
Scenario: Run pre-migration checks with cluster services stopped. | ||
When Run "crm cluster stop --all" on "hanode1" | ||
And Run "crm cluster stop --all" on "hanode2" | ||
And Try "crm cluster health sles16" on "hanode1" | ||
Then Expected return code is "0" | ||
|
||
Scenario: Should run fixes. | ||
When Try "crm cluster health sles16 --fix" on "hanode1" | ||
Then Expected return code is "0" | ||
|
||
Scenario: Run pre-migration checks when some of the nodes are offline. | ||
When Run "systemctl stop sshd" on "hanode2" | ||
And Try "crm cluster health sles16" on "hanode1" | ||
Then Expected return code is "1" | ||
And Expect stdout contains snippets ["Cannot create SSH connection to", "----- localhost -----", "----- hanode2 -----"]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters