-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathtest_svm.py
163 lines (129 loc) · 5.25 KB
/
test_svm.py
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import asyncio
import os
import shutil
import subprocess
from pathlib import Path
from typing import List, Optional, Union
import aiohttp
import pytest
from wake.config import WakeConfig
from wake.svm import SolcVersionManager
from wake.svm.exceptions import UnsupportedVersionError
PYTEST_WAKE_PATH = Path.home() / ".tmpwake_KVUhSovO5J"
PYTEST_WAKE_PATH2 = Path.home() / ".tmpwake2_fLtqXkHeVH"
@pytest.fixture()
def run_cleanup(request):
yield
paths: Optional[List[Union[str, Path]]] = request.param
if paths is not None:
for path in paths:
shutil.rmtree(path, True)
@pytest.fixture()
def config():
os.environ["XDG_CONFIG_HOME"] = str(PYTEST_WAKE_PATH)
os.environ["XDG_DATA_HOME"] = str(PYTEST_WAKE_PATH)
return WakeConfig()
@pytest.fixture()
def config2():
os.environ["XDG_CONFIG_HOME"] = str(PYTEST_WAKE_PATH2)
os.environ["XDG_DATA_HOME"] = str(PYTEST_WAKE_PATH2)
return WakeConfig()
@pytest.mark.slow
@pytest.mark.platform_dependent
@pytest.mark.parametrize("run_cleanup", [[PYTEST_WAKE_PATH]], indirect=True)
async def test_basic_usage(run_cleanup, config):
svm = SolcVersionManager(config)
assert len(svm.list_installed()) == 0
assert "0.8.10" in svm.list_all(force=True)
await svm.install("0.8.10")
assert len(svm.list_installed()) == 1
assert "0.8.10" in svm.list_installed()
await svm.install("0.8.10") # repeat the installation
assert len(svm.list_installed()) == 1
assert "0.8.10" in svm.list_installed()
svm.remove("0.8.10")
assert len(svm.list_installed()) == 0
with pytest.raises(UnsupportedVersionError):
await svm.install("0.1.2")
@pytest.mark.slow
@pytest.mark.platform_dependent
@pytest.mark.parametrize("run_cleanup", [[PYTEST_WAKE_PATH]], indirect=True)
async def test_parallel_install(run_cleanup, config):
svm = SolcVersionManager(config)
to_be_installed = [f"0.8.{x}" for x in range(5)]
async with aiohttp.ClientSession() as session:
await asyncio.gather(
*[svm.install(version, http_session=session) for version in to_be_installed]
)
installed = svm.list_installed()
assert len(installed) == len(to_be_installed)
for version in to_be_installed:
assert version in installed
@pytest.mark.platform_dependent
@pytest.mark.parametrize("run_cleanup", [[PYTEST_WAKE_PATH]], indirect=True)
async def test_install_invalid_version(run_cleanup, config):
svm = SolcVersionManager(config)
with pytest.raises(ValueError):
await svm.install("0.8.a")
assert len(svm.list_installed()) == 0
@pytest.mark.slow
@pytest.mark.platform_dependent
@pytest.mark.parametrize(
"run_cleanup", [[PYTEST_WAKE_PATH, PYTEST_WAKE_PATH2]], indirect=True
)
async def test_two_wake_root_paths(run_cleanup, config, config2):
svm1 = SolcVersionManager(config)
svm2 = SolcVersionManager(config2)
assert "0.8.10" in svm1.list_all(force=True)
assert "0.8.9" in svm2.list_all(force=True)
assert len(svm1.list_installed()) == 0
assert len(svm2.list_installed()) == 0
await svm1.install("0.8.10")
await svm2.install("0.8.9")
assert "0.8.10" in svm1.list_installed()
assert "0.8.9" not in svm1.list_installed()
assert "0.8.9" in svm2.list_installed()
assert "0.8.10" not in svm2.list_installed()
@pytest.mark.platform_dependent
@pytest.mark.parametrize("run_cleanup", [[PYTEST_WAKE_PATH]], indirect=True)
def test_remove_not_installed_version(run_cleanup, config):
svm = SolcVersionManager(config)
with pytest.raises(ValueError):
svm.remove("0.8.10")
@pytest.mark.platform_dependent
@pytest.mark.parametrize("run_cleanup", [[PYTEST_WAKE_PATH]], indirect=True)
async def test_install_nonexistent_version(run_cleanup, config):
svm = SolcVersionManager(config)
with pytest.raises(UnsupportedVersionError):
await svm.install("0.0.0")
with pytest.raises(ValueError):
await svm.install("0.4.100")
@pytest.mark.slow
@pytest.mark.platform_dependent
@pytest.mark.parametrize("run_cleanup", [[PYTEST_WAKE_PATH]], indirect=True)
async def test_install_aiohttp_session(run_cleanup, config):
svm = SolcVersionManager(config)
async with aiohttp.ClientSession() as session:
await svm.install("0.8.10", http_session=session)
assert len(svm.list_installed()) == 1
assert "0.8.10" in svm.list_installed()
@pytest.mark.platform_dependent
@pytest.mark.parametrize("run_cleanup", [[PYTEST_WAKE_PATH]], indirect=True)
async def test_get_path_nonexistent_version(run_cleanup, config):
svm = SolcVersionManager(config)
with pytest.raises(UnsupportedVersionError):
svm.get_path("0.0.0")
with pytest.raises(ValueError):
svm.get_path("0.4.255")
@pytest.mark.slow
@pytest.mark.platform_dependent
@pytest.mark.parametrize("run_cleanup", [[PYTEST_WAKE_PATH]], indirect=True)
async def test_file_executable(run_cleanup, config):
svm = SolcVersionManager(config)
await svm.install("0.8.10")
output = subprocess.check_output([str(svm.get_path("0.8.10")), "--version"])
assert b"0.8.10" in output
oldest_version = svm.list_all(force=True)[0]
await svm.install(oldest_version)
output = subprocess.check_output([str(svm.get_path(oldest_version)), "--version"])
assert str(oldest_version).encode("utf-8") in output