summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-03-04 20:39:17 +0100
committerxengineering <me@xengineering.eu>2024-03-04 20:45:11 +0100
commit74fc87dcfaa8a65c14c0ef6fe88b6df02f2e90cb (patch)
tree5d49a81d5da76d4b632d16f9da746f172f736139
parentb62c686702622b747ab082b7b12b3e611e1d7e1f (diff)
downloadceres-74fc87dcfaa8a65c14c0ef6fe88b6df02f2e90cb.tar
ceres-74fc87dcfaa8a65c14c0ef6fe88b6df02f2e90cb.tar.zst
ceres-74fc87dcfaa8a65c14c0ef6fe88b6df02f2e90cb.zip
model: Implement Stringer interface for Recipe
This allows to print a recipe with a fmt.Printf() call more easily: fmt.Printf("%s\n", recipe) This is also used for better error output in unit tests with t.Fatalf(). The Stringer interface is implemented with the JSON package because an indented version of a recipe is a useful string representation.
-rw-r--r--model/recipe.go6
-rw-r--r--model/recipe_test.go8
2 files changed, 11 insertions, 3 deletions
diff --git a/model/recipe.go b/model/recipe.go
index ce16ee4..b9830e6 100644
--- a/model/recipe.go
+++ b/model/recipe.go
@@ -2,6 +2,7 @@ package model
import (
"database/sql"
+ "encoding/json"
"errors"
"fmt"
"time"
@@ -17,6 +18,11 @@ type Recipe struct {
LastChanged string `json:"last_changed"`
}
+func (r Recipe) String() string {
+ b, _ := json.MarshalIndent(r, "", " ")
+ return string(b)
+}
+
func (r *Recipe) Touch() {
now := time.Now().Unix()
r.LastChanged = fmt.Sprint(now)
diff --git a/model/recipe_test.go b/model/recipe_test.go
index 0057a3d..55041a6 100644
--- a/model/recipe_test.go
+++ b/model/recipe_test.go
@@ -30,7 +30,8 @@ func TestRecipeCrud(t *testing.T) {
}
if !reflect.DeepEqual(original, readback) {
- t.Fatalf("Recipes did not match after create / read cycle")
+ t.Fatalf("Recipes did not match after create / read cycle:\n"+
+ "Before: %s\nAfter: %s\n", original, readback)
}
update.Id = original.Id
@@ -46,8 +47,9 @@ func TestRecipeCrud(t *testing.T) {
t.Fatalf("Failed to read back updated recipe: %v\n", err)
}
- if !reflect.DeepEqual(updated, update) {
- t.Fatalf("Recipes did not match after update / read cycle")
+ if !reflect.DeepEqual(update, updated) {
+ t.Fatalf("Recipes did not match after update / read cycle:\n"+
+ "Update: %s\nUpdated: %s\n", update, updated)
}
if reflect.DeepEqual(updated, original) {