Files
William Douglas 776f8c92b0 Update use bats setup and teardown features
Instead of relying on a custom global_setup and global_teardown
functions, migrate to the use of bats' setup_file and teardown_file
functions.

Signed-off-by: William Douglas <william.douglas@intel.com>
2023-02-17 12:58:05 -08:00

57 lines
1.1 KiB
Bash
Executable File

#!/usr/bin/env bats
# Author: Castulo Martinez
# Email: castulo.martinez@intel.com
load "../testlib"
setup_file() {
create_test_environment "$TEST_NAME"
create_bundle -L -n test-bundle1 -f /file_1 "$TEST_NAME"
create_bundle -L -n test-bundle2 -f /file_2 "$TEST_NAME"
create_bundle -n test-bundle3 -f /file_3 "$TEST_NAME"
}
teardown_file() {
destroy_test_environment --force "$TEST_NAME"
}
@test "LST021: List all installed bundles using a scriptable output (quiet)" {
# when using the --quiet flag, the output should be in a format that
# can be piped
run sudo sh -c "$SWUPD bundle-list $SWUPD_OPTS --quiet"
assert_status_is "$SWUPD_OK"
expected_output=$(cat <<-EOM
os-core
test-bundle1
test-bundle2
EOM
)
assert_is_output --identical "$expected_output"
}
@test "LST022: List all available bundles using scriptable output (quiet)" {
run sudo sh -c "$SWUPD bundle-list $SWUPD_OPTS --all --quiet"
assert_status_is "$SWUPD_OK"
expected_output=$(cat <<-EOM
os-core
test-bundle1
test-bundle2
test-bundle3
EOM
)
assert_is_output --identical "$expected_output"
}
#WEIGHT=6