test: add unit tests

This commit is contained in:
rramiachraf 2024-03-06 20:53:29 +01:00
parent c8747c0182
commit afc0347a1b
19 changed files with 358 additions and 31 deletions

25
handlers/cache_test.go Normal file
View file

@ -0,0 +1,25 @@
package handlers
import (
"bytes"
"testing"
)
func TestCache(t *testing.T) {
key := "testkey"
value := []byte("testvalue")
err := setCache(key, value)
if err != nil {
t.Fatalf("unable to set cache, %q\n", err)
}
v, err := getCache[[]byte](key)
if err != nil {
t.Fatalf("unable to get cache, %q\n", err)
}
if !bytes.Equal(v, value) {
t.Fatalf("expected %q, got %q\n", value, v)
}
}