1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-12-23 22:11:10 +02:00
Files
imgproxy/server/timer_test.go

68 lines
1.3 KiB
Go
Raw Permalink Normal View History

package server
import (
"context"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestCheckTimeout(t *testing.T) {
tests := []struct {
name string
setup func() context.Context
fail bool
}{
{
name: "WithoutTimeout",
setup: context.Background,
fail: false,
},
{
name: "ActiveTimerContext",
setup: func() context.Context {
req := httptest.NewRequest(http.MethodGet, "/test", nil)
2025-09-30 13:24:23 +02:00
newReq, _ := startRequestTimer(req, 10*time.Second)
return newReq.Context()
},
fail: false,
},
{
name: "CancelledContext",
setup: func() context.Context {
req := httptest.NewRequest(http.MethodGet, "/test", nil)
2025-09-30 13:24:23 +02:00
newReq, cancel := startRequestTimer(req, 10*time.Second)
cancel() // Cancel immediately
return newReq.Context()
},
fail: true,
},
{
name: "DeadlineExceeded",
setup: func() context.Context {
ctx, cancel := context.WithTimeout(context.Background(), time.Nanosecond)
defer cancel()
time.Sleep(time.Millisecond * 10) // Ensure timeout
return ctx
},
fail: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ctx := tt.setup()
err := CheckTimeout(ctx)
if tt.fail {
require.Error(t, err)
} else {
require.NoError(t, err)
}
})
}
}