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 Mar 21, 2024
1 parent 04cab2b commit 653de86
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,16 @@ def build_images(shared_tmpdir, build_container, request, force_aws_upload):
"groups": ["wheel"],
},
],
"filesystem": [
{
"mountpoint": "/",
"minsize": "12GiB"
},
{
"mountpoint": "/var/log",
"minsize": "1GiB"
}
]
},
},
}
Expand Down Expand Up @@ -323,6 +333,19 @@ 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", gen_testcases("ami-boot"), indirect=["image_type"])
Expand Down

0 comments on commit 653de86

Please sign in to comment.