/tests/rkt_cat_manifest_test.go
https://gitlab.com/github-cloud-corporation/rkt · Go · 70 lines · 42 code · 12 blank · 16 comment · 4 complexity · c63eb1795472d41553eb09023b19f6d2 MD5 · raw file
- // Copyright 2015 The rkt Authors
- //
- // 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.
- // +build host coreos src kvm
- package main
- import (
- "fmt"
- "os"
- "testing"
- "github.com/coreos/rkt/tests/testutils"
- )
- // TestCatManifest tests 'rkt cat-manifest', it will:
- func TestCatManifest(t *testing.T) {
- const imgName = "rkt-cat-manifest-test"
- image := patchTestACI(fmt.Sprintf("%s.aci", imgName), fmt.Sprintf("--name=%s", imgName))
- defer os.Remove(image)
- imageHash := getHashOrPanic(image)
- imgID := ImageID{path: image, hash: imageHash}
- ctx := testutils.NewRktRunCtx()
- defer ctx.Cleanup()
- // Prepare image
- cmd := fmt.Sprintf("%s --insecure-options=image prepare %s", ctx.Cmd(), imgID.path)
- podUuid := runRktAndGetUUID(t, cmd)
- tmpDir := createTempDirOrPanic(imgName)
- defer os.RemoveAll(tmpDir)
- tests := []struct {
- uuid string
- match string
- }{
- {
- podUuid,
- imgName,
- },
- {
- podUuid,
- imageHash[:20],
- },
- {
- "1234567890abcdef",
- "no matches found for",
- },
- }
- for i, tt := range tests {
- runCmd := fmt.Sprintf("%s cat-manifest --pretty-print=false %s", ctx.Cmd(), tt.uuid)
- t.Logf("Running test #%d", i)
- runRktAndCheckRegexOutput(t, runCmd, tt.match)
- }
- }