mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-02-14 10:00:08 +00:00
* Add unit tests for HTTP dissector
* Ignore some fields on test environment
* Remove Git patches
* Don't have indent in the expected JSONs
* Fix more issues and update expected JSONs
* Refactor the test environment lookup
* Add a Makefile
* Include HTTP tests into the CI
* Fix the linting errors
* Fix another linting error
* Update the expected JSONs
* Sort `PostData.Params` params as well
* Move expected JSONs into `expect/dissect`
* Add `TestAnalyze` method
* Add `TestRepresent` method
* Add `TestRegister`, `TestMacros` and `TestPing` methods
* Test extensions first
* Remove expected JSONs
* Remove `bin` directory and update `Makefile` rules
* Update `.gitignore`
* Fix skipping download functionality in the Makefile
* Run `go mod tidy`
* Fix the race condition in the tests
* Revert "Test extensions first"
This reverts commit b8350cf139.
* Make `TEST_UPDATE` env lookup one-liner
* Update .github/workflows/test.yml
Co-authored-by: gadotroee <55343099+gadotroee@users.noreply.github.com>
* Add a newline
* Replace `ls` with `find`
Co-authored-by: gadotroee <55343099+gadotroee@users.noreply.github.com>
51 lines
754 B
Plaintext
51 lines
754 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
.idea/
|
|
build
|
|
|
|
# Mac OS
|
|
.DS_Store
|
|
.vscode/
|
|
|
|
# Ignore the scripts that are created for development
|
|
*dev.*
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# pprof
|
|
pprof/*
|
|
|
|
# Database Files
|
|
*.bin
|
|
*.gob
|
|
|
|
# Nohup Files - https://man7.org/linux/man-pages/man1/nohup.1p.html
|
|
nohup.*
|
|
|
|
# Cypress tests
|
|
cypress.env.json
|
|
*/cypress/downloads
|
|
*/cypress/fixtures
|
|
*/cypress/plugins
|
|
*/cypress/screenshots
|
|
*/cypress/videos
|
|
*/cypress/support
|
|
|
|
# Ignore test data in extensions
|
|
tap/extensions/*/bin
|
|
tap/extensions/*/expect
|