Skip to content
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

Run some tests against the high level connection status interface #316

Merged
merged 31 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
92069b1
Wow
dehort Dec 14, 2023
fb4ec32
Testing
dehort Dec 14, 2023
a9e867c
Testing
dehort Dec 14, 2023
792a8d6
Testing
dehort Dec 14, 2023
52638dd
Testing - don't require a PSK for the high level connection status
dehort Dec 15, 2023
cb9e17d
adding more debug logging
dehort Dec 15, 2023
cb3eb1a
adding more debug logging
dehort Dec 15, 2023
8baf2f3
Try to require the identity header and store it in the request context
dehort Dec 15, 2023
6c19792
More debugging
dehort Dec 15, 2023
e315806
Testing
dehort Dec 15, 2023
dbc54dd
TEsting
dehort Dec 15, 2023
e3754fb
More
dehort Dec 15, 2023
04d54d4
More
dehort Dec 15, 2023
43ef217
More
dehort Dec 15, 2023
40d645d
Closer
dehort Jan 11, 2024
0b781dd
ah, ha...how and by are swapped here
dehort Jan 11, 2024
a5d5611
Trying to figure out if system profile call is working
dehort Jan 11, 2024
c9af27f
My simple caveman brain can't keep the orderBy vs orderHow straight.
dehort Jan 11, 2024
1ad8503
Print the response out in human readable form...because i'm a human a…
dehort Jan 11, 2024
163f99a
rebased
dehort Jan 12, 2024
95a2518
Cleanup
dehort Jan 16, 2024
6be32aa
Trying to fix the tests
dehort Jan 17, 2024
9a214f2
Fingers crossed
dehort Jan 17, 2024
cad9b6a
Try this
dehort Jan 17, 2024
29226bd
This seems to work. Create a local instance of a client that passes …
dehort Jan 17, 2024
fcefdb5
go fmt
dehort Jan 17, 2024
6f187ee
Cleaning up a bit
dehort Jan 17, 2024
2bf14b0
Cleaning up a bit
dehort Jan 17, 2024
5669cdd
Cleaning up a bit
dehort Jan 17, 2024
e9ecd1a
Cleaning up a bit
dehort Jan 17, 2024
0100940
Cleaning up a bit
dehort Jan 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ require (
github.com/qri-io/jsonschema v0.2.0
github.com/redhatinsights/app-common-go v1.6.2
github.com/redhatinsights/platform-go-middlewares v0.17.0
github.com/spf13/cobra v1.0.0
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.7.1
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
go.uber.org/zap v1.10.0
Expand All @@ -31,17 +31,20 @@ require (
)

require (
github.com/atombender/go-jsonschema v0.14.2-0.20240112180320-6fcc83b8eebe // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/swag v0.19.5 // indirect
github.com/goccy/go-yaml v1.11.2 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.8.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
Expand All @@ -53,20 +56,23 @@ require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kulshekhar/fungen v0.0.0-20180224173454-7ed9e430524b // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/lib/pq v1.10.0 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mailru/easyjson v0.7.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/qri-io/jsonpointer v0.1.1 // indirect
github.com/sanity-io/litter v1.5.5 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
Expand All @@ -77,10 +83,13 @@ require (
github.com/valyala/fasttemplate v1.2.2 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.17.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/ini.v1 v1.51.0 // indirect
Expand Down
Loading
Loading