Skip to content

Commit

Permalink
tests/vmcheck: add test for refresh-md and --cache-only
Browse files Browse the repository at this point in the history
  • Loading branch information
jlebon committed Oct 6, 2017
1 parent 4d8066c commit e9730d1
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
41 changes: 41 additions & 0 deletions tests/vmcheck/test-basic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,44 @@ fi
assert_file_has_content err.txt "run.*journalctl.*for more information"
vm_assert_journal_has_content $cursor 'rpm-ostree(bad-post.post).*a bad post'
echo "ok script output prefixed in journal"

# check refresh-md/-C functionality

# local repos are always cached, so let's start up an http server for the same
# vmcheck repo
start_http_repo() {
vm_cmd systemd-run --unit vmcheck-httpd python -m SimpleHTTPServer 8888
cat > vmcheck-http.repo << EOF
[vmcheck-http]
name=vmcheck-http
baseurl=http://localhost:8888/vmcheck/yumrepo
gpgcheck=0
EOF
vm_send /etc/yum.repos.d vmcheck-http.repo
# NB: the EXIT trap is used by libtest, but not the ERR trap
trap stop_http_repo ERR
}

stop_http_repo() {
vm_cmd systemctl stop vmcheck-httpd.service
}

start_http_repo
vm_rpmostree cleanup -rpmb
vm_cmd rm -f /etc/yum.repos.d/vmcheck.repo
vm_build_rpm_repo_mode skip makecache-old-pkg
vm_rpmostree refresh-md
vm_build_rpm_repo_mode skip makecache-new-pkg
vm_rpmostree refresh-md # shouldn't do anything since it hasn't expired yet
if ! vm_rpmostree install -C makecache-old-pkg --dry-run; then
assert_not_reached "failed to dry-run install old pkg from cached rpmmd"
fi
if vm_rpmostree install -C makecache-new-pkg --dry-run; then
assert_not_reached "successfully dry-run installed new pkg from cached rpmmd?"
fi
vm_rpmostree refresh-md -f
if ! vm_rpmostree install -C makecache-new-pkg --dry-run; then
assert_not_reached "failed to dry-run install new pkg from cached rpmmd?"
fi
stop_http_repo
echo "ok refresh-md and --cache-only"
3 changes: 3 additions & 0 deletions tests/vmcheck/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ for tf in $(find . -name 'test-*.sh' | sort); do
# and put back our tmp repo
vm_cmd rm /etc/yum.repos.d -rf
vm_cmd cp -r /etc/yum.repos.d{.tmp,}

# and clean up our test repo
vm_cmd rm -rf /tmp/vmcheck
done


Expand Down

0 comments on commit e9730d1

Please sign in to comment.