-
Notifications
You must be signed in to change notification settings - Fork 666
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix issues for sonic_installer upgrade-docker and sonic_installer rollback-docker #2278
Merged
qiluo-msft
merged 4 commits into
sonic-net:master
from
Junchao-Mellanox:fix-upgrade-docker-1
Aug 8, 2022
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
a3bbf46
Fix issues for sonic_installer upgrade-docker and sonic_installer rol…
Junchao-Mellanox 58b1cec
Allow mgmt-framework to be warm restart
Junchao-Mellanox b4a0720
Fix review comment and add unit test
Junchao-Mellanox d690b7b
Improve coverage
Junchao-Mellanox 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
import pytest | ||
import sonic_installer.main as sonic_installer | ||
|
||
from click.testing import CliRunner | ||
from unittest.mock import patch, MagicMock | ||
|
||
SUCCESS = 0 | ||
|
||
|
||
@patch('sonic_installer.main.get_container_image_name', MagicMock(return_value='docker-fpm-frr')) | ||
@patch('sonic_installer.main.get_container_image_id_all', MagicMock(return_value=['1', '2'])) | ||
@patch('sonic_installer.main.get_container_image_id', MagicMock(return_value=['1'])) | ||
@patch('sonic_installer.main.get_docker_tag_name', MagicMock(return_value='some_tag')) | ||
@patch('sonic_installer.main.echo_and_log', MagicMock()) | ||
@patch('sonic_installer.main.run_command') | ||
def test_rollback_docker_basic(mock_run_cmd): | ||
runner = CliRunner() | ||
result = runner.invoke( | ||
sonic_installer.sonic_installer.commands['rollback-docker'], ['-y', 'bgp'] | ||
) | ||
|
||
assert result.exit_code == SUCCESS | ||
expect_docker_tag_command = 'docker tag docker-fpm-frr:some_tag docker-fpm-frr:latest' | ||
mock_run_cmd.assert_called_with(expect_docker_tag_command) | ||
|
||
mock_run_cmd.reset() | ||
result = runner.invoke( | ||
sonic_installer.sonic_installer.commands['rollback-docker'], ['-y', 'snmp'] | ||
) | ||
|
||
assert result.exit_code == SUCCESS | ||
mock_run_cmd.assert_any_call('systemctl restart snmp') | ||
|
||
|
||
@patch('sonic_installer.main.get_container_image_name', MagicMock(return_value='docker-fpm-frr')) | ||
@patch('sonic_installer.main.get_container_image_id_all', MagicMock(return_value=['1'])) | ||
def test_rollback_docker_no_extra_image(): | ||
runner = CliRunner() | ||
result = runner.invoke( | ||
sonic_installer.sonic_installer.commands['rollback-docker'], ['-y', 'bgp'] | ||
) | ||
assert result.exit_code != SUCCESS | ||
|
||
|
||
@pytest.mark.parametrize("container", ['bgp', 'swss', 'teamd', 'pmon']) | ||
@patch('sonic_installer.main.get_container_image_name', MagicMock(return_value='docker-fpm-frr')) | ||
@patch('sonic_installer.main.get_container_image_id', MagicMock(return_value=['1'])) | ||
@patch('sonic_installer.main.validate_url_or_abort', MagicMock()) | ||
@patch('sonic_installer.main.urlretrieve', MagicMock()) | ||
@patch('os.path.isfile', MagicMock(return_value=True)) | ||
@patch('sonic_installer.main.get_docker_tag_name', MagicMock(return_value='some_tag')) | ||
@patch('sonic_installer.main.run_command', MagicMock()) | ||
@patch("sonic_installer.main.subprocess.Popen") | ||
@patch('sonic_installer.main.hget_warm_restart_table') | ||
def test_upgrade_docker_basic(mock_hget, mock_popen, container): | ||
def mock_hget_impl(db_name, table_name, warm_app_name, key): | ||
if table_name == 'WARM_RESTART_ENABLE_TABLE': | ||
return "false" | ||
elif table_name == 'WARM_RESTART_TABLE': | ||
return 'reconciled' | ||
|
||
mock_hget.side_effect = mock_hget_impl | ||
mock_proc = MagicMock() | ||
mock_proc.communicate = MagicMock(return_value=(None, None)) | ||
mock_proc.returncode = 0 | ||
mock_popen.return_value = mock_proc | ||
|
||
runner = CliRunner() | ||
result = runner.invoke( | ||
sonic_installer.sonic_installer.commands['upgrade-docker'], | ||
['-y', '--cleanup_image', '--warm', container, 'http://'] | ||
) | ||
|
||
print(result.output) | ||
assert result.exit_code == SUCCESS | ||
|
||
|
||
@patch('sonic_installer.main.get_container_image_name', MagicMock(return_value='docker-fpm-frr')) | ||
@patch('sonic_installer.main.get_container_image_id', MagicMock(return_value=['1'])) | ||
@patch('sonic_installer.main.validate_url_or_abort', MagicMock()) | ||
@patch('sonic_installer.main.urlretrieve', MagicMock(side_effect=Exception('download failed'))) | ||
def test_upgrade_docker_download_fail(): | ||
runner = CliRunner() | ||
result = runner.invoke( | ||
sonic_installer.sonic_installer.commands['upgrade-docker'], | ||
['-y', '--cleanup_image', '--warm', 'bgp', 'http://'] | ||
) | ||
assert 'download failed' in result.output | ||
assert result.exit_code != SUCCESS | ||
|
||
|
||
@patch('sonic_installer.main.get_container_image_name', MagicMock(return_value='docker-fpm-frr')) | ||
@patch('sonic_installer.main.get_container_image_id', MagicMock(return_value=['1'])) | ||
@patch('sonic_installer.main.validate_url_or_abort', MagicMock()) | ||
@patch('sonic_installer.main.urlretrieve', MagicMock(side_effect=Exception('download failed'))) | ||
def test_upgrade_docker_image_not_exist(): | ||
runner = CliRunner() | ||
result = runner.invoke( | ||
sonic_installer.sonic_installer.commands['upgrade-docker'], | ||
['-y', '--cleanup_image', '--warm', 'bgp', 'invalid_url'] | ||
) | ||
assert 'does not exist' in result.output | ||
assert result.exit_code != SUCCESS | ||
|
||
|
||
@patch('sonic_installer.main.get_container_image_name', MagicMock(return_value='docker-fpm-frr')) | ||
@patch('sonic_installer.main.get_container_image_id', MagicMock(return_value=['1'])) | ||
@patch('sonic_installer.main.validate_url_or_abort', MagicMock()) | ||
@patch('sonic_installer.main.urlretrieve', MagicMock()) | ||
@patch('os.path.isfile', MagicMock(return_value=True)) | ||
@patch('sonic_installer.main.get_docker_tag_name', MagicMock(return_value='some_tag')) | ||
@patch('sonic_installer.main.run_command', MagicMock()) | ||
@patch('sonic_installer.main.hget_warm_restart_table', MagicMock(return_value='false')) | ||
@patch("sonic_installer.main.subprocess.Popen") | ||
def test_upgrade_docker_image_swss_check_failed(mock_popen): | ||
mock_proc = MagicMock() | ||
mock_proc.communicate = MagicMock(return_value=(None, None)) | ||
mock_proc.returncode = 1 | ||
mock_popen.return_value = mock_proc | ||
runner = CliRunner() | ||
result = runner.invoke( | ||
sonic_installer.sonic_installer.commands['upgrade-docker'], | ||
['-y', '--cleanup_image', '--warm', 'swss', 'http://'] | ||
) | ||
assert 'RESTARTCHECK failed' in result.output | ||
assert result.exit_code != SUCCESS |
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.
you can change the implementation of
get_docker_tag_name()
, and this function should be easy to unit test, you still need some mock. #ClosedThere 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.
Hi qi, thanks for the suggestion. I would to rollback this change because I found the real issue is in sonic build system. Here is my analyze:
During my previous manual test with a local image, I found
get_docker_tag_name()
cannot return the correct tag name of docker. The return value ofget_docker_tag_name()
does not equal to output ofdocker images
.However, I re-visit the logic today, and I found:
get_docker_tag_name()
tries to get the docker tag by querying a docker label specified by sonic make file.In theory, item#2 and item#3 shall get the same value of ${SONIC_IMAGE_VERSION}. But it doesn't. I got from build log:
As you can see, value of SONIC_IMAGE_VERSION is different in the same build. I suppose SONIC_IMAGE_VERSION value shall always be the same in the same build.
The issue is probably related to the timestamp in the SONIC_IMAGE_VERSION. However, I found timestamp is not part of SONIC_IMAGE_VERSION in official image. So, maybe we can ignore this issue.