Files
keyhunter/pkg/recon/sources/notion_test.go
salvacybersec 7bb614678d feat(15-02): add Trello and Notion ReconSource implementations
- TrelloSource searches public Trello boards via /1/search API
- NotionSource uses dorking to discover and scrape public Notion pages
- Both credentialless, follow established Phase 10 pattern
- Tests with httptest mocks confirm Sweep emits findings
2026-04-06 13:50:04 +03:00

77 lines
1.9 KiB
Go

package sources
import (
"context"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/salvacybersec/keyhunter/pkg/providers"
"github.com/salvacybersec/keyhunter/pkg/recon"
)
func TestNotion_Name(t *testing.T) {
s := &NotionSource{}
if s.Name() != "notion" {
t.Fatalf("expected notion, got %s", s.Name())
}
}
func TestNotion_Enabled(t *testing.T) {
s := &NotionSource{}
if !s.Enabled(recon.Config{}) {
t.Fatal("NotionSource should always be enabled (credentialless)")
}
}
func TestNotion_Sweep(t *testing.T) {
mux := http.NewServeMux()
// Mock search endpoint returning a Notion page URL.
mux.HandleFunc("/search", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
_, _ = w.Write([]byte(`{"results":[{"url":"` + "http://" + r.Host + `/page/abc123","title":"API Keys"}]}`))
})
// Mock page content with a leaked key.
mux.HandleFunc("/page/abc123", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html")
_, _ = w.Write([]byte(`<div>Our API credentials: api_key = sk-proj-ABCDEF1234567890abcdef</div>`))
})
srv := httptest.NewServer(mux)
defer srv.Close()
reg := providers.NewRegistryFromProviders([]providers.Provider{
{Name: "openai", Keywords: []string{"sk-proj-"}},
})
s := &NotionSource{
BaseURL: srv.URL,
Registry: reg,
Client: NewClient(),
}
out := make(chan recon.Finding, 10)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
err := s.Sweep(ctx, "", out)
close(out)
if err != nil {
t.Fatalf("Sweep error: %v", err)
}
var findings []recon.Finding
for f := range out {
findings = append(findings, f)
}
if len(findings) == 0 {
t.Fatal("expected at least one finding from Notion page")
}
if findings[0].SourceType != "recon:notion" {
t.Fatalf("expected recon:notion, got %s", findings[0].SourceType)
}
}