2023-07-06 06:38:13 +00:00
|
|
|
//go:build integration
|
|
|
|
|
|
|
|
package handlers_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/pkg/grpc/management"
|
|
|
|
"github.com/zitadel/zitadel/pkg/grpc/system"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestServer_TelemetryPushMilestones(t *testing.T) {
|
|
|
|
primaryDomain, instanceID, iamOwnerCtx := Tester.UseIsolatedInstance(CTX, SystemCTX)
|
|
|
|
t.Log("testing against instance with primary domain", primaryDomain)
|
2023-09-15 14:58:45 +00:00
|
|
|
awaitMilestone(t, Tester.MilestoneChan, primaryDomain, "InstanceCreated")
|
2023-07-06 06:38:13 +00:00
|
|
|
project, err := Tester.Client.Mgmt.AddProject(iamOwnerCtx, &management.AddProjectRequest{Name: "integration"})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2023-09-15 14:58:45 +00:00
|
|
|
awaitMilestone(t, Tester.MilestoneChan, primaryDomain, "ProjectCreated")
|
2023-07-06 06:38:13 +00:00
|
|
|
if _, err = Tester.Client.Mgmt.AddOIDCApp(iamOwnerCtx, &management.AddOIDCAppRequest{
|
|
|
|
ProjectId: project.GetId(),
|
|
|
|
Name: "integration",
|
|
|
|
}); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2023-09-15 14:58:45 +00:00
|
|
|
awaitMilestone(t, Tester.MilestoneChan, primaryDomain, "ApplicationCreated")
|
2023-07-06 06:38:13 +00:00
|
|
|
// TODO: trigger and await milestone AuthenticationSucceededOnInstance
|
|
|
|
// TODO: trigger and await milestone AuthenticationSucceededOnApplication
|
|
|
|
if _, err = Tester.Client.System.RemoveInstance(SystemCTX, &system.RemoveInstanceRequest{InstanceId: instanceID}); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2023-09-15 14:58:45 +00:00
|
|
|
awaitMilestone(t, Tester.MilestoneChan, primaryDomain, "InstanceDeleted")
|
2023-07-06 06:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func awaitMilestone(t *testing.T, bodies chan []byte, primaryDomain, expectMilestoneType string) {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case body := <-bodies:
|
|
|
|
plain := new(bytes.Buffer)
|
|
|
|
if err := json.Indent(plain, body, "", " "); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
t.Log("received milestone", plain.String())
|
|
|
|
milestone := struct {
|
2023-07-06 17:31:08 +00:00
|
|
|
Type string `json:"type"`
|
|
|
|
PrimaryDomain string `json:"primaryDomain"`
|
2023-07-06 06:38:13 +00:00
|
|
|
}{}
|
|
|
|
if err := json.Unmarshal(body, &milestone); err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
if milestone.Type == expectMilestoneType && milestone.PrimaryDomain == primaryDomain {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case <-time.After(60 * time.Second):
|
|
|
|
t.Fatalf("timed out waiting for milestone %s in domain %s", expectMilestoneType, primaryDomain)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|