1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
import os
from unittest.mock import MagicMock
import pytest
from briefcase.exceptions import (
BriefcaseCommandError,
MissingToolError,
NetworkFailure,
NonManagedToolError,
)
from briefcase.integrations.wix import WiX
from ...utils import create_zip_file
from .conftest import WIX_DOWNLOAD_URL
def test_non_managed_install(mock_tools, tmp_path, capsys):
"""If the WiX install points to a non-managed install, no upgrade is attempted."""
# Make the installation point to somewhere else.
wix = WiX(mock_tools, wix_home=tmp_path / "other-WiX")
# Attempt an upgrade. This will fail because the install is non-managed
with pytest.raises(NonManagedToolError):
wix.upgrade()
# No download was attempted
assert mock_tools.file.download.call_count == 0
def test_non_existing_wix_install(mock_tools, tmp_path):
"""If there's no existing managed WiX install, upgrading is an error."""
# Create an SDK wrapper around a non-existing managed install
wix = WiX(mock_tools, wix_home=tmp_path / "tools/wix")
with pytest.raises(MissingToolError):
wix.upgrade()
# No download was attempted
assert mock_tools.file.download.call_count == 0
def test_existing_wix_install(mock_tools, tmp_path):
"""If there's an existing managed WiX install, it is deleted and redownloaded."""
# Create a mock of a previously installed WiX version.
wix_path = tmp_path / "tools/wix"
wix_path.mkdir(parents=True)
(wix_path / "heat.exe").touch()
(wix_path / "light.exe").touch()
(wix_path / "candle.exe").touch()
# Mock the download
wix_path = tmp_path / "tools/wix"
wix_zip_path = create_zip_file(tmp_path / "tools/wix.zip", content=[("wix", "wix")])
mock_tools.file.download = MagicMock(return_value=wix_zip_path)
# Create an SDK wrapper
wix = WiX(mock_tools, wix_home=wix_path, bin_install=True)
# Attempt an upgrade.
wix.upgrade()
# The old version has been deleted
mock_tools.shutil.rmtree.assert_called_with(wix_path)
# A download was initiated
mock_tools.file.download.assert_called_with(
url=WIX_DOWNLOAD_URL,
download_path=tmp_path / "tools",
role="WiX",
)
# The download was unpacked
mock_tools.shutil.unpack_archive.assert_called_with(
filename=os.fsdecode(wix_zip_path), extract_dir=os.fsdecode(wix_path)
)
# The zip file was removed
assert not wix_zip_path.exists()
def test_download_fail(mock_tools, tmp_path):
"""If the download doesn't complete, the upgrade fails."""
# Create a mock of a previously installed WiX version.
wix_path = tmp_path / "tools/wix"
wix_path.mkdir(parents=True)
(wix_path / "heat.exe").touch()
(wix_path / "light.exe").touch()
(wix_path / "candle.exe").touch()
# Mock the download failure
mock_tools.file.download = MagicMock(side_effect=NetworkFailure("mock"))
# Create an SDK wrapper
wix = WiX(mock_tools, wix_home=wix_path, bin_install=True)
# Upgrade the install. This will trigger a download that will fail
with pytest.raises(NetworkFailure, match="Unable to mock"):
wix.upgrade()
# A download was initiated
mock_tools.file.download.assert_called_with(
url=WIX_DOWNLOAD_URL,
download_path=tmp_path / "tools",
role="WiX",
)
# ... but the unpack didn't happen
assert mock_tools.shutil.unpack_archive.call_count == 0
def test_unpack_fail(mock_tools, tmp_path):
"""If the download archive is corrupted, the validator fails."""
# Create a mock of a previously installed WiX version.
wix_path = tmp_path / "tools/wix"
wix_path.mkdir(parents=True)
(wix_path / "heat.exe").touch()
(wix_path / "light.exe").touch()
(wix_path / "candle.exe").touch()
# Mock the download
wix_zip_path = create_zip_file(tmp_path / "tools/wix.zip", content=[("wix", "wix")])
mock_tools.file.download = MagicMock(return_value=wix_zip_path)
# Mock an unpack failure
mock_tools.shutil.unpack_archive.side_effect = EOFError
# Create an SDK wrapper
wix = WiX(mock_tools, wix_home=wix_path, bin_install=True)
# Upgrade the install. This will trigger a download,
# but the unpack will fail.
with pytest.raises(BriefcaseCommandError):
wix.upgrade()
# A download was initiated
mock_tools.file.download.assert_called_with(
url=WIX_DOWNLOAD_URL,
download_path=tmp_path / "tools",
role="WiX",
)
# The download was unpacked.
mock_tools.shutil.unpack_archive.assert_called_with(
filename=os.fsdecode(wix_zip_path), extract_dir=os.fsdecode(wix_path)
)
# The zip file was not removed
assert wix_zip_path.exists()
|