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
|
import subprocess
import mozinfo
import mozinstall
import mozunit
import pytest
@pytest.mark.skipif(
mozinfo.isWin,
reason="Bug 1157352 - New firefox.exe needed for mozinstall 1.12 and higher.",
)
def test_is_installer(request, get_installer):
"""Test that we can identify a correct installer."""
if mozinfo.isLinux:
assert mozinstall.is_installer(get_installer("tar.bz2"))
if mozinfo.isWin:
# test zip installer
assert mozinstall.is_installer(get_installer("zip"))
# test exe installer
assert mozinstall.is_installer(get_installer("exe"))
try:
# test stub browser file
# without pefile on the system this test will fail
import pefile # noqa
stub_exe = (
request.node.fspath.dirpath("build_stub").join("firefox.exe").strpath
)
assert not mozinstall.is_installer(stub_exe)
except ImportError:
pass
if mozinfo.isMac:
assert mozinstall.is_installer(get_installer("dmg"))
def test_invalid_source_error(get_installer):
"""Test that InvalidSource error is raised with an incorrect installer."""
if mozinfo.isLinux:
with pytest.raises(mozinstall.InvalidSource):
mozinstall.install(get_installer("dmg"), "firefox")
elif mozinfo.isWin:
with pytest.raises(mozinstall.InvalidSource):
mozinstall.install(get_installer("tar.bz2"), "firefox")
elif mozinfo.isMac:
with pytest.raises(mozinstall.InvalidSource):
mozinstall.install(get_installer("tar.bz2"), "firefox")
# Test an invalid url handler
with pytest.raises(mozinstall.InvalidSource):
mozinstall.install("file://foo.bar", "firefox")
@pytest.mark.skipif(
mozinfo.isWin,
reason="Bug 1157352 - New firefox.exe needed for mozinstall 1.12 and higher.",
)
def test_install(tmpdir, get_installer):
"""Test to install an installer."""
if mozinfo.isLinux:
installdir = mozinstall.install(get_installer("tar.bz2"), tmpdir.strpath)
assert installdir == tmpdir.join("firefox").strpath
elif mozinfo.isWin:
installdir_exe = mozinstall.install(
get_installer("exe"), tmpdir.join("exe").strpath
)
assert installdir_exe == tmpdir.join("exe", "firefox").strpath
installdir_zip = mozinstall.install(
get_installer("zip"), tmpdir.join("zip").strpath
)
assert installdir_zip == tmpdir.join("zip", "firefox").strpath
elif mozinfo.isMac:
installdir = mozinstall.install(get_installer("dmg"), tmpdir.strpath)
assert installdir == tmpdir.realpath().join("Firefox Stub.app").strpath
mounted_images = subprocess.check_output(["hdiutil", "info"]).decode("ascii")
assert get_installer("dmg") not in mounted_images
if __name__ == "__main__":
mozunit.main()
|