Skip to content

Commit f569f49

Browse files
committed
Add e2e for augerctl
Signed-off-by: Shiming Zhang <[email protected]>
1 parent 965ce35 commit f569f49

File tree

5 files changed

+266
-1
lines changed

5 files changed

+266
-1
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ verify:
3838
build:
3939
@mkdir -p build
4040
GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=$(CGO_ENABLED) go build -o build/$(NAME)
41+
GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=$(CGO_ENABLED) go build -o build/augerctl ./augerctl
4142
@echo build/$(NAME) built!
4243

4344
# Local development test

go.mod

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,36 +15,68 @@ require (
1515
k8s.io/api v0.31.2
1616
k8s.io/apimachinery v0.31.2
1717
k8s.io/client-go v0.31.2
18+
sigs.k8s.io/e2e-framework v0.5.0
19+
sigs.k8s.io/yaml v1.4.0
1820
)
1921

2022
require (
23+
github.com/beorn7/perks v1.0.1 // indirect
24+
github.com/blang/semver/v4 v4.0.0 // indirect
25+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2126
github.com/coreos/go-semver v0.3.1 // indirect
2227
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
28+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
29+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
30+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
2331
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2432
github.com/go-logr/logr v1.4.2 // indirect
33+
github.com/go-openapi/jsonpointer v0.19.6 // indirect
34+
github.com/go-openapi/jsonreference v0.20.2 // indirect
35+
github.com/go-openapi/swag v0.22.4 // indirect
2536
github.com/gogo/protobuf v1.3.2 // indirect
2637
github.com/golang/protobuf v1.5.4 // indirect
38+
github.com/google/gnostic-models v0.6.8 // indirect
39+
github.com/google/go-cmp v0.6.0 // indirect
2740
github.com/google/gofuzz v1.2.0 // indirect
41+
github.com/google/uuid v1.6.0 // indirect
42+
github.com/gorilla/websocket v1.5.0 // indirect
43+
github.com/imdario/mergo v0.3.15 // indirect
2844
github.com/inconshreveable/mousetrap v1.1.0 // indirect
45+
github.com/josharian/intern v1.0.0 // indirect
2946
github.com/json-iterator/go v1.1.12 // indirect
47+
github.com/mailru/easyjson v0.7.7 // indirect
48+
github.com/moby/spdystream v0.4.0 // indirect
3049
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3150
github.com/modern-go/reflect2 v1.0.2 // indirect
51+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
52+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
53+
github.com/pkg/errors v0.9.1 // indirect
54+
github.com/prometheus/client_golang v1.19.1 // indirect
55+
github.com/prometheus/client_model v0.6.1 // indirect
56+
github.com/prometheus/common v0.55.0 // indirect
57+
github.com/prometheus/procfs v0.15.1 // indirect
3258
github.com/spf13/pflag v1.0.5 // indirect
59+
github.com/vladimirvivien/gexe v0.4.0 // indirect
3360
github.com/x448/float16 v0.8.4 // indirect
3461
go.uber.org/multierr v1.11.0 // indirect
3562
go.uber.org/zap v1.27.0 // indirect
3663
golang.org/x/net v0.31.0 // indirect
64+
golang.org/x/oauth2 v0.23.0 // indirect
3765
golang.org/x/sys v0.27.0 // indirect
66+
golang.org/x/term v0.26.0 // indirect
3867
golang.org/x/text v0.20.0 // indirect
68+
golang.org/x/time v0.3.0 // indirect
3969
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
4070
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
4171
google.golang.org/grpc v1.68.0 // indirect
4272
google.golang.org/protobuf v1.35.1 // indirect
4373
gopkg.in/inf.v0 v0.9.1 // indirect
4474
gopkg.in/yaml.v3 v3.0.1 // indirect
75+
k8s.io/component-base v0.31.2 // indirect
4576
k8s.io/klog/v2 v2.130.1 // indirect
77+
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
4678
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
79+
sigs.k8s.io/controller-runtime v0.19.1 // indirect
4780
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
4881
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
49-
sigs.k8s.io/yaml v1.4.0 // indirect
5082
)

0 commit comments

Comments
 (0)