コード例 #1
0
ファイル: test_create.py プロジェクト: danyeaw/briefcase
def test_install_app_support_package(first_app_config, tmp_path):
    """A support package can be downloaded and unpacked where it is needed."""
    # Write a temporary support zip file which includes the Python lib
    support_file = tmp_path / "out.zip"
    with zipfile.ZipFile(support_file, "w") as support_zip:
        support_zip.writestr("internal/file.txt", data="hello world")
        support_zip.writestr("Python/Resources/lib/module.py", data="code")

    # create app paths
    app_path = tmp_path / "macOS" / "app" / "First App" / "First App.app"
    lib_path = app_path / "Contents" / "Resources"
    support_path = lib_path / "Python" / "Support"
    support_path.mkdir(parents=True)

    create_command = macOSAppCreateCommand(base_path=tmp_path)

    # Modify download_url to return the temp zipfile
    create_command.download_url = mock.MagicMock(return_value=support_file)

    # Mock support package path
    create_command.support_path = mock.MagicMock(return_value=support_path)

    # Install the support package
    create_command.install_app_support_package(first_app_config)

    # Confirm that only the lib was kept
    assert (support_path / "Python" / "Resources" / "lib").exists()
    assert (support_path / "Python" / "Resources" / "lib" /
            "module.py").exists()
    assert not (support_path / "internal").exists()
コード例 #2
0
ファイル: test_create.py プロジェクト: pombredanne/briefcase
def test_install_app_support_package(first_app_config, tmp_path):
    "A support package can be downloaded and unpacked where it is needed"
    # Write a temporary support zip file which includes the Python lib
    support_file = tmp_path / 'out.zip'
    with zipfile.ZipFile(support_file, 'w') as support_zip:
        support_zip.writestr('internal/file.txt', data='hello world')
        support_zip.writestr('Python/Resources/lib/module.py', data='code')

    # create app paths
    app_path = tmp_path / 'macOS' / 'app' / 'First App' / 'First App.app'
    lib_path = app_path / 'Contents' / 'Resources'
    support_path = lib_path / 'Python' / 'Support'
    support_path.mkdir(parents=True)

    create_command = macOSAppCreateCommand(base_path=tmp_path)

    # Modify download_url to return the temp zipfile
    create_command.download_url = mock.MagicMock(return_value=support_file)

    # Mock support package path
    create_command.support_path = mock.MagicMock(return_value=support_path)

    # Install the support package
    create_command.install_app_support_package(first_app_config)

    # Confirm that only the lib was kept
    assert (support_path / 'Python' / 'Resources' / 'lib').exists()
    assert (support_path / 'Python' / 'Resources' / 'lib' / 'module.py').exists()
    assert not (support_path / 'internal').exists()
コード例 #3
0
def test_entitlements_path(first_app_config, tmp_path):
    command = macOSAppCreateCommand(base_path=tmp_path)
    entitlements_path = command.entitlements_path(first_app_config)

    assert (
        entitlements_path
        == tmp_path / "macOS" / "app" / "First App" / "Entitlements.plist"
    )
コード例 #4
0
def test_distribution_path_app(first_app_config, tmp_path):
    command = macOSAppCreateCommand(base_path=tmp_path)

    distribution_path = command.distribution_path(first_app_config, "app")

    assert (
        distribution_path == tmp_path / "macOS" / "app" / "First App" / "First App.app"
    )
コード例 #5
0
ファイル: test_mixin.py プロジェクト: xmonader/briefcase
def test_binary_path(first_app_config, tmp_path):
    command = macOSAppCreateCommand(base_path=tmp_path)
    binary_path = command.binary_path(first_app_config)

    assert binary_path == tmp_path / 'macOS' / 'First App' / 'First App.app'
コード例 #6
0
ファイル: test_mixin.py プロジェクト: xmonader/briefcase
def test_distribution_path(first_app_config, tmp_path):
    command = macOSAppCreateCommand(base_path=tmp_path)
    distribution_path = command.distribution_path(first_app_config)

    assert distribution_path == tmp_path / 'macOS' / 'First App' / 'First App.app'
コード例 #7
0
def test_distribution_path_dmg(first_app_config, tmp_path):
    command = macOSAppCreateCommand(base_path=tmp_path)

    distribution_path = command.distribution_path(first_app_config, "dmg")

    assert distribution_path == tmp_path / "macOS" / "First App-0.0.1.dmg"
コード例 #8
0
def test_entitlements_path(first_app_config, tmp_path):
    command = macOSAppCreateCommand(base_path=tmp_path)
    entitlements_path = command.entitlements_path(first_app_config)

    assert entitlements_path == tmp_path / 'macOS' / 'app' / 'First App' / 'Entitlements.plist'