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
|
import os
import sys
from unittest.mock import MagicMock
import pytest
from briefcase.integrations.docker import Docker, DockerAppContext
from briefcase.integrations.subprocess import Subprocess
from briefcase.platforms.linux.appimage import LinuxAppImageOpenCommand
from ...utils import create_file
@pytest.fixture
def open_command(dummy_console, tmp_path):
command = LinuxAppImageOpenCommand(
console=dummy_console,
base_path=tmp_path / "base_path",
data_path=tmp_path / "briefcase",
)
command.tools.os = MagicMock(spec_set=os)
# Mock x86_64 for linuxdeploy verification
command.tools.host_arch = "x86_64"
# Store the underlying subprocess instance
command._subprocess = MagicMock(spec_set=Subprocess)
command.tools.subprocess = command._subprocess
# Mock existence of linuxdeploy in tools
create_file(
command.tools.base_path / "linuxdeploy-x86_64.AppImage",
content="",
)
return command
@pytest.mark.skipif(
sys.platform == "win32",
reason="Windows paths aren't converted in Docker context",
)
def test_open_docker(open_command, first_app_config, tmp_path, monkeypatch):
"""Open starts a docker session by default."""
# Enable docker
open_command.use_docker = True
open_command.extra_docker_build_args = []
# Provide Docker
monkeypatch.setattr(
Docker, "_is_user_mapping_enabled", MagicMock(return_value=True)
)
open_command.tools.docker = Docker(tools=open_command.tools)
# Provide Docker app context
open_command.tools[first_app_config].app_context = DockerAppContext(
tools=open_command.tools,
app=first_app_config,
)
open_command.tools[first_app_config].app_context.prepare(
image_tag=f"briefcase/com.example.first-app:py3.{sys.version_info.minor}",
dockerfile_path=tmp_path
/ "base_path/build/first-app/linux/appimage/Dockerfile",
app_base_path=tmp_path / "base_path",
host_bundle_path=tmp_path / "base_path/build/first-app/linux/appimage",
host_data_path=tmp_path / "briefcase",
python_version=f"3.{sys.version_info.minor}",
)
# Clear out any calls recorded during preparation
open_command._subprocess.run.reset_mock()
# Create the desktop file that would be in the project folder.
create_file(
open_command.project_path(first_app_config)
/ "First App.AppDir/com.example.firstapp.desktop",
"FreeDesktop file",
)
# Open the app
open_command.open_app(first_app_config)
# The docker session was started
open_command._subprocess.run.assert_called_once_with(
args=[
"docker",
"run",
"--rm",
"-it",
"--volume",
f"{open_command.base_path}/build/first-app/linux/appimage:/app:z",
"--volume",
f"{open_command.data_path}:/briefcase:z",
f"briefcase/com.example.first-app:py3.{sys.version_info.minor}",
],
stream_output=False,
env={"DOCKER_CLI_HINTS": "false"},
)
@pytest.mark.skipif(sys.platform != "linux", reason="Linux specific test")
def test_open_no_docker_linux(open_command, first_app_config, tmp_path):
"""On Linux, Open runs `xdg-open` on the project folder if we specify --no-
docker."""
# Create the desktop file that would be in the project folder.
create_file(
open_command.project_path(first_app_config)
/ "First App.AppDir/com.example.firstapp.desktop",
"FreeDesktop file",
)
# Disable docker
open_command.use_docker = False
open_command(first_app_config)
open_command.tools.subprocess.Popen.assert_called_once_with(
[
"xdg-open",
tmp_path / "base_path/build/first-app/linux/appimage",
]
)
@pytest.mark.skipif(sys.platform != "darwin", reason="macOS specific test")
def test_open_no_docker_macOS(open_command, first_app_config, tmp_path):
"""On macOS, Open runs `open` on the project folder if we specify --no-docker."""
# Create the desktop file that would be in the project folder.
create_file(
open_command.project_path(first_app_config)
/ "First App.AppDir/com.example.firstapp.desktop",
"FreeDesktop file",
)
# Disable docker
open_command.use_docker = False
open_command(first_app_config)
open_command.tools.subprocess.Popen.assert_called_once_with(
[
"open",
tmp_path / "base_path/build/first-app/linux/appimage",
]
)
|