- ssl: TLS 配置管理、证书加载、SNI 支持、现代安全默认值 - security/auth: HTTP Basic Auth (bcrypt/argon2id 密码哈希) - security/ratelimit: 令牌桶限流、连接数限制 - security/access: IP 访问控制 (CIDR allow/deny) - security/headers: 安全响应头 (X-Frame-Options, CSP, HSTS 等) Phase 4 完成 Co-Authored-By: Claude <noreply@anthropic.com>
410 lines
9.1 KiB
Go
410 lines
9.1 KiB
Go
package ssl
|
|
|
|
import (
|
|
"crypto/ecdsa"
|
|
"crypto/elliptic"
|
|
"crypto/rand"
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"crypto/x509/pkix"
|
|
"encoding/pem"
|
|
"math/big"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
"time"
|
|
|
|
"rua.plus/lolly/internal/config"
|
|
)
|
|
|
|
func TestNewTLSManager(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
cfg *config.SSLConfig
|
|
wantErr bool
|
|
errMsg string
|
|
}{
|
|
{
|
|
name: "nil config",
|
|
cfg: nil,
|
|
wantErr: true,
|
|
errMsg: "ssl config is nil",
|
|
},
|
|
{
|
|
name: "empty cert path",
|
|
cfg: &config.SSLConfig{
|
|
Key: "key.pem",
|
|
},
|
|
wantErr: true,
|
|
errMsg: "certificate and key paths are required",
|
|
},
|
|
{
|
|
name: "empty key path",
|
|
cfg: &config.SSLConfig{
|
|
Cert: "cert.pem",
|
|
},
|
|
wantErr: true,
|
|
errMsg: "certificate and key paths are required",
|
|
},
|
|
{
|
|
name: "non-existent cert file",
|
|
cfg: &config.SSLConfig{
|
|
Cert: "/nonexistent/cert.pem",
|
|
Key: "/nonexistent/key.pem",
|
|
},
|
|
wantErr: true,
|
|
errMsg: "failed to load certificate",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
_, err := NewTLSManager(tt.cfg)
|
|
if (err != nil) != tt.wantErr {
|
|
t.Errorf("NewTLSManager() error = %v, wantErr %v", err, tt.wantErr)
|
|
}
|
|
if err != nil && tt.errMsg != "" {
|
|
if !containsString(err.Error(), tt.errMsg) {
|
|
t.Errorf("NewTLSManager() error = %v, want errMsg containing %v", err, tt.errMsg)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestNewTLSManagerWithCert(t *testing.T) {
|
|
// Create temporary test certificate
|
|
tmpDir := t.TempDir()
|
|
certPath := filepath.Join(tmpDir, "cert.pem")
|
|
keyPath := filepath.Join(tmpDir, "key.pem")
|
|
|
|
// Generate a self-signed certificate for testing
|
|
cert, key := generateTestCert(t)
|
|
if err := os.WriteFile(certPath, cert, 0644); err != nil {
|
|
t.Fatalf("Failed to write cert: %v", err)
|
|
}
|
|
if err := os.WriteFile(keyPath, key, 0600); err != nil {
|
|
t.Fatalf("Failed to write key: %v", err)
|
|
}
|
|
|
|
cfg := &config.SSLConfig{
|
|
Cert: certPath,
|
|
Key: keyPath,
|
|
}
|
|
|
|
manager, err := NewTLSManager(cfg)
|
|
if err != nil {
|
|
t.Fatalf("NewTLSManager() failed: %v", err)
|
|
}
|
|
|
|
if manager == nil {
|
|
t.Fatal("Expected non-nil manager")
|
|
}
|
|
|
|
tlsCfg := manager.GetTLSConfig()
|
|
if tlsCfg == nil {
|
|
t.Fatal("Expected non-nil TLS config")
|
|
}
|
|
|
|
// Check TLS version defaults
|
|
if tlsCfg.MinVersion != tls.VersionTLS12 {
|
|
t.Errorf("Expected MinVersion TLS 1.2, got %v", tlsCfg.MinVersion)
|
|
}
|
|
|
|
// Check cipher suites are set
|
|
if len(tlsCfg.CipherSuites) == 0 {
|
|
t.Error("Expected cipher suites to be set")
|
|
}
|
|
}
|
|
|
|
func TestParseTLSVersions(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
protocols []string
|
|
wantMin uint16
|
|
wantMax uint16
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "TLS 1.2 only",
|
|
protocols: []string{"TLSv1.2"},
|
|
wantMin: tls.VersionTLS12,
|
|
wantMax: tls.VersionTLS13,
|
|
},
|
|
{
|
|
name: "TLS 1.3 only",
|
|
protocols: []string{"TLSv1.3"},
|
|
wantMin: tls.VersionTLS13,
|
|
wantMax: tls.VersionTLS13,
|
|
},
|
|
{
|
|
name: "TLS 1.2 and 1.3",
|
|
protocols: []string{"TLSv1.2", "TLSv1.3"},
|
|
wantMin: tls.VersionTLS12,
|
|
wantMax: tls.VersionTLS13,
|
|
},
|
|
{
|
|
name: "insecure TLS 1.0",
|
|
protocols: []string{"TLSv1.0"},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "insecure TLS 1.1",
|
|
protocols: []string{"TLSv1.1"},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "unknown protocol",
|
|
protocols: []string{"TLSv0.9"},
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
minVer, maxVer, err := parseTLSVersions(tt.protocols)
|
|
if (err != nil) != tt.wantErr {
|
|
t.Errorf("parseTLSVersions() error = %v, wantErr %v", err, tt.wantErr)
|
|
return
|
|
}
|
|
if !tt.wantErr {
|
|
if minVer != tt.wantMin {
|
|
t.Errorf("parseTLSVersions() minVer = %v, want %v", minVer, tt.wantMin)
|
|
}
|
|
if maxVer != tt.wantMax {
|
|
t.Errorf("parseTLSVersions() maxVer = %v, want %v", maxVer, tt.wantMax)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestParseCipherSuites(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
ciphers []string
|
|
wantLen int
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "valid cipher",
|
|
ciphers: []string{"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"},
|
|
wantLen: 1,
|
|
},
|
|
{
|
|
name: "multiple valid ciphers",
|
|
ciphers: []string{
|
|
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
|
|
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
|
|
},
|
|
wantLen: 2,
|
|
},
|
|
{
|
|
name: "unknown cipher",
|
|
ciphers: []string{"TLS_UNKNOWN_CIPHER"},
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
result, err := parseCipherSuites(tt.ciphers)
|
|
if (err != nil) != tt.wantErr {
|
|
t.Errorf("parseCipherSuites() error = %v, wantErr %v", err, tt.wantErr)
|
|
return
|
|
}
|
|
if !tt.wantErr && len(result) != tt.wantLen {
|
|
t.Errorf("parseCipherSuites() returned %d ciphers, want %d", len(result), tt.wantLen)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDefaultCipherSuites(t *testing.T) {
|
|
suites := defaultCipherSuites()
|
|
if len(suites) == 0 {
|
|
t.Error("Expected non-empty default cipher suites")
|
|
}
|
|
|
|
// Check that all default ciphers are secure
|
|
for _, suite := range suites {
|
|
if isInsecureCipher(suite) {
|
|
t.Errorf("Default cipher suite %v is insecure", suite)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestIsInsecureCipher(t *testing.T) {
|
|
// Test known insecure ciphers
|
|
insecureCiphers := []uint16{
|
|
tls.TLS_RSA_WITH_RC4_128_SHA,
|
|
tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA,
|
|
}
|
|
|
|
for _, c := range insecureCiphers {
|
|
if !isInsecureCipher(c) {
|
|
t.Errorf("Expected cipher %v to be insecure", c)
|
|
}
|
|
}
|
|
|
|
// Test secure ciphers
|
|
secureCiphers := []uint16{
|
|
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
|
|
tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
|
|
}
|
|
|
|
for _, c := range secureCiphers {
|
|
if isInsecureCipher(c) {
|
|
t.Errorf("Expected cipher %v to be secure", c)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestTLSManagerGetTLSConfigForHost(t *testing.T) {
|
|
manager := &TLSManager{
|
|
configs: make(map[string]*tls.Config),
|
|
}
|
|
|
|
// Add config for a host
|
|
manager.configs["example.com"] = &tls.Config{
|
|
ServerName: "example.com",
|
|
}
|
|
manager.defaultCfg = &tls.Config{
|
|
ServerName: "default",
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
host string
|
|
wantName string
|
|
}{
|
|
{
|
|
name: "matching host",
|
|
host: "example.com",
|
|
wantName: "example.com",
|
|
},
|
|
{
|
|
name: "host with port",
|
|
host: "example.com:443",
|
|
wantName: "example.com",
|
|
},
|
|
{
|
|
name: "unknown host uses default",
|
|
host: "unknown.com",
|
|
wantName: "default",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
cfg := manager.GetTLSConfigForHost(tt.host)
|
|
if cfg == nil {
|
|
t.Fatal("Expected non-nil config")
|
|
}
|
|
if cfg.ServerName != tt.wantName {
|
|
t.Errorf("Expected ServerName %s, got %s", tt.wantName, cfg.ServerName)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestValidateCertificate(t *testing.T) {
|
|
t.Run("non-existent file", func(t *testing.T) {
|
|
err := ValidateCertificate("/nonexistent/cert.pem")
|
|
if err == nil {
|
|
t.Error("Expected error for non-existent file")
|
|
}
|
|
})
|
|
|
|
t.Run("valid file", func(t *testing.T) {
|
|
tmpFile := filepath.Join(t.TempDir(), "cert.pem")
|
|
if err := os.WriteFile(tmpFile, []byte("test"), 0644); err != nil {
|
|
t.Fatalf("Failed to create temp file: %v", err)
|
|
}
|
|
|
|
err := ValidateCertificate(tmpFile)
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestValidateKey(t *testing.T) {
|
|
t.Run("non-existent file", func(t *testing.T) {
|
|
err := ValidateKey("/nonexistent/key.pem")
|
|
if err == nil {
|
|
t.Error("Expected error for non-existent file")
|
|
}
|
|
})
|
|
|
|
t.Run("valid file", func(t *testing.T) {
|
|
tmpFile := filepath.Join(t.TempDir(), "key.pem")
|
|
if err := os.WriteFile(tmpFile, []byte("test"), 0600); err != nil {
|
|
t.Fatalf("Failed to create temp file: %v", err)
|
|
}
|
|
|
|
err := ValidateKey(tmpFile)
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
})
|
|
}
|
|
|
|
// generateTestCert generates a self-signed certificate for testing
|
|
func generateTestCert(t *testing.T) ([]byte, []byte) {
|
|
t.Helper()
|
|
|
|
// Generate ECDSA private key
|
|
priv, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
|
|
if err != nil {
|
|
t.Fatalf("Failed to generate private key: %v", err)
|
|
}
|
|
|
|
// Create certificate template
|
|
template := x509.Certificate{
|
|
SerialNumber: big.NewInt(1),
|
|
Subject: pkix.Name{
|
|
Organization: []string{"Test"},
|
|
},
|
|
NotBefore: time.Now(),
|
|
NotAfter: time.Now().Add(time.Hour),
|
|
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
|
|
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
|
|
BasicConstraintsValid: true,
|
|
DNSNames: []string{"localhost"},
|
|
}
|
|
|
|
// Create certificate
|
|
certDER, err := x509.CreateCertificate(rand.Reader, &template, &template, &priv.PublicKey, priv)
|
|
if err != nil {
|
|
t.Fatalf("Failed to create certificate: %v", err)
|
|
}
|
|
|
|
// Encode certificate to PEM
|
|
certPEM := pem.EncodeToMemory(&pem.Block{
|
|
Type: "CERTIFICATE",
|
|
Bytes: certDER,
|
|
})
|
|
|
|
// Encode private key to PEM
|
|
keyDER, err := x509.MarshalECPrivateKey(priv)
|
|
if err != nil {
|
|
t.Fatalf("Failed to marshal private key: %v", err)
|
|
}
|
|
|
|
keyPEM := pem.EncodeToMemory(&pem.Block{
|
|
Type: "EC PRIVATE KEY",
|
|
Bytes: keyDER,
|
|
})
|
|
|
|
return certPEM, keyPEM
|
|
}
|
|
|
|
func containsString(s, substr string) bool {
|
|
for i := 0; i <= len(s)-len(substr); i++ {
|
|
if s[i:i+len(substr)] == substr {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
} |