-
Notifications
You must be signed in to change notification settings - Fork 3.7k
test(reporting/exporters/mongo): add mongo integration test with test… #6237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,101 @@ | ||
| package main | ||
|
|
||
| import ( | ||
| "context" | ||
| "fmt" | ||
| "log" | ||
| "time" | ||
|
|
||
| "github.com/projectdiscovery/nuclei/v3/pkg/output" | ||
| "github.com/projectdiscovery/nuclei/v3/pkg/reporting/exporters/mongo" | ||
| "github.com/testcontainers/testcontainers-go" | ||
| mongocontainer "github.com/testcontainers/testcontainers-go/modules/mongodb" | ||
|
|
||
| mongoclient "go.mongodb.org/mongo-driver/mongo" | ||
| mongooptions "go.mongodb.org/mongo-driver/mongo/options" | ||
| ) | ||
|
|
||
| const ( | ||
| dbName = "test" | ||
| dbImage = "mongo:8" | ||
| ) | ||
|
|
||
| var exportersTestCases = []TestCaseInfo{ | ||
| {Path: "exporters/mongo", TestCase: &mongoExporter{}}, | ||
| } | ||
|
|
||
| type mongoExporter struct{} | ||
|
|
||
| func (m *mongoExporter) Execute(filepath string) error { | ||
| ctx, cancel := context.WithTimeout(context.Background(), 10*time.Minute) | ||
| defer cancel() | ||
|
|
||
| // Start a MongoDB container | ||
| mongodbContainer, err := mongocontainer.Run(ctx, dbImage) | ||
| defer func() { | ||
| if err := testcontainers.TerminateContainer(mongodbContainer); err != nil { | ||
| log.Printf("failed to terminate container: %s", err) | ||
| } | ||
| }() | ||
| if err != nil { | ||
| return fmt.Errorf("failed to start container: %w", err) | ||
| } | ||
|
|
||
| connString, err := mongodbContainer.ConnectionString(ctx) | ||
| if err != nil { | ||
| return fmt.Errorf("failed to get connection string for MongoDB container: %s", err) | ||
| } | ||
| connString = connString + dbName | ||
|
|
||
| // Create a MongoDB exporter and write a test result to the database | ||
| opts := mongo.Options{ | ||
| ConnectionString: connString, | ||
| CollectionName: "test", | ||
| BatchSize: 1, // Ensure we write the result immediately | ||
| } | ||
|
|
||
| exporter, err := mongo.New(&opts) | ||
| if err != nil { | ||
| return fmt.Errorf("failed to create MongoDB exporter: %s", err) | ||
| } | ||
| defer func() { | ||
| if err := exporter.Close(); err != nil { | ||
| fmt.Printf("failed to close exporter: %s\n", err) | ||
| } | ||
| }() | ||
|
|
||
| res := &output.ResultEvent{ | ||
| Request: "test request", | ||
| Response: "test response", | ||
| } | ||
|
|
||
| err = exporter.Export(res) | ||
| if err != nil { | ||
| return fmt.Errorf("failed to export result event to MongoDB: %s", err) | ||
| } | ||
|
|
||
| // Verify that the result was written to the database | ||
| clientOptions := mongooptions.Client().ApplyURI(connString) | ||
| client, err := mongoclient.Connect(ctx, clientOptions) | ||
| if err != nil { | ||
| return fmt.Errorf("error creating MongoDB client: %s", err) | ||
| } | ||
| defer func() { | ||
| if err := client.Disconnect(ctx); err != nil { | ||
| fmt.Printf("failed to disconnect from MongoDB: %s\n", err) | ||
| } | ||
| }() | ||
|
|
||
| collection := client.Database(dbName).Collection(opts.CollectionName) | ||
| var actualRes output.ResultEvent | ||
| err = collection.FindOne(ctx, map[string]interface{}{"request": res.Request}).Decode(&actualRes) | ||
| if err != nil { | ||
| return fmt.Errorf("failed to find document in MongoDB: %s", err) | ||
| } | ||
|
|
||
| if actualRes.Request != res.Request || actualRes.Response != res.Response { | ||
| return fmt.Errorf("exported result does not match expected result: got %v, want %v", actualRes, res) | ||
| } | ||
|
|
||
| return nil | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -37,9 +37,9 @@ require ( | |||||||||||||||||||||
| github.com/valyala/fasttemplate v1.2.2 | ||||||||||||||||||||||
| github.com/weppos/publicsuffix-go v0.40.3-0.20250408071509-6074bbe7fd39 | ||||||||||||||||||||||
| go.uber.org/multierr v1.11.0 | ||||||||||||||||||||||
| golang.org/x/net v0.41.0 | ||||||||||||||||||||||
| golang.org/x/net v0.42.0 | ||||||||||||||||||||||
| golang.org/x/oauth2 v0.30.0 | ||||||||||||||||||||||
| golang.org/x/text v0.26.0 | ||||||||||||||||||||||
| golang.org/x/text v0.28.0 | ||||||||||||||||||||||
| gopkg.in/yaml.v2 v2.4.0 | ||||||||||||||||||||||
| ) | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
|
|
@@ -110,26 +110,28 @@ require ( | |||||||||||||||||||||
| github.com/redis/go-redis/v9 v9.11.0 | ||||||||||||||||||||||
| github.com/seh-msft/burpxml v1.0.1 | ||||||||||||||||||||||
| github.com/shurcooL/graphql v0.0.0-20230722043721-ed46e5a46466 | ||||||||||||||||||||||
| github.com/stretchr/testify v1.10.0 | ||||||||||||||||||||||
| github.com/stretchr/testify v1.11.0 | ||||||||||||||||||||||
| github.com/tarunKoyalwar/goleak v0.0.0-20240429141123-0efa90dbdcf9 | ||||||||||||||||||||||
| github.com/testcontainers/testcontainers-go v0.38.0 | ||||||||||||||||||||||
| github.com/testcontainers/testcontainers-go/modules/mongodb v0.37.0 | ||||||||||||||||||||||
| github.com/yassinebenaid/godump v0.11.1 | ||||||||||||||||||||||
|
Comment on lines
+113
to
117
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Align testcontainers core and mongodb module versions to avoid API drift Core is v0.38.0 but mongodb module is v0.37.0. Testcontainers modules are versioned in lockstep; mixing minors can break options/APIs at compile or runtime. Apply this diff to align versions: - github.com/testcontainers/testcontainers-go v0.38.0
- github.com/testcontainers/testcontainers-go/modules/mongodb v0.37.0
+ github.com/testcontainers/testcontainers-go v0.38.0
+ github.com/testcontainers/testcontainers-go/modules/mongodb v0.38.0Also, if you see CI flakiness on macOS/Windows with Docker Desktop, consider setting TESTCONTAINERS_RYUK_DISABLED=true and enabling reusable containers in the test harness to stabilize teardown, but that’s outside go.mod. 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
| github.com/zmap/zgrab2 v0.1.8 | ||||||||||||||||||||||
| gitlab.com/gitlab-org/api/client-go v0.130.1 | ||||||||||||||||||||||
| go.mongodb.org/mongo-driver v1.17.4 | ||||||||||||||||||||||
| golang.org/x/term v0.32.0 | ||||||||||||||||||||||
| golang.org/x/term v0.34.0 | ||||||||||||||||||||||
| gopkg.in/yaml.v3 v3.0.1 | ||||||||||||||||||||||
| moul.io/http2curl v1.0.0 | ||||||||||||||||||||||
| ) | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| require ( | ||||||||||||||||||||||
| aead.dev/minisign v0.2.0 // indirect | ||||||||||||||||||||||
| dario.cat/mergo v1.0.0 // indirect | ||||||||||||||||||||||
| dario.cat/mergo v1.0.2 // indirect | ||||||||||||||||||||||
| filippo.io/edwards25519 v1.1.0 // indirect | ||||||||||||||||||||||
| git.mills.io/prologic/smtpd v0.0.0-20210710122116-a525b76c287a // indirect | ||||||||||||||||||||||
| github.com/42wim/httpsig v1.2.2 // indirect | ||||||||||||||||||||||
| github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.0 // indirect | ||||||||||||||||||||||
| github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.1 // indirect | ||||||||||||||||||||||
| github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect | ||||||||||||||||||||||
| github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect | ||||||||||||||||||||||
| github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect | ||||||||||||||||||||||
| github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2 // indirect | ||||||||||||||||||||||
| github.com/Microsoft/go-winio v0.6.2 // indirect | ||||||||||||||||||||||
|
|
@@ -185,18 +187,26 @@ require ( | |||||||||||||||||||||
| github.com/cloudwego/base64x v0.1.5 // indirect | ||||||||||||||||||||||
| github.com/cnf/structhash v0.0.0-20201127153200-e1b16c1ebc08 // indirect | ||||||||||||||||||||||
| github.com/containerd/continuity v0.4.5 // indirect | ||||||||||||||||||||||
| github.com/containerd/errdefs v1.0.0 // indirect | ||||||||||||||||||||||
| github.com/containerd/errdefs/pkg v0.3.0 // indirect | ||||||||||||||||||||||
| github.com/containerd/log v0.1.0 // indirect | ||||||||||||||||||||||
| github.com/containerd/platforms v0.2.1 // indirect | ||||||||||||||||||||||
| github.com/cpuguy83/dockercfg v0.3.2 // indirect | ||||||||||||||||||||||
| github.com/cyphar/filepath-securejoin v0.4.1 // indirect | ||||||||||||||||||||||
| github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||||||||||||||||||||||
| github.com/davidmz/go-pageant v1.0.2 // indirect | ||||||||||||||||||||||
| github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||||||||||||||||||||||
| github.com/distribution/reference v0.6.0 // indirect | ||||||||||||||||||||||
| github.com/dlclark/regexp2 v1.11.5 // indirect | ||||||||||||||||||||||
| github.com/docker/cli v27.4.1+incompatible // indirect | ||||||||||||||||||||||
| github.com/docker/docker v28.0.0+incompatible // indirect | ||||||||||||||||||||||
| github.com/docker/go-connections v0.5.0 // indirect | ||||||||||||||||||||||
| github.com/docker/docker v28.3.3+incompatible // indirect | ||||||||||||||||||||||
| github.com/docker/go-connections v0.6.0 // indirect | ||||||||||||||||||||||
| github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect | ||||||||||||||||||||||
| github.com/ebitengine/purego v0.8.4 // indirect | ||||||||||||||||||||||
| github.com/emirpasic/gods v1.18.1 // indirect | ||||||||||||||||||||||
| github.com/fatih/color v1.18.0 // indirect | ||||||||||||||||||||||
| github.com/felixge/fgprof v0.9.5 // indirect | ||||||||||||||||||||||
| github.com/felixge/httpsnoop v1.0.4 // indirect | ||||||||||||||||||||||
| github.com/free5gc/util v1.0.5-0.20230511064842-2e120956883b // indirect | ||||||||||||||||||||||
| github.com/gabriel-vasile/mimetype v1.4.8 // indirect | ||||||||||||||||||||||
| github.com/gaissmai/bart v0.23.1 // indirect | ||||||||||||||||||||||
|
|
@@ -207,7 +217,9 @@ require ( | |||||||||||||||||||||
| github.com/go-fed/httpsig v1.1.0 // indirect | ||||||||||||||||||||||
| github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect | ||||||||||||||||||||||
| github.com/go-git/go-billy/v5 v5.6.2 // indirect | ||||||||||||||||||||||
| github.com/go-ole/go-ole v1.2.6 // indirect | ||||||||||||||||||||||
| github.com/go-logr/logr v1.4.3 // indirect | ||||||||||||||||||||||
| github.com/go-logr/stdr v1.2.2 // indirect | ||||||||||||||||||||||
| github.com/go-ole/go-ole v1.3.0 // indirect | ||||||||||||||||||||||
| github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||||||||||||||||||||||
| github.com/go-openapi/swag v0.23.0 // indirect | ||||||||||||||||||||||
| github.com/go-playground/locales v0.14.1 // indirect | ||||||||||||||||||||||
|
|
@@ -255,8 +267,9 @@ require ( | |||||||||||||||||||||
| github.com/logrusorgru/aurora/v4 v4.0.0 // indirect | ||||||||||||||||||||||
| github.com/lor00x/goldap v0.0.0-20180618054307-a546dffdd1a3 // indirect | ||||||||||||||||||||||
| github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||||||||||||||||||||||
| github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect | ||||||||||||||||||||||
| github.com/lufia/plan9stats v0.0.0-20250821153705-5981dea3221d // indirect | ||||||||||||||||||||||
| github.com/mackerelio/go-osstat v0.2.4 // indirect | ||||||||||||||||||||||
| github.com/magiconair/properties v1.8.10 // indirect | ||||||||||||||||||||||
| github.com/mailru/easyjson v0.7.7 // indirect | ||||||||||||||||||||||
| github.com/mattn/go-colorable v0.1.14 // indirect | ||||||||||||||||||||||
| github.com/mattn/go-isatty v0.0.20 // indirect | ||||||||||||||||||||||
|
|
@@ -268,12 +281,17 @@ require ( | |||||||||||||||||||||
| github.com/minio/selfupdate v0.6.1-0.20230907112617-f11e74f84ca7 // indirect | ||||||||||||||||||||||
| github.com/mitchellh/go-homedir v1.1.0 // indirect | ||||||||||||||||||||||
| github.com/moby/docker-image-spec v1.3.1 // indirect | ||||||||||||||||||||||
| github.com/moby/sys/user v0.3.0 // indirect | ||||||||||||||||||||||
| github.com/moby/term v0.5.0 // indirect | ||||||||||||||||||||||
| github.com/moby/go-archive v0.1.0 // indirect | ||||||||||||||||||||||
| github.com/moby/patternmatcher v0.6.0 // indirect | ||||||||||||||||||||||
| github.com/moby/sys/sequential v0.6.0 // indirect | ||||||||||||||||||||||
| github.com/moby/sys/user v0.4.0 // indirect | ||||||||||||||||||||||
| github.com/moby/sys/userns v0.1.0 // indirect | ||||||||||||||||||||||
| github.com/moby/term v0.5.2 // indirect | ||||||||||||||||||||||
| github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||||||||||||||||||||||
| github.com/modern-go/reflect2 v1.0.2 // indirect | ||||||||||||||||||||||
| github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||||||||||||||||||||||
| github.com/montanaflynn/stats v0.7.1 // indirect | ||||||||||||||||||||||
| github.com/morikuni/aec v1.0.0 // indirect | ||||||||||||||||||||||
| github.com/muesli/reflow v0.3.0 // indirect | ||||||||||||||||||||||
| github.com/muesli/termenv v0.16.0 // indirect | ||||||||||||||||||||||
| github.com/nwaples/rardecode/v2 v2.1.0 // indirect | ||||||||||||||||||||||
|
|
@@ -282,7 +300,7 @@ require ( | |||||||||||||||||||||
| github.com/olekukonko/errors v1.1.0 // indirect | ||||||||||||||||||||||
| github.com/olekukonko/ll v0.0.9 // indirect | ||||||||||||||||||||||
| github.com/opencontainers/go-digest v1.0.0 // indirect | ||||||||||||||||||||||
| github.com/opencontainers/image-spec v1.1.0 // indirect | ||||||||||||||||||||||
| github.com/opencontainers/image-spec v1.1.1 // indirect | ||||||||||||||||||||||
| github.com/opencontainers/runc v1.2.3 // indirect | ||||||||||||||||||||||
| github.com/openrdap/rdap v0.9.1 // indirect | ||||||||||||||||||||||
| github.com/pelletier/go-toml/v2 v2.0.8 // indirect | ||||||||||||||||||||||
|
|
@@ -291,7 +309,7 @@ require ( | |||||||||||||||||||||
| github.com/pjbgf/sha1cd v0.3.2 // indirect | ||||||||||||||||||||||
| github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect | ||||||||||||||||||||||
| github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||||||||||||||||||||||
| github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect | ||||||||||||||||||||||
| github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect | ||||||||||||||||||||||
| github.com/projectdiscovery/asnmap v1.1.1 // indirect | ||||||||||||||||||||||
| github.com/projectdiscovery/blackrock v0.0.1 // indirect | ||||||||||||||||||||||
| github.com/projectdiscovery/cdncheck v1.1.26 // indirect | ||||||||||||||||||||||
|
|
@@ -302,6 +320,7 @@ require ( | |||||||||||||||||||||
| github.com/sashabaranov/go-openai v1.37.0 // indirect | ||||||||||||||||||||||
| github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect | ||||||||||||||||||||||
| github.com/shirou/gopsutil v3.21.11+incompatible // indirect | ||||||||||||||||||||||
| github.com/shirou/gopsutil/v4 v4.25.7 // indirect | ||||||||||||||||||||||
| github.com/shoenig/go-m1cpu v0.1.6 // indirect | ||||||||||||||||||||||
| github.com/sirupsen/logrus v1.9.3 // indirect | ||||||||||||||||||||||
| github.com/skeema/knownhosts v1.3.1 // indirect | ||||||||||||||||||||||
|
|
@@ -315,8 +334,8 @@ require ( | |||||||||||||||||||||
| github.com/tidwall/rtred v0.1.2 // indirect | ||||||||||||||||||||||
| github.com/tidwall/tinyqueue v0.1.1 // indirect | ||||||||||||||||||||||
| github.com/tim-ywliu/nested-logrus-formatter v1.3.2 // indirect | ||||||||||||||||||||||
| github.com/tklauser/go-sysconf v0.3.12 // indirect | ||||||||||||||||||||||
| github.com/tklauser/numcpus v0.6.1 // indirect | ||||||||||||||||||||||
| github.com/tklauser/go-sysconf v0.3.15 // indirect | ||||||||||||||||||||||
| github.com/tklauser/numcpus v0.10.0 // indirect | ||||||||||||||||||||||
| github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||||||||||||||||||||||
| github.com/ugorji/go/codec v1.2.11 // indirect | ||||||||||||||||||||||
| github.com/ulikunitz/xz v0.5.12 // indirect | ||||||||||||||||||||||
|
|
@@ -337,9 +356,14 @@ require ( | |||||||||||||||||||||
| github.com/yuin/goldmark-emoji v1.0.5 // indirect | ||||||||||||||||||||||
| github.com/zcalusic/sysinfo v1.0.2 // indirect | ||||||||||||||||||||||
| github.com/zeebo/blake3 v0.2.3 // indirect | ||||||||||||||||||||||
| go.opentelemetry.io/auto/sdk v1.1.0 // indirect | ||||||||||||||||||||||
| go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0 // indirect | ||||||||||||||||||||||
| go.opentelemetry.io/otel v1.37.0 // indirect | ||||||||||||||||||||||
| go.opentelemetry.io/otel/metric v1.37.0 // indirect | ||||||||||||||||||||||
| go.opentelemetry.io/otel/trace v1.37.0 // indirect | ||||||||||||||||||||||
| go4.org v0.0.0-20230225012048-214862532bf5 // indirect | ||||||||||||||||||||||
| golang.org/x/arch v0.3.0 // indirect | ||||||||||||||||||||||
| golang.org/x/sync v0.15.0 // indirect | ||||||||||||||||||||||
| golang.org/x/sync v0.16.0 // indirect | ||||||||||||||||||||||
| gopkg.in/djherbis/times.v1 v1.3.0 // indirect | ||||||||||||||||||||||
| mellium.im/sasl v0.3.2 // indirect | ||||||||||||||||||||||
| ) | ||||||||||||||||||||||
|
|
@@ -363,12 +387,12 @@ require ( | |||||||||||||||||||||
| go.etcd.io/bbolt v1.3.10 // indirect | ||||||||||||||||||||||
| go.uber.org/zap v1.25.0 // indirect | ||||||||||||||||||||||
| goftp.io/server/v2 v2.0.1 // indirect | ||||||||||||||||||||||
| golang.org/x/crypto v0.39.0 // indirect | ||||||||||||||||||||||
| golang.org/x/crypto v0.41.0 // indirect | ||||||||||||||||||||||
| golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b | ||||||||||||||||||||||
| golang.org/x/mod v0.25.0 // indirect | ||||||||||||||||||||||
| golang.org/x/sys v0.33.0 // indirect | ||||||||||||||||||||||
| golang.org/x/mod v0.26.0 // indirect | ||||||||||||||||||||||
| golang.org/x/sys v0.35.0 // indirect | ||||||||||||||||||||||
| golang.org/x/time v0.11.0 // indirect | ||||||||||||||||||||||
| golang.org/x/tools v0.34.0 | ||||||||||||||||||||||
| golang.org/x/tools v0.35.0 | ||||||||||||||||||||||
| google.golang.org/protobuf v1.35.1 // indirect | ||||||||||||||||||||||
| gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect | ||||||||||||||||||||||
| gopkg.in/corvus-ch/zbase32.v1 v1.0.0 // indirect | ||||||||||||||||||||||
|
|
@@ -382,3 +406,10 @@ require ( | |||||||||||||||||||||
|
|
||||||||||||||||||||||
| // https://go.dev/ref/mod#go-mod-file-retract | ||||||||||||||||||||||
| retract v3.2.0 // retract due to broken js protocol issue | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| // Fix genproto version conflicts | ||||||||||||||||||||||
| replace ( | ||||||||||||||||||||||
| google.golang.org/genproto => google.golang.org/genproto v0.0.0-20240814211410-ddb44dafa142 | ||||||||||||||||||||||
| google.golang.org/genproto/googleapis/api => google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 | ||||||||||||||||||||||
| google.golang.org/genproto/googleapis/rpc => google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 | ||||||||||||||||||||||
| ) | ||||||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.