// Copyright The OpenTelemetry 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 otlp import ( "context" "errors" "sync" "testing" "time" ) func TestExporterShutdownHonorsTimeout(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute) defer cancel() e := NewUnstartedExporter() orig := e.cc.closeBackgroundConnectionDoneCh e.cc.closeBackgroundConnectionDoneCh = func(ch chan struct{}) { go func() { <-ctx.Done() orig(ch) }() } if err := e.Start(ctx); err != nil { t.Fatalf("failed to start exporter: %v", err) } innerCtx, innerCancel := context.WithTimeout(ctx, time.Microsecond) if err := e.Shutdown(innerCtx); err == nil { t.Error("expected context DeadlineExceeded error, got nil") } else if !errors.Is(err, context.DeadlineExceeded) { t.Errorf("expected context DeadlineExceeded error, got %v", err) } innerCancel() } func TestExporterShutdownHonorsCancel(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute) defer cancel() e := NewUnstartedExporter() orig := e.cc.closeBackgroundConnectionDoneCh e.cc.closeBackgroundConnectionDoneCh = func(ch chan struct{}) { go func() { <-ctx.Done() orig(ch) }() } if err := e.Start(ctx); err != nil { t.Fatalf("failed to start exporter: %v", err) } var innerCancel context.CancelFunc ctx, innerCancel = context.WithCancel(ctx) innerCancel() if err := e.Shutdown(ctx); err == nil { t.Error("expected context canceled error, got nil") } else if !errors.Is(err, context.Canceled) { t.Errorf("expected context canceled error, got %v", err) } } func TestExporterShutdownNoError(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute) defer cancel() e := NewUnstartedExporter() if err := e.Start(ctx); err != nil { t.Fatalf("failed to start exporter: %v", err) } if err := e.Shutdown(ctx); err != nil { t.Errorf("shutdown errored: expected nil, got %v", err) } } func TestExporterShutdownManyTimes(t *testing.T) { ctx := context.Background() e, err := NewExporter(ctx) if err != nil { t.Fatalf("failed to start an exporter: %v", err) } ch := make(chan struct{}) wg := sync.WaitGroup{} const num int = 20 wg.Add(num) errs := make([]error, num) for i := 0; i < num; i++ { go func(idx int) { defer wg.Done() <-ch errs[idx] = e.Shutdown(ctx) }(i) } close(ch) wg.Wait() for _, err := range errs { if err != nil { t.Fatalf("failed to shutdown exporter: %v", err) } } }