Files
Mzack9999 2b688a5587 lint
2025-08-28 17:04:33 +02:00

109 lines
2.1 KiB
Go

package main
import (
"net/http"
"os"
"github.com/projectdiscovery/httpx/internal/testutils"
"github.com/projectdiscovery/httpx/runner"
)
var libraryTestcases = map[string]testutils.TestCase{
"sdk": &httpxLibrary{},
"sdk with stream": &httpxLibraryWithStream{},
}
type httpxLibrary struct {
}
func (h *httpxLibrary) Execute() error {
testFile := "test.txt"
err := os.WriteFile(testFile, []byte("scanme.sh"), 0644)
if err != nil {
return err
}
defer func() {
_ = os.RemoveAll(testFile)
}()
var got string
options := runner.Options{
Methods: http.MethodGet,
InputFile: testFile,
OnResult: func(r runner.Result) {
got = r.URL
},
}
if err := options.ValidateOptions(); err != nil {
return err
}
httpxRunner, err := runner.New(&options)
if err != nil {
return err
}
defer httpxRunner.Close()
httpxRunner.RunEnumeration()
// httpx removes default ports for simplicity Ref: https://pkg.go.dev/github.com/projectdiscovery/httpx/common/stringz#RemoveURLDefaultPort
expected := "https://scanme.sh"
if got != expected {
return errIncorrectResult(expected, got)
}
return nil
}
type httpxLibraryWithStream struct {
}
func (h *httpxLibraryWithStream) Execute() error {
testFile := "test.txt"
err := os.WriteFile(testFile, []byte("scanme.sh"), 0644)
if err != nil {
return err
}
defer func() {
_ = os.RemoveAll(testFile)
}()
var got string
options := runner.Options{
Methods: http.MethodGet,
InputFile: testFile,
RateLimit: 150,
Retries: 2,
Timeout: 10,
TechDetect: true,
Stream: true,
SkipDedupe: true,
OnResult: func(r runner.Result) {
got = r.URL
},
}
if err := options.ValidateOptions(); err != nil {
return err
}
httpxRunner, err := runner.New(&options)
if err != nil {
return err
}
defer httpxRunner.Close()
httpxRunner.RunEnumeration()
// httpx removes default ports for simplicity Ref: https://pkg.go.dev/github.com/projectdiscovery/httpx/common/stringz#RemoveURLDefaultPort
expected := "https://scanme.sh"
if got != expected {
return errIncorrectResult(expected, got)
}
return nil
}