aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/category_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cvss/category_test.go')
-rw-r--r--internal/cvss/category_test.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/internal/cvss/category_test.go b/internal/cvss/category_test.go
new file mode 100644
index 0000000..7f69689
--- /dev/null
+++ b/internal/cvss/category_test.go
@@ -0,0 +1,41 @@
+package cvss
+
+import "testing"
+
+func TestCategoryString(t *testing.T) {
+ tests := []struct {
+ cat Category
+ exp string
+ } {
+ { Base, "Base" },
+ { Temporal, "Temporal" },
+ { Environmental, "Environmental" },
+ }
+
+ for _, test := range(tests) {
+ t.Run(test.exp, func(t *testing.T) {
+ got := test.cat.String()
+ if got != test.exp {
+ t.Errorf("got: %s, exp: %s", got, test.exp)
+ }
+ })
+ }
+}
+
+func TestInvalidCategory(t *testing.T) {
+ tests := []struct {
+ cat Category
+ exp string
+ } {
+ { Category(byte(255)), "Category(255)" },
+ }
+
+ for _, test := range(tests) {
+ t.Run(test.exp, func(t *testing.T) {
+ got := test.cat.String()
+ if got != test.exp {
+ t.Errorf("got: %s, exp: %s", got, test.exp)
+ }
+ })
+ }
+}