123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- // Copyright 2018, OpenCensus Authors
- //
- // 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 ocgrpc_test
- import (
- "io"
- "testing"
- "time"
- "context"
- "go.opencensus.io/internal/testpb"
- "go.opencensus.io/trace"
- )
- type testExporter struct {
- ch chan *trace.SpanData
- }
- func (t *testExporter) ExportSpan(s *trace.SpanData) {
- go func() { t.ch <- s }()
- }
- func TestStreaming(t *testing.T) {
- trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})
- te := testExporter{make(chan *trace.SpanData)}
- trace.RegisterExporter(&te)
- defer trace.UnregisterExporter(&te)
- client, cleanup := testpb.NewTestClient(t)
- stream, err := client.Multiple(context.Background())
- if err != nil {
- t.Fatalf("Call failed: %v", err)
- }
- err = stream.Send(&testpb.FooRequest{})
- if err != nil {
- t.Fatalf("Couldn't send streaming request: %v", err)
- }
- stream.CloseSend()
- for {
- _, err := stream.Recv()
- if err == io.EOF {
- break
- }
- if err != nil {
- t.Errorf("stream.Recv() = %v; want no errors", err)
- }
- }
- cleanup()
- s1 := <-te.ch
- s2 := <-te.ch
- checkSpanData(t, s1, s2, "testpb.Foo.Multiple", true)
- select {
- case <-te.ch:
- t.Fatal("received extra exported spans")
- case <-time.After(time.Second / 10):
- }
- }
- func TestStreamingFail(t *testing.T) {
- trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})
- te := testExporter{make(chan *trace.SpanData)}
- trace.RegisterExporter(&te)
- defer trace.UnregisterExporter(&te)
- client, cleanup := testpb.NewTestClient(t)
- stream, err := client.Multiple(context.Background())
- if err != nil {
- t.Fatalf("Call failed: %v", err)
- }
- err = stream.Send(&testpb.FooRequest{Fail: true})
- if err != nil {
- t.Fatalf("Couldn't send streaming request: %v", err)
- }
- stream.CloseSend()
- for {
- _, err := stream.Recv()
- if err == nil || err == io.EOF {
- t.Errorf("stream.Recv() = %v; want errors", err)
- } else {
- break
- }
- }
- s1 := <-te.ch
- s2 := <-te.ch
- checkSpanData(t, s1, s2, "testpb.Foo.Multiple", false)
- cleanup()
- select {
- case <-te.ch:
- t.Fatal("received extra exported spans")
- case <-time.After(time.Second / 10):
- }
- }
- func TestSingle(t *testing.T) {
- trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})
- te := testExporter{make(chan *trace.SpanData)}
- trace.RegisterExporter(&te)
- defer trace.UnregisterExporter(&te)
- client, cleanup := testpb.NewTestClient(t)
- _, err := client.Single(context.Background(), &testpb.FooRequest{})
- if err != nil {
- t.Fatalf("Couldn't send request: %v", err)
- }
- s1 := <-te.ch
- s2 := <-te.ch
- checkSpanData(t, s1, s2, "testpb.Foo.Single", true)
- cleanup()
- select {
- case <-te.ch:
- t.Fatal("received extra exported spans")
- case <-time.After(time.Second / 10):
- }
- }
- func TestServerSpanDuration(t *testing.T) {
- client, cleanup := testpb.NewTestClient(t)
- defer cleanup()
- te := testExporter{make(chan *trace.SpanData, 100)}
- trace.RegisterExporter(&te)
- defer trace.UnregisterExporter(&te)
- trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})
- ctx := context.Background()
- const sleep = 100 * time.Millisecond
- client.Single(ctx, &testpb.FooRequest{SleepNanos: int64(sleep)})
- loop:
- for {
- select {
- case span := <-te.ch:
- if span.SpanKind != trace.SpanKindServer {
- continue loop
- }
- if got, want := span.EndTime.Sub(span.StartTime), sleep; got < want {
- t.Errorf("span duration = %dns; want at least %dns", got, want)
- }
- break loop
- default:
- t.Fatal("no more spans")
- }
- }
- }
- func TestSingleFail(t *testing.T) {
- trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})
- te := testExporter{make(chan *trace.SpanData)}
- trace.RegisterExporter(&te)
- defer trace.UnregisterExporter(&te)
- client, cleanup := testpb.NewTestClient(t)
- _, err := client.Single(context.Background(), &testpb.FooRequest{Fail: true})
- if err == nil {
- t.Fatalf("Got nil error from request, want non-nil")
- }
- s1 := <-te.ch
- s2 := <-te.ch
- checkSpanData(t, s1, s2, "testpb.Foo.Single", false)
- cleanup()
- select {
- case <-te.ch:
- t.Fatal("received extra exported spans")
- case <-time.After(time.Second / 10):
- }
- }
- func checkSpanData(t *testing.T, s1, s2 *trace.SpanData, methodName string, success bool) {
- t.Helper()
- if s1.SpanKind == trace.SpanKindServer {
- s1, s2 = s2, s1
- }
- if got, want := s1.Name, methodName; got != want {
- t.Errorf("Got name %q want %q", got, want)
- }
- if got, want := s2.Name, methodName; got != want {
- t.Errorf("Got name %q want %q", got, want)
- }
- if got, want := s2.SpanContext.TraceID, s1.SpanContext.TraceID; got != want {
- t.Errorf("Got trace IDs %s and %s, want them equal", got, want)
- }
- if got, want := s2.ParentSpanID, s1.SpanContext.SpanID; got != want {
- t.Errorf("Got ParentSpanID %s, want %s", got, want)
- }
- if got := (s1.Status.Code == 0); got != success {
- t.Errorf("Got success=%t want %t", got, success)
- }
- if got := (s2.Status.Code == 0); got != success {
- t.Errorf("Got success=%t want %t", got, success)
- }
- if s1.HasRemoteParent {
- t.Errorf("Got HasRemoteParent=%t, want false", s1.HasRemoteParent)
- }
- if !s2.HasRemoteParent {
- t.Errorf("Got HasRemoteParent=%t, want true", s2.HasRemoteParent)
- }
- }
|