diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-19 21:35:27 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-19 21:35:27 -0500 |
commit | 02a2ad393de6cbea726514226e3419db6517307c (patch) | |
tree | 000fb00ec7ec9a4a963a21ae3e2a770a5de8179f /tests/fixtures | |
parent | f1ef45bd84b57b40b701e094a9b49daac3761f9f (diff) | |
download | horizon-02a2ad393de6cbea726514226e3419db6517307c.tar.gz horizon-02a2ad393de6cbea726514226e3419db6517307c.tar.bz2 horizon-02a2ad393de6cbea726514226e3419db6517307c.tar.xz horizon-02a2ad393de6cbea726514226e3419db6517307c.zip |
hscript: Implement Firmware, and add tests
Diffstat (limited to 'tests/fixtures')
4 files changed, 26 insertions, 0 deletions
diff --git a/tests/fixtures/0111-firmware-true.installfile b/tests/fixtures/0111-firmware-true.installfile new file mode 100644 index 0000000..a2d5ead --- /dev/null +++ b/tests/fixtures/0111-firmware-true.installfile @@ -0,0 +1,6 @@ +network false +hostname test.machine +pkginstall adelie-base +rootpw $6$gumtLGmHwOVIRpQR$2M9PUO24hy5mofzWWf9a.YLbzOgOlUby1g0hDj.wG67E2wrrvys59fq02PPdxBdbgkLZFtjfEx6MHZwMBamwu/ +mount /dev/sda1 / +firmware true diff --git a/tests/fixtures/0112-firmware-false.installfile b/tests/fixtures/0112-firmware-false.installfile new file mode 100644 index 0000000..9abc556 --- /dev/null +++ b/tests/fixtures/0112-firmware-false.installfile @@ -0,0 +1,6 @@ +network false +hostname test.machine +pkginstall adelie-base +rootpw $6$gumtLGmHwOVIRpQR$2M9PUO24hy5mofzWWf9a.YLbzOgOlUby1g0hDj.wG67E2wrrvys59fq02PPdxBdbgkLZFtjfEx6MHZwMBamwu/ +mount /dev/sda1 / +firmware false diff --git a/tests/fixtures/0113-firmware-invalid.installfile b/tests/fixtures/0113-firmware-invalid.installfile new file mode 100644 index 0000000..b823be1 --- /dev/null +++ b/tests/fixtures/0113-firmware-invalid.installfile @@ -0,0 +1,7 @@ +network false +hostname test.machine +pkginstall adelie-base +rootpw $6$gumtLGmHwOVIRpQR$2M9PUO24hy5mofzWWf9a.YLbzOgOlUby1g0hDj.wG67E2wrrvys59fq02PPdxBdbgkLZFtjfEx6MHZwMBamwu/ +mount /dev/sda1 / +# Intentional misspelling +firmware fasle diff --git a/tests/fixtures/0114-firmware-duplicate.installfile b/tests/fixtures/0114-firmware-duplicate.installfile new file mode 100644 index 0000000..372c645 --- /dev/null +++ b/tests/fixtures/0114-firmware-duplicate.installfile @@ -0,0 +1,7 @@ +network false +hostname test.machine +pkginstall adelie-base +rootpw $6$gumtLGmHwOVIRpQR$2M9PUO24hy5mofzWWf9a.YLbzOgOlUby1g0hDj.wG67E2wrrvys59fq02PPdxBdbgkLZFtjfEx6MHZwMBamwu/ +mount /dev/sda1 / +firmware false +firmware false |