Exemple #1
0
def test_default_install_scope(first_app_config, tmp_path):
    "By default, app should be installed per user."
    command = WindowsMSICreateCommand(base_path=tmp_path)

    context = command.output_format_template_context(first_app_config)

    assert context['install_scope'] == 'perUser'
Exemple #2
0
def test_guid(first_app_config, tmp_path):
    "A preictable GUID will be generated from the bundle."
    command = WindowsMSICreateCommand(base_path=tmp_path)

    context = command.output_format_template_context(first_app_config)

    assert context['guid'] == 'd666a4f1-c7b7-52cc-888a-3a35a7cc97e5'
Exemple #3
0
def test_version_triple(first_app_config, tmp_path, version, version_triple):
    command = WindowsMSICreateCommand(base_path=tmp_path)

    first_app_config.version = version
    context = command.output_format_template_context(first_app_config)

    assert context['version_triple'] == version_triple
Exemple #4
0
def test_per_user_install_scope(first_app_config, tmp_path):
    "App can be set to have explocit per-user scope."
    command = WindowsMSICreateCommand(base_path=tmp_path)
    first_app_config.system_installer = False

    context = command.output_format_template_context(first_app_config)

    assert context['install_scope'] == "perUser"
Exemple #5
0
def test_per_machine_install_scope(first_app_config, tmp_path):
    "By default, app should be installed per user."
    command = WindowsMSICreateCommand(base_path=tmp_path)
    first_app_config.system_installer = True

    context = command.output_format_template_context(first_app_config)

    assert context['install_scope'] == "perMachine"
Exemple #6
0
def test_explicit_guid(first_app_config, tmp_path):
    "If a GUID is explicitly provided, it is used."
    command = WindowsMSICreateCommand(base_path=tmp_path)

    first_app_config.guid = 'e822176f-b755-589f-849c-6c6600f7efb1'
    context = command.output_format_template_context(first_app_config)

    # Explicitly provided GUID is used.
    assert context['guid'] == 'e822176f-b755-589f-849c-6c6600f7efb1'
Exemple #7
0
def test_explicit_version_triple(first_app_config, tmp_path):
    command = WindowsMSICreateCommand(base_path=tmp_path)

    first_app_config.version = '1.2.3a1'
    first_app_config.version_triple = '2.3.4'

    context = command.output_format_template_context(first_app_config)

    # Explicit version triple is used.
    assert context['version_triple'] == '2.3.4'
Exemple #8
0
def test_support_package_url(first_app_config, tmp_path):
    command = WindowsMSICreateCommand(base_path=tmp_path)

    # Set some properties of the host system for test purposes.
    command.host_arch = 'wonky'
    command.platform = 'tester'

    # This test result assumes we're on ARM64. However, we will be
    # on almost every Windows box (and definite will be in CI)
    assert command.support_package_url_query == [
        ('platform', 'tester'),
        ('version', '3.{minor}'.format(minor=sys.version_info.minor)),
        ('arch', 'amd64'),
    ]
Exemple #9
0
def test_support_package_url(first_app_config, tmp_path):
    command = WindowsMSICreateCommand(base_path=tmp_path)

    # Set some properties of the host system for test purposes.
    command.host_arch = 'wonky'
    command.platform = 'tester'

    # This test result is dependent on whether we're using a 32-bit (win32)
    # or 64-bit (amd64) machine.
    arch = "amd64" if sys.maxsize.bit_length() == 63 else "win32"
    assert command.support_package_url_query == [
        ('platform', 'tester'),
        ('version', '3.{minor}'.format(minor=sys.version_info.minor)),
        ('arch', arch),
    ]
Exemple #10
0
def test_support_package_url(first_app_config, tmp_path):
    command = WindowsMSICreateCommand(base_path=tmp_path)

    # Set some properties of the host system for test purposes.
    command.host_arch = "wonky"
    command.platform = "tester"

    # This test result is dependent on whether we're using a 32-bit (win32)
    # or 64-bit (amd64) machine.
    arch = "amd64" if sys.maxsize.bit_length() == 63 else "win32"
    assert command.support_package_url_query == [
        ("platform", "tester"),
        ("version", f"3.{sys.version_info.minor}"),
        ("arch", arch),
    ]
Exemple #11
0
def test_binary_path(first_app_config, tmp_path):
    command = WindowsMSICreateCommand(base_path=tmp_path)
    binary_path = command.binary_path(first_app_config)

    assert binary_path == tmp_path / 'windows' / 'First App'
Exemple #12
0
def test_distribution_path(first_app_config, tmp_path):
    command = WindowsMSICreateCommand(base_path=tmp_path)
    distribution_path = command.distribution_path(first_app_config)

    assert distribution_path == tmp_path / 'windows' / 'First App-0.0.1.msi'