mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-19 13:07:52 +00:00
* Fixes for some of the failing tests * Add readiness check to serverStart() * Use net/http client for tests listen test * Use different key for this test * Run Proxy Middleware tests in parallel. Add nil checks for potential issues pointed by nilaway * Enable parallel client tests * Do not run timing sensitive tests in parallel * Remove TODO * Revert Test_Proxy_DoTimeout_Timeout, and remove t.Parallel() for it * Do not calculate favicon len on each handler call * Revert logic change * Increase timeout of SaveFile tests * Do not run time sensitive tests in parallel * The Agent can't be run in parallel * Do not run time sensitive tests in parallel * Fixes based on uber/nilaway * Revert change to Client test * Run parallel * Update client_test.go * Update client_test.go * Update cache_test.go * Update cookiejar_test.go * Remove parallel for test using timeouts * Remove t.Parallel() from logger middleware tests * Do not use testify.require in a goroutine * Fix import, and update golangci-lint * Remove changes to template_chain.go * Run more tests in parallel * Add more parallel tests * Add more parallel tests * SetLogger can't run in parallel * Run more tests in parallel, fix issue with goroutine in limiter middleware * Update internal/storage/memory, add more benchmarks * Increase sleep for csrf test by 100 milliseconds. Implement asserted and parallel benchmarks for Session middleware * Add 100 milliseconds to sleep during test * Revert name change * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests * fix: Inconsistent and flaky unit-tests --------- Co-authored-by: M. Efe Çetin <efectn@protonmail.com> Co-authored-by: René <rene@gofiber.io>
85 lines
1.6 KiB
Go
85 lines
1.6 KiB
Go
package memory
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gofiber/utils/v2"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// go test -run Test_Memory -v -race
|
|
func Test_Memory(t *testing.T) {
|
|
t.Parallel()
|
|
store := New()
|
|
var (
|
|
key = "john-internal"
|
|
val any = []byte("doe")
|
|
exp = 1 * time.Second
|
|
)
|
|
|
|
// Set key with value
|
|
store.Set(key, val, 0)
|
|
result := store.Get(key)
|
|
require.Equal(t, val, result)
|
|
|
|
// Get non-existing key
|
|
result = store.Get("empty")
|
|
require.Nil(t, result)
|
|
|
|
// Set key with value and ttl
|
|
store.Set(key, val, exp)
|
|
time.Sleep(1100 * time.Millisecond)
|
|
result = store.Get(key)
|
|
require.Nil(t, result)
|
|
|
|
// Set key with value and no expiration
|
|
store.Set(key, val, 0)
|
|
result = store.Get(key)
|
|
require.Equal(t, val, result)
|
|
|
|
// Delete key
|
|
store.Delete(key)
|
|
result = store.Get(key)
|
|
require.Nil(t, result)
|
|
|
|
// Reset all keys
|
|
store.Set("john-reset", val, 0)
|
|
store.Set("doe-reset", val, 0)
|
|
store.Reset()
|
|
|
|
// Check if all keys are deleted
|
|
result = store.Get("john-reset")
|
|
require.Nil(t, result)
|
|
result = store.Get("doe-reset")
|
|
require.Nil(t, result)
|
|
}
|
|
|
|
// go test -v -run=^$ -bench=Benchmark_Memory -benchmem -count=4
|
|
func Benchmark_Memory(b *testing.B) {
|
|
keyLength := 1000
|
|
keys := make([]string, keyLength)
|
|
for i := 0; i < keyLength; i++ {
|
|
keys[i] = utils.UUID()
|
|
}
|
|
value := []byte("joe")
|
|
|
|
ttl := 2 * time.Second
|
|
b.Run("fiber_memory", func(b *testing.B) {
|
|
d := New()
|
|
b.ReportAllocs()
|
|
b.ResetTimer()
|
|
for n := 0; n < b.N; n++ {
|
|
for _, key := range keys {
|
|
d.Set(key, value, ttl)
|
|
}
|
|
for _, key := range keys {
|
|
_ = d.Get(key)
|
|
}
|
|
for _, key := range keys {
|
|
d.Delete(key)
|
|
}
|
|
}
|
|
})
|
|
}
|