summaryrefslogtreecommitdiff
path: root/model/recipe_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/recipe_test.go')
-rw-r--r--model/recipe_test.go40
1 files changed, 5 insertions, 35 deletions
diff --git a/model/recipe_test.go b/model/recipe_test.go
index 02b3ead..0057a3d 100644
--- a/model/recipe_test.go
+++ b/model/recipe_test.go
@@ -1,35 +1,10 @@
package model
import (
- "encoding/json"
- "testing"
"reflect"
+ "testing"
)
-var recipes = [...]string {
- `{"id":1,"title":"My recipe","portions":4,"url":"https://example.org","notes":"Sooo delicious","created":1707591792,"last_changed":1707591799}`,
- `{"id":2,"title":"My nice recipe","portions":2,"url":"http://example.org","notes":"Sooooo delicious","created":1707591800,"last_changed":1707591900}`,
-}
-
-func TestRecipeJson(t *testing.T) {
- for _, v := range recipes {
- var r Recipe
- err := json.Unmarshal([]byte(v), &r)
- if err != nil {
- t.Fatal(err)
- }
- var encoded []byte
- encoded, err = json.Marshal(&r)
- if err != nil {
- t.Fatal(err)
- }
- if string(encoded) != v {
- t.Fatalf("Encoded JSON '%s' does not match original '%s'",
- string(encoded), v)
- }
- }
-}
-
func TestRecipeCrud(t *testing.T) {
InitStorage()
defer RemoveStorage()
@@ -39,12 +14,11 @@ func TestRecipeCrud(t *testing.T) {
var original, readback, update, updated, deleted Recipe
- err := json.Unmarshal([]byte(recipes[0]), &original)
- if err != nil {
- t.Fatalf("Failed to unmarshal test recipe: %v\n", err)
- }
+ recipes := RecipeTestData()
+ original = recipes[0]
+ update = recipes[1]
- err = original.Create()
+ err := original.Create()
if err != nil {
t.Fatalf("Failed to create test recipe in DB: %v\n", err)
}
@@ -59,10 +33,6 @@ func TestRecipeCrud(t *testing.T) {
t.Fatalf("Recipes did not match after create / read cycle")
}
- err = json.Unmarshal([]byte(recipes[1]), &update)
- if err != nil {
- t.Fatalf("Failed to unmarshal test recipe: %v\n", err)
- }
update.Id = original.Id
err = update.Update()