diff options
author | xengineering <me@xengineering.eu> | 2024-05-08 21:20:39 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-08 21:20:39 +0200 |
commit | 9073adf62f2fa78190c8296c5f6f6c9fb1963063 (patch) | |
tree | ab6063d46e59048cbe02bf9cf396600c752a63ae /model/recipe_test.go | |
parent | 5a09313066f5594ca9e3917c00821e443dcba7bc (diff) | |
download | ceres-9073adf62f2fa78190c8296c5f6f6c9fb1963063.tar ceres-9073adf62f2fa78190c8296c5f6f6c9fb1963063.tar.zst ceres-9073adf62f2fa78190c8296c5f6f6c9fb1963063.zip |
Fix unit tests
Diffstat (limited to 'model/recipe_test.go')
-rw-r--r-- | model/recipe_test.go | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/model/recipe_test.go b/model/recipe_test.go index 508cf53..7b6c14c 100644 --- a/model/recipe_test.go +++ b/model/recipe_test.go @@ -3,13 +3,26 @@ package model import ( "reflect" "testing" + "path/filepath" + "os" + "fmt" ) func TestRecipeCrud(t *testing.T) { - InitStorage() - defer RemoveStorage() + storagePath, err := os.MkdirTemp("", "ceres") + if err != nil { + fmt.Println("Error creating temporary directory:", err) + return + } + t.Logf("Storage path: %v\n", storagePath) + defer os.RemoveAll(storagePath) + + storage := NewStorage(storagePath) + if !storage.Exists() { + storage.Create() + } - InitDatabase() + InitDatabase(filepath.Join(storage.Path, "ceres.sqlite3")) defer CloseDatabase() tx, err := NewTx() |