{"id":26383287,"url":"https://github.com/koonix/gofuzz","last_synced_at":"2025-08-22T13:10:32.704Z","repository":{"id":255918152,"uuid":"853827717","full_name":"koonix/gofuzz","owner":"koonix","description":"gofuzz runs Golang fuzz tests in parallel.","archived":false,"fork":false,"pushed_at":"2024-12-13T18:21:48.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-13T19:18:21.069Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/koonix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-07T16:41:57.000Z","updated_at":"2024-12-13T18:17:13.000Z","dependencies_parsed_at":"2024-09-15T02:58:05.173Z","dependency_job_id":null,"html_url":"https://github.com/koonix/gofuzz","commit_stats":null,"previous_names":["koonix/gofuzz"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koonix%2Fgofuzz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koonix%2Fgofuzz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koonix%2Fgofuzz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koonix%2Fgofuzz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koonix","download_url":"https://codeload.github.com/koonix/gofuzz/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243987704,"owners_count":20379585,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-17T06:33:48.799Z","updated_at":"2025-08-22T13:10:32.693Z","avatar_url":"https://github.com/koonix.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gofuzz\n\nUnlike regular tests,\nonly a single fuzz test can be executed using the Go command.\n\ngofuzz allows running multiple or all fuzz tests in a project\nback to back or in parallel.\n\n## Install\n\n```sh\ngo install github.com/koonix/gofuzz@latest\n```\n\n## Usage\n\nUsage is similar to running regular tests.\n\nTo run fuzz tests of pkg1 and pkg2:\n\n```sh\ngofuzz ./pkg1 ./dir/pkg2\n```\n\nTo run all fuzz tests in the project:\n\n```sh\ngofuzz ./...\n```\n\nTo pass arguments to `go test`, put them after a `--`:\n\n\n```sh\ngofuzz ./... -- -fuzztime=10s\n```\n\nTo configure which fuzz tests to run and the number of tests running in parallel:\n\n```sh\ngofuzz -run='FuzzFunc1|FuzzFunc2' -parallel=5 ./... -- -fuzztime=10s\n```\n\nUse in GitHub Actions:\n\n```yaml\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n\n      - name: Run tests\n        run: go test -v ./...\n\n      - name: Run fuzz tests\n        run: go run github.com/koonix/gofuzz@latest ./... -- -fuzztime=30s\n```\n\nFull usage:\n\n```\nUsage: gofuzz [OPTIONS...] [PACKAGES...] [-- GOTESTARGS...]\n\ngofuzz runs multiple Go fuzz tests.\n\nPACKAGES are package patterns, as accepted by the go test command.\nGOTESTARGS are extra args passed to the go test command.\n\nOptions:\n  -C string\n    \trun as if the program was started in this path (default \".\")\n  -gotest string\n    \tcommand used for running tests, as whitespace-separated args (default \"go test\")\n  -parallel int\n    \tmaximum number of fuzz tests to run simultaneously (default 1)\n  -run string\n    \trun only those fuzz tests matching the regular expression (default \".\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoonix%2Fgofuzz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoonix%2Fgofuzz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoonix%2Fgofuzz/lists"}