mirror of
https://github.com/mudler/luet.git
synced 2025-06-23 14:07:35 +00:00
59 lines
2.3 KiB
Bash
Executable File
59 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
export LUET_NOLOCK=true
|
|
|
|
oneTimeSetUp() {
|
|
export tmpdir="$(mktemp -d)"
|
|
}
|
|
|
|
oneTimeTearDown() {
|
|
rm -rf "$tmpdir"
|
|
}
|
|
|
|
testBuildA() {
|
|
mkdir $tmpdir/testbuild1
|
|
luet build --tree "$ROOT_DIR/tests/fixtures/virtuals" --debug --compression "gzip" --destination $tmpdir/testbuild1 test/a
|
|
buildst=$?
|
|
assertEquals 'builds successfully' "$buildst" "0"
|
|
assertTrue 'create package A 1.99' "[ -e '$tmpdir/testbuild1/a-test-1.99.package.tar.gz' ]"
|
|
assertTrue 'create package A 1.99' "[ -e '$tmpdir/testbuild1/a-test-1.99.metadata.yaml' ]"
|
|
}
|
|
|
|
testBuildB() {
|
|
mkdir $tmpdir/testbuild2
|
|
luet build --tree "$ROOT_DIR/tests/fixtures/virtuals" --debug --compression "gzip" --destination $tmpdir/testbuild2 test/b
|
|
buildst=$?
|
|
assertEquals 'builds of B expected to fail. It depends on a virtual' "$buildst" "1"
|
|
}
|
|
|
|
testBuildC() {
|
|
mkdir $tmpdir/testbuild3
|
|
luet build --tree "$ROOT_DIR/tests/fixtures/virtuals" --debug --compression "gzip" --destination $tmpdir/testbuild3 test/c
|
|
buildst=$?
|
|
assertEquals 'builds of C expected to fail. Steps with no source image' "$buildst" "1"
|
|
}
|
|
|
|
testBuildImage() {
|
|
mkdir $tmpdir/testbuild4
|
|
luet build --tree "$ROOT_DIR/tests/fixtures/virtuals" --debug --compression "gzip" --destination $tmpdir/testbuild4 test/image
|
|
buildst=$?
|
|
assertEquals 'builds of test/image expected to succeed' "$buildst" "0"
|
|
assertTrue 'create package test/image 1.0' "[ -e '$tmpdir/testbuild4/image-test-1.0.package.tar.gz' ]"
|
|
assertTrue 'create package test/image 1.0' "[ -e '$tmpdir/testbuild4/image-test-1.0.metadata.yaml' ]"
|
|
}
|
|
|
|
testBuildVirtual() {
|
|
mkdir $tmpdir/testbuild5
|
|
luet build --tree "$ROOT_DIR/tests/fixtures/virtuals" --debug --compression "gzip" --destination $tmpdir/testbuild5 test/virtual
|
|
buildst=$?
|
|
assertEquals 'builds of test/virtual expected to succeed' "$buildst" "0"
|
|
assertTrue 'create package test/image 1.0' "[ -e '$tmpdir/testbuild5/image-test-1.0.package.tar.gz' ]"
|
|
assertTrue 'create package test/image 1.0' "[ -e '$tmpdir/testbuild5/image-test-1.0.metadata.yaml' ]"
|
|
assertTrue 'create package test/virtual 1.0' "[ -e '$tmpdir/testbuild5/virtual-test-1.0.package.tar.gz' ]"
|
|
assertTrue 'create package test/virtual 1.0' "[ -e '$tmpdir/testbuild5/virtual-test-1.0.metadata.yaml' ]"
|
|
}
|
|
|
|
# Load shUnit2.
|
|
. "$ROOT_DIR/tests/integration/shunit2"/shunit2
|
|
|