mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
test: add unit tests
This commit is contained in:
parent
c8747c0182
commit
afc0347a1b
19 changed files with 358 additions and 31 deletions
25
handlers/cache_test.go
Normal file
25
handlers/cache_test.go
Normal 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)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue