Files
imgproxy/server/timer_test.go
Victor Sokolov 15bd00b221 IMG-51: router -> server ns, handlers ns, added error to handler ret val (#1494)
* Introduced server, handlers, error ret in handlerfn

* Server struct with tests

* replace checkErr with return
2025-08-20 14:31:11 +02:00

68 lines
1.3 KiB
Go

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)
newReq, _ := startRequestTimer(req)
return newReq.Context()
},
fail: false,
},
{
name: "CancelledContext",
setup: func() context.Context {
req := httptest.NewRequest(http.MethodGet, "/test", nil)
newReq, cancel := startRequestTimer(req)
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)
}
})
}
}