release: prepare v0.1.131

This commit is contained in:
kone
2026-05-14 05:18:31 +08:00
parent 066ceb823e
commit 41e60b20d6
20 changed files with 2818 additions and 337 deletions
@@ -151,6 +151,24 @@ func TestSecurityHeaders(t *testing.T) {
assert.Empty(t, GetNonceFromContext(c))
})
t.Run("embedded_ui_allows_same_origin_frame", func(t *testing.T) {
cfg := config.CSPConfig{
Enabled: true,
Policy: "default-src 'self'; frame-ancestors 'none'",
}
middleware := SecurityHeaders(cfg, nil)
w := httptest.NewRecorder()
c, _ := gin.CreateTestContext(w)
c.Request = httptest.NewRequest(http.MethodGet, "/docs/api.html?ui_mode=embedded", nil)
middleware(c)
assert.Equal(t, "SAMEORIGIN", w.Header().Get("X-Frame-Options"))
assert.Contains(t, w.Header().Get("Content-Security-Policy"), "frame-ancestors 'self'")
assert.NotContains(t, w.Header().Get("Content-Security-Policy"), "frame-ancestors 'none'")
})
t.Run("csp_enabled_with_nonce_placeholder", func(t *testing.T) {
cfg := config.CSPConfig{
Enabled: true,
@@ -410,6 +428,23 @@ func TestAddToDirective(t *testing.T) {
})
}
func TestSetDirective(t *testing.T) {
t.Run("replaces_existing_directive", func(t *testing.T) {
policy := "default-src 'self'; frame-ancestors 'none'; script-src 'self'"
result := setDirective(policy, "frame-ancestors", "'self'")
assert.Contains(t, result, "frame-ancestors 'self'")
assert.NotContains(t, result, "frame-ancestors 'none'")
})
t.Run("adds_directive_when_missing", func(t *testing.T) {
policy := "default-src 'self'; script-src 'self'"
result := setDirective(policy, "frame-ancestors", "'self'")
assert.Contains(t, result, "frame-ancestors 'self'")
})
}
// Benchmark tests
func BenchmarkGenerateNonce(b *testing.B) {
for i := 0; i < b.N; i++ {