This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 165
[1LP][RFR] Fix minor version update tests. #8521
Merged
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
db33eab
Fix minor version update tests.
049b2f7
Fix test_update_replicated_webui and add single()
e893c01
Fix missing wait_for_evm_service.
2ec384c
Use browser stealing.
d99e1a8
Convert ha_appliances_with_providers to expect.
32ff4a7
Fix test_update_distributed_webui
704337c
Add waits to update tests.
3565f58
Fix failure trying deleting nonexisting VM.
0a4202d
Provide more information on vmdb_version ssh command failure
2dd769f
Unificate is_ha_monitor_started, fix it for cfme 5.10
e2e28e8
Fix ha_appliances_with_providers doc.
2cf7bca
Fix test_update_ha_webui, consolidate failover state getters
e188a86
Add safety check for the cfme version in the repo file.
3bc3335
Add wait_for when checking the login page.
3311535
add preupdate version parameter
3abf3ef
fix replicated_appliances_with_providers
a859935
Fix code formatting test_update_distributed_webui
7ccdf52
Fix test_update_embedded_ansible_webui
a2a556d
Add BZ blocker: 1704835
df1725e
Add Accept header when waiting for evmserverd.
917d0c2
Wait for failover-monitor to stabilize after restart
60dd675
Use LogValidator for inspecting the logs.
fe9290a
Make flake8 happy
7ddf0f6
Change waiting for appliance update in test_update_distributed_webui
ddb5a70
Fix error message formatting in get_apps
22198ca
Beautifulize the pytest_generate_tests
5afbe5e
Fix 'ApplianceDB' object has no attribute 'postgres_version'
39ac6bc
Allow non-strict ssh host key checking.
4d50df1
Remove single() in favor of unpacking.
6f13e2a
Use six for the problematic imports
f41d25b
Increase the timeout for update to make test_update_webui pass
61871c1
Fix 404 when baseurl doesn't end with slash.
9d3528b
Add docblock about two masters problem to get_master
9813814
Add condition dealing with BZ 1732092.
39c6c41
Add yum strategy HA upgrade testing to the existing webui option
72ea775
Decrease the verbosity of ssh expect interacitions.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we are expecting more servers then I would prefer unpacking like
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good tip. I didn't know that
*
does such thing. But I am expecting single server here. I have had implemented single() function which was checking whether there is exactly one item in the list and picked it, but I was told to use the unpacking instead.