forked from mindersec/minder-rules-and-profiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "Introduce tests for rule types (mindersec#185)" (mind…
…ersec#189)" (mindersec#191) This reverts commit 96abf64.
- Loading branch information
Showing
14 changed files
with
3,135 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | ||
with: | ||
check-latest: true | ||
|
||
- name: setup task | ||
uses: arduino/setup-task@b91d5d2c96a56797b48ac1e0e89220bf64044611 # v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Install gotestfmt on the VM running the action. | ||
- name: Set up gotestfmt | ||
uses: GoTestTools/gotestfmt-action@8b4478c7019be847373babde9300210e7de34bfb # v2.2.0 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Run go mod download | ||
run: go mod download | ||
|
||
- name: build | ||
run: |- | ||
task test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
version: '3' | ||
|
||
tasks: | ||
test: | ||
desc: Run rule type tests | ||
summary: | | ||
Rule type tests are tests that are run against the rule types. | ||
In order to implement a rule type test, you must create a test suite file | ||
that lives alongside the rule type file. The test suite file must have the | ||
same name as the rule type file, but with a `.test.yaml` extension. For example, if | ||
the rule type is called `my_rule_type.yaml` then the test suite file must be called | ||
`my_rule_type.test.yaml`. | ||
Note you must also provide a test data directory that contains the test data files. | ||
The test data directory must be named as the rule type file, but with a `.testdata` | ||
suffix. For example, if the rule type is called `my_rule_type.yaml` then the test data | ||
directory must be called `my_rule_type.testdata`. | ||
cmds: | ||
- go test -json -v ./... | gotestfmt -hide "all" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,259 @@ | ||
module github.com/mindersec/minder-rules-and-profiles | ||
|
||
go 1.23.1 | ||
|
||
toolchain go1.23.2 | ||
|
||
require ( | ||
github.com/mindersec/minder v0.0.68 | ||
github.com/rs/zerolog v1.33.0 | ||
github.com/stretchr/testify v1.9.0 | ||
google.golang.org/protobuf v1.35.1 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
dario.cat/mergo v1.0.1 // indirect | ||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect | ||
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 // indirect | ||
github.com/BurntSushi/toml v1.4.0 // indirect | ||
github.com/CycloneDX/cyclonedx-go v0.9.0 // indirect | ||
github.com/Microsoft/go-winio v0.6.2 // indirect | ||
github.com/Microsoft/hcsshim v0.11.7 // indirect | ||
github.com/OneOfOne/xxhash v1.2.8 // indirect | ||
github.com/ProtonMail/go-crypto v1.0.0 // indirect | ||
github.com/ThreeDotsLabs/watermill v1.3.7 // indirect | ||
github.com/ThreeDotsLabs/watermill-sql/v3 v3.1.0 // indirect | ||
github.com/agnivade/levenshtein v1.2.0 // indirect | ||
github.com/alexdrl/zerowater v0.0.3 // indirect | ||
github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9 // indirect | ||
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect | ||
github.com/barkimedes/go-deepcopy v0.0.0-20220514131651-17c30cfc62df // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/cenkalti/backoff/v3 v3.2.2 // indirect | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cloudevents/sdk-go/protocol/nats_jetstream/v2 v2.15.2 // indirect | ||
github.com/cloudevents/sdk-go/v2 v2.15.2 // indirect | ||
github.com/cloudflare/circl v1.3.7 // indirect | ||
github.com/containerd/cgroups v1.1.0 // indirect | ||
github.com/containerd/containerd v1.7.22 // indirect | ||
github.com/containerd/containerd/api v1.7.19 // indirect | ||
github.com/containerd/continuity v0.4.3 // indirect | ||
github.com/containerd/errdefs v0.1.0 // indirect | ||
github.com/containerd/fifo v1.1.0 // indirect | ||
github.com/containerd/log v0.1.0 // indirect | ||
github.com/containerd/platforms v0.2.1 // indirect | ||
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect | ||
github.com/containerd/ttrpc v1.2.5 // indirect | ||
github.com/containerd/typeurl/v2 v2.2.0 // indirect | ||
github.com/cyberphone/json-canonicalization v0.0.0-20231011164504-785e29786b46 // indirect | ||
github.com/cyphar/filepath-securejoin v0.2.5 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/deckarep/golang-set/v2 v2.6.0 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect | ||
github.com/digitorus/pkcs7 v0.0.0-20230818184609-3a137a874352 // indirect | ||
github.com/digitorus/timestamp v0.0.0-20231217203849-220c5c2851b7 // indirect | ||
github.com/distribution/reference v0.6.0 // indirect | ||
github.com/docker/cli v27.3.1+incompatible // indirect | ||
github.com/docker/distribution v2.8.3+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.8.2 // indirect | ||
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect | ||
github.com/emirpasic/gods v1.18.1 // indirect | ||
github.com/erikvarga/go-rpmdb v0.0.0-20240208180226-b97e041ef9af // indirect | ||
github.com/evanphx/json-patch/v5 v5.9.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.3 // indirect | ||
github.com/go-chi/chi v4.1.2+incompatible // indirect | ||
github.com/go-chi/chi/v5 v5.1.0 // indirect | ||
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect | ||
github.com/go-git/go-billy/v5 v5.5.1-0.20240927131424-c1ee0b97d109 // indirect | ||
github.com/go-git/go-git/v5 v5.12.0 // indirect | ||
github.com/go-ini/ini v1.67.0 // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.4 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-openapi/analysis v0.23.0 // indirect | ||
github.com/go-openapi/errors v0.22.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/jsonreference v0.21.0 // indirect | ||
github.com/go-openapi/loads v0.22.0 // indirect | ||
github.com/go-openapi/runtime v0.28.0 // indirect | ||
github.com/go-openapi/spec v0.21.0 // indirect | ||
github.com/go-openapi/strfmt v0.23.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/go-openapi/validate v0.24.0 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-playground/validator/v10 v10.22.1 // indirect | ||
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/goccy/go-json v0.10.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/google/cel-go v0.21.0 // indirect | ||
github.com/google/certificate-transparency-go v1.2.1 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/go-containerregistry v0.20.2 // indirect | ||
github.com/google/go-github/v61 v61.0.0 // indirect | ||
github.com/google/go-github/v63 v63.0.0 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/google/osv-scalibr v0.1.4-0.20241008174812-047e6a2b425d // indirect | ||
github.com/google/osv-scanner v1.7.1 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/gorilla/mux v1.8.1 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect | ||
github.com/hashicorp/go-version v1.7.0 // indirect | ||
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect | ||
github.com/in-toto/attestation v1.1.0 // indirect | ||
github.com/in-toto/in-toto-golang v0.9.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/itchyny/gojq v0.12.16 // indirect | ||
github.com/itchyny/timefmt-go v0.1.6 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/kevinburke/ssh_config v1.2.0 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/lestrrat-go/blackmagic v1.0.2 // indirect | ||
github.com/lestrrat-go/httpcc v1.0.1 // indirect | ||
github.com/lestrrat-go/httprc v1.0.6 // indirect | ||
github.com/lestrrat-go/iter v1.0.2 // indirect | ||
github.com/lestrrat-go/jwx/v2 v2.1.1 // indirect | ||
github.com/lestrrat-go/option v1.0.1 // indirect | ||
github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec // indirect | ||
github.com/lib/pq v1.10.9 // indirect | ||
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.22 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/moby/buildkit v0.16.0 // indirect | ||
github.com/moby/locker v1.0.1 // indirect | ||
github.com/moby/sys/mountinfo v0.7.2 // indirect | ||
github.com/moby/sys/sequential v0.5.0 // indirect | ||
github.com/moby/sys/signal v0.7.1 // indirect | ||
github.com/moby/sys/user v0.3.0 // indirect | ||
github.com/moby/sys/userns v0.1.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/motemen/go-loghttp v0.0.0-20231107055348-29ae44b293f4 // indirect | ||
github.com/motemen/go-nuts v0.0.0-20220604134737-2658d0104f31 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/nats-io/nats.go v1.37.0 // indirect | ||
github.com/nats-io/nkeys v0.4.7 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/nikunjy/rules v1.5.0 // indirect | ||
github.com/nozzle/throttler v0.0.0-20180817012639-2ea982251481 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/open-feature/go-sdk v1.13.0 // indirect | ||
github.com/open-feature/go-sdk-contrib/providers/go-feature-flag-in-process v0.1.0 // indirect | ||
github.com/open-policy-agent/opa v0.68.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/opencontainers/runtime-spec v1.2.0 // indirect | ||
github.com/opencontainers/selinux v1.11.0 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/package-url/packageurl-go v0.1.3 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.2 // indirect | ||
github.com/pjbgf/sha1cd v0.3.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/prometheus/client_golang v1.20.5 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.60.0 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/puzpuzpuz/xsync v1.5.2 // indirect | ||
github.com/puzpuzpuz/xsync/v3 v3.4.0 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect | ||
github.com/rogpeppe/go-internal v1.13.1 // indirect | ||
github.com/sagikazarmark/locafero v0.4.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sassoftware/relic v7.2.1+incompatible // indirect | ||
github.com/secure-systems-lab/go-securesystemslib v0.8.0 // indirect | ||
github.com/segmentio/asm v1.2.0 // indirect | ||
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect | ||
github.com/shibumi/go-pathspec v1.3.0 // indirect | ||
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.20.0 // indirect | ||
github.com/signalfx/splunk-otel-go/instrumentation/github.com/lib/pq/splunkpq v1.20.0 // indirect | ||
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.20.0 // indirect | ||
github.com/sigstore/protobuf-specs v0.3.2 // indirect | ||
github.com/sigstore/rekor v1.3.6 // indirect | ||
github.com/sigstore/sigstore v1.8.9 // indirect | ||
github.com/sigstore/sigstore-go v0.6.2 // indirect | ||
github.com/sigstore/timestamp-authority v1.2.2 // indirect | ||
github.com/sirupsen/logrus v1.9.4-0.20230606125235-dd1b4c2e81af // indirect | ||
github.com/skeema/knownhosts v1.2.2 // indirect | ||
github.com/sony/gobreaker v1.0.0 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spdx/gordf v0.0.0-20221230105357-b735bd5aac89 // indirect | ||
github.com/spdx/tools-golang v0.5.3 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/cobra v1.8.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.19.0 // indirect | ||
github.com/sqlc-dev/pqtype v0.3.0 // indirect | ||
github.com/stacklok/frizbee v0.1.3 // indirect | ||
github.com/stacklok/trusty-sdk-go v0.2.1 // indirect | ||
github.com/stoewer/go-strcase v1.3.0 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/tchap/go-patricia/v2 v2.3.1 // indirect | ||
github.com/theupdateframework/go-tuf v0.7.0 // indirect | ||
github.com/theupdateframework/go-tuf/v2 v2.0.1 // indirect | ||
github.com/thomaspoignant/go-feature-flag v1.34.0 // indirect | ||
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect | ||
github.com/transparency-dev/merkle v0.0.2 // indirect | ||
github.com/vbatts/tar-split v0.11.5 // indirect | ||
github.com/xanzy/go-gitlab v0.112.0 // indirect | ||
github.com/xanzy/ssh-agent v0.3.3 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||
github.com/yashtewari/glob-intersection v0.2.0 // indirect | ||
go.etcd.io/bbolt v1.3.10 // indirect | ||
go.mongodb.org/mongo-driver v1.16.1 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect | ||
go.opentelemetry.io/otel v1.31.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.31.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.31.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.31.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.27.0 // indirect | ||
golang.org/x/crypto v0.28.0 // indirect | ||
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/net v0.30.0 // indirect | ||
golang.org/x/oauth2 v0.23.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/term v0.25.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
golang.org/x/time v0.6.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect | ||
google.golang.org/grpc v1.67.1 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
k8s.io/apimachinery v0.31.1 // indirect | ||
k8s.io/klog/v2 v2.130.1 // indirect | ||
sigs.k8s.io/release-utils v0.8.5 // indirect | ||
sigs.k8s.io/yaml v1.4.0 // indirect | ||
) |
Oops, something went wrong.