-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathtest_compilation.py
204 lines (174 loc) · 5.48 KB
/
test_compilation.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import asyncio
import os
import platform
import shutil
import stat
import subprocess
from pathlib import Path
import pytest
from click.testing import CliRunner
from git import Repo # type: ignore
from wake.cli.__main__ import main
from wake.compiler import SolcOutputSelectionEnum, SolidityCompiler
from wake.config import WakeConfig
from wake.utils import change_cwd
PYTEST_BUILD_PATH = Path.home() / ".tmpwake_rkDv61DDf7"
@pytest.fixture()
def config():
os.environ["XDG_CONFIG_HOME"] = str(PYTEST_BUILD_PATH)
os.environ["XDG_DATA_HOME"] = str(PYTEST_BUILD_PATH)
config_dict = {"compiler": {"solc": {"include_paths": ["./node_modules"]}}}
return WakeConfig.fromdict(
config_dict,
project_root_path=PYTEST_BUILD_PATH,
)
@pytest.fixture()
def setup_project(request):
clone_url, dependencies_installer = request.param
repo = None
try:
repo = Repo.clone_from(
clone_url, PYTEST_BUILD_PATH, multi_options=["--depth=1"]
)
subprocess.run(
[dependencies_installer, "install"],
cwd=PYTEST_BUILD_PATH,
shell=(platform.system() == "Windows"),
)
yield
finally:
def onerror(func, path, exc_info):
if not os.access(path, os.W_OK):
os.chmod(path, stat.S_IWUSR)
func(path)
else:
raise
if repo is not None:
repo.close()
shutil.rmtree(PYTEST_BUILD_PATH, onerror=onerror)
@pytest.mark.slow
@pytest.mark.parametrize(
"setup_project",
[(r"https://github.com/Uniswap/v3-core.git", "yarn")],
indirect=True,
)
def test_compile_uniswap_v3(setup_project, config):
files = list((PYTEST_BUILD_PATH / "contracts").rglob("*.sol"))
compiler = SolidityCompiler(config)
output = asyncio.run(compiler.compile(files, [SolcOutputSelectionEnum.ALL]))
assert len(output)
output = asyncio.run(compiler.compile(files, [SolcOutputSelectionEnum.ALL]))
assert len(output)
(PYTEST_BUILD_PATH / "wake.toml").write_text(
"""
[compiler.solc]
exclude_paths = ["node_modules", "audits"]
"""
)
cli_runner = CliRunner()
with change_cwd(PYTEST_BUILD_PATH):
cli_result = cli_runner.invoke(
main,
["compile"],
env={
"XDG_CONFIG_HOME": str(PYTEST_BUILD_PATH),
"XDG_DATA_HOME": str(PYTEST_BUILD_PATH),
},
)
assert cli_result.exit_code == 0
@pytest.mark.slow
@pytest.mark.parametrize(
"setup_project",
[(r"https://github.com/graphprotocol/contracts.git", "yarn")],
indirect=True,
)
@pytest.mark.skip()
def test_compile_the_graph(setup_project, config):
files = list((PYTEST_BUILD_PATH / "contracts").rglob("*.sol"))
compiler = SolidityCompiler(config)
output = asyncio.run(compiler.compile(files, [SolcOutputSelectionEnum.ALL]))
assert len(output)
compiler = SolidityCompiler(config)
output = asyncio.run(compiler.compile(files, [SolcOutputSelectionEnum.ALL]))
assert len(output)
cli_runner = CliRunner()
with change_cwd(PYTEST_BUILD_PATH):
cli_result = cli_runner.invoke(
main,
["compile"],
env={
"XDG_CONFIG_HOME": str(PYTEST_BUILD_PATH),
"XDG_DATA_HOME": str(PYTEST_BUILD_PATH),
},
)
assert cli_result.exit_code == 0
@pytest.mark.slow
@pytest.mark.parametrize(
"setup_project",
[(r"https://github.com/traderjoe-xyz/joe-core.git", "yarn")],
indirect=True,
)
def test_compile_trader_joe(setup_project, config):
files = list((PYTEST_BUILD_PATH / "contracts").rglob("*.sol"))
compiler = SolidityCompiler(config)
output = asyncio.run(
compiler.compile(
files,
[SolcOutputSelectionEnum.ALL],
)
)
assert len(output)
output = asyncio.run(
compiler.compile(
files,
[SolcOutputSelectionEnum.ALL],
)
)
assert len(output)
(PYTEST_BUILD_PATH / "wake.toml").write_text(
"""
[compiler.solc]
exclude_paths = ["node_modules", "test", "lib"]
"""
)
cli_runner = CliRunner()
with change_cwd(PYTEST_BUILD_PATH):
cli_result = cli_runner.invoke(
main,
["compile"],
env={
"XDG_CONFIG_HOME": str(PYTEST_BUILD_PATH),
"XDG_DATA_HOME": str(PYTEST_BUILD_PATH),
},
)
assert cli_result.exit_code == 0
@pytest.mark.slow
@pytest.mark.parametrize(
"setup_project",
[(r"https://github.com/axelarnetwork/axelar-cgp-solidity.git", "npm")],
indirect=True,
)
def test_compile_axelar(setup_project, config):
files = list((PYTEST_BUILD_PATH / "contracts").rglob("*.sol"))
compiler = SolidityCompiler(config)
output = asyncio.run(compiler.compile(files, [SolcOutputSelectionEnum.ALL]))
assert len(output)
output = asyncio.run(compiler.compile(files, [SolcOutputSelectionEnum.ALL]))
assert len(output)
(PYTEST_BUILD_PATH / "wake.toml").write_text(
"""
[compiler.solc.optimizer]
enabled = true
"""
)
cli_runner = CliRunner()
with change_cwd(PYTEST_BUILD_PATH):
cli_result = cli_runner.invoke(
main,
["compile"],
env={
"XDG_CONFIG_HOME": str(PYTEST_BUILD_PATH),
"XDG_DATA_HOME": str(PYTEST_BUILD_PATH),
},
)
assert cli_result.exit_code == 0