summary refs log tree commit diff stats
path: root/svc/cache_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'svc/cache_test.go')
-rw-r--r--svc/cache_test.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/svc/cache_test.go b/svc/cache_test.go
new file mode 100644
index 0000000..d3dba29
--- /dev/null
+++ b/svc/cache_test.go
@@ -0,0 +1,32 @@
+package svc // import github.com/getwtxt/getwtxt/svc
+
+import (
+	"testing"
+)
+
+func Test_refreshCache(t *testing.T) {
+	initTestConf()
+	confObj.Mu.RLock()
+	prevtime := confObj.LastCache
+	confObj.Mu.RUnlock()
+
+	t.Run("Cache Time Check", func(t *testing.T) {
+		refreshCache()
+		confObj.Mu.RLock()
+		newtime := confObj.LastCache
+		confObj.Mu.RUnlock()
+
+		if !newtime.After(prevtime) || newtime == prevtime {
+			t.Errorf("Cache time did not update, check refreshCache() logic\n")
+		}
+	})
+}
+
+func Benchmark_refreshCache(b *testing.B) {
+	initTestConf()
+	b.ResetTimer()
+
+	for i := 0; i < b.N; i++ {
+		refreshCache()
+	}
+}