diff --git a/tests/fixtures/upgrade_integration/c/build.yaml b/tests/fixtures/upgrade_integration/c/build.yaml new file mode 100644 index 00000000..dc3fba0a --- /dev/null +++ b/tests/fixtures/upgrade_integration/c/build.yaml @@ -0,0 +1,10 @@ +prelude: + - echo foo > /test + - echo bar > /test2 +steps: + - echo c > /c + - echo c > /cd +requires: +- category: "test" + name: "a" + version: ">=1.0" diff --git a/tests/fixtures/upgrade_integration/c/definition.yaml b/tests/fixtures/upgrade_integration/c/definition.yaml new file mode 100644 index 00000000..348454f7 --- /dev/null +++ b/tests/fixtures/upgrade_integration/c/definition.yaml @@ -0,0 +1,3 @@ +category: "test" +name: "c" +version: "1.0" diff --git a/tests/fixtures/upgrade_integration/cat/a/a/build.yaml b/tests/fixtures/upgrade_integration/cat/a/a/build.yaml new file mode 100644 index 00000000..b9fe4c1d --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/a/a/build.yaml @@ -0,0 +1,11 @@ +image: "alpine" +prelude: + - echo foo > /test + - echo bar > /test2 +steps: + - echo artifact3 > /test3 + - echo artifact4 > /test4 +requires: +- category: "test" + name: "b" + version: "1.0" diff --git a/tests/fixtures/upgrade_integration/cat/a/a/definition.yaml b/tests/fixtures/upgrade_integration/cat/a/a/definition.yaml new file mode 100644 index 00000000..8636f875 --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/a/a/definition.yaml @@ -0,0 +1,8 @@ +category: "test" +name: "a" +version: "1.1" +requires: +- category: "test" + name: "b" + version: ">=0.1" + diff --git a/tests/fixtures/upgrade_integration/cat/a/a1.0/build.yaml b/tests/fixtures/upgrade_integration/cat/a/a1.0/build.yaml new file mode 100644 index 00000000..d62078ca --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/a/a1.0/build.yaml @@ -0,0 +1,11 @@ +image: "alpine" +prelude: + - echo foo > /test + - echo bar > /test2 +steps: + - echo artifact3 > /testaa + - echo artifact4 > /testaa2 +requires: +- category: "test" + name: "b" + version: "1.0" diff --git a/tests/fixtures/upgrade_integration/cat/a/a1.0/definition.yaml b/tests/fixtures/upgrade_integration/cat/a/a1.0/definition.yaml new file mode 100644 index 00000000..6180c317 --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/a/a1.0/definition.yaml @@ -0,0 +1,3 @@ +category: "test" +name: "a" +version: "1.0" diff --git a/tests/fixtures/upgrade_integration/cat/b-1.1/build.yaml b/tests/fixtures/upgrade_integration/cat/b-1.1/build.yaml new file mode 100644 index 00000000..3e3f98a4 --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/b-1.1/build.yaml @@ -0,0 +1,9 @@ +image: "alpine" +prelude: + - echo foo > /test + - echo bar > /test2 + - chmod +x generate.sh +steps: + - echo artifact5 > /newc + - echo artifact6 > /newnewc + - ./generate.sh diff --git a/tests/fixtures/upgrade_integration/cat/b-1.1/definition.yaml b/tests/fixtures/upgrade_integration/cat/b-1.1/definition.yaml new file mode 100644 index 00000000..e695c6c9 --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/b-1.1/definition.yaml @@ -0,0 +1,3 @@ +category: "test" +name: "b" +version: "1.1" diff --git a/tests/fixtures/upgrade_integration/cat/b-1.1/generate.sh b/tests/fixtures/upgrade_integration/cat/b-1.1/generate.sh new file mode 100644 index 00000000..3b2dc1b2 --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/b-1.1/generate.sh @@ -0,0 +1 @@ +echo generated > /sonewc diff --git a/tests/fixtures/upgrade_integration/cat/b/build.yaml b/tests/fixtures/upgrade_integration/cat/b/build.yaml new file mode 100644 index 00000000..05a81578 --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/b/build.yaml @@ -0,0 +1,9 @@ +image: "alpine" +prelude: + - echo foo > /test + - echo bar > /test2 + - chmod +x generate.sh +steps: + - echo artifact5 > /test5 + - echo artifact6 > /test6 + - ./generate.sh \ No newline at end of file diff --git a/tests/fixtures/upgrade_integration/cat/b/definition.yaml b/tests/fixtures/upgrade_integration/cat/b/definition.yaml new file mode 100644 index 00000000..b02a44e8 --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/b/definition.yaml @@ -0,0 +1,3 @@ +category: "test" +name: "b" +version: "1.0" diff --git a/tests/fixtures/upgrade_integration/cat/b/generate.sh b/tests/fixtures/upgrade_integration/cat/b/generate.sh new file mode 100644 index 00000000..b67417f6 --- /dev/null +++ b/tests/fixtures/upgrade_integration/cat/b/generate.sh @@ -0,0 +1 @@ +echo generated > /artifact42 diff --git a/tests/integration/05_upgrade.sh b/tests/integration/05_upgrade.sh new file mode 100755 index 00000000..50d43b33 --- /dev/null +++ b/tests/integration/05_upgrade.sh @@ -0,0 +1,101 @@ +#!/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/upgrade_integration" --destination $tmpdir/testbuild --compression gzip test/b-1.0 + buildst=$? + assertTrue 'create package B 1.0' "[ -e '$tmpdir/testbuild/b-test-1.0.package.tar.gz' ]" + assertEquals 'builds successfully' "$buildst" "0" + + luet build --tree "$ROOT_DIR/tests/fixtures/upgrade_integration" --destination $tmpdir/testbuild --compression gzip test/b-1.1 + buildst=$? + assertEquals 'builds successfully' "$buildst" "0" + assertTrue 'create package B 1.1' "[ -e '$tmpdir/testbuild/b-test-1.1.package.tar.gz' ]" + + luet build --tree "$ROOT_DIR/tests/fixtures/upgrade_integration" --destination $tmpdir/testbuild --compression gzip test/a-1.0 + buildst=$? + assertEquals 'builds successfully' "$buildst" "0" + assertTrue 'create package A 1.0' "[ -e '$tmpdir/testbuild/a-test-1.0.package.tar.gz' ]" + + luet build --tree "$ROOT_DIR/tests/fixtures/upgrade_integration" --destination $tmpdir/testbuild --compression gzip test/a-1.1 + buildst=$? + assertEquals 'builds successfully' "$buildst" "0" + + assertTrue 'create package A 1.1' "[ -e '$tmpdir/testbuild/a-test-1.1.package.tar.gz' ]" + +} + +testRepo() { + assertTrue 'no repository' "[ ! -e '$tmpdir/testbuild/repository.yaml' ]" + luet create-repo --tree "$ROOT_DIR/tests/fixtures/upgrade_integration" \ + --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" +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 --config $tmpdir/luet.yaml test/b-1.0 + #luet install --config $tmpdir/luet.yaml test/c-1.0 > /dev/null + installst=$? + assertEquals 'install test successfully' "$installst" "0" + assertTrue 'package installed B' "[ -e '$tmpdir/testrootfs/test5' ]" + + luet install --config $tmpdir/luet.yaml test/a-1.0 + #luet install --config $tmpdir/luet.yaml test/c-1.0 > /dev/null + assertTrue 'package installed A' "[ -e '$tmpdir/testrootfs/testaa' ]" + + installst=$? +} + +testUpgrade() { + output=$(luet --config $tmpdir/luet.yaml upgrade) + installst=$? + echo $output + assertEquals 'install test successfully' "$installst" "0" + assertTrue 'package uninstalled B' "[ ! -e '$tmpdir/testrootfs/test5' ]" + assertTrue 'package installed B' "[ -e '$tmpdir/testrootfs/newc' ]" + assertTrue 'package uninstalled A' "[ ! -e '$tmpdir/testrootfs/testaa' ]" + assertTrue 'package installed new A' "[ -e '$tmpdir/testrootfs/test3' ]" +} + +# Load shUnit2. +. "$ROOT_DIR/tests/integration/shunit2"/shunit2 +