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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
from unittest.mock import MagicMock
import pytest
from briefcase.exceptions import BriefcaseCommandError
from briefcase.platforms.linux.system import LinuxSystemBuildCommand
@pytest.mark.parametrize(
"vendor, codename",
[
("ubuntu", "jammy"),
("debian", "bullseye"),
],
)
def test_build_path(
create_command,
first_app_config,
vendor,
codename,
tmp_path,
):
"""The bundle path contains vendor and Python source details."""
first_app_config.target_vendor = vendor
first_app_config.target_codename = codename
assert (
create_command.build_path(first_app_config)
== tmp_path / "base_path/build/first-app" / vendor
)
@pytest.mark.parametrize(
"vendor, codename",
[
("ubuntu", "jammy"),
("debian", "bullseye"),
],
)
def test_bundle_path(
create_command,
first_app_config,
vendor,
codename,
tmp_path,
):
"""The bundle path contains vendor and Python source details."""
first_app_config.target_vendor = vendor
first_app_config.target_codename = codename
assert (
create_command.bundle_path(first_app_config)
== tmp_path / "base_path/build/first-app" / vendor / codename
)
def test_binary_path(create_command, first_app_config, tmp_path):
"""The binary path contains vendor and Python source details."""
# Force the architecture to x86_64 for test purposes.
create_command.tools.host_arch = "x86_64"
# Force a dummy vendor:codename for test purposes.
first_app_config.target_vendor = "somevendor"
first_app_config.target_codename = "surprising"
assert (
create_command.binary_path(first_app_config)
== tmp_path
/ "base_path/build/first-app/somevendor/surprising/first-app-0.0.1/usr/bin/first-app"
)
@pytest.mark.parametrize(
"packaging_format, vendor_base, filename",
[
("deb", "debian", "first-app_0.0.1-1~somevendor-surprising_wonky.deb"),
("rpm", "fedora", "first-app-0.0.1-1.elsurprising.wonky.rpm"),
("rpm", "suse", "first-app-0.0.1-1.wonky.rpm"),
("pkg", "arch", "first-app-0.0.1-1-wonky.pkg.tar.zst"),
],
)
def test_distribution_path(
create_command,
first_app_config,
packaging_format,
vendor_base,
filename,
tmp_path,
):
"""The distribution path contains vendor details."""
# Mock return value for ABI from packaging system
create_command._build_env_abi = MagicMock(return_value="wonky")
# Set vendor base (RPM package naming changes for openSUSE)
first_app_config.target_vendor_base = vendor_base
# Force a dummy vendor:codename for test purposes.
first_app_config.target_vendor = "somevendor"
first_app_config.target_codename = "surprising"
first_app_config.packaging_format = packaging_format
assert (
create_command.distribution_path(first_app_config)
== tmp_path / "base_path/dist" / filename
)
def test_distribution_path_unknown(create_command, first_app_config, tmp_path):
"""If the packaging format isn't known, an error is raised."""
# Force the architecture to x86_64 for test purposes.
create_command.tools.host_arch = "x86_64"
# Force a dummy vendor:codename for test purposes.
first_app_config.target_vendor = "somevendor"
first_app_config.target_codename = "surprising"
first_app_config.packaging_format = "unknown"
with pytest.raises(
BriefcaseCommandError,
match=r"Briefcase doesn't currently know how to build system packages in UNKNOWN format.",
):
create_command.distribution_path(first_app_config)
@pytest.mark.parametrize(
"vendor, codename",
[
("ubuntu", "jammy"),
("debian", "bullseye"),
],
)
def test_docker_image_tag(
create_command,
first_app_config,
vendor,
codename,
tmp_path,
):
"""The docker image tag contains vendor and Python source details."""
first_app_config.target_vendor = vendor
first_app_config.target_codename = codename
assert (
create_command.docker_image_tag(first_app_config)
== f"briefcase/com.example.first-app:{vendor}-{codename}"
)
def test_docker_image_tag_uppercase_name(
create_command,
uppercase_app_config,
tmp_path,
):
uppercase_app_config.target_vendor = "somevendor"
uppercase_app_config.target_codename = "surprising"
assert (
create_command.docker_image_tag(uppercase_app_config)
== "briefcase/com.example.first-app:somevendor-surprising"
)
def test_clone_options(dummy_console, create_command, tmp_path):
"""Docker options are cloned."""
build_command = LinuxSystemBuildCommand(
console=dummy_console,
base_path=tmp_path / "base_path",
data_path=tmp_path / "briefcase",
)
build_command.target_image = "somevendor:surprising"
build_command.extra_docker_build_args = ["--option-one", "--option-two"]
create_command = build_command.create_command
# Confirm the use_docker option has been cloned.
assert create_command.is_clone
assert create_command.target_image == "somevendor:surprising"
assert create_command.extra_docker_build_args == ["--option-one", "--option-two"]
|