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
|
import subprocess
import pytest
from briefcase.console import LogLevel
from briefcase.exceptions import BriefcaseCommandError
@pytest.mark.parametrize("tool_debug_mode", (True, False))
def test_build(flatpak, tool_debug_mode, tmp_path):
"""A Flatpak project can be built."""
# Enable verbose tool logging
if tool_debug_mode:
flatpak.tools.console.verbosity = LogLevel.DEEP_DEBUG
flatpak.build(
bundle_identifier="com.example.my-app",
app_name="my-app",
path=tmp_path,
)
# The expected call was made
flatpak.tools.subprocess.run.assert_called_once_with(
[
"flatpak-builder",
"--force-clean",
"--repo",
"repo",
"--install",
"--user",
"build",
"manifest.yml",
]
+ (["--verbose"] if tool_debug_mode else []),
check=True,
cwd=tmp_path,
)
# The marker file was created, and was made executable
assert (tmp_path / "com.example.my-app").exists()
flatpak.tools.os.chmod.assert_called_once_with(
tmp_path / "com.example.my-app", 0o755
)
def test_build_fail(flatpak, tmp_path):
"""If the build fails, an error is raised."""
flatpak.tools.subprocess.run.side_effect = subprocess.CalledProcessError(
cmd="flatpak-builder", returncode=1
)
with pytest.raises(
BriefcaseCommandError,
match=r"Error while building app my-app.",
):
flatpak.build(
bundle_identifier="com.example.my-app",
app_name="my-app",
path=tmp_path / "bundle",
)
|