#!/bin/bash export LUET_NOLOCK=true oneTimeSetUp() { export tmpdir="$(mktemp -d)" } oneTimeTearDown() { rm -rf "$tmpdir" } testBuild() { mkdir $tmpdir/testbuild luet build --tree "$ROOT_DIR/tests/fixtures/collections" --destination $tmpdir/testbuild --compression gzip --all buildst=$? assertEquals 'builds successfully' "$buildst" "0" assertTrue 'create package B' "[ -e '$tmpdir/testbuild/b-distro-0.3.package.tar.gz' ]" assertTrue 'create package A' "[ -e '$tmpdir/testbuild/a-distro-0.1.package.tar.gz' ]" assertTrue 'create package C' "[ -e '$tmpdir/testbuild/c-distro-0.3.package.tar.gz' ]" } testRepo() { assertTrue 'no repository' "[ ! -e '$tmpdir/testbuild/repository.yaml' ]" luet create-repo --tree "$ROOT_DIR/tests/fixtures/collections" \ --output $tmpdir/testbuild \ --packages $tmpdir/testbuild \ --name "test" \ --descr "Test Repo" \ --urls $tmpdir/testrootfs \ --type disk createst=$? assertEquals 'create repo successfully' "$createst" "0" assertTrue 'create repository' "[ -e '$tmpdir/testbuild/repository.yaml' ]" } testConfig() { mkdir $tmpdir/testrootfs cat < $tmpdir/luet.yaml general: debug: true system: rootfs: $tmpdir/testrootfs database_path: "/" database_engine: "boltdb" config_from_host: true repositories: - name: "main" type: "disk" enable: true urls: - "$tmpdir/testbuild" EOF luet config --config $tmpdir/luet.yaml res=$? assertEquals 'config test successfully' "$res" "0" } testInstall() { luet install -y --config $tmpdir/luet.yaml distro/a installst=$? assertEquals 'install test successfully' "$installst" "0" assertTrue 'package installed A' "[ -e '$tmpdir/testrootfs/a' ]" # Build time can interpolate on fields which aren't package properties. assertTrue 'extra field on A' "[ -e '$tmpdir/testrootfs/build-extra-baz' ]" # Finalizers can interpolate only on package field. No extra fields are allowed at this time. assertTrue 'finalizer executed on A' "[ -e '$tmpdir/testrootfs/finalize-a' ]" installed=$(luet --config $tmpdir/luet.yaml search --installed .) searchst=$? assertEquals 'search exists successfully' "$searchst" "0" assertContains 'contains distro/a-0.1' "$installed" 'distro/a-0.1' luet uninstall -y --config $tmpdir/luet.yaml distro/a installst=$? assertEquals 'install test successfully' "$installst" "0" # We do the same check for the others luet install -y --config $tmpdir/luet.yaml distro/b installst=$? assertEquals 'install test successfully' "$installst" "0" assertTrue 'package installed B' "[ -e '$tmpdir/testrootfs/b' ]" assertTrue 'extra field on B' "[ -e '$tmpdir/testrootfs/build-extra-f' ]" assertTrue 'finalizer executed on B' "[ -e '$tmpdir/testrootfs/finalize-b' ]" installed=$(luet --config $tmpdir/luet.yaml search --installed .) searchst=$? assertEquals 'search exists successfully' "$searchst" "0" assertContains 'contains distro/b-0.3' "$installed" 'distro/b-0.3' luet uninstall -y --config $tmpdir/luet.yaml distro/b installst=$? assertEquals 'install test successfully' "$installst" "0" luet install -y --config $tmpdir/luet.yaml distro/c installst=$? assertEquals 'install test successfully' "$installst" "0" assertTrue 'package installed C' "[ -e '$tmpdir/testrootfs/c' ]" assertTrue 'extra field on C' "[ -e '$tmpdir/testrootfs/build-extra-bar' ]" assertTrue 'finalizer executed on C' "[ -e '$tmpdir/testrootfs/finalize-c' ]" installed=$(luet --config $tmpdir/luet.yaml search --installed .) searchst=$? assertEquals 'search exists successfully' "$searchst" "0" assertContains 'contains distro/c-0.3' "$installed" 'distro/c-0.3' luet uninstall -y --config $tmpdir/luet.yaml distro/c installst=$? assertEquals 'install test successfully' "$installst" "0" } # Load shUnit2. . "$ROOT_DIR/tests/integration/shunit2"/shunit2