File: test_File__verify.py

package info (click to toggle)
python-briefcase 0.3.22-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,300 kB
  • sloc: python: 59,405; makefile: 57
file content (35 lines) | stat: -rw-r--r-- 914 bytes parent folder | download | duplicates (2)
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
import pytest

from briefcase.exceptions import UnsupportedHostError
from briefcase.integrations.file import File


def test_short_circuit(mock_tools):
    """Tool is not created if already cached."""
    mock_tools.file = "tool"

    tool = File.verify(mock_tools)

    assert tool == "tool"
    assert tool == mock_tools.file


def test_unsupported_os(mock_tools):
    """When host OS is not supported, an error is raised."""
    mock_tools.host_os = "wonky"

    # Delete download since it has already been verified
    delattr(mock_tools, "file")

    with pytest.raises(
        UnsupportedHostError,
        match=f"{File.name} is not supported on wonky",
    ):
        File.verify(mock_tools)


def test_verify(mock_tools):
    """Verifying Download always returns/set download tool."""
    file_tool = File.verify(mock_tools)
    assert isinstance(file_tool, File)
    assert file_tool is mock_tools.file