1
0
mirror of https://github.com/opencontainers/umoci.git synced 2026-02-05 09:45:50 +01:00
Files
umoci/test/gc.bats
Aleksa Sarai 712f78763a *: update license headers
Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
2026-01-10 11:14:14 +01:00

198 lines
4.6 KiB
Bash

#!/usr/bin/env bats -t
# SPDX-License-Identifier: Apache-2.0
# umoci: Umoci Modifies Open Containers' Images
# Copyright (C) 2016-2025 SUSE LLC
# Copyright (C) 2026 Aleksa Sarai <cyphar@cyphar.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load helpers
function setup() {
setup_tmpdirs
setup_image
}
function teardown() {
teardown_tmpdirs
teardown_image
}
@test "umoci gc [missing arguments]" {
# Missing --layout argument.
umoci gc
[ "$status" -ne 0 ]
image-verify "${IMAGE}"
# Empty layout path.
umoci gc --layout ""
[ "$status" -ne 0 ]
# Layout path contains a ":".
umoci gc --layout "${IMAGE}:${TAG}"
[ "$status" -ne 0 ]
# Unknown flag argument.
umoci gc --this-is-an-invalid-argument --layout "${IMAGE}"
[ "$status" -ne 0 ]
# Too many positional arguments.
umoci gc --layout "${IMAGE}" this-is-an-invalid-argument
[ "$status" -ne 0 ]
}
@test "umoci gc [consistent]" {
# Initial gc.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Check how many blobs there were.
sane_run find "$IMAGE/blobs" -type f
[ "$status" -eq 0 ]
nblobs="${#lines[@]}"
# Redo the gc.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Make sure that another gc run does nothing.
sane_run find "$IMAGE/blobs" -type f
[ "$status" -eq 0 ]
[ "${#lines[@]}" -eq "$nblobs" ]
image-verify "${IMAGE}"
}
@test "umoci gc" {
# Initial gc.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Check how many blobs there were.
sane_run find "$IMAGE/blobs" -type f
[ "$status" -eq 0 ]
nblobs="${#lines[@]}"
# Unpack the image.
new_bundle_rootfs
umoci unpack --image "${IMAGE}:${TAG}" "$BUNDLE"
[ "$status" -eq 0 ]
bundle-verify "$BUNDLE"
# Change the rootfs.
rm_rf "$ROOTFS/"{etc,usr/bin}
# Repack the image under a new tag.
umoci repack --image "${IMAGE}:${TAG}-new" "$BUNDLE"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Make sure the number of blobs has changed.
sane_run find "$IMAGE/blobs" -type f
[ "$status" -eq 0 ]
[ "$nblobs" -ne "${#lines[@]}" ]
nblobs="${#lines[@]}"
# Make sure it is the same after doing a gc, because we used a new tag.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Make sure that another gc run does nothing.
sane_run find "$IMAGE/blobs" -type f
[ "$status" -eq 0 ]
[ "${#lines[@]}" -eq "$nblobs" ]
# Delete the old reference.
umoci rm --image "${IMAGE}:${TAG}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Now do a gc which should delete some blobs.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Make sure that another gc run does nothing.
sane_run find "$IMAGE/blobs" -type f
[ "$status" -eq 0 ]
[ "${#lines[@]}" -lt "$nblobs" ]
image-verify "${IMAGE}"
}
@test "umoci gc [empty]" {
# Initial gc.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Check how many blobs there were.
sane_run find "$IMAGE/blobs" -type f
[ "$status" -eq 0 ]
[ "${#lines[@]}" -ne 0 ]
# Remove refs.
umoci ls --layout "${IMAGE}"
[ "$status" -eq 0 ]
[ "${#lines[@]}" -gt 0 ]
image-verify "${IMAGE}"
for line in "${lines[@]}"; do
umoci rm --image "${IMAGE}:${line}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
done
# Do a gc, which should remove all blobs.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Check how many blobs there were.
sane_run find "$IMAGE/blobs" -type f
[ "$status" -eq 0 ]
[ "${#lines[@]}" -eq 0 ]
image-verify "${IMAGE}"
}
@test "umoci gc [internal]" {
# Initial gc.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Create unused directories.
touch "${IMAGE}/.internal"
touch "${IMAGE}/ magical file "
mkdir "${IMAGE}/ __ internal __ directory"
touch "${IMAGE}/ __ internal __ directory/.abc"
# Do a gc, which should remove the temporary files/directories.
umoci gc --layout "${IMAGE}"
[ "$status" -eq 0 ]
image-verify "${IMAGE}"
# Make sure it's gone.
! [ -e "${IMAGE}/.internal" ]
! [ -e "${IMAGE}/ magical file " ]
! [ -e "${IMAGE}/ __ internal __ directory" ]
! [ -e "${IMAGE}/ __ internal __ directory/.abc" ]
image-verify "${IMAGE}"
}