Skip to content

Commit

Permalink
stages(kickstart): run ksvalidator as part of the tests
Browse files Browse the repository at this point in the history
Run `ksvalidator` as part of the test_kickstart.py tests. This
ensures that the file we write is valid.
  • Loading branch information
mvo5 committed Nov 8, 2023
1 parent fb1bc6f commit bbdc622
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
42 changes: 41 additions & 1 deletion stages/test/test_kickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,42 @@
"timezone": "UTC",
},
"lang en_US.UTF-8\nkeyboard us\ntimezone UTC"),
({"ostree":
{
"osname": "some-osname",
"url": "http://some-ostree-url.com/foo",
"ref": "some-ref",
"remote": "some-remote",
"gpg": True,
},
"liveimg": {
"url": "some-liveimg-url",
},
"groups": {
"somegrp": {
"gid": 2337,
},
},
"users": {
"someusr": {
"uid": 1337,
"gid": 1337,
"groups": [
"grp1",
"grp2",
],
"home": "/other/home/someusr",
"shell": "/bin/ksh",
"password": "$1$notreally",
"key": "ssh-rsa not-really-a-real-key",
},
},
},
"ostreesetup --osname=some-osname --url=http://some-ostree-url.com/foo --ref=some-ref --remote=some-remote\n" +
"liveimg --url some-liveimg-url\ngroup --name somegrp --gid 2337\n" +
"user --name someusr --password $1$notreally --iscrypted --shell /bin/ksh --uid 1337 --gid 1337 --groups grp1,grp2 --homedir /other/home/someusr\n" +
'sshkey --username someusr "ssh-rsa not-really-a-real-key"'
),
])
def test_kickstart(tmp_path, test_input, expected):
ks_stage_path = os.path.join(os.path.dirname(__file__), "../org.osbuild.kickstart")
Expand All @@ -27,6 +63,10 @@ def test_kickstart(tmp_path, test_input, expected):

ks_stage.main(tmp_path, options)

with open(os.path.join(tmp_path, ks_path), encoding="utf-8") as fp:
ks_path = os.path.join(tmp_path, ks_path)
with open(ks_path, encoding="utf-8") as fp:
ks_content = fp.read()
assert ks_content == expected + "\n"

# double check with pykickstart if the file looks valid
subprocess.check_call(["ksvalidator", ks_path])
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ deps =
mako
iniparse
pyyaml
pykickstart

setenv =
LINTABLES = osbuild/ assemblers/* devices/* inputs/* mounts/* runners/* sources/* stages/*.* stages/test/*.py
Expand Down

0 comments on commit bbdc622

Please sign in to comment.