mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-19 02:45:25 +00:00
37 lines
1.1 KiB
Go
37 lines
1.1 KiB
Go
|
|
package stats
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestTrackErrorKind(t *testing.T) {
|
||
|
|
tracker := NewTracker()
|
||
|
|
|
||
|
|
// Test single increment
|
||
|
|
tracker.TrackErrorKind("timeout")
|
||
|
|
if count, _ := tracker.errorCodes.Get("timeout"); count == nil || count.Load() != 1 {
|
||
|
|
t.Errorf("expected error kind timeout count to be 1, got %v", count)
|
||
|
|
}
|
||
|
|
|
||
|
|
// Test multiple increments
|
||
|
|
tracker.TrackErrorKind("timeout")
|
||
|
|
if count, _ := tracker.errorCodes.Get("timeout"); count == nil || count.Load() != 2 {
|
||
|
|
t.Errorf("expected error kind timeout count to be 2, got %v", count)
|
||
|
|
}
|
||
|
|
|
||
|
|
// Test different error kind
|
||
|
|
tracker.TrackErrorKind("connection-refused")
|
||
|
|
if count, _ := tracker.errorCodes.Get("connection-refused"); count == nil || count.Load() != 1 {
|
||
|
|
t.Errorf("expected error kind connection-refused count to be 1, got %v", count)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestTrackWaf_Detect(t *testing.T) {
|
||
|
|
tracker := NewTracker()
|
||
|
|
|
||
|
|
tracker.TrackWAFDetected("Attention Required! | Cloudflare")
|
||
|
|
if count, _ := tracker.wafDetected.Get("cloudflare"); count == nil || count.Load() != 1 {
|
||
|
|
t.Errorf("expected waf detected count to be 1, got %v", count)
|
||
|
|
}
|
||
|
|
}
|