1
0
mirror of https://github.com/rancher/os.git synced 2025-09-18 16:27:31 +00:00

parse RancherOS version from ./scripts/version

This commit is contained in:
Ivan Mikushin
2015-05-08 12:51:13 +05:00
parent 05609ca6fb
commit f919ac3193

View File

@@ -19,10 +19,19 @@ def qemu(request):
return p
def rancheros_version():
with open('./scripts/version') as f:
for ln in iter(f.readline, ''):
(k, _, v) = ln.partition('=')
if k == 'VERSION' and v.strip() != '':
return v.strip()
raise RuntimeError("Could not parse RancherOS version")
@pytest.mark.timeout(30)
def test_system_boot(qemu):
for ln in iter(qemu.stdout.readline, ''):
ros_booted_substr = str.find(ln, 'RancherOS v0.3.1-rc2 started') # TODO use ./scripts/version
ros_booted_substr = str.find(ln, 'RancherOS {v} started'.format(v=rancheros_version()))
print(str.strip(ln))
if ros_booted_substr > -1:
assert True