diff options
Diffstat (limited to 'testrig')
-rw-r--r-- | testrig/config.go | 5 | ||||
-rw-r--r-- | testrig/storage.go | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/testrig/config.go b/testrig/config.go index e424670fa..92d04c453 100644 --- a/testrig/config.go +++ b/testrig/config.go @@ -19,6 +19,9 @@ package testrig import ( + "os" + "path" + "github.com/coreos/go-oidc/v3/oidc" "github.com/superseriousbusiness/gotosocial/internal/config" ) @@ -64,7 +67,7 @@ var TestDefaults = config.Configuration{ MediaRemoteCacheDays: 30, StorageBackend: "local", - StorageLocalBasePath: "/gotosocial/storage", + StorageLocalBasePath: path.Join(os.TempDir(), "gotosocial"), StatusesMaxChars: 5000, StatusesCWMaxChars: 100, diff --git a/testrig/storage.go b/testrig/storage.go index 0e91d7dbe..666256593 100644 --- a/testrig/storage.go +++ b/testrig/storage.go @@ -21,6 +21,7 @@ package testrig import ( "fmt" "os" + "path" "codeberg.org/gruf/go-store/kv" "codeberg.org/gruf/go-store/storage" @@ -94,6 +95,8 @@ func StandardStorageSetup(s *kv.KVStore, relativePath string) { // StandardStorageTeardown deletes everything in storage so that it's clean for the next test func StandardStorageTeardown(s *kv.KVStore) { + defer os.RemoveAll(path.Join(os.TempDir(), "gotosocial")) + iter, err := s.Iterator(nil) if err != nil { panic(err) |