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
|
import pytest
from briefcase.commands.create import Git
from briefcase.exceptions import BriefcaseCommandError
def test_no_git(tracking_create_command, monkeypatch):
"""If Git is not installed, an error is raised."""
def monkeypatch_verify_git(*a, **kw):
raise BriefcaseCommandError("Briefcase requires git, but it is not installed")
monkeypatch.setattr(Git, "verify", monkeypatch_verify_git)
# The command will fail tool verification.
with pytest.raises(
BriefcaseCommandError,
match=r"Briefcase requires git, but it is not installed",
):
tracking_create_command()
def test_create(tracking_create_command, tmp_path):
"""The create command can be called."""
tracking_create_command()
# The right sequence of things will be done
assert tracking_create_command.actions == [
# Host OS is verified
("verify-host",),
# Tools are verified
("verify-tools",),
# App configs have been finalized
("finalize-app-config", "first"),
("finalize-app-config", "second"),
# Create the first app
("generate", "first"),
("support", "first"),
("verify-app-template", "first"),
("verify-app-tools", "first"),
("code", "first", False),
("requirements", "first", False),
("resources", "first"),
("cleanup", "first"),
# Create the second app
("generate", "second"),
("support", "second"),
("verify-app-template", "second"),
("verify-app-tools", "second"),
("code", "second", False),
("requirements", "second", False),
("resources", "second"),
("cleanup", "second"),
]
# New app content has been created
assert (tmp_path / "base_path/build/first/tester/dummy/new").exists()
assert (tmp_path / "base_path/build/second/tester/dummy/new").exists()
def test_create_single(tracking_create_command, tmp_path):
"""The create command can be called to create a single app from the config."""
tracking_create_command(app=tracking_create_command.apps["first"])
# The right sequence of things will be done
assert tracking_create_command.actions == [
# Host OS is verified
("verify-host",),
# Tools are verified
("verify-tools",),
# App config has been finalized
("finalize-app-config", "first"),
# Create the first app
("generate", "first"),
("support", "first"),
("verify-app-template", "first"),
("verify-app-tools", "first"),
("code", "first", False),
("requirements", "first", False),
("resources", "first"),
("cleanup", "first"),
]
# New app content has been created
assert (tmp_path / "base_path/build/first/tester/dummy/new").exists()
assert not (tmp_path / "base_path/build/second/tester/dummy/new").exists()
|