aboutsummaryrefslogtreecommitdiffhomepage
path: root/model/category_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/category_test.go')
-rw-r--r--model/category_test.go61
1 files changed, 61 insertions, 0 deletions
diff --git a/model/category_test.go b/model/category_test.go
new file mode 100644
index 0000000..9f8a054
--- /dev/null
+++ b/model/category_test.go
@@ -0,0 +1,61 @@
+// Copyright 2017 Frédéric Guillot. All rights reserved.
+// Use of this source code is governed by the Apache 2.0
+// license that can be found in the LICENSE file.
+
+package model
+
+import "testing"
+
+func TestValidateCategoryCreation(t *testing.T) {
+ category := &Category{}
+ if err := category.ValidateCategoryCreation(); err == nil {
+ t.Error(`An empty category should generate an error`)
+ }
+
+ category = &Category{Title: "Test"}
+ if err := category.ValidateCategoryCreation(); err == nil {
+ t.Error(`A category without userID should generate an error`)
+ }
+
+ category = &Category{UserID: 42}
+ if err := category.ValidateCategoryCreation(); err == nil {
+ t.Error(`A category without title should generate an error`)
+ }
+
+ category = &Category{Title: "Test", UserID: 42}
+ if err := category.ValidateCategoryCreation(); err != nil {
+ t.Error(`All required fields are filled, it should not generate any error`)
+ }
+}
+
+func TestValidateCategoryModification(t *testing.T) {
+ category := &Category{}
+ if err := category.ValidateCategoryModification(); err == nil {
+ t.Error(`An empty category should generate an error`)
+ }
+
+ category = &Category{Title: "Test"}
+ if err := category.ValidateCategoryModification(); err == nil {
+ t.Error(`A category without userID should generate an error`)
+ }
+
+ category = &Category{UserID: 42}
+ if err := category.ValidateCategoryModification(); err == nil {
+ t.Error(`A category without title should generate an error`)
+ }
+
+ category = &Category{ID: -1, Title: "Test", UserID: 42}
+ if err := category.ValidateCategoryModification(); err == nil {
+ t.Error(`An invalid categoryID should generate an error`)
+ }
+
+ category = &Category{ID: 0, Title: "Test", UserID: 42}
+ if err := category.ValidateCategoryModification(); err == nil {
+ t.Error(`An invalid categoryID should generate an error`)
+ }
+
+ category = &Category{ID: 1, Title: "Test", UserID: 42}
+ if err := category.ValidateCategoryModification(); err != nil {
+ t.Error(`All required fields are filled, it should not generate any error`)
+ }
+}