-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathtest_xspec.py
256 lines (216 loc) · 8.99 KB
/
test_xspec.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
from __future__ import annotations
import os
import shutil
import subprocess
import sys
from pathlib import Path
from typing import Callable
import pytest
import execnet
from execnet import XSpec
from execnet.gateway import Gateway
from execnet.gateway_io import popen_args
from execnet.gateway_io import ssh_args
from execnet.gateway_io import vagrant_ssh_args
skip_win_pypy = pytest.mark.xfail(
condition=hasattr(sys, "pypy_version_info") and sys.platform.startswith("win"),
reason="failing on Windows on PyPy (#63)",
)
class TestXSpec:
def test_norm_attributes(self) -> None:
spec = XSpec(
r"socket=192.168.102.2:8888//python=c:/this/python3.8//chdir=d:\hello"
)
assert spec.socket == "192.168.102.2:8888"
assert spec.python == "c:/this/python3.8"
assert spec.chdir == r"d:\hello"
assert spec.nice is None
assert not hasattr(spec, "_xyz")
with pytest.raises(AttributeError):
spec._hello() # type: ignore[misc,operator]
spec = XSpec("socket=192.168.102.2:8888//python=python2.5//nice=3")
assert spec.socket == "192.168.102.2:8888"
assert spec.python == "python2.5"
assert spec.chdir is None
assert spec.nice == "3"
spec = XSpec("ssh=user@host//chdir=/hello/this//python=/usr/bin/python2.5")
assert spec.ssh == "user@host"
assert spec.python == "/usr/bin/python2.5"
assert spec.chdir == "/hello/this"
spec = XSpec("popen")
assert spec.popen is True
def test_ssh_options(self) -> None:
spec = XSpec("ssh=-p 22100 user@host//python=python3")
assert spec.ssh == "-p 22100 user@host"
assert spec.python == "python3"
spec = XSpec(
"ssh=-i ~/.ssh/id_rsa-passwordless_login -p 22100 user@host//python=python3"
)
assert spec.ssh == "-i ~/.ssh/id_rsa-passwordless_login -p 22100 user@host"
assert spec.python == "python3"
def test_execmodel(self) -> None:
spec = XSpec("execmodel=thread")
assert spec.execmodel == "thread"
spec = XSpec("execmodel=eventlet")
assert spec.execmodel == "eventlet"
def test_ssh_options_and_config(self) -> None:
spec = XSpec("ssh=-p 22100 user@host//python=python3")
spec.ssh_config = "/home/user/ssh_config"
assert ssh_args(spec)[:6] == ["ssh", "-C", "-F", spec.ssh_config, "-p", "22100"]
def test_vagrant_options(self) -> None:
spec = XSpec("vagrant_ssh=default//python=python3")
assert vagrant_ssh_args(spec)[:-1] == ["vagrant", "ssh", "default", "--", "-C"]
def test_popen_with_sudo_python(self) -> None:
spec = XSpec("popen//python=sudo python3")
assert popen_args(spec) == [
"sudo",
"python3",
"-u",
"-c",
"import sys;exec(eval(sys.stdin.readline()))",
]
def test_env(self) -> None:
xspec = XSpec("popen//env:NAME=value1")
assert xspec.env["NAME"] == "value1"
def test__samefilesystem(self) -> None:
assert XSpec("popen")._samefilesystem()
assert XSpec("popen//python=123")._samefilesystem()
assert not XSpec("popen//chdir=hello")._samefilesystem()
def test__spec_spec(self) -> None:
for x in ("popen", "popen//python=this"):
assert XSpec(x)._spec == x
def test_samekeyword_twice_raises(self) -> None:
pytest.raises(ValueError, XSpec, "popen//popen")
pytest.raises(ValueError, XSpec, "popen//popen=123")
def test_unknown_keys_allowed(self) -> None:
xspec = XSpec("hello=3")
assert xspec.hello == "3"
def test_repr_and_string(self) -> None:
for x in ("popen", "popen//python=this"):
assert repr(XSpec(x)).find("popen") != -1
assert str(XSpec(x)) == x
def test_hash_equality(self) -> None:
assert XSpec("popen") == XSpec("popen")
assert hash(XSpec("popen")) == hash(XSpec("popen"))
assert XSpec("popen//python=123") != XSpec("popen")
assert hash(XSpec("socket=hello:8080")) != hash(XSpec("popen"))
class TestMakegateway:
def test_no_type(self, makegateway: Callable[[str], Gateway]) -> None:
pytest.raises(ValueError, lambda: makegateway("hello"))
@skip_win_pypy
def test_popen_default(self, makegateway: Callable[[str], Gateway]) -> None:
gw = makegateway("")
assert gw.spec.popen
assert gw.spec.python is None
rinfo = gw._rinfo()
# assert rinfo.executable == sys.executable
assert rinfo.cwd == os.getcwd()
assert rinfo.version_info == sys.version_info
@pytest.mark.skipif("not hasattr(os, 'nice')")
@pytest.mark.xfail(reason="fails due to timing problems on busy single-core VMs")
def test_popen_nice(self, makegateway: Callable[[str], Gateway]) -> None:
gw = makegateway("popen")
def getnice(channel) -> None:
import os
if hasattr(os, "nice"):
channel.send(os.nice(0))
else:
channel.send(None)
remotenice = gw.remote_exec(getnice).receive()
assert isinstance(remotenice, int)
gw.exit()
if remotenice is not None:
gw = makegateway("popen//nice=5")
remotenice2 = gw.remote_exec(getnice).receive()
assert remotenice2 == remotenice + 5
def test_popen_env(self, makegateway: Callable[[str], Gateway]) -> None:
gw = makegateway("popen//env:NAME123=123")
ch = gw.remote_exec(
"""
import os
channel.send(os.environ['NAME123'])
"""
)
value = ch.receive()
assert value == "123"
@skip_win_pypy
def test_popen_explicit(self, makegateway: Callable[[str], Gateway]) -> None:
gw = makegateway("popen//python=%s" % sys.executable)
assert gw.spec.python == sys.executable
rinfo = gw._rinfo()
assert rinfo.executable == sys.executable
assert rinfo.cwd == os.getcwd()
assert rinfo.version_info == sys.version_info
@skip_win_pypy
def test_popen_chdir_absolute(
self, tmp_path: Path, makegateway: Callable[[str], Gateway]
) -> None:
gw = makegateway("popen//chdir=%s" % tmp_path)
rinfo = gw._rinfo()
assert rinfo.cwd == str(tmp_path.resolve())
@skip_win_pypy
def test_popen_chdir_newsub(
self,
monkeypatch: pytest.MonkeyPatch,
tmp_path: Path,
makegateway: Callable[[str], Gateway],
) -> None:
monkeypatch.chdir(tmp_path)
gw = makegateway("popen//chdir=hello")
rinfo = gw._rinfo()
expected = str(tmp_path.joinpath("hello").resolve()).lower()
assert rinfo.cwd.lower() == expected
def test_ssh(self, specssh: XSpec, makegateway: Callable[[str], Gateway]) -> None:
sshhost = specssh.ssh
gw = makegateway("ssh=%s//id=ssh1" % sshhost)
assert gw.id == "ssh1"
def test_vagrant(self, makegateway: Callable[[str], Gateway]) -> None:
vagrant_bin = shutil.which("vagrant")
if vagrant_bin is None:
pytest.skip("Vagrant binary not in PATH")
res = subprocess.run(
[vagrant_bin, "status", "default", "--machine-readable"],
capture_output=True,
encoding="utf-8",
errors="replace",
check=True,
).stdout
print(res)
if ",default,state,shutoff\n" in res:
pytest.xfail("vm shutoff, run `vagrant up` first")
if ",default,state,not_created\n" in res:
pytest.xfail("vm not created, run `vagrant up` first")
if ",default,state,running\n" not in res:
pytest.fail("unknown vm state")
gw = makegateway("vagrant_ssh=default//python=python3")
rinfo = gw._rinfo()
assert rinfo.cwd == "/home/vagrant"
assert rinfo.executable == "/usr/bin/python"
def test_socket(
self, specsocket: XSpec, makegateway: Callable[[str], Gateway]
) -> None:
gw = makegateway("socket=%s//id=sock1" % specsocket.socket)
rinfo = gw._rinfo()
assert rinfo.executable
assert rinfo.cwd
assert rinfo.version_info
assert gw.id == "sock1"
# we cannot instantiate a second gateway
@pytest.mark.xfail(reason="we can't instantiate a second gateway")
def test_socket_second(
self, specsocket: XSpec, makegateway: Callable[[str], Gateway]
) -> None:
gw = makegateway("socket=%s//id=sock1" % specsocket.socket)
gw2 = makegateway("socket=%s//id=sock1" % specsocket.socket)
rinfo = gw._rinfo()
rinfo2 = gw2._rinfo()
assert rinfo.executable == rinfo2.executable
assert rinfo.cwd == rinfo2.cwd
assert rinfo.version_info == rinfo2.version_info
def test_socket_installvia(self) -> None:
group = execnet.Group()
group.makegateway("popen//id=p1")
gw = group.makegateway("socket//installvia=p1//id=s1")
assert gw.id == "s1"
assert gw.remote_status()
group.terminate()