1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
// Copyright (c) 2021-2022, Sylabs Inc. All rights reserved.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE file distributed with the sources of this project regarding your
// rights to use or distribute this software.
//nolint:dupl
package siftool
import (
"path/filepath"
"testing"
)
func Test_command_getList(t *testing.T) {
tests := []struct {
name string
opts commandOpts
path string
}{
{
name: "Empty",
path: filepath.Join(corpus, "empty.sif"),
},
{
name: "OneGroup",
path: filepath.Join(corpus, "one-group.sif"),
},
{
name: "OneGroupSignedLegacy",
path: filepath.Join(corpus, "one-group-signed-legacy.sif"),
},
{
name: "OneGroupSignedLegacyAll",
path: filepath.Join(corpus, "one-group-signed-legacy-all.sif"),
},
{
name: "OneGroupSignedLegacyGroup",
path: filepath.Join(corpus, "one-group-signed-legacy-group.sif"),
},
{
name: "OneGroupSignedPGP",
path: filepath.Join(corpus, "one-group-signed-pgp.sif"),
},
{
name: "TwoGroups",
path: filepath.Join(corpus, "two-groups.sif"),
},
{
name: "TwoGroupsSignedLegacy",
path: filepath.Join(corpus, "two-groups-signed-legacy.sif"),
},
{
name: "TwoGroupsSignedLegacyAll",
path: filepath.Join(corpus, "two-groups-signed-legacy-all.sif"),
},
{
name: "TwoGroupsSignedLegacyGroup",
path: filepath.Join(corpus, "two-groups-signed-legacy-group.sif"),
},
{
name: "TwoGroupsSignedPGP",
path: filepath.Join(corpus, "two-groups-signed-pgp.sif"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &command{opts: tt.opts}
cmd := c.getList()
runCommand(t, cmd, []string{tt.path}, nil)
})
}
}
|