All checks were successful
check / check (push) Successful in 1m37s
Refactor Dockerfile to use a separate lint stage with a pinned golangci-lint v2.11.3 Docker image instead of installing golangci-lint via curl in the builder stage. This follows the pattern used by sneak/pixa. Changes: - Dockerfile: separate lint stage using golangci/golangci-lint:v2.11.3 (Debian-based, pinned by sha256) with COPY --from=lint dependency - Bump Go from 1.24 to 1.26.1 (golang:1.26.1-bookworm, pinned) - Bump golangci-lint from v1.64.8 to v2.11.3 - Migrate .golangci.yml from v1 to v2 format (same linters, format only) - All Docker images pinned by sha256 digest - Fix all lint issues from the v2 linter upgrade: - Add package comments to all packages - Add doc comments to all exported types, functions, and methods - Fix unchecked errors (errcheck) - Fix unused parameters (revive) - Fix gosec warnings (MaxBytesReader for form parsing) - Fix staticcheck suggestions (fmt.Fprintf instead of WriteString) - Rename DeliveryTask to Task to avoid stutter (delivery.Task) - Rename shadowed builtin 'max' parameter - Update README.md version requirements
311 lines
5.7 KiB
Go
311 lines
5.7 KiB
Go
package delivery_test
|
|
|
|
import (
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"sneak.berlin/go/webhooker/internal/delivery"
|
|
)
|
|
|
|
func TestCircuitBreaker_ClosedState_AllowsDeliveries(
|
|
t *testing.T,
|
|
) {
|
|
t.Parallel()
|
|
|
|
cb := delivery.NewCircuitBreaker()
|
|
|
|
assert.Equal(t, delivery.CircuitClosed, cb.State())
|
|
assert.True(t, cb.Allow(),
|
|
"closed circuit should allow deliveries",
|
|
)
|
|
|
|
for range 10 {
|
|
assert.True(t, cb.Allow())
|
|
}
|
|
}
|
|
|
|
func TestCircuitBreaker_FailureCounting(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
cb := delivery.NewCircuitBreaker()
|
|
|
|
for i := range delivery.ExportDefaultFailureThreshold - 1 {
|
|
cb.RecordFailure()
|
|
|
|
assert.Equal(t,
|
|
delivery.CircuitClosed, cb.State(),
|
|
"circuit should remain closed after %d failures",
|
|
i+1,
|
|
)
|
|
|
|
assert.True(t, cb.Allow(),
|
|
"should still allow after %d failures",
|
|
i+1,
|
|
)
|
|
}
|
|
}
|
|
|
|
func TestCircuitBreaker_OpenTransition(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
cb := delivery.NewCircuitBreaker()
|
|
|
|
for range delivery.ExportDefaultFailureThreshold {
|
|
cb.RecordFailure()
|
|
}
|
|
|
|
assert.Equal(t, delivery.CircuitOpen, cb.State(),
|
|
"circuit should be open after threshold failures",
|
|
)
|
|
|
|
assert.False(t, cb.Allow(),
|
|
"open circuit should reject deliveries",
|
|
)
|
|
}
|
|
|
|
func TestCircuitBreaker_Cooldown_StaysOpen(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
cb := delivery.NewCircuitBreaker()
|
|
|
|
for range delivery.ExportDefaultFailureThreshold {
|
|
cb.RecordFailure()
|
|
}
|
|
|
|
require.Equal(t, delivery.CircuitOpen, cb.State())
|
|
|
|
assert.False(t, cb.Allow(),
|
|
"should be blocked during cooldown",
|
|
)
|
|
|
|
remaining := cb.CooldownRemaining()
|
|
|
|
assert.Greater(t, remaining, time.Duration(0),
|
|
"cooldown should have remaining time",
|
|
)
|
|
}
|
|
|
|
func TestCircuitBreaker_HalfOpen_AfterCooldown(
|
|
t *testing.T,
|
|
) {
|
|
t.Parallel()
|
|
|
|
cb := newShortCooldownCB(t)
|
|
|
|
for range delivery.ExportDefaultFailureThreshold {
|
|
cb.RecordFailure()
|
|
}
|
|
|
|
require.Equal(t, delivery.CircuitOpen, cb.State())
|
|
|
|
time.Sleep(60 * time.Millisecond)
|
|
|
|
assert.Equal(t, time.Duration(0),
|
|
cb.CooldownRemaining(),
|
|
)
|
|
|
|
assert.True(t, cb.Allow(),
|
|
"should allow one probe after cooldown",
|
|
)
|
|
|
|
assert.Equal(t,
|
|
delivery.CircuitHalfOpen, cb.State(),
|
|
"should be half-open after probe allowed",
|
|
)
|
|
|
|
assert.False(t, cb.Allow(),
|
|
"should reject additional probes while half-open",
|
|
)
|
|
}
|
|
|
|
func TestCircuitBreaker_ProbeSuccess_ClosesCircuit(
|
|
t *testing.T,
|
|
) {
|
|
t.Parallel()
|
|
|
|
cb := newShortCooldownCB(t)
|
|
|
|
for range delivery.ExportDefaultFailureThreshold {
|
|
cb.RecordFailure()
|
|
}
|
|
|
|
time.Sleep(60 * time.Millisecond)
|
|
|
|
require.True(t, cb.Allow())
|
|
|
|
cb.RecordSuccess()
|
|
|
|
assert.Equal(t, delivery.CircuitClosed, cb.State(),
|
|
"successful probe should close circuit",
|
|
)
|
|
|
|
assert.True(t, cb.Allow(),
|
|
"closed circuit should allow deliveries",
|
|
)
|
|
}
|
|
|
|
func TestCircuitBreaker_ProbeFailure_ReopensCircuit(
|
|
t *testing.T,
|
|
) {
|
|
t.Parallel()
|
|
|
|
cb := newShortCooldownCB(t)
|
|
|
|
for range delivery.ExportDefaultFailureThreshold {
|
|
cb.RecordFailure()
|
|
}
|
|
|
|
time.Sleep(60 * time.Millisecond)
|
|
|
|
require.True(t, cb.Allow())
|
|
|
|
cb.RecordFailure()
|
|
|
|
assert.Equal(t, delivery.CircuitOpen, cb.State(),
|
|
"failed probe should reopen circuit",
|
|
)
|
|
|
|
assert.False(t, cb.Allow(),
|
|
"reopened circuit should reject deliveries",
|
|
)
|
|
}
|
|
|
|
func TestCircuitBreaker_SuccessResetsFailures(
|
|
t *testing.T,
|
|
) {
|
|
t.Parallel()
|
|
|
|
cb := delivery.NewCircuitBreaker()
|
|
|
|
for range delivery.ExportDefaultFailureThreshold - 1 {
|
|
cb.RecordFailure()
|
|
}
|
|
|
|
require.Equal(t, delivery.CircuitClosed, cb.State())
|
|
|
|
cb.RecordSuccess()
|
|
|
|
assert.Equal(t, delivery.CircuitClosed, cb.State())
|
|
|
|
for range delivery.ExportDefaultFailureThreshold - 1 {
|
|
cb.RecordFailure()
|
|
}
|
|
|
|
assert.Equal(t, delivery.CircuitClosed, cb.State(),
|
|
"circuit should still be closed -- "+
|
|
"success reset the counter",
|
|
)
|
|
|
|
cb.RecordFailure()
|
|
|
|
assert.Equal(t, delivery.CircuitOpen, cb.State())
|
|
}
|
|
|
|
func TestCircuitBreaker_ConcurrentAccess(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
cb := delivery.NewCircuitBreaker()
|
|
|
|
const goroutines = 100
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(goroutines * 3)
|
|
|
|
for range goroutines {
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
cb.Allow()
|
|
}()
|
|
}
|
|
|
|
for range goroutines {
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
cb.RecordFailure()
|
|
}()
|
|
}
|
|
|
|
for range goroutines {
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
cb.RecordSuccess()
|
|
}()
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
state := cb.State()
|
|
|
|
assert.Contains(t,
|
|
[]delivery.CircuitState{
|
|
delivery.CircuitClosed,
|
|
delivery.CircuitOpen,
|
|
delivery.CircuitHalfOpen,
|
|
},
|
|
state,
|
|
"state should be valid after concurrent access",
|
|
)
|
|
}
|
|
|
|
func TestCircuitBreaker_CooldownRemaining_ClosedReturnsZero(
|
|
t *testing.T,
|
|
) {
|
|
t.Parallel()
|
|
|
|
cb := delivery.NewCircuitBreaker()
|
|
|
|
assert.Equal(t, time.Duration(0),
|
|
cb.CooldownRemaining(),
|
|
"closed circuit should have zero cooldown remaining",
|
|
)
|
|
}
|
|
|
|
func TestCircuitBreaker_CooldownRemaining_HalfOpenReturnsZero(
|
|
t *testing.T,
|
|
) {
|
|
t.Parallel()
|
|
|
|
cb := newShortCooldownCB(t)
|
|
|
|
for range delivery.ExportDefaultFailureThreshold {
|
|
cb.RecordFailure()
|
|
}
|
|
|
|
time.Sleep(60 * time.Millisecond)
|
|
|
|
require.True(t, cb.Allow())
|
|
|
|
assert.Equal(t, time.Duration(0),
|
|
cb.CooldownRemaining(),
|
|
"half-open circuit should have zero cooldown remaining",
|
|
)
|
|
}
|
|
|
|
func TestCircuitState_String(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
assert.Equal(t, "closed", delivery.CircuitClosed.String())
|
|
assert.Equal(t, "open", delivery.CircuitOpen.String())
|
|
assert.Equal(t, "half-open", delivery.CircuitHalfOpen.String())
|
|
assert.Equal(t, "unknown", delivery.CircuitState(99).String())
|
|
}
|
|
|
|
// newShortCooldownCB creates a CircuitBreaker with a short
|
|
// cooldown for testing. We use NewCircuitBreaker and
|
|
// manipulate through the public API.
|
|
func newShortCooldownCB(t *testing.T) *delivery.CircuitBreaker {
|
|
t.Helper()
|
|
|
|
return delivery.NewTestCircuitBreaker(
|
|
delivery.ExportDefaultFailureThreshold,
|
|
50*time.Millisecond,
|
|
)
|
|
}
|