mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
33 lines
951 B
Python
Executable File
33 lines
951 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import infamy
|
|
from infamy.util import wait_boot
|
|
|
|
with infamy.Test() as test:
|
|
with test.step("Initialize"):
|
|
env = infamy.Env()
|
|
target = env.attach("target", "mgmt")
|
|
|
|
with test.step("Configure"):
|
|
target.put_config_dict("ietf-system", {
|
|
"system": {
|
|
"hostname": "test"
|
|
}
|
|
})
|
|
target.delete_xpath("/ietf-hardware:hardware/component")
|
|
target.copy("running", "startup")
|
|
|
|
with test.step("Reboot and wait for the unit to come back"):
|
|
target.startup_override()
|
|
target.copy("running", "startup")
|
|
target.reboot()
|
|
if not wait_boot(target, env):
|
|
test.fail()
|
|
target = env.attach("target", "mgmt", test_default=False)
|
|
|
|
with test.step("Verify hostname"):
|
|
data = target.get_dict("/ietf-system:system/hostname")
|
|
assert data["system"]["hostname"] == "test"
|
|
|
|
test.succeed()
|