Skip to content

Commit 6bba08f

Browse files
cgwaltersopenshift-merge-robot
authored andcommitted
kola: Handle quotes in autopkgtest reboot mark
I was working again on OSTree's destructive tests and I tried switching to serializing JSON via Rust's serde into the `AUTOPKGTEST_REBOOT_MARK` field so I could more easily pass data between reboots. Well, that turned out to be a mess; of course we had multiple levels of quoting bugs in multiple places. I initially tried just shell quoting it - it took me a little while to realize that we *also* need to quote it for systemd to parse from the environment file. Copy the file rather than using ssh, and just quote for systemd.
1 parent 82bd628 commit 6bba08f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

mantle/cmd/kolet/kolet.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ const (
9595
autopkgTestRebootPath = "/tmp/autopkgtest-reboot"
9696
autopkgtestRebootScript = `#!/bin/bash
9797
set -xeuo pipefail
98-
~core/kolet reboot-request $1
98+
~core/kolet reboot-request "$1"
9999
reboot
100100
`
101101
autopkgTestRebootPreparePath = "/tmp/autopkgtest-reboot-prepare"
102102

103103
autopkgtestRebootPrepareScript = `#!/bin/bash
104104
set -euo pipefail
105-
exec ~core/kolet reboot-request $1
105+
exec ~core/kolet reboot-request "$1"
106106
`
107107

108108
// File used to communicate between the script and the kolet runner internally

mantle/kola/harness.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -564,8 +564,12 @@ func runExternalTest(c cluster.TestCluster, mach platform.Machine) error {
564564
}
565565
plog.Debug("Starting kolet run-test-unit")
566566
if previousRebootState != "" {
567-
plog.Debugf("Setting AUTOPKGTEST_REBOOT_MARK=%s", previousRebootState)
568-
c.MustSSHf(mach, "echo AUTOPKGTEST_REBOOT_MARK=%s | sudo tee /run/kola-runext-env", previousRebootState)
567+
// quote around the value for systemd
568+
contents := fmt.Sprintf("AUTOPKGTEST_REBOOT_MARK='%s'", previousRebootState)
569+
plog.Debugf("Setting %s", contents)
570+
if err := platform.InstallFile(strings.NewReader(contents), mach, "/run/kola-runext-env"); err != nil {
571+
return err
572+
}
569573
previousRebootState = ""
570574
}
571575
stdout, stderr, err = mach.SSH(fmt.Sprintf("sudo ./kolet run-test-unit %s", shellquote.Join(KoletExtTestUnit)))

tests/kola-ci-self/tests/kola/autopkgtest-reboot

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
set -xeuo pipefail
55
case "${AUTOPKGTEST_REBOOT_MARK:-}" in
66
"") echo "test beginning"; /tmp/autopkgtest-reboot mark1 ;;
7-
mark1) echo "test in mark1"; /tmp/autopkgtest-reboot mark2 ;;
8-
mark2)
7+
mark1) echo "test in mark1"; /tmp/autopkgtest-reboot 'mark2 "internal quotes"' ;;
8+
'mark2 "internal quotes"')
99
echo "test in mark2"
1010
# Test hard forced reboot
1111
/tmp/autopkgtest-reboot-prepare mark3

0 commit comments

Comments
 (0)