blob: a8095dff5ba80ed9727f1866d595bafaa1031ef5 [file] [log] [blame]
//go:build integ
// +build integ
// Copyright Istio Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package opencensusagent
import (
"errors"
"fmt"
"testing"
"time"
)
import (
"github.com/apache/dubbo-go-pixiu/pkg/test/framework"
"github.com/apache/dubbo-go-pixiu/pkg/test/framework/components/istio"
"github.com/apache/dubbo-go-pixiu/pkg/test/framework/components/opentelemetry"
"github.com/apache/dubbo-go-pixiu/pkg/test/framework/label"
"github.com/apache/dubbo-go-pixiu/pkg/test/framework/resource"
"github.com/apache/dubbo-go-pixiu/pkg/test/util/retry"
"github.com/apache/dubbo-go-pixiu/tests/integration/telemetry/tracing"
)
// TestProxyTracing exercises the trace generation features of Istio, based on
// the Envoy Trace driver for OpenCensusAgent. This test creates an
// OpenTelemetry collector and a zipkin instance. Spans are forwarded from the
// envoy proxy through the opentelemetry collector to zipkin. The test verifies
// that the resulting traces are correctly reconstructed.
func TestProxyTracing(t *testing.T) {
framework.NewTest(t).
Features("observability.telemetry.tracing.server").
Run(func(t framework.TestContext) {
appNsInst := tracing.GetAppNamespace()
// TODO fix tracing tests in multi-network https://github.com/istio/istio/issues/28890
for _, cluster := range t.Clusters().ByNetwork()[t.Clusters().Default().NetworkName()] {
cluster := cluster
t.NewSubTest(cluster.StableName()).Run(func(ctx framework.TestContext) {
retry.UntilSuccessOrFail(t, func() error {
err := tracing.SendTraffic(ctx, nil, cluster)
if err != nil {
return fmt.Errorf("cannot send traffic from cluster %s: %v", cluster.Name(), err)
}
traces, err := tracing.GetZipkinInstance().QueryTraces(300,
fmt.Sprintf("server.%s.svc.cluster.local:80/*", appNsInst.Name()), "")
if err != nil {
return fmt.Errorf("cannot get traces from zipkin: %v", err)
}
if !tracing.VerifyEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
return errors.New("cannot find expected traces")
}
return nil
}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
})
}
})
}
func TestMain(m *testing.M) {
framework.NewSuite(m).
Label(label.CustomSetup).
Setup(istio.Setup(tracing.GetIstioInstance(), setupConfig)).
Setup(tracing.TestSetup).
Setup(testSetup).
Run()
}
func setupConfig(_ resource.Context, cfg *istio.Config) {
if cfg == nil {
return
}
cfg.ControlPlaneValues = `
meshConfig:
enableTracing: true
defaultConfig:
tracing:
openCensusAgent:
address: "dns:opentelemetry-collector.dubbo-system.svc:55678"
context: [B3]
`
cfg.Values["pilot.traceSampling"] = "100.0"
cfg.Values["global.proxy.tracer"] = "openCensusAgent"
}
func testSetup(ctx resource.Context) (err error) {
addr, _ := tracing.GetIngressInstance().HTTPAddress()
_, err = opentelemetry.New(ctx, opentelemetry.Config{IngressAddr: addr})
return
}