mirror of
https://github.com/clearlinux/swupd-client.git
synced 2026-08-23 22:46:03 +00:00
acad8c47b0
The current format is very useful information to get from bug reports so add it as default output to swupd update. Signed-off-by: William Douglas <william.douglas@intel.com>
81 lines
2.9 KiB
Bash
Executable File
81 lines
2.9 KiB
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
load "../testlib"
|
|
|
|
test_setup() {
|
|
|
|
# create the test env with two bundles (one installed)
|
|
create_test_environment "$TEST_NAME"
|
|
create_bundle -L -n test-bundle1 -f /foo/testfile1 "$TEST_NAME"
|
|
create_bundle -n test-bundle2 -f /bar/testfile2 "$TEST_NAME"
|
|
# create a new version 100
|
|
create_version -p "$TEST_NAME" 100 10
|
|
# modify test-bundle1 and test-bundle2
|
|
update_bundle "$TEST_NAME" test-bundle1 --update /foo/testfile1
|
|
update_bundle "$TEST_NAME" test-bundle2 --update /bar/testfile2
|
|
# create new bundles for version 100
|
|
create_bundle -v 100 -n test-bundle3 -f /foo/testfile3 "$TEST_NAME"
|
|
create_bundle -v 100 -n test-bundle4 -f /foo/testfile4 "$TEST_NAME"
|
|
create_bundle -v 100 -n test-bundle5 -f /foo/testfile5 "$TEST_NAME"
|
|
create_bundle -v 100 -n test-bundle6 -f /foo/testfile6 "$TEST_NAME"
|
|
create_bundle -v 100 -n test-bundle7 -f /foo/testfile7 "$TEST_NAME"
|
|
# add dependencies
|
|
add_dependency_to_manifest "$WEB_DIR"/100/Manifest.test-bundle1 test-bundle3
|
|
add_dependency_to_manifest "$WEB_DIR"/100/Manifest.test-bundle2 test-bundle7
|
|
add_dependency_to_manifest -p "$WEB_DIR"/100/Manifest.test-bundle3 test-bundle2
|
|
add_dependency_to_manifest "$WEB_DIR"/100/Manifest.test-bundle3 test-bundle4
|
|
add_dependency_to_manifest -p "$WEB_DIR"/100/Manifest.test-bundle4 test-bundle5
|
|
add_dependency_to_manifest "$WEB_DIR"/100/Manifest.test-bundle4 test-bundle6
|
|
add_dependency_to_manifest "$WEB_DIR"/100/Manifest.test-bundle5 test-bundle2
|
|
add_dependency_to_manifest "$WEB_DIR"/100/Manifest.test-bundle6 os-core
|
|
add_dependency_to_manifest "$WEB_DIR"/100/Manifest.test-bundle7 os-core
|
|
|
|
|
|
}
|
|
|
|
@test "UPD011: Update a system where nested dependencies are added in the newer version" {
|
|
|
|
run sudo sh -c "$SWUPD update $SWUPD_OPTS"
|
|
|
|
assert_status_is 0
|
|
expected_output=$(cat <<-EOM
|
|
Update started
|
|
Preparing to update from 10 to 100 (in format staging)
|
|
Downloading packs for:
|
|
- test-bundle6
|
|
- test-bundle5
|
|
- test-bundle4
|
|
- test-bundle7
|
|
- test-bundle2
|
|
- test-bundle3
|
|
- test-bundle1
|
|
Finishing packs extraction...
|
|
Statistics for going from version 10 to version 100:
|
|
changed bundles : 1
|
|
new bundles : 6
|
|
deleted bundles : 0
|
|
changed files : 1
|
|
new files : 13
|
|
deleted files : 0
|
|
Validate downloaded files
|
|
No extra files need to be downloaded
|
|
Installing files...
|
|
Update was applied
|
|
Calling post-update helper scripts
|
|
Update successful - System updated from version 10 to version 100
|
|
EOM
|
|
)
|
|
assert_is_output "$expected_output"
|
|
# changed files
|
|
assert_file_exists "$TARGET_DIR"/foo/testfile1
|
|
assert_file_exists "$TARGET_DIR"/bar/testfile2
|
|
# new files
|
|
assert_file_exists "$TARGET_DIR"/foo/testfile3
|
|
assert_file_exists "$TARGET_DIR"/foo/testfile4
|
|
assert_file_exists "$TARGET_DIR"/foo/testfile5
|
|
assert_file_exists "$TARGET_DIR"/foo/testfile6
|
|
assert_file_exists "$TARGET_DIR"/foo/testfile7
|
|
|
|
}
|
|
#WEIGHT=12
|