mirror of https://github.com/apache/cloudstack.git
71 lines
2.5 KiB
Python
71 lines
2.5 KiB
Python
import py
|
|
import execnet
|
|
from xdist.slavemanage import NodeManager
|
|
|
|
def test_dist_incompatibility_messages(testdir):
|
|
result = testdir.runpytest("--pdb", "--looponfail")
|
|
assert result.ret != 0
|
|
result = testdir.runpytest("--pdb", "-n", "3")
|
|
assert result.ret != 0
|
|
assert "incompatible" in result.stderr.str()
|
|
result = testdir.runpytest("--pdb", "-d", "--tx", "popen")
|
|
assert result.ret != 0
|
|
assert "incompatible" in result.stderr.str()
|
|
|
|
def test_dist_options(testdir):
|
|
from xdist.plugin import check_options
|
|
config = testdir.parseconfigure("-n 2")
|
|
check_options(config)
|
|
assert config.option.dist == "load"
|
|
assert config.option.tx == ['popen'] * 2
|
|
config = testdir.parseconfigure("-d")
|
|
check_options(config)
|
|
assert config.option.dist == "load"
|
|
|
|
class TestDistOptions:
|
|
def test_getxspecs(self, testdir):
|
|
config = testdir.parseconfigure("--tx=popen", "--tx", "ssh=xyz")
|
|
nodemanager = NodeManager(config)
|
|
xspecs = nodemanager._getxspecs()
|
|
assert len(xspecs) == 2
|
|
print(xspecs)
|
|
assert xspecs[0].popen
|
|
assert xspecs[1].ssh == "xyz"
|
|
|
|
def test_xspecs_multiplied(self, testdir):
|
|
config = testdir.parseconfigure("--tx=3*popen",)
|
|
xspecs = NodeManager(config)._getxspecs()
|
|
assert len(xspecs) == 3
|
|
assert xspecs[1].popen
|
|
|
|
def test_getrsyncdirs(self, testdir):
|
|
config = testdir.parseconfigure('--rsyncdir=' + str(testdir.tmpdir))
|
|
nm = NodeManager(config, specs=[execnet.XSpec("popen")])
|
|
assert not nm._getrsyncdirs()
|
|
nm = NodeManager(config, specs=[execnet.XSpec("popen//chdir=qwe")])
|
|
assert nm.roots
|
|
assert testdir.tmpdir in nm.roots
|
|
|
|
def test_getrsyncignore(self, testdir):
|
|
config = testdir.parseconfigure('--rsyncignore=fo*')
|
|
nm = NodeManager(config, specs=[execnet.XSpec("popen//chdir=qwe")])
|
|
assert 'fo*' in nm.rsyncoptions['ignores']
|
|
|
|
def test_getrsyncdirs_with_conftest(self, testdir):
|
|
p = py.path.local()
|
|
for bn in 'x y z'.split():
|
|
p.mkdir(bn)
|
|
testdir.makeini("""
|
|
[pytest]
|
|
rsyncdirs= x
|
|
""")
|
|
config = testdir.parseconfigure(
|
|
testdir.tmpdir, '--rsyncdir=y', '--rsyncdir=z')
|
|
nm = NodeManager(config, specs=[execnet.XSpec("popen//chdir=xyz")])
|
|
roots = nm._getrsyncdirs()
|
|
#assert len(roots) == 3 + 1 # pylib
|
|
assert py.path.local('y') in roots
|
|
assert py.path.local('z') in roots
|
|
assert testdir.tmpdir.join('x') in roots
|
|
|