mirror of
https://github.com/clearlinux/swupd-client.git
synced 2026-09-03 12:11:28 +00:00
Sometimes is useful to see the list of dependencies in a tree view form, for example when trying to remove bundles from a system. This commit adds the ability of listing the dependencies of a bundle in a tree view when --verbose is used. Closes #929 Signed-off-by: Castulo Martinez <castulo.martinez@intel.com>
55 lines
1.3 KiB
Bash
Executable File
55 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
load "../testlib"
|
|
|
|
test_setup() {
|
|
|
|
create_test_environment "$TEST_NAME"
|
|
create_bundle -n test-bundle1 -f /foo "$TEST_NAME"
|
|
create_bundle -n test-bundle2 -f /foo "$TEST_NAME"
|
|
create_bundle -n test-bundle3 -f /foo "$TEST_NAME"
|
|
# add bundle2 as dependencies of bundle1 and bundle 3 as dependency of bundle2
|
|
add_dependency_to_manifest "$TEST_NAME"/web-dir/10/Manifest.test-bundle1 test-bundle2
|
|
add_dependency_to_manifest "$TEST_NAME"/web-dir/10/Manifest.test-bundle2 test-bundle3
|
|
|
|
}
|
|
|
|
@test "LST007: List bundle's dependencies when bundle has nested dependencies" {
|
|
|
|
run sudo sh -c "$SWUPD bundle-list $SWUPD_OPTS --deps test-bundle1"
|
|
|
|
assert_status_is "$SWUPD_OK"
|
|
expected_output=$(cat <<-EOM
|
|
Loading required manifests...
|
|
|
|
Bundles included by test-bundle1:
|
|
- test-bundle2
|
|
- test-bundle3
|
|
|
|
Total: 2
|
|
EOM
|
|
)
|
|
assert_is_output --identical "$expected_output"
|
|
|
|
}
|
|
|
|
@test "LST023: List bundle's dependencies (with nested deps) in a tree view" {
|
|
|
|
run sudo sh -c "$SWUPD bundle-list $SWUPD_OPTS --deps test-bundle1 --verbose"
|
|
|
|
assert_status_is "$SWUPD_OK"
|
|
expected_output=$(cat <<-EOM
|
|
Loading required manifests...
|
|
|
|
Bundles included by test-bundle1:
|
|
* test-bundle1
|
|
|-- test-bundle2
|
|
|-- test-bundle3
|
|
|
|
Total: 2
|
|
EOM
|
|
)
|
|
assert_is_output --identical "$expected_output"
|
|
|
|
}
|