Skip to content

Commit

Permalink
test: Check the qcow2 image filesystem changes
Browse files Browse the repository at this point in the history
Make sure / is larger than the default of 10GiB and make sure there is a
new /var/log mountpoint.
  • Loading branch information
bcl committed Jan 16, 2024
1 parent bb0d2b1 commit 4222c65
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions test/test_smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,16 @@ def image_type_fixture(tmpdir_factory, build_container, request, force_aws_uploa
"groups": ["wheel"],
},
],
"filesystem": [
{
"mountpoint": "/",
"minsize": "12GiB"
},
{
"mountpoint": "/var/log",
"minsize": "1GiB"
}
]
},
},
}
Expand Down Expand Up @@ -179,6 +189,18 @@ def test_image_boots(image_type):
exit_status, output = test_vm.run("echo hello", user=image_type.username, password=image_type.password)
assert exit_status == 0
assert "hello" in output
exit_status, output = test_vm.run("df --output=target,size", user=image_type.username, password=image_type.password)
assert exit_status == 0
assert "/var/log" in output

# Figure out how big / is and make sure it is > 10GiB
# Note that df output is in 1k blocks, not bytes
for line in output.splitlines():
fields = line.split()
if fields[0] == "/sysroot":
size = int(fields[1])
assert size > 10 * 1024 * 1024
break


@pytest.mark.parametrize("image_type", ["ami"], indirect=["image_type"])
Expand Down

0 comments on commit 4222c65

Please sign in to comment.