Skip to content

Commit 7d074e7

Browse files
committed
kind.String(): fix missing case statements for iota consts in switch
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 45e78a9 commit 7d074e7

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

manifest_test.go

+44-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import (
2727
"math/rand"
2828
"os"
2929
"path/filepath"
30+
"reflect"
3031
"sort"
3132
"syscall"
3233
"testing"
@@ -199,12 +200,15 @@ func (k kind) String() string {
199200
return "directory"
200201
case rhardlink:
201202
return "hardlink"
203+
case rrelsymlink:
204+
return "relsymlink"
205+
case rabssymlink:
206+
return "abssymlink"
202207
case rchardev:
203208
return "chardev"
204209
case rnamedpipe:
205210
return "namedpipe"
206211
}
207-
208212
panic(fmt.Sprintf("unknown kind: %v", int(k)))
209213
}
210214

@@ -431,3 +435,42 @@ func expectedResourceList(root string, resources []dresource) ([]Resource, error
431435

432436
return manifestResources, nil
433437
}
438+
439+
func TestKindString(t *testing.T) {
440+
kinds := []kind{
441+
rfile,
442+
rdirectory,
443+
rhardlink,
444+
rrelsymlink,
445+
rabssymlink,
446+
rchardev,
447+
rnamedpipe,
448+
}
449+
450+
expected := []string{
451+
"file",
452+
"directory",
453+
"hardlink",
454+
"relsymlink",
455+
"abssymlink",
456+
"chardev",
457+
"namedpipe",
458+
}
459+
460+
var actual []string
461+
for _, k := range kinds {
462+
actual = append(actual, k.String())
463+
}
464+
if !reflect.DeepEqual(actual, expected) {
465+
t.Errorf("expected: %v, got: %v", expected, actual)
466+
}
467+
468+
defer func() {
469+
if r := recover(); r == nil {
470+
t.Errorf("should panic on unknown kind")
471+
}
472+
}()
473+
474+
var unknownKind = rnamedpipe + 1
475+
_ = unknownKind.String()
476+
}

0 commit comments

Comments
 (0)