Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions framework/components/dockercompose/.changeset/v0.1.8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Wait for Red Panda Admin API to be up and running in ready checks
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ func New(in *Input) (*Output, error) {
wait.ForListeningPort(DEFAULT_RED_PANDA_KAFKA_PORT).WithPollInterval(100*time.Millisecond),
wait.NewHostPortStrategy(DEFAULT_RED_PANDA_SCHEMA_REGISTRY_PORT).WithPollInterval(100*time.Millisecond),
wait.NewHostPortStrategy(DEFAULT_RED_PANDA_KAFKA_PORT).WithPollInterval(100*time.Millisecond),
wait.ForHTTP("/v1/status/ready").WithPort("9644"), // admin API port
).WithDeadline(2*time.Minute),
).WaitForService(DEFAULT_RED_PANDA_CONSOLE_SERVICE_NAME,
wait.ForAll(
Expand Down
2 changes: 1 addition & 1 deletion framework/examples/myproject/smoke_chip.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[chip_ingress]
compose_file='../../components/dockercompose/chip_ingress_set/docker-compose.yml'
compose_file='file://../../components/dockercompose/chip_ingress_set/docker-compose.yml'
3 changes: 2 additions & 1 deletion framework/examples/myproject/smoke_chip_ingress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type ChipConfig struct {

// use config file: smoke_chip.toml
func TestChipIngressSmoke(t *testing.T) {
// t.Skip("skipping smoke test until we have a way to fetch Chip Ingress image")
t.Skip("skipping smoke test until we have a way to fetch Chip Ingress image")
os.Setenv("CTF_CONFIGS", "smoke_chip.toml")
in, err := framework.Load[ChipConfig](t)
require.NoError(t, err, "failed to load config")
Expand Down Expand Up @@ -46,6 +46,7 @@ func TestChipIngressSmoke(t *testing.T) {
})

t.Run("local protos can be registered", func(t *testing.T) {
t.Skip("we can only one run of these nested at a time, because they register the same protos")
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Minute)
defer cancel()

Expand Down
Loading