From 3163ee0b0ed0b2a5fbb121c5c920751646c6a266 Mon Sep 17 00:00:00 2001 From: Tigran Najaryan Date: Thu, 25 Feb 2021 17:08:32 -0500 Subject: [PATCH] Verify OTLP receiver Shutdown() OTLP receiver had a bug when it would generate traces after Shutdown() was returned. It was visible in the test, with the following symptoms (it was a racy bug): === RUN TestShutdown otlp_test.go:871: Error Trace: otlp_test.go:871 Error: Not equal: expected: 4 actual : 5 Test: TestShutdown otlp_test.go:871: Error Trace: otlp_test.go:871 Error: Not equal: expected: 6 actual : 7 Test: TestShutdown --- FAIL: TestShutdown (0.49s) --- receiver/otlpreceiver/otlp_test.go | 177 +- test.log | 6757 ++++++++++++++++++++++++++++ 2 files changed, 6905 insertions(+), 29 deletions(-) create mode 100644 test.log diff --git a/receiver/otlpreceiver/otlp_test.go b/receiver/otlpreceiver/otlp_test.go index 27f2bc405c2..3d4e3070261 100644 --- a/receiver/otlpreceiver/otlp_test.go +++ b/receiver/otlpreceiver/otlp_test.go @@ -370,15 +370,13 @@ func TestProtoHttp(t *testing.T) { } } } -func testHTTPProtobufRequest( + +func createHTTPProtobufRequest( t *testing.T, url string, - tSink *consumertest.TracesSink, encoding string, traceBytes []byte, - expectedErr error, - wantOtlp []*otlptrace.ResourceSpans, -) { +) *http.Request { var buf *bytes.Buffer var err error switch encoding { @@ -388,11 +386,25 @@ func testHTTPProtobufRequest( default: buf = bytes.NewBuffer(traceBytes) } - tSink.SetConsumeError(expectedErr) req, err := http.NewRequest("POST", url, buf) require.NoError(t, err, "Error creating trace POST request: %v", err) req.Header.Set("Content-Type", "application/x-protobuf") req.Header.Set("Content-Encoding", encoding) + return req +} + +func testHTTPProtobufRequest( + t *testing.T, + url string, + tSink *consumertest.TracesSink, + encoding string, + traceBytes []byte, + expectedErr error, + wantOtlp []*otlptrace.ResourceSpans, +) { + tSink.SetConsumeError(expectedErr) + + req := createHTTPProtobufRequest(t, url, encoding, traceBytes) client := &http.Client{} resp, err := client.Do(req) @@ -402,14 +414,14 @@ func testHTTPProtobufRequest( require.NoError(t, err, "Error reading response from trace grpc-gateway") require.NoError(t, resp.Body.Close(), "Error closing response body") - allTraces := tSink.AllTraces() - require.Equal(t, "application/x-protobuf", resp.Header.Get("Content-Type"), "Unexpected response Content-Type") + allTraces := tSink.AllTraces() + if expectedErr == nil { require.Equal(t, 200, resp.StatusCode, "Unexpected return status") tmp := &collectortrace.ExportTraceServiceResponse{} - err = tmp.Unmarshal(respBytes) + err := tmp.Unmarshal(respBytes) require.NoError(t, err, "Unable to unmarshal response to ExportTraceServiceResponse proto") require.Len(t, allTraces, 1) @@ -556,6 +568,29 @@ func TestHTTPStartWithoutConsumers(t *testing.T) { require.Error(t, r.Start(context.Background(), componenttest.NewNopHost())) } +func createSingleSpanTrace() *collectortrace.ExportTraceServiceRequest { + return &collectortrace.ExportTraceServiceRequest{ + ResourceSpans: []*otlptrace.ResourceSpans{ + { + InstrumentationLibrarySpans: []*otlptrace.InstrumentationLibrarySpans{ + { + Spans: []*otlptrace.Span{ + { + TraceId: data.NewTraceID( + [16]byte{ + 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, + 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, + }, + ), + }, + }, + }, + }, + }, + }, + } +} + // TestOTLPReceiverTrace_HandleNextConsumerResponse checks if the trace receiver // is returning the proper response (return and metrics) when the next consumer // in the pipeline reports error. The test changes the responses returned by the @@ -595,26 +630,7 @@ func TestOTLPReceiverTrace_HandleNextConsumerResponse(t *testing.T) { } addr := testutil.GetAvailableLocalAddress(t) - req := &collectortrace.ExportTraceServiceRequest{ - ResourceSpans: []*otlptrace.ResourceSpans{ - { - InstrumentationLibrarySpans: []*otlptrace.InstrumentationLibrarySpans{ - { - Spans: []*otlptrace.Span{ - { - TraceId: data.NewTraceID( - [16]byte{ - 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, - 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, - }, - ), - }, - }, - }, - }, - }, - }, - } + req := createSingleSpanTrace() exportBidiFn := func( t *testing.T, @@ -775,3 +791,106 @@ func compressGzip(body []byte) (*bytes.Buffer, error) { return &buf, nil } + +type senderFunc func(msg *collectortrace.ExportTraceServiceRequest) + +func TestShutdown(t *testing.T) { + for i := 0; i < 100; i++ { + endpointGrpc := testutil.GetAvailableLocalAddress(t) + endpointHTTP := testutil.GetAvailableLocalAddress(t) + + nextSink := new(consumertest.TracesSink) + + // Create OTLP receiver with gRPC and HTTP protocols. + factory := NewFactory() + cfg := factory.CreateDefaultConfig().(*Config) + cfg.SetName(otlpReceiverName) + cfg.GRPC.NetAddr.Endpoint = endpointGrpc + cfg.HTTP.Endpoint = endpointHTTP + ocr := newReceiver(t, factory, cfg, nextSink, nil) + require.NotNil(t, ocr) + require.NoError(t, ocr.Start(context.Background(), componenttest.NewNopHost())) + + conn, err := grpc.Dial(endpointGrpc, grpc.WithInsecure(), grpc.WithBlock()) + require.NoError(t, err) + defer conn.Close() + + doneSignalGrpc := make(chan bool) + doneSignalHTTP := make(chan bool) + + senderGrpc := func(msg *collectortrace.ExportTraceServiceRequest) { + // Send request via OTLP/gRPC. + client := collectortrace.NewTraceServiceClient(conn) + client.Export(context.Background(), msg) + } + senderHTTP := func(msg *collectortrace.ExportTraceServiceRequest) { + // Send request via OTLP/HTTP. + traceBytes, err2 := msg.Marshal() + if err2 != nil { + t.Errorf("Error marshaling protobuf: %v", err2) + } + url := fmt.Sprintf("http://%s/v1/traces", endpointHTTP) + req := createHTTPProtobufRequest(t, url, "", traceBytes) + client := &http.Client{} + resp, err2 := client.Do(req) + if err2 == nil { + ioutil.ReadAll(resp.Body) + } + } + + // Send traces to the receiver until we signal via done channel, and then continue + // sending some more traces after that. + go generateTraces(senderGrpc, doneSignalGrpc) + go generateTraces(senderHTTP, doneSignalHTTP) + + // Wait until the receiver outputs anything to the sink. + assert.Eventually(t, func() bool { + return nextSink.SpansCount() > 0 + }, time.Second, 1*time.Millisecond) + + // Now shutdown the receiver, while continuing sending traces to it. + err = ocr.Shutdown(context.Background()) + assert.NoError(t, err) + + // Remember how many spans the sink received. This number should not change after this + // point because after Shutdown() returns the component is not allowed to produce + // any more data. + sinkSpanCountAfterShutdown := nextSink.SpansCount() + + // Now signal to generateTraces to exit the main generation loop, then send + // a number of follow up traces and stop. + doneSignalGrpc <- true + doneSignalHTTP <- true + + // Wait until all follow up traces are sent. + <-doneSignalGrpc + <-doneSignalHTTP + + // The follow up traces should not be received by sink, so the number of spans in + // the sink should not change. + assert.EqualValues(t, sinkSpanCountAfterShutdown, nextSink.SpansCount()) + } +} + +func generateTraces(senderFn senderFunc, doneSignal chan bool) { + // Continuously generate spans until signaled to stop. +loop: + for { + select { + case <-doneSignal: + break loop + default: + } + senderFn(createSingleSpanTrace()) + } + + // After getting the signal to stop generate another 10 spans and then + // finally stop. + const afterDoneSpanCount = 10 + for i := 0; i < afterDoneSpanCount; i++ { + senderFn(createSingleSpanTrace()) + } + + // Indicate that we are done. + close(doneSignal) +} diff --git a/test.log b/test.log new file mode 100644 index 00000000000..4e74fcff534 --- /dev/null +++ b/test.log @@ -0,0 +1,6757 @@ +=== RUN TestClientContext +--- PASS: TestClientContext (0.00s) +=== RUN TestParsingGRPC +--- PASS: TestParsingGRPC (0.00s) +=== RUN TestParsingHTTP +--- PASS: TestParsingHTTP (0.00s) +PASS +ok go.opentelemetry.io/collector/client (cached) +? go.opentelemetry.io/collector/cmd/otelcol [no test files] +? go.opentelemetry.io/collector/cmd/pdatagen [no test files] +? go.opentelemetry.io/collector/cmd/pdatagen/internal [no test files] +=== RUN TestBuildExporters +--- PASS: TestBuildExporters (0.00s) +=== RUN TestFactoriesBuilder +--- PASS: TestFactoriesBuilder (0.00s) +=== RUN TestBuildReceivers +--- PASS: TestBuildReceivers (0.00s) +PASS +ok go.opentelemetry.io/collector/component (cached) +? go.opentelemetry.io/collector/component/componenterror [no test files] +=== RUN TestDefaultSettings +--- PASS: TestDefaultSettings (0.00s) +=== RUN TestWithStart +--- PASS: TestWithStart (0.00s) +=== RUN TestWithStart_ReturnError +--- PASS: TestWithStart_ReturnError (0.00s) +=== RUN TestWithShutdown +--- PASS: TestWithShutdown (0.00s) +=== RUN TestWithShutdown_ReturnError +--- PASS: TestWithShutdown_ReturnError (0.00s) +PASS +ok go.opentelemetry.io/collector/component/componenthelper (cached) +=== RUN TestIsComponentImport +=== RUN TestIsComponentImport/Match +=== RUN TestIsComponentImport/No_match +--- PASS: TestIsComponentImport (0.00s) + --- PASS: TestIsComponentImport/Match (0.00s) + --- PASS: TestIsComponentImport/No_match (0.00s) +=== RUN TestGetImportPrefixesToCheck +=== RUN TestGetImportPrefixesToCheck/Get_import_prefixes_-_1 +=== RUN TestGetImportPrefixesToCheck/Get_import_prefixes_-_2 +--- PASS: TestGetImportPrefixesToCheck (0.00s) + --- PASS: TestGetImportPrefixesToCheck/Get_import_prefixes_-_1 (0.00s) + --- PASS: TestGetImportPrefixesToCheck/Get_import_prefixes_-_2 (0.00s) +=== RUN TestCheckDocs +=== RUN TestCheckDocs/Invalid_project_path +=== RUN TestCheckDocs/Valid_files +=== RUN TestCheckDocs/Invalid_files +=== RUN TestCheckDocs/Invalid_imports +=== RUN TestCheckDocs/README_does_not_exist +--- PASS: TestCheckDocs (0.01s) + --- PASS: TestCheckDocs/Invalid_project_path (0.00s) + --- PASS: TestCheckDocs/Valid_files (0.00s) + --- PASS: TestCheckDocs/Invalid_files (0.00s) + --- PASS: TestCheckDocs/Invalid_imports (0.00s) + --- PASS: TestCheckDocs/README_does_not_exist (0.00s) +=== RUN TestNewErrorWaitingHost +--- PASS: TestNewErrorWaitingHost (0.10s) +=== RUN TestNewErrorWaitingHost_Noop +--- PASS: TestNewErrorWaitingHost_Noop (0.00s) +=== RUN TestExampleExporterConsumer +--- PASS: TestExampleExporterConsumer (0.00s) +=== RUN TestExampleReceiverProducer +--- PASS: TestExampleReceiverProducer (0.00s) +=== RUN TestNewNopHost +--- PASS: TestNewNopHost (0.00s) +PASS +ok go.opentelemetry.io/collector/component/componenttest (cached) +=== RUN TestDecodeConfig +--- PASS: TestDecodeConfig (0.01s) +=== RUN TestSimpleConfig +=== RUN TestSimpleConfig/simple-config-with-no-env +=== RUN TestSimpleConfig/simple-config-with-partial-env +=== RUN TestSimpleConfig/simple-config-with-all-env +--- PASS: TestSimpleConfig (0.03s) + --- PASS: TestSimpleConfig/simple-config-with-no-env (0.01s) + --- PASS: TestSimpleConfig/simple-config-with-partial-env (0.01s) + --- PASS: TestSimpleConfig/simple-config-with-all-env (0.01s) +=== RUN TestEscapedEnvVars +--- PASS: TestEscapedEnvVars (0.01s) +=== RUN TestDecodeConfig_MultiProto +--- PASS: TestDecodeConfig_MultiProto (0.01s) +=== RUN TestDecodeConfig_Invalid +=== RUN TestDecodeConfig_Invalid/empty-config +=== RUN TestDecodeConfig_Invalid/missing-all-sections +=== RUN TestDecodeConfig_Invalid/missing-exporters +=== RUN TestDecodeConfig_Invalid/missing-receivers +=== RUN TestDecodeConfig_Invalid/missing-processors +=== RUN TestDecodeConfig_Invalid/invalid-extension-name +=== RUN TestDecodeConfig_Invalid/invalid-receiver-name +=== RUN TestDecodeConfig_Invalid/invalid-receiver-reference +=== RUN TestDecodeConfig_Invalid/missing-extension-type +=== RUN TestDecodeConfig_Invalid/missing-receiver-type +=== RUN TestDecodeConfig_Invalid/missing-exporter-name-after-slash +=== RUN TestDecodeConfig_Invalid/missing-processor-type +=== RUN TestDecodeConfig_Invalid/missing-pipelines +=== RUN TestDecodeConfig_Invalid/pipeline-must-have-exporter +=== RUN TestDecodeConfig_Invalid/pipeline-must-have-exporter2 +=== RUN TestDecodeConfig_Invalid/pipeline-must-have-receiver +=== RUN TestDecodeConfig_Invalid/pipeline-must-have-receiver2 +=== RUN TestDecodeConfig_Invalid/pipeline-exporter-not-exists +=== RUN TestDecodeConfig_Invalid/pipeline-processor-not-exists +=== RUN TestDecodeConfig_Invalid/unknown-extension-type +=== RUN TestDecodeConfig_Invalid/unknown-receiver-type +=== RUN TestDecodeConfig_Invalid/unknown-exporter-type +=== RUN TestDecodeConfig_Invalid/unknown-processor-type +=== RUN TestDecodeConfig_Invalid/invalid-service-extensions-value +=== RUN TestDecodeConfig_Invalid/invalid-sequence-value +=== RUN TestDecodeConfig_Invalid/invalid-pipeline-type +=== RUN TestDecodeConfig_Invalid/invalid-pipeline-type-and-name +=== RUN TestDecodeConfig_Invalid/duplicate-extension +=== RUN TestDecodeConfig_Invalid/duplicate-receiver +=== RUN TestDecodeConfig_Invalid/duplicate-exporter +=== RUN TestDecodeConfig_Invalid/duplicate-processor +=== RUN TestDecodeConfig_Invalid/duplicate-pipeline +=== RUN TestDecodeConfig_Invalid/invalid-top-level-section +=== RUN TestDecodeConfig_Invalid/invalid-extension-section +=== RUN TestDecodeConfig_Invalid/invalid-service-section +=== RUN TestDecodeConfig_Invalid/invalid-receiver-section +=== RUN TestDecodeConfig_Invalid/invalid-processor-section +=== RUN TestDecodeConfig_Invalid/invalid-exporter-section +=== RUN TestDecodeConfig_Invalid/invalid-pipeline-section +=== RUN TestDecodeConfig_Invalid/invalid-extension-sub-config +=== RUN TestDecodeConfig_Invalid/invalid-exporter-sub-config +=== RUN TestDecodeConfig_Invalid/invalid-processor-sub-config +=== RUN TestDecodeConfig_Invalid/invalid-receiver-sub-config +=== RUN TestDecodeConfig_Invalid/invalid-pipeline-sub-config +--- PASS: TestDecodeConfig_Invalid (0.14s) + --- PASS: TestDecodeConfig_Invalid/empty-config (0.00s) + --- PASS: TestDecodeConfig_Invalid/missing-all-sections (0.00s) + --- PASS: TestDecodeConfig_Invalid/missing-exporters (0.00s) + --- PASS: TestDecodeConfig_Invalid/missing-receivers (0.00s) + --- PASS: TestDecodeConfig_Invalid/missing-processors (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-extension-name (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-receiver-name (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-receiver-reference (0.00s) + --- PASS: TestDecodeConfig_Invalid/missing-extension-type (0.00s) + --- PASS: TestDecodeConfig_Invalid/missing-receiver-type (0.00s) + --- PASS: TestDecodeConfig_Invalid/missing-exporter-name-after-slash (0.01s) + --- PASS: TestDecodeConfig_Invalid/missing-processor-type (0.00s) + --- PASS: TestDecodeConfig_Invalid/missing-pipelines (0.00s) + --- PASS: TestDecodeConfig_Invalid/pipeline-must-have-exporter (0.00s) + --- PASS: TestDecodeConfig_Invalid/pipeline-must-have-exporter2 (0.00s) + --- PASS: TestDecodeConfig_Invalid/pipeline-must-have-receiver (0.00s) + --- PASS: TestDecodeConfig_Invalid/pipeline-must-have-receiver2 (0.00s) + --- PASS: TestDecodeConfig_Invalid/pipeline-exporter-not-exists (0.00s) + --- PASS: TestDecodeConfig_Invalid/pipeline-processor-not-exists (0.00s) + --- PASS: TestDecodeConfig_Invalid/unknown-extension-type (0.00s) + --- PASS: TestDecodeConfig_Invalid/unknown-receiver-type (0.00s) + --- PASS: TestDecodeConfig_Invalid/unknown-exporter-type (0.00s) + --- PASS: TestDecodeConfig_Invalid/unknown-processor-type (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-service-extensions-value (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-sequence-value (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-pipeline-type (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-pipeline-type-and-name (0.00s) + --- PASS: TestDecodeConfig_Invalid/duplicate-extension (0.00s) + --- PASS: TestDecodeConfig_Invalid/duplicate-receiver (0.00s) + --- PASS: TestDecodeConfig_Invalid/duplicate-exporter (0.00s) + --- PASS: TestDecodeConfig_Invalid/duplicate-processor (0.00s) + --- PASS: TestDecodeConfig_Invalid/duplicate-pipeline (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-top-level-section (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-extension-section (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-service-section (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-receiver-section (0.01s) + --- PASS: TestDecodeConfig_Invalid/invalid-processor-section (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-exporter-section (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-pipeline-section (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-extension-sub-config (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-exporter-sub-config (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-processor-sub-config (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-receiver-sub-config (0.00s) + --- PASS: TestDecodeConfig_Invalid/invalid-pipeline-sub-config (0.00s) +=== RUN TestLoadEmptyConfig +--- PASS: TestLoadEmptyConfig (0.00s) +=== RUN TestExpandEnvLoadedConfig +--- PASS: TestExpandEnvLoadedConfig (0.00s) +=== RUN TestExpandEnvLoadedConfigEscapedEnv +--- PASS: TestExpandEnvLoadedConfigEscapedEnv (0.00s) +=== RUN TestExpandEnvLoadedConfigMissingEnv +--- PASS: TestExpandEnvLoadedConfigMissingEnv (0.00s) +=== RUN TestExpandEnvLoadedConfigNil +--- PASS: TestExpandEnvLoadedConfigNil (0.00s) +=== RUN TestExpandEnvLoadedConfigNoPointer +--- PASS: TestExpandEnvLoadedConfigNoPointer (0.00s) +=== RUN TestExpandEnvLoadedConfigUnexportedField +--- PASS: TestExpandEnvLoadedConfigUnexportedField (0.00s) +PASS +ok go.opentelemetry.io/collector/config (cached) +=== RUN TestNewAuthenticator +--- PASS: TestNewAuthenticator (0.00s) +=== RUN TestMissingOIDC +--- PASS: TestMissingOIDC (0.00s) +=== RUN TestDefaultUnaryInterceptorAuthSucceeded +--- PASS: TestDefaultUnaryInterceptorAuthSucceeded (0.00s) +=== RUN TestDefaultUnaryInterceptorAuthFailure +--- PASS: TestDefaultUnaryInterceptorAuthFailure (0.00s) +=== RUN TestDefaultUnaryInterceptorMissingMetadata +--- PASS: TestDefaultUnaryInterceptorMissingMetadata (0.00s) +=== RUN TestDefaultStreamInterceptorAuthSucceeded +--- PASS: TestDefaultStreamInterceptorAuthSucceeded (0.00s) +=== RUN TestDefaultStreamInterceptorAuthFailure +--- PASS: TestDefaultStreamInterceptorAuthFailure (0.00s) +=== RUN TestDefaultStreamInterceptorMissingMetadata +--- PASS: TestDefaultStreamInterceptorMissingMetadata (0.00s) +=== RUN TestToServerOptions +--- PASS: TestToServerOptions (1.11s) +=== RUN TestInvalidConfigurationFailsOnToServerOptions +--- PASS: TestInvalidConfigurationFailsOnToServerOptions (0.71s) +=== RUN TestSubjectFromContext +--- PASS: TestSubjectFromContext (0.00s) +=== RUN TestSubjectFromContextNotPresent +--- PASS: TestSubjectFromContextNotPresent (0.00s) +=== RUN TestSubjectFromContextWrongType +--- PASS: TestSubjectFromContextWrongType (0.00s) +=== RUN TestGroupsFromContext +--- PASS: TestGroupsFromContext (0.00s) +=== RUN TestGroupsFromContextNotPresent +--- PASS: TestGroupsFromContextNotPresent (0.00s) +=== RUN TestGroupsFromContextWrongType +--- PASS: TestGroupsFromContextWrongType (0.00s) +=== RUN TestOIDCAuthenticationSucceeded +--- PASS: TestOIDCAuthenticationSucceeded (0.63s) +=== RUN TestOIDCProviderForConfigWithTLS +--- PASS: TestOIDCProviderForConfigWithTLS (1.88s) +=== RUN TestOIDCLoadIssuerCAFromPath +--- PASS: TestOIDCLoadIssuerCAFromPath (0.90s) +=== RUN TestOIDCFailedToLoadIssuerCAFromPathEmptyCert +--- PASS: TestOIDCFailedToLoadIssuerCAFromPathEmptyCert (0.00s) +=== RUN TestOIDCFailedToLoadIssuerCAFromPathMissingFile +--- PASS: TestOIDCFailedToLoadIssuerCAFromPathMissingFile (0.00s) +=== RUN TestOIDCFailedToLoadIssuerCAFromPathInvalidContent +--- PASS: TestOIDCFailedToLoadIssuerCAFromPathInvalidContent (0.00s) +=== RUN TestOIDCInvalidAuthHeader +--- PASS: TestOIDCInvalidAuthHeader (0.00s) +=== RUN TestOIDCNotAuthenticated +--- PASS: TestOIDCNotAuthenticated (0.00s) +=== RUN TestProviderNotReacheable +--- PASS: TestProviderNotReacheable (0.26s) +=== RUN TestFailedToVerifyToken +--- PASS: TestFailedToVerifyToken (1.34s) +=== RUN TestFailedToGetGroupsClaimFromToken +=== RUN TestFailedToGetGroupsClaimFromToken/groupsClaimNonExisting +=== RUN TestFailedToGetGroupsClaimFromToken/usernameClaimNonExisting +=== RUN TestFailedToGetGroupsClaimFromToken/usernameNotString +--- PASS: TestFailedToGetGroupsClaimFromToken (0.68s) + --- PASS: TestFailedToGetGroupsClaimFromToken/groupsClaimNonExisting (0.01s) + --- PASS: TestFailedToGetGroupsClaimFromToken/usernameClaimNonExisting (0.01s) + --- PASS: TestFailedToGetGroupsClaimFromToken/usernameNotString (0.01s) +=== RUN TestSubjectFromClaims +--- PASS: TestSubjectFromClaims (0.00s) +=== RUN TestSubjectFallback +--- PASS: TestSubjectFallback (0.00s) +=== RUN TestGroupsFromClaim +=== RUN TestGroupsFromClaim/single-string +=== RUN TestGroupsFromClaim/multiple-strings +=== RUN TestGroupsFromClaim/multiple-things +--- PASS: TestGroupsFromClaim (0.00s) + --- PASS: TestGroupsFromClaim/single-string (0.00s) + --- PASS: TestGroupsFromClaim/multiple-strings (0.00s) + --- PASS: TestGroupsFromClaim/multiple-things (0.00s) +=== RUN TestEmptyGroupsClaim +--- PASS: TestEmptyGroupsClaim (0.00s) +=== RUN TestMissingClient +--- PASS: TestMissingClient (0.00s) +=== RUN TestMissingIssuerURL +--- PASS: TestMissingIssuerURL (0.00s) +=== RUN TestClose +--- PASS: TestClose (0.00s) +=== RUN TestUnaryInterceptor +--- PASS: TestUnaryInterceptor (0.00s) +=== RUN TestStreamInterceptor +--- PASS: TestStreamInterceptor (0.00s) +PASS +ok go.opentelemetry.io/collector/config/configauth (cached) +=== RUN TestValidateConfigFromFactories_Success +--- PASS: TestValidateConfigFromFactories_Success (0.00s) +=== RUN TestValidateConfigFromFactories_Failure +--- PASS: TestValidateConfigFromFactories_Failure (0.00s) +=== RUN TestValidateConfigPointerAndValue +--- PASS: TestValidateConfigPointerAndValue (0.00s) +=== RUN TestValidateConfig +=== RUN TestValidateConfig/typical_config +=== RUN TestValidateConfig/private_fields_ignored +=== RUN TestValidateConfig/not_struct_nor_pointer +=== RUN TestValidateConfig/squash_on_non_struct +=== RUN TestValidateConfig/invalid_tag_detected +=== RUN TestValidateConfig/public_field_must_have_tag +=== RUN TestValidateConfig/invalid_map_item +=== RUN TestValidateConfig/invalid_slice_item +=== RUN TestValidateConfig/invalid_array_item +=== RUN TestValidateConfig/invalid_map_item_ptr +=== RUN TestValidateConfig/invalid_slice_item_ptr +=== RUN TestValidateConfig/invalid_array_item_ptr +=== RUN TestValidateConfig/valid_map_item +=== RUN TestValidateConfig/valid_slice_item +--- PASS: TestValidateConfig (0.00s) + --- PASS: TestValidateConfig/typical_config (0.00s) + --- PASS: TestValidateConfig/private_fields_ignored (0.00s) + --- PASS: TestValidateConfig/not_struct_nor_pointer (0.00s) + --- PASS: TestValidateConfig/squash_on_non_struct (0.00s) + --- PASS: TestValidateConfig/invalid_tag_detected (0.00s) + --- PASS: TestValidateConfig/public_field_must_have_tag (0.00s) + --- PASS: TestValidateConfig/invalid_map_item (0.00s) + --- PASS: TestValidateConfig/invalid_slice_item (0.00s) + --- PASS: TestValidateConfig/invalid_array_item (0.00s) + --- PASS: TestValidateConfig/invalid_map_item_ptr (0.00s) + --- PASS: TestValidateConfig/invalid_slice_item_ptr (0.00s) + --- PASS: TestValidateConfig/invalid_array_item_ptr (0.00s) + --- PASS: TestValidateConfig/valid_map_item (0.00s) + --- PASS: TestValidateConfig/valid_slice_item (0.00s) +PASS +ok go.opentelemetry.io/collector/config/configcheck (cached) +? go.opentelemetry.io/collector/config/configerror [no test files] +=== RUN TestBearerToken +--- PASS: TestBearerToken (0.00s) +=== RUN TestBearerTokenRequiresSecureTransport +--- PASS: TestBearerTokenRequiresSecureTransport (0.00s) +=== RUN TestDefaultGrpcClientSettings +--- PASS: TestDefaultGrpcClientSettings (0.00s) +=== RUN TestAllGrpcClientSettings +--- PASS: TestAllGrpcClientSettings (0.00s) +=== RUN TestDefaultGrpcServerSettings +--- PASS: TestDefaultGrpcServerSettings (0.00s) +=== RUN TestAllGrpcServerSettingsExceptAuth +--- PASS: TestAllGrpcServerSettingsExceptAuth (0.00s) +=== RUN TestGrpcServerAuthSettings +--- PASS: TestGrpcServerAuthSettings (0.00s) +=== RUN TestGRPCClientSettingsError +=== RUN TestGRPCClientSettingsError/^failed_to_load_TLS_config:_failed_to_load_CA_CertPool:_failed_to_load_CA_/doesnt/exist: +=== RUN TestGRPCClientSettingsError/^failed_to_load_TLS_config:_for_auth_via_TLS,_either_both_certificate_and_key_must_be_supplied,_or_neither +=== RUN TestGRPCClientSettingsError/invalid_balancer_name:_test +--- PASS: TestGRPCClientSettingsError (0.00s) + --- PASS: TestGRPCClientSettingsError/^failed_to_load_TLS_config:_failed_to_load_CA_CertPool:_failed_to_load_CA_/doesnt/exist: (0.00s) + --- PASS: TestGRPCClientSettingsError/^failed_to_load_TLS_config:_for_auth_via_TLS,_either_both_certificate_and_key_must_be_supplied,_or_neither (0.00s) + --- PASS: TestGRPCClientSettingsError/invalid_balancer_name:_test (0.00s) +=== RUN TestUseSecure +--- PASS: TestUseSecure (0.00s) +=== RUN TestGRPCServerSettingsError +=== RUN TestGRPCServerSettingsError/^failed_to_load_TLS_config:_failed_to_load_CA_CertPool:_failed_to_load_CA_/doesnt/exist: +=== RUN TestGRPCServerSettingsError/^failed_to_load_TLS_config:_for_auth_via_TLS,_either_both_certificate_and_key_must_be_supplied,_or_neither +=== RUN TestGRPCServerSettingsError/^failed_to_load_TLS_config:_failed_to_load_client_CA_CertPool:_failed_to_load_CA_/doesnt/exist: +--- PASS: TestGRPCServerSettingsError (0.00s) + --- PASS: TestGRPCServerSettingsError/^failed_to_load_TLS_config:_failed_to_load_CA_CertPool:_failed_to_load_CA_/doesnt/exist: (0.00s) + --- PASS: TestGRPCServerSettingsError/^failed_to_load_TLS_config:_for_auth_via_TLS,_either_both_certificate_and_key_must_be_supplied,_or_neither (0.00s) + --- PASS: TestGRPCServerSettingsError/^failed_to_load_TLS_config:_failed_to_load_client_CA_CertPool:_failed_to_load_CA_/doesnt/exist: (0.00s) +=== RUN TestGRPCServerSettings_ToListener_Error +--- PASS: TestGRPCServerSettings_ToListener_Error (0.00s) +=== RUN TestGetGRPCCompressionKey +--- PASS: TestGetGRPCCompressionKey (0.00s) +=== RUN TestHttpReception +=== RUN TestHttpReception/noTLS +=== RUN TestHttpReception/TLS +=== RUN TestHttpReception/NoServerCertificates +=== RUN TestHttpReception/mTLS +=== RUN TestHttpReception/NoClientCertificate +=== RUN TestHttpReception/WrongClientCA +--- PASS: TestHttpReception (6.32s) + --- PASS: TestHttpReception/noTLS (0.24s) + --- PASS: TestHttpReception/TLS (0.02s) + --- PASS: TestHttpReception/NoServerCertificates (2.01s) + --- PASS: TestHttpReception/mTLS (0.03s) + --- PASS: TestHttpReception/NoClientCertificate (2.01s) + --- PASS: TestHttpReception/WrongClientCA (2.01s) +=== RUN TestReceiveOnUnixDomainSocket +--- PASS: TestReceiveOnUnixDomainSocket (0.00s) +=== RUN TestWithPerRPCAuthBearerToken +--- PASS: TestWithPerRPCAuthBearerToken (0.00s) +=== RUN TestWithPerRPCAuthInvalidAuthType +--- PASS: TestWithPerRPCAuthInvalidAuthType (0.00s) +PASS +ok go.opentelemetry.io/collector/config/configgrpc (cached) +=== RUN TestAllHTTPClientSettings +=== RUN TestAllHTTPClientSettings/all_valid_settings +=== RUN TestAllHTTPClientSettings/error_round_tripper_returned +--- PASS: TestAllHTTPClientSettings (0.00s) + --- PASS: TestAllHTTPClientSettings/all_valid_settings (0.00s) + --- PASS: TestAllHTTPClientSettings/error_round_tripper_returned (0.00s) +=== RUN TestHTTPClientSettingsError +=== RUN TestHTTPClientSettingsError/^failed_to_load_TLS_config:_failed_to_load_CA_CertPool:_failed_to_load_CA_/doesnt/exist: +=== RUN TestHTTPClientSettingsError/^failed_to_load_TLS_config:_for_auth_via_TLS,_either_both_certificate_and_key_must_be_supplied,_or_neither +--- PASS: TestHTTPClientSettingsError (0.00s) + --- PASS: TestHTTPClientSettingsError/^failed_to_load_TLS_config:_failed_to_load_CA_CertPool:_failed_to_load_CA_/doesnt/exist: (0.00s) + --- PASS: TestHTTPClientSettingsError/^failed_to_load_TLS_config:_for_auth_via_TLS,_either_both_certificate_and_key_must_be_supplied,_or_neither (0.00s) +=== RUN TestHTTPServerSettingsError +=== RUN TestHTTPServerSettingsError/^failed_to_load_TLS_config:_failed_to_load_CA_CertPool:_failed_to_load_CA_/doesnt/exist: +=== RUN TestHTTPServerSettingsError/^failed_to_load_TLS_config:_for_auth_via_TLS,_either_both_certificate_and_key_must_be_supplied,_or_neither +=== RUN TestHTTPServerSettingsError/^failed_to_load_TLS_config:_failed_to_load_client_CA_CertPool:_failed_to_load_CA_/doesnt/exist: +--- PASS: TestHTTPServerSettingsError (0.00s) + --- PASS: TestHTTPServerSettingsError/^failed_to_load_TLS_config:_failed_to_load_CA_CertPool:_failed_to_load_CA_/doesnt/exist: (0.00s) + --- PASS: TestHTTPServerSettingsError/^failed_to_load_TLS_config:_for_auth_via_TLS,_either_both_certificate_and_key_must_be_supplied,_or_neither (0.00s) + --- PASS: TestHTTPServerSettingsError/^failed_to_load_TLS_config:_failed_to_load_client_CA_CertPool:_failed_to_load_CA_/doesnt/exist: (0.00s) +=== RUN TestHttpReception +=== RUN TestHttpReception/noTLS +=== RUN TestHttpReception/TLS +=== RUN TestHttpReception/NoServerCertificates +2021/02/23 15:11:09 http: TLS handshake error from 127.0.0.1:64805: tls: no certificates configured +=== RUN TestHttpReception/mTLS +=== RUN TestHttpReception/NoClientCertificate +2021/02/23 15:11:09 http: TLS handshake error from 127.0.0.1:64809: tls: client didn't provide a certificate +=== RUN TestHttpReception/WrongClientCA +2021/02/23 15:11:09 http: TLS handshake error from 127.0.0.1:64811: tls: failed to verify client certificate: x509: certificate signed by unknown authority (possibly because of "x509: invalid signature: parent certificate cannot sign this kind of certificate" while trying to verify candidate authority certificate "MyCommonName") +--- PASS: TestHttpReception (0.17s) + --- PASS: TestHttpReception/noTLS (0.02s) + --- PASS: TestHttpReception/TLS (0.03s) + --- PASS: TestHttpReception/NoServerCertificates (0.02s) + --- PASS: TestHttpReception/mTLS (0.04s) + --- PASS: TestHttpReception/NoClientCertificate (0.03s) + --- PASS: TestHttpReception/WrongClientCA (0.04s) +=== RUN TestHttpCors +=== RUN TestHttpCors/noCORS +=== RUN TestHttpCors/OriginCORS +=== RUN TestHttpCors/HeaderCORS +--- PASS: TestHttpCors (0.05s) + --- PASS: TestHttpCors/noCORS (0.01s) + --- PASS: TestHttpCors/OriginCORS (0.01s) + --- PASS: TestHttpCors/HeaderCORS (0.02s) +=== RUN TestHttpCorsInvalidSettings +--- PASS: TestHttpCorsInvalidSettings (0.00s) +=== RUN TestHttpHeaders +=== RUN TestHttpHeaders/with_headers +--- PASS: TestHttpHeaders (0.00s) + --- PASS: TestHttpHeaders/with_headers (0.00s) +PASS +ok go.opentelemetry.io/collector/config/confighttp (cached) +? go.opentelemetry.io/collector/config/configmodels [no test files] +=== RUN TestNetAddr +--- PASS: TestNetAddr (0.00s) +=== RUN TestTcpAddr +--- PASS: TestTcpAddr (0.00s) +PASS +ok go.opentelemetry.io/collector/config/confignet (cached) +=== RUN TestParseFrom +=== RUN TestParseFrom/#00 +=== RUN TestParseFrom/other_string +=== RUN TestParseFrom/none +=== RUN TestParseFrom/basic +=== RUN TestParseFrom/normal +=== RUN TestParseFrom/detailed +--- PASS: TestParseFrom (0.00s) + --- PASS: TestParseFrom/#00 (0.00s) + --- PASS: TestParseFrom/other_string (0.00s) + --- PASS: TestParseFrom/none (0.00s) + --- PASS: TestParseFrom/basic (0.00s) + --- PASS: TestParseFrom/normal (0.00s) + --- PASS: TestParseFrom/detailed (0.00s) +=== RUN TestLevelSet +=== RUN TestLevelSet/#00 +=== RUN TestLevelSet/other_string +=== RUN TestLevelSet/none +=== RUN TestLevelSet/basic +=== RUN TestLevelSet/normal +=== RUN TestLevelSet/detailed +--- PASS: TestLevelSet (0.00s) + --- PASS: TestLevelSet/#00 (0.00s) + --- PASS: TestLevelSet/other_string (0.00s) + --- PASS: TestLevelSet/none (0.00s) + --- PASS: TestLevelSet/basic (0.00s) + --- PASS: TestLevelSet/normal (0.00s) + --- PASS: TestLevelSet/detailed (0.00s) +=== RUN TestLevelString +=== RUN TestLevelString/unknown +=== RUN TestLevelString/none +=== RUN TestLevelString/basic +=== RUN TestLevelString/normal +=== RUN TestLevelString/detailed +--- PASS: TestLevelString (0.00s) + --- PASS: TestLevelString/unknown (0.00s) + --- PASS: TestLevelString/none (0.00s) + --- PASS: TestLevelString/basic (0.00s) + --- PASS: TestLevelString/normal (0.00s) + --- PASS: TestLevelString/detailed (0.00s) +=== RUN TestTelemetrySettings +--- PASS: TestTelemetrySettings (0.00s) +=== RUN TestDefaultTelemetrySettings +--- PASS: TestDefaultTelemetrySettings (0.00s) +PASS +ok go.opentelemetry.io/collector/config/configtelemetry (cached) +=== RUN TestLoadConfigFile +--- PASS: TestLoadConfigFile (0.01s) +PASS +ok go.opentelemetry.io/collector/config/configtest (cached) +=== RUN TestOptionsToConfig +=== RUN TestOptionsToConfig/should_load_system_CA +=== RUN TestOptionsToConfig/should_load_custom_CA +=== RUN TestOptionsToConfig/should_fail_with_invalid_CA_file_path +=== RUN TestOptionsToConfig/should_fail_with_invalid_CA_file_content +=== RUN TestOptionsToConfig/should_load_valid_TLS__settings +=== RUN TestOptionsToConfig/should_fail_with_missing_TLS_KeyFile +=== RUN TestOptionsToConfig/should_fail_with_invalid_TLS_KeyFile +=== RUN TestOptionsToConfig/should_fail_with_missing_TLS_Cert +=== RUN TestOptionsToConfig/should_fail_with_invalid_TLS_Cert +=== RUN TestOptionsToConfig/should_fail_with_invalid_TLS_CA +=== RUN TestOptionsToConfig/should_fail_with_invalid_CA_pool +=== RUN TestOptionsToConfig/should_pass_with_valid_CA_pool +--- PASS: TestOptionsToConfig (0.01s) + --- PASS: TestOptionsToConfig/should_load_system_CA (0.00s) + --- PASS: TestOptionsToConfig/should_load_custom_CA (0.00s) + --- PASS: TestOptionsToConfig/should_fail_with_invalid_CA_file_path (0.00s) + --- PASS: TestOptionsToConfig/should_fail_with_invalid_CA_file_content (0.00s) + --- PASS: TestOptionsToConfig/should_load_valid_TLS__settings (0.00s) + --- PASS: TestOptionsToConfig/should_fail_with_missing_TLS_KeyFile (0.00s) + --- PASS: TestOptionsToConfig/should_fail_with_invalid_TLS_KeyFile (0.00s) + --- PASS: TestOptionsToConfig/should_fail_with_missing_TLS_Cert (0.00s) + --- PASS: TestOptionsToConfig/should_fail_with_invalid_TLS_Cert (0.00s) + --- PASS: TestOptionsToConfig/should_fail_with_invalid_TLS_CA (0.00s) + --- PASS: TestOptionsToConfig/should_fail_with_invalid_CA_pool (0.00s) + --- PASS: TestOptionsToConfig/should_pass_with_valid_CA_pool (0.00s) +=== RUN TestLoadTLSClientConfigError +--- PASS: TestLoadTLSClientConfigError (0.00s) +=== RUN TestLoadTLSClientConfig +--- PASS: TestLoadTLSClientConfig (0.00s) +=== RUN TestLoadTLSServerConfigError +--- PASS: TestLoadTLSServerConfigError (0.00s) +=== RUN TestLoadTLSServerConfig +--- PASS: TestLoadTLSServerConfig (0.00s) +PASS +ok go.opentelemetry.io/collector/config/configtls (cached) +? go.opentelemetry.io/collector/consumer [no test files] +? go.opentelemetry.io/collector/consumer/consumerdata [no test files] +=== RUN TestCombineErrors +--- PASS: TestCombineErrors (0.00s) +=== RUN TestPartialError +--- PASS: TestPartialError (0.00s) +=== RUN TestPartialErrorLogs +--- PASS: TestPartialErrorLogs (0.00s) +=== RUN TestPartialErrorMetrics +--- PASS: TestPartialErrorMetrics (0.00s) +=== RUN TestPartialScrapeError +--- PASS: TestPartialScrapeError (0.00s) +=== RUN TestIsPartialScrapeError +--- PASS: TestIsPartialScrapeError (0.00s) +=== RUN TestPermanent +--- PASS: TestPermanent (0.00s) +=== RUN TestIsPermanent_NilError +--- PASS: TestIsPermanent_NilError (0.00s) +=== RUN TestScrapeErrorsAddPartial +--- PASS: TestScrapeErrorsAddPartial (0.00s) +=== RUN TestScrapeErrorsAdd +--- PASS: TestScrapeErrorsAdd (0.00s) +=== RUN TestScrapeErrorsCombine +--- PASS: TestScrapeErrorsCombine (0.00s) +PASS +ok go.opentelemetry.io/collector/consumer/consumererror (cached) +=== RUN TestTracesErr +--- PASS: TestTracesErr (0.00s) +=== RUN TestMetricsErr +--- PASS: TestMetricsErr (0.00s) +=== RUN TestLogsErr +--- PASS: TestLogsErr (0.00s) +=== RUN TestTracesNop +--- PASS: TestTracesNop (0.00s) +=== RUN TestMetricsNop +--- PASS: TestMetricsNop (0.00s) +=== RUN TestLogsNop +--- PASS: TestLogsNop (0.00s) +=== RUN TestTracesSink +--- PASS: TestTracesSink (0.00s) +=== RUN TestTracesSink_Error +--- PASS: TestTracesSink_Error (0.00s) +=== RUN TestMetricsSink +--- PASS: TestMetricsSink (0.00s) +=== RUN TestMetricsSink_Error +--- PASS: TestMetricsSink_Error (0.00s) +=== RUN TestLogsSink +--- PASS: TestLogsSink (0.00s) +=== RUN TestLogsSink_Error +--- PASS: TestLogsSink_Error (0.00s) +PASS +ok go.opentelemetry.io/collector/consumer/consumertest (cached) +=== RUN TestAttributeValue +--- PASS: TestAttributeValue (0.00s) +=== RUN TestAttributeValueType +--- PASS: TestAttributeValueType (0.00s) +=== RUN TestAttributeValueMap +--- PASS: TestAttributeValueMap (0.00s) +=== RUN TestNilOrigSetAttributeValue +--- PASS: TestNilOrigSetAttributeValue (0.00s) +=== RUN TestAttributeValueEqual +--- PASS: TestAttributeValueEqual (0.00s) +=== RUN TestNilAttributeMap +--- PASS: TestNilAttributeMap (0.00s) +=== RUN TestAttributeMapWithEmpty +--- PASS: TestAttributeMapWithEmpty (0.00s) +=== RUN TestAttributeMapIterationNil +--- PASS: TestAttributeMapIterationNil (0.00s) +=== RUN TestAttributeMap_ForEach +--- PASS: TestAttributeMap_ForEach (0.00s) +=== RUN TestAttributeMap_InitFromMap +--- PASS: TestAttributeMap_InitFromMap (0.00s) +=== RUN TestAttributeValue_CopyTo +--- PASS: TestAttributeValue_CopyTo (0.00s) +=== RUN TestAttributeMap_CopyTo +--- PASS: TestAttributeMap_CopyTo (0.00s) +=== RUN TestAttributeValue_copyTo +--- PASS: TestAttributeValue_copyTo (0.00s) +=== RUN TestAttributeMap_Update +--- PASS: TestAttributeMap_Update (0.00s) +=== RUN TestAttributeMap_InitEmptyWithCapacity +--- PASS: TestAttributeMap_InitEmptyWithCapacity (0.00s) +=== RUN TestNilStringMap +--- PASS: TestNilStringMap (0.00s) +=== RUN TestStringMapWithEmpty +--- PASS: TestStringMapWithEmpty (0.00s) +=== RUN TestStringMap +--- PASS: TestStringMap (0.00s) +=== RUN TestStringMapIterationNil +--- PASS: TestStringMapIterationNil (0.00s) +=== RUN TestStringMap_ForEach +--- PASS: TestStringMap_ForEach (0.00s) +=== RUN TestStringMap_CopyTo +--- PASS: TestStringMap_CopyTo (0.00s) +=== RUN TestStringMap_InitEmptyWithCapacity +--- PASS: TestStringMap_InitEmptyWithCapacity (0.00s) +=== RUN TestStringMap_InitFromMap +--- PASS: TestStringMap_InitFromMap (0.00s) +=== RUN TestAttributeValueArray +--- PASS: TestAttributeValueArray (0.00s) +=== RUN TestAnyValueArrayWithNilValues +--- PASS: TestAnyValueArrayWithNilValues (0.00s) +=== RUN TestInstrumentationLibrary_CopyTo +--- PASS: TestInstrumentationLibrary_CopyTo (0.00s) +=== RUN TestInstrumentationLibrary_Name +--- PASS: TestInstrumentationLibrary_Name (0.00s) +=== RUN TestInstrumentationLibrary_Version +--- PASS: TestInstrumentationLibrary_Version (0.00s) +=== RUN TestAnyValueArray +--- PASS: TestAnyValueArray (0.00s) +=== RUN TestAnyValueArray_MoveAndAppendTo +--- PASS: TestAnyValueArray_MoveAndAppendTo (0.00s) +=== RUN TestAnyValueArray_CopyTo +--- PASS: TestAnyValueArray_CopyTo (0.00s) +=== RUN TestAnyValueArray_Resize +--- PASS: TestAnyValueArray_Resize (0.00s) +=== RUN TestAnyValueArray_Append +--- PASS: TestAnyValueArray_Append (0.00s) +=== RUN TestResourceLogsSlice +--- PASS: TestResourceLogsSlice (0.03s) +=== RUN TestResourceLogsSlice_MoveAndAppendTo +--- PASS: TestResourceLogsSlice_MoveAndAppendTo (0.11s) +=== RUN TestResourceLogsSlice_CopyTo +--- PASS: TestResourceLogsSlice_CopyTo (0.08s) +=== RUN TestResourceLogsSlice_Resize +--- PASS: TestResourceLogsSlice_Resize (0.00s) +=== RUN TestResourceLogsSlice_Append +--- PASS: TestResourceLogsSlice_Append (0.00s) +=== RUN TestResourceLogs_CopyTo +--- PASS: TestResourceLogs_CopyTo (0.00s) +=== RUN TestResourceLogs_Resource +--- PASS: TestResourceLogs_Resource (0.00s) +=== RUN TestResourceLogs_InstrumentationLibraryLogs +--- PASS: TestResourceLogs_InstrumentationLibraryLogs (0.00s) +=== RUN TestInstrumentationLibraryLogsSlice +--- PASS: TestInstrumentationLibraryLogsSlice (0.00s) +=== RUN TestInstrumentationLibraryLogsSlice_MoveAndAppendTo +--- PASS: TestInstrumentationLibraryLogsSlice_MoveAndAppendTo (0.02s) +=== RUN TestInstrumentationLibraryLogsSlice_CopyTo +--- PASS: TestInstrumentationLibraryLogsSlice_CopyTo (0.01s) +=== RUN TestInstrumentationLibraryLogsSlice_Resize +--- PASS: TestInstrumentationLibraryLogsSlice_Resize (0.00s) +=== RUN TestInstrumentationLibraryLogsSlice_Append +--- PASS: TestInstrumentationLibraryLogsSlice_Append (0.00s) +=== RUN TestInstrumentationLibraryLogs_CopyTo +--- PASS: TestInstrumentationLibraryLogs_CopyTo (0.00s) +=== RUN TestInstrumentationLibraryLogs_InstrumentationLibrary +--- PASS: TestInstrumentationLibraryLogs_InstrumentationLibrary (0.00s) +=== RUN TestInstrumentationLibraryLogs_Logs +--- PASS: TestInstrumentationLibraryLogs_Logs (0.00s) +=== RUN TestLogSlice +--- PASS: TestLogSlice (0.00s) +=== RUN TestLogSlice_MoveAndAppendTo +--- PASS: TestLogSlice_MoveAndAppendTo (0.00s) +=== RUN TestLogSlice_CopyTo +--- PASS: TestLogSlice_CopyTo (0.00s) +=== RUN TestLogSlice_Resize +--- PASS: TestLogSlice_Resize (0.00s) +=== RUN TestLogSlice_Append +--- PASS: TestLogSlice_Append (0.00s) +=== RUN TestLogRecord_CopyTo +--- PASS: TestLogRecord_CopyTo (0.00s) +=== RUN TestLogRecord_Timestamp +--- PASS: TestLogRecord_Timestamp (0.00s) +=== RUN TestLogRecord_TraceID +--- PASS: TestLogRecord_TraceID (0.00s) +=== RUN TestLogRecord_SpanID +--- PASS: TestLogRecord_SpanID (0.00s) +=== RUN TestLogRecord_Flags +--- PASS: TestLogRecord_Flags (0.00s) +=== RUN TestLogRecord_SeverityText +--- PASS: TestLogRecord_SeverityText (0.00s) +=== RUN TestLogRecord_SeverityNumber +--- PASS: TestLogRecord_SeverityNumber (0.00s) +=== RUN TestLogRecord_Name +--- PASS: TestLogRecord_Name (0.00s) +=== RUN TestLogRecord_Body +--- PASS: TestLogRecord_Body (0.00s) +=== RUN TestLogRecord_Attributes +--- PASS: TestLogRecord_Attributes (0.00s) +=== RUN TestLogRecord_DroppedAttributesCount +--- PASS: TestLogRecord_DroppedAttributesCount (0.00s) +=== RUN TestResourceMetricsSlice +--- PASS: TestResourceMetricsSlice (0.56s) +=== RUN TestResourceMetricsSlice_MoveAndAppendTo +--- PASS: TestResourceMetricsSlice_MoveAndAppendTo (1.96s) +=== RUN TestResourceMetricsSlice_CopyTo +--- PASS: TestResourceMetricsSlice_CopyTo (0.92s) +=== RUN TestResourceMetricsSlice_Resize +--- PASS: TestResourceMetricsSlice_Resize (0.01s) +=== RUN TestResourceMetricsSlice_Append +--- PASS: TestResourceMetricsSlice_Append (0.01s) +=== RUN TestResourceMetrics_CopyTo +--- PASS: TestResourceMetrics_CopyTo (0.06s) +=== RUN TestResourceMetrics_Resource +--- PASS: TestResourceMetrics_Resource (0.00s) +=== RUN TestResourceMetrics_InstrumentationLibraryMetrics +--- PASS: TestResourceMetrics_InstrumentationLibraryMetrics (0.06s) +=== RUN TestInstrumentationLibraryMetricsSlice +--- PASS: TestInstrumentationLibraryMetricsSlice (0.06s) +=== RUN TestInstrumentationLibraryMetricsSlice_MoveAndAppendTo +--- PASS: TestInstrumentationLibraryMetricsSlice_MoveAndAppendTo (0.24s) +=== RUN TestInstrumentationLibraryMetricsSlice_CopyTo +--- PASS: TestInstrumentationLibraryMetricsSlice_CopyTo (0.12s) +=== RUN TestInstrumentationLibraryMetricsSlice_Resize +--- PASS: TestInstrumentationLibraryMetricsSlice_Resize (0.00s) +=== RUN TestInstrumentationLibraryMetricsSlice_Append +--- PASS: TestInstrumentationLibraryMetricsSlice_Append (0.00s) +=== RUN TestInstrumentationLibraryMetrics_CopyTo +--- PASS: TestInstrumentationLibraryMetrics_CopyTo (0.01s) +=== RUN TestInstrumentationLibraryMetrics_InstrumentationLibrary +--- PASS: TestInstrumentationLibraryMetrics_InstrumentationLibrary (0.00s) +=== RUN TestInstrumentationLibraryMetrics_Metrics +--- PASS: TestInstrumentationLibraryMetrics_Metrics (0.01s) +=== RUN TestMetricSlice +--- PASS: TestMetricSlice (0.01s) +=== RUN TestMetricSlice_MoveAndAppendTo +--- PASS: TestMetricSlice_MoveAndAppendTo (0.03s) +=== RUN TestMetricSlice_CopyTo +--- PASS: TestMetricSlice_CopyTo (0.02s) +=== RUN TestMetricSlice_Resize +--- PASS: TestMetricSlice_Resize (0.00s) +=== RUN TestMetricSlice_Append +--- PASS: TestMetricSlice_Append (0.00s) +=== RUN TestMetric_CopyTo +--- PASS: TestMetric_CopyTo (0.00s) +=== RUN TestMetric_Name +--- PASS: TestMetric_Name (0.00s) +=== RUN TestMetric_Description +--- PASS: TestMetric_Description (0.00s) +=== RUN TestMetric_Unit +--- PASS: TestMetric_Unit (0.00s) +=== RUN TestIntGauge_CopyTo +--- PASS: TestIntGauge_CopyTo (0.00s) +=== RUN TestIntGauge_DataPoints +--- PASS: TestIntGauge_DataPoints (0.00s) +=== RUN TestDoubleGauge_CopyTo +--- PASS: TestDoubleGauge_CopyTo (0.00s) +=== RUN TestDoubleGauge_DataPoints +--- PASS: TestDoubleGauge_DataPoints (0.00s) +=== RUN TestIntSum_CopyTo +--- PASS: TestIntSum_CopyTo (0.00s) +=== RUN TestIntSum_AggregationTemporality +--- PASS: TestIntSum_AggregationTemporality (0.00s) +=== RUN TestIntSum_IsMonotonic +--- PASS: TestIntSum_IsMonotonic (0.00s) +=== RUN TestIntSum_DataPoints +--- PASS: TestIntSum_DataPoints (0.00s) +=== RUN TestDoubleSum_CopyTo +--- PASS: TestDoubleSum_CopyTo (0.00s) +=== RUN TestDoubleSum_AggregationTemporality +--- PASS: TestDoubleSum_AggregationTemporality (0.00s) +=== RUN TestDoubleSum_IsMonotonic +--- PASS: TestDoubleSum_IsMonotonic (0.00s) +=== RUN TestDoubleSum_DataPoints +--- PASS: TestDoubleSum_DataPoints (0.00s) +=== RUN TestIntHistogram_CopyTo +--- PASS: TestIntHistogram_CopyTo (0.00s) +=== RUN TestIntHistogram_AggregationTemporality +--- PASS: TestIntHistogram_AggregationTemporality (0.00s) +=== RUN TestIntHistogram_DataPoints +--- PASS: TestIntHistogram_DataPoints (0.00s) +=== RUN TestDoubleHistogram_CopyTo +--- PASS: TestDoubleHistogram_CopyTo (0.00s) +=== RUN TestDoubleHistogram_AggregationTemporality +--- PASS: TestDoubleHistogram_AggregationTemporality (0.00s) +=== RUN TestDoubleHistogram_DataPoints +--- PASS: TestDoubleHistogram_DataPoints (0.00s) +=== RUN TestDoubleSummary_CopyTo +--- PASS: TestDoubleSummary_CopyTo (0.00s) +=== RUN TestDoubleSummary_DataPoints +--- PASS: TestDoubleSummary_DataPoints (0.00s) +=== RUN TestIntDataPointSlice +--- PASS: TestIntDataPointSlice (0.00s) +=== RUN TestIntDataPointSlice_MoveAndAppendTo +--- PASS: TestIntDataPointSlice_MoveAndAppendTo (0.00s) +=== RUN TestIntDataPointSlice_CopyTo +--- PASS: TestIntDataPointSlice_CopyTo (0.00s) +=== RUN TestIntDataPointSlice_Resize +--- PASS: TestIntDataPointSlice_Resize (0.00s) +=== RUN TestIntDataPointSlice_Append +--- PASS: TestIntDataPointSlice_Append (0.00s) +=== RUN TestIntDataPoint_CopyTo +--- PASS: TestIntDataPoint_CopyTo (0.00s) +=== RUN TestIntDataPoint_LabelsMap +--- PASS: TestIntDataPoint_LabelsMap (0.00s) +=== RUN TestIntDataPoint_StartTime +--- PASS: TestIntDataPoint_StartTime (0.00s) +=== RUN TestIntDataPoint_Timestamp +--- PASS: TestIntDataPoint_Timestamp (0.00s) +=== RUN TestIntDataPoint_Value +--- PASS: TestIntDataPoint_Value (0.00s) +=== RUN TestIntDataPoint_Exemplars +--- PASS: TestIntDataPoint_Exemplars (0.00s) +=== RUN TestDoubleDataPointSlice +--- PASS: TestDoubleDataPointSlice (0.00s) +=== RUN TestDoubleDataPointSlice_MoveAndAppendTo +--- PASS: TestDoubleDataPointSlice_MoveAndAppendTo (0.00s) +=== RUN TestDoubleDataPointSlice_CopyTo +--- PASS: TestDoubleDataPointSlice_CopyTo (0.00s) +=== RUN TestDoubleDataPointSlice_Resize +--- PASS: TestDoubleDataPointSlice_Resize (0.00s) +=== RUN TestDoubleDataPointSlice_Append +--- PASS: TestDoubleDataPointSlice_Append (0.00s) +=== RUN TestDoubleDataPoint_CopyTo +--- PASS: TestDoubleDataPoint_CopyTo (0.00s) +=== RUN TestDoubleDataPoint_LabelsMap +--- PASS: TestDoubleDataPoint_LabelsMap (0.00s) +=== RUN TestDoubleDataPoint_StartTime +--- PASS: TestDoubleDataPoint_StartTime (0.00s) +=== RUN TestDoubleDataPoint_Timestamp +--- PASS: TestDoubleDataPoint_Timestamp (0.00s) +=== RUN TestDoubleDataPoint_Value +--- PASS: TestDoubleDataPoint_Value (0.00s) +=== RUN TestDoubleDataPoint_Exemplars +--- PASS: TestDoubleDataPoint_Exemplars (0.00s) +=== RUN TestIntHistogramDataPointSlice +--- PASS: TestIntHistogramDataPointSlice (0.00s) +=== RUN TestIntHistogramDataPointSlice_MoveAndAppendTo +--- PASS: TestIntHistogramDataPointSlice_MoveAndAppendTo (0.01s) +=== RUN TestIntHistogramDataPointSlice_CopyTo +--- PASS: TestIntHistogramDataPointSlice_CopyTo (0.00s) +=== RUN TestIntHistogramDataPointSlice_Resize +--- PASS: TestIntHistogramDataPointSlice_Resize (0.00s) +=== RUN TestIntHistogramDataPointSlice_Append +--- PASS: TestIntHistogramDataPointSlice_Append (0.00s) +=== RUN TestIntHistogramDataPoint_CopyTo +--- PASS: TestIntHistogramDataPoint_CopyTo (0.00s) +=== RUN TestIntHistogramDataPoint_LabelsMap +--- PASS: TestIntHistogramDataPoint_LabelsMap (0.00s) +=== RUN TestIntHistogramDataPoint_StartTime +--- PASS: TestIntHistogramDataPoint_StartTime (0.00s) +=== RUN TestIntHistogramDataPoint_Timestamp +--- PASS: TestIntHistogramDataPoint_Timestamp (0.00s) +=== RUN TestIntHistogramDataPoint_Count +--- PASS: TestIntHistogramDataPoint_Count (0.00s) +=== RUN TestIntHistogramDataPoint_Sum +--- PASS: TestIntHistogramDataPoint_Sum (0.00s) +=== RUN TestIntHistogramDataPoint_BucketCounts +--- PASS: TestIntHistogramDataPoint_BucketCounts (0.00s) +=== RUN TestIntHistogramDataPoint_ExplicitBounds +--- PASS: TestIntHistogramDataPoint_ExplicitBounds (0.00s) +=== RUN TestIntHistogramDataPoint_Exemplars +--- PASS: TestIntHistogramDataPoint_Exemplars (0.00s) +=== RUN TestDoubleHistogramDataPointSlice +--- PASS: TestDoubleHistogramDataPointSlice (0.00s) +=== RUN TestDoubleHistogramDataPointSlice_MoveAndAppendTo +--- PASS: TestDoubleHistogramDataPointSlice_MoveAndAppendTo (0.00s) +=== RUN TestDoubleHistogramDataPointSlice_CopyTo +--- PASS: TestDoubleHistogramDataPointSlice_CopyTo (0.00s) +=== RUN TestDoubleHistogramDataPointSlice_Resize +--- PASS: TestDoubleHistogramDataPointSlice_Resize (0.00s) +=== RUN TestDoubleHistogramDataPointSlice_Append +--- PASS: TestDoubleHistogramDataPointSlice_Append (0.00s) +=== RUN TestDoubleHistogramDataPoint_CopyTo +--- PASS: TestDoubleHistogramDataPoint_CopyTo (0.00s) +=== RUN TestDoubleHistogramDataPoint_LabelsMap +--- PASS: TestDoubleHistogramDataPoint_LabelsMap (0.00s) +=== RUN TestDoubleHistogramDataPoint_StartTime +--- PASS: TestDoubleHistogramDataPoint_StartTime (0.00s) +=== RUN TestDoubleHistogramDataPoint_Timestamp +--- PASS: TestDoubleHistogramDataPoint_Timestamp (0.00s) +=== RUN TestDoubleHistogramDataPoint_Count +--- PASS: TestDoubleHistogramDataPoint_Count (0.00s) +=== RUN TestDoubleHistogramDataPoint_Sum +--- PASS: TestDoubleHistogramDataPoint_Sum (0.00s) +=== RUN TestDoubleHistogramDataPoint_BucketCounts +--- PASS: TestDoubleHistogramDataPoint_BucketCounts (0.00s) +=== RUN TestDoubleHistogramDataPoint_ExplicitBounds +--- PASS: TestDoubleHistogramDataPoint_ExplicitBounds (0.00s) +=== RUN TestDoubleHistogramDataPoint_Exemplars +--- PASS: TestDoubleHistogramDataPoint_Exemplars (0.00s) +=== RUN TestDoubleSummaryDataPointSlice +--- PASS: TestDoubleSummaryDataPointSlice (0.00s) +=== RUN TestDoubleSummaryDataPointSlice_MoveAndAppendTo +--- PASS: TestDoubleSummaryDataPointSlice_MoveAndAppendTo (0.00s) +=== RUN TestDoubleSummaryDataPointSlice_CopyTo +--- PASS: TestDoubleSummaryDataPointSlice_CopyTo (0.00s) +=== RUN TestDoubleSummaryDataPointSlice_Resize +--- PASS: TestDoubleSummaryDataPointSlice_Resize (0.00s) +=== RUN TestDoubleSummaryDataPointSlice_Append +--- PASS: TestDoubleSummaryDataPointSlice_Append (0.00s) +=== RUN TestDoubleSummaryDataPoint_CopyTo +--- PASS: TestDoubleSummaryDataPoint_CopyTo (0.00s) +=== RUN TestDoubleSummaryDataPoint_LabelsMap +--- PASS: TestDoubleSummaryDataPoint_LabelsMap (0.00s) +=== RUN TestDoubleSummaryDataPoint_StartTime +--- PASS: TestDoubleSummaryDataPoint_StartTime (0.00s) +=== RUN TestDoubleSummaryDataPoint_Timestamp +--- PASS: TestDoubleSummaryDataPoint_Timestamp (0.00s) +=== RUN TestDoubleSummaryDataPoint_Count +--- PASS: TestDoubleSummaryDataPoint_Count (0.00s) +=== RUN TestDoubleSummaryDataPoint_Sum +--- PASS: TestDoubleSummaryDataPoint_Sum (0.00s) +=== RUN TestDoubleSummaryDataPoint_QuantileValues +--- PASS: TestDoubleSummaryDataPoint_QuantileValues (0.00s) +=== RUN TestValueAtQuantileSlice +--- PASS: TestValueAtQuantileSlice (0.00s) +=== RUN TestValueAtQuantileSlice_MoveAndAppendTo +--- PASS: TestValueAtQuantileSlice_MoveAndAppendTo (0.00s) +=== RUN TestValueAtQuantileSlice_CopyTo +--- PASS: TestValueAtQuantileSlice_CopyTo (0.00s) +=== RUN TestValueAtQuantileSlice_Resize +--- PASS: TestValueAtQuantileSlice_Resize (0.00s) +=== RUN TestValueAtQuantileSlice_Append +--- PASS: TestValueAtQuantileSlice_Append (0.00s) +=== RUN TestValueAtQuantile_CopyTo +--- PASS: TestValueAtQuantile_CopyTo (0.00s) +=== RUN TestValueAtQuantile_Quantile +--- PASS: TestValueAtQuantile_Quantile (0.00s) +=== RUN TestValueAtQuantile_Value +--- PASS: TestValueAtQuantile_Value (0.00s) +=== RUN TestIntExemplarSlice +--- PASS: TestIntExemplarSlice (0.00s) +=== RUN TestIntExemplarSlice_MoveAndAppendTo +--- PASS: TestIntExemplarSlice_MoveAndAppendTo (0.00s) +=== RUN TestIntExemplarSlice_CopyTo +--- PASS: TestIntExemplarSlice_CopyTo (0.00s) +=== RUN TestIntExemplarSlice_Resize +--- PASS: TestIntExemplarSlice_Resize (0.00s) +=== RUN TestIntExemplarSlice_Append +--- PASS: TestIntExemplarSlice_Append (0.00s) +=== RUN TestIntExemplar_CopyTo +--- PASS: TestIntExemplar_CopyTo (0.00s) +=== RUN TestIntExemplar_Timestamp +--- PASS: TestIntExemplar_Timestamp (0.00s) +=== RUN TestIntExemplar_Value +--- PASS: TestIntExemplar_Value (0.00s) +=== RUN TestIntExemplar_FilteredLabels +--- PASS: TestIntExemplar_FilteredLabels (0.00s) +=== RUN TestDoubleExemplarSlice +--- PASS: TestDoubleExemplarSlice (0.00s) +=== RUN TestDoubleExemplarSlice_MoveAndAppendTo +--- PASS: TestDoubleExemplarSlice_MoveAndAppendTo (0.00s) +=== RUN TestDoubleExemplarSlice_CopyTo +--- PASS: TestDoubleExemplarSlice_CopyTo (0.00s) +=== RUN TestDoubleExemplarSlice_Resize +--- PASS: TestDoubleExemplarSlice_Resize (0.00s) +=== RUN TestDoubleExemplarSlice_Append +--- PASS: TestDoubleExemplarSlice_Append (0.00s) +=== RUN TestDoubleExemplar_CopyTo +--- PASS: TestDoubleExemplar_CopyTo (0.00s) +=== RUN TestDoubleExemplar_Timestamp +--- PASS: TestDoubleExemplar_Timestamp (0.00s) +=== RUN TestDoubleExemplar_Value +--- PASS: TestDoubleExemplar_Value (0.00s) +=== RUN TestDoubleExemplar_FilteredLabels +--- PASS: TestDoubleExemplar_FilteredLabels (0.00s) +=== RUN TestResource_CopyTo +--- PASS: TestResource_CopyTo (0.00s) +=== RUN TestResource_Attributes +--- PASS: TestResource_Attributes (0.00s) +=== RUN TestResourceSpansSlice +--- PASS: TestResourceSpansSlice (0.11s) +=== RUN TestResourceSpansSlice_MoveAndAppendTo +--- PASS: TestResourceSpansSlice_MoveAndAppendTo (0.43s) +=== RUN TestResourceSpansSlice_CopyTo +--- PASS: TestResourceSpansSlice_CopyTo (0.22s) +=== RUN TestResourceSpansSlice_Resize +--- PASS: TestResourceSpansSlice_Resize (0.00s) +=== RUN TestResourceSpansSlice_Append +--- PASS: TestResourceSpansSlice_Append (0.00s) +=== RUN TestResourceSpans_CopyTo +--- PASS: TestResourceSpans_CopyTo (0.02s) +=== RUN TestResourceSpans_Resource +--- PASS: TestResourceSpans_Resource (0.00s) +=== RUN TestResourceSpans_InstrumentationLibrarySpans +--- PASS: TestResourceSpans_InstrumentationLibrarySpans (0.01s) +=== RUN TestInstrumentationLibrarySpansSlice +--- PASS: TestInstrumentationLibrarySpansSlice (0.01s) +=== RUN TestInstrumentationLibrarySpansSlice_MoveAndAppendTo +--- PASS: TestInstrumentationLibrarySpansSlice_MoveAndAppendTo (0.05s) +=== RUN TestInstrumentationLibrarySpansSlice_CopyTo +--- PASS: TestInstrumentationLibrarySpansSlice_CopyTo (0.03s) +=== RUN TestInstrumentationLibrarySpansSlice_Resize +--- PASS: TestInstrumentationLibrarySpansSlice_Resize (0.00s) +=== RUN TestInstrumentationLibrarySpansSlice_Append +--- PASS: TestInstrumentationLibrarySpansSlice_Append (0.00s) +=== RUN TestInstrumentationLibrarySpans_CopyTo +--- PASS: TestInstrumentationLibrarySpans_CopyTo (0.00s) +=== RUN TestInstrumentationLibrarySpans_InstrumentationLibrary +--- PASS: TestInstrumentationLibrarySpans_InstrumentationLibrary (0.00s) +=== RUN TestInstrumentationLibrarySpans_Spans +--- PASS: TestInstrumentationLibrarySpans_Spans (0.00s) +=== RUN TestSpanSlice +--- PASS: TestSpanSlice (0.00s) +=== RUN TestSpanSlice_MoveAndAppendTo +--- PASS: TestSpanSlice_MoveAndAppendTo (0.01s) +=== RUN TestSpanSlice_CopyTo +--- PASS: TestSpanSlice_CopyTo (0.00s) +=== RUN TestSpanSlice_Resize +--- PASS: TestSpanSlice_Resize (0.00s) +=== RUN TestSpanSlice_Append +--- PASS: TestSpanSlice_Append (0.00s) +=== RUN TestSpan_CopyTo +--- PASS: TestSpan_CopyTo (0.00s) +=== RUN TestSpan_TraceID +--- PASS: TestSpan_TraceID (0.00s) +=== RUN TestSpan_SpanID +--- PASS: TestSpan_SpanID (0.00s) +=== RUN TestSpan_TraceState +--- PASS: TestSpan_TraceState (0.00s) +=== RUN TestSpan_ParentSpanID +--- PASS: TestSpan_ParentSpanID (0.00s) +=== RUN TestSpan_Name +--- PASS: TestSpan_Name (0.00s) +=== RUN TestSpan_Kind +--- PASS: TestSpan_Kind (0.00s) +=== RUN TestSpan_StartTime +--- PASS: TestSpan_StartTime (0.00s) +=== RUN TestSpan_EndTime +--- PASS: TestSpan_EndTime (0.00s) +=== RUN TestSpan_Attributes +--- PASS: TestSpan_Attributes (0.00s) +=== RUN TestSpan_DroppedAttributesCount +--- PASS: TestSpan_DroppedAttributesCount (0.00s) +=== RUN TestSpan_Events +--- PASS: TestSpan_Events (0.00s) +=== RUN TestSpan_DroppedEventsCount +--- PASS: TestSpan_DroppedEventsCount (0.00s) +=== RUN TestSpan_Links +--- PASS: TestSpan_Links (0.00s) +=== RUN TestSpan_DroppedLinksCount +--- PASS: TestSpan_DroppedLinksCount (0.00s) +=== RUN TestSpan_Status +--- PASS: TestSpan_Status (0.00s) +=== RUN TestSpanEventSlice +--- PASS: TestSpanEventSlice (0.00s) +=== RUN TestSpanEventSlice_MoveAndAppendTo +--- PASS: TestSpanEventSlice_MoveAndAppendTo (0.00s) +=== RUN TestSpanEventSlice_CopyTo +--- PASS: TestSpanEventSlice_CopyTo (0.00s) +=== RUN TestSpanEventSlice_Resize +--- PASS: TestSpanEventSlice_Resize (0.00s) +=== RUN TestSpanEventSlice_Append +--- PASS: TestSpanEventSlice_Append (0.00s) +=== RUN TestSpanEvent_CopyTo +--- PASS: TestSpanEvent_CopyTo (0.00s) +=== RUN TestSpanEvent_Timestamp +--- PASS: TestSpanEvent_Timestamp (0.00s) +=== RUN TestSpanEvent_Name +--- PASS: TestSpanEvent_Name (0.00s) +=== RUN TestSpanEvent_Attributes +--- PASS: TestSpanEvent_Attributes (0.00s) +=== RUN TestSpanEvent_DroppedAttributesCount +--- PASS: TestSpanEvent_DroppedAttributesCount (0.00s) +=== RUN TestSpanLinkSlice +--- PASS: TestSpanLinkSlice (0.00s) +=== RUN TestSpanLinkSlice_MoveAndAppendTo +--- PASS: TestSpanLinkSlice_MoveAndAppendTo (0.00s) +=== RUN TestSpanLinkSlice_CopyTo +--- PASS: TestSpanLinkSlice_CopyTo (0.00s) +=== RUN TestSpanLinkSlice_Resize +--- PASS: TestSpanLinkSlice_Resize (0.00s) +=== RUN TestSpanLinkSlice_Append +--- PASS: TestSpanLinkSlice_Append (0.00s) +=== RUN TestSpanLink_CopyTo +--- PASS: TestSpanLink_CopyTo (0.00s) +=== RUN TestSpanLink_TraceID +--- PASS: TestSpanLink_TraceID (0.00s) +=== RUN TestSpanLink_SpanID +--- PASS: TestSpanLink_SpanID (0.00s) +=== RUN TestSpanLink_TraceState +--- PASS: TestSpanLink_TraceState (0.00s) +=== RUN TestSpanLink_Attributes +--- PASS: TestSpanLink_Attributes (0.00s) +=== RUN TestSpanLink_DroppedAttributesCount +--- PASS: TestSpanLink_DroppedAttributesCount (0.00s) +=== RUN TestSpanStatus_CopyTo +--- PASS: TestSpanStatus_CopyTo (0.00s) +=== RUN TestSpanStatus_Code +--- PASS: TestSpanStatus_Code (0.00s) +=== RUN TestSpanStatus_Message +--- PASS: TestSpanStatus_Message (0.00s) +=== RUN TestLogRecordCount +--- PASS: TestLogRecordCount (0.00s) +=== RUN TestLogRecordCountWithEmpty +--- PASS: TestLogRecordCountWithEmpty (0.00s) +=== RUN TestToFromLogProto +--- PASS: TestToFromLogProto (0.00s) +=== RUN TestLogsToFromOtlpProtoBytes +--- PASS: TestLogsToFromOtlpProtoBytes (0.01s) +=== RUN TestLogsFromInvalidOtlpProtoBytes +--- PASS: TestLogsFromInvalidOtlpProtoBytes (0.00s) +=== RUN TestLogsClone +--- PASS: TestLogsClone (0.01s) +=== RUN TestCopyData +=== RUN TestCopyData/IntGauge +=== RUN TestCopyData/DoubleGauge +=== RUN TestCopyData/IntSum +=== RUN TestCopyData/DoubleSum +=== RUN TestCopyData/IntHistogram +=== RUN TestCopyData/DoubleHistogram +--- PASS: TestCopyData (0.00s) + --- PASS: TestCopyData/IntGauge (0.00s) + --- PASS: TestCopyData/DoubleGauge (0.00s) + --- PASS: TestCopyData/IntSum (0.00s) + --- PASS: TestCopyData/DoubleSum (0.00s) + --- PASS: TestCopyData/IntHistogram (0.00s) + --- PASS: TestCopyData/DoubleHistogram (0.00s) +=== RUN TestDataType +--- PASS: TestDataType (0.00s) +=== RUN TestResourceMetricsWireCompatibility +--- PASS: TestResourceMetricsWireCompatibility (0.06s) +=== RUN TestMetricCount +--- PASS: TestMetricCount (0.00s) +=== RUN TestMetricSize +--- PASS: TestMetricSize (0.00s) +=== RUN TestMetricsSizeWithNil +--- PASS: TestMetricsSizeWithNil (0.00s) +=== RUN TestMetricCountWithEmpty +--- PASS: TestMetricCountWithEmpty (0.00s) +=== RUN TestMetricAndDataPointCount +--- PASS: TestMetricAndDataPointCount (0.00s) +=== RUN TestMetricAndDataPointCountWithEmpty +--- PASS: TestMetricAndDataPointCountWithEmpty (0.00s) +=== RUN TestMetricAndDataPointCountWithNilDataPoints +--- PASS: TestMetricAndDataPointCountWithNilDataPoints (0.00s) +=== RUN TestOtlpToInternalReadOnly +--- PASS: TestOtlpToInternalReadOnly (0.00s) +=== RUN TestOtlpToFromInternalReadOnly +--- PASS: TestOtlpToFromInternalReadOnly (0.00s) +=== RUN TestOtlpToFromInternalIntGaugeMutating +--- PASS: TestOtlpToFromInternalIntGaugeMutating (0.00s) +=== RUN TestOtlpToFromInternalDoubleSumMutating +--- PASS: TestOtlpToFromInternalDoubleSumMutating (0.00s) +=== RUN TestOtlpToFromInternalHistogramMutating +--- PASS: TestOtlpToFromInternalHistogramMutating (0.00s) +=== RUN TestMetricsToFromOtlpProtoBytes +--- PASS: TestMetricsToFromOtlpProtoBytes (0.42s) +=== RUN TestMetricsFromInvalidOtlpProtoBytes +--- PASS: TestMetricsFromInvalidOtlpProtoBytes (0.00s) +=== RUN TestMetricsClone +--- PASS: TestMetricsClone (0.35s) +=== RUN TestUnixNanosConverters +--- PASS: TestUnixNanosConverters (0.00s) +=== RUN TestZeroTimestamp +--- PASS: TestZeroTimestamp (0.00s) +=== RUN TestSpanCount +--- PASS: TestSpanCount (0.00s) +=== RUN TestSize +--- PASS: TestSize (0.00s) +=== RUN TestTracesSizeWithNil +--- PASS: TestTracesSizeWithNil (0.00s) +=== RUN TestSpanCountWithEmpty +--- PASS: TestSpanCountWithEmpty (0.00s) +=== RUN TestSpanID +--- PASS: TestSpanID (0.00s) +=== RUN TestTraceID +--- PASS: TestTraceID (0.00s) +=== RUN TestSpanStatusCode +--- PASS: TestSpanStatusCode (0.00s) +=== RUN TestToFromOtlp +--- PASS: TestToFromOtlp (0.00s) +=== RUN TestResourceSpansWireCompatibility +--- PASS: TestResourceSpansWireCompatibility (0.02s) +=== RUN TestTracesToFromOtlpProtoBytes +--- PASS: TestTracesToFromOtlpProtoBytes (0.11s) +=== RUN TestTracesFromInvalidOtlpProtoBytes +--- PASS: TestTracesFromInvalidOtlpProtoBytes (0.00s) +=== RUN TestTracesClone +--- PASS: TestTracesClone (0.09s) +PASS +ok go.opentelemetry.io/collector/consumer/pdata (cached) +=== RUN TestMetrics +--- PASS: TestMetrics (0.01s) +=== RUN TestMetricFactories +--- PASS: TestMetricFactories (0.00s) +=== RUN TestSafeMetrics +--- PASS: TestSafeMetrics (0.94s) +=== RUN ExampleMetrics +--- PASS: ExampleMetrics (0.00s) +=== RUN ExampleSafeMetrics +--- PASS: ExampleSafeMetrics (0.00s) +PASS +ok go.opentelemetry.io/collector/consumer/simple (cached) +? go.opentelemetry.io/collector/exporter [no test files] +=== RUN TestErrorToStatus +--- PASS: TestErrorToStatus (0.00s) +=== RUN TestBaseExporter +--- PASS: TestBaseExporter (0.01s) +=== RUN TestBaseExporterWithOptions +--- PASS: TestBaseExporterWithOptions (0.00s) +=== RUN TestNewFactory +--- PASS: TestNewFactory (0.00s) +=== RUN TestNewFactory_WithConstructors +--- PASS: TestNewFactory_WithConstructors (0.00s) +=== RUN TestLogsRequest +--- PASS: TestLogsRequest (0.00s) +=== RUN TestLogsExporter_InvalidName +--- PASS: TestLogsExporter_InvalidName (0.00s) +=== RUN TestLogsExporter_NilLogger +--- PASS: TestLogsExporter_NilLogger (0.00s) +=== RUN TestLogsExporter_NilPushLogsData +--- PASS: TestLogsExporter_NilPushLogsData (0.00s) +=== RUN TestLogsExporter_Default +--- PASS: TestLogsExporter_Default (0.00s) +=== RUN TestLogsExporter_Default_ReturnError +--- PASS: TestLogsExporter_Default_ReturnError (0.00s) +=== RUN TestLogsExporter_WithRecordLogs +--- PASS: TestLogsExporter_WithRecordLogs (0.00s) +=== RUN TestLogsExporter_WithRecordLogs_NonZeroDropped +--- PASS: TestLogsExporter_WithRecordLogs_NonZeroDropped (0.00s) +=== RUN TestLogsExporter_WithRecordLogs_ReturnError +--- PASS: TestLogsExporter_WithRecordLogs_ReturnError (0.00s) +=== RUN TestLogsExporter_WithSpan +--- PASS: TestLogsExporter_WithSpan (0.00s) +=== RUN TestLogsExporter_WithSpan_NonZeroDropped +--- PASS: TestLogsExporter_WithSpan_NonZeroDropped (0.00s) +=== RUN TestLogsExporter_WithSpan_ReturnError +--- PASS: TestLogsExporter_WithSpan_ReturnError (0.00s) +=== RUN TestLogsExporter_WithShutdown +--- PASS: TestLogsExporter_WithShutdown (0.00s) +=== RUN TestLogsExporter_WithShutdown_ReturnError +--- PASS: TestLogsExporter_WithShutdown_ReturnError (0.00s) +=== RUN TestMetricsRequest +--- PASS: TestMetricsRequest (0.00s) +=== RUN TestMetricsExporter_InvalidName +--- PASS: TestMetricsExporter_InvalidName (0.00s) +=== RUN TestMetricsExporter_NilLogger +--- PASS: TestMetricsExporter_NilLogger (0.00s) +=== RUN TestMetricsExporter_NilPushMetricsData +--- PASS: TestMetricsExporter_NilPushMetricsData (0.00s) +=== RUN TestMetricsExporter_Default +--- PASS: TestMetricsExporter_Default (0.00s) +=== RUN TestMetricsExporter_Default_ReturnError +--- PASS: TestMetricsExporter_Default_ReturnError (0.00s) +=== RUN TestMetricsExporter_WithRecordMetrics +--- PASS: TestMetricsExporter_WithRecordMetrics (0.00s) +=== RUN TestMetricsExporter_WithRecordMetrics_NonZeroDropped +--- PASS: TestMetricsExporter_WithRecordMetrics_NonZeroDropped (0.00s) +=== RUN TestMetricsExporter_WithRecordMetrics_ReturnError +--- PASS: TestMetricsExporter_WithRecordMetrics_ReturnError (0.00s) +=== RUN TestMetricsExporter_WithSpan +--- PASS: TestMetricsExporter_WithSpan (0.00s) +=== RUN TestMetricsExporter_WithSpan_NonZeroDropped +--- PASS: TestMetricsExporter_WithSpan_NonZeroDropped (0.00s) +=== RUN TestMetricsExporter_WithSpan_ReturnError +--- PASS: TestMetricsExporter_WithSpan_ReturnError (0.00s) +=== RUN TestMetricsExporter_WithShutdown +--- PASS: TestMetricsExporter_WithShutdown (0.00s) +=== RUN TestMetricsExporter_WithResourceToTelemetryConversionDisabled +--- PASS: TestMetricsExporter_WithResourceToTelemetryConversionDisabled (0.00s) +=== RUN TestMetricsExporter_WithResourceToTelemetryConversionEbabled +--- PASS: TestMetricsExporter_WithResourceToTelemetryConversionEbabled (0.00s) +=== RUN TestMetricsExporter_WithShutdown_ReturnError +--- PASS: TestMetricsExporter_WithShutdown_ReturnError (0.00s) +=== RUN TestQueuedRetry_DropOnPermanentError +--- PASS: TestQueuedRetry_DropOnPermanentError (0.00s) +=== RUN TestQueuedRetry_DropOnNoRetry +--- PASS: TestQueuedRetry_DropOnNoRetry (0.01s) +=== RUN TestQueuedRetry_PartialError +--- PASS: TestQueuedRetry_PartialError (0.00s) +=== RUN TestQueuedRetry_StopWhileWaiting +--- PASS: TestQueuedRetry_StopWhileWaiting (0.00s) +=== RUN TestQueuedRetry_DoNotPreserveCancellation +--- PASS: TestQueuedRetry_DoNotPreserveCancellation (0.00s) +=== RUN TestQueuedRetry_MaxElapsedTime +--- PASS: TestQueuedRetry_MaxElapsedTime (0.12s) +=== RUN TestQueuedRetry_ThrottleError +--- PASS: TestQueuedRetry_ThrottleError (0.10s) +=== RUN TestQueuedRetry_RetryOnError +--- PASS: TestQueuedRetry_RetryOnError (0.00s) +=== RUN TestQueuedRetry_DropOnFull +--- PASS: TestQueuedRetry_DropOnFull (0.00s) +=== RUN TestQueuedRetryHappyPath +--- PASS: TestQueuedRetryHappyPath (0.02s) +=== RUN TestNoCancellationContext +--- PASS: TestNoCancellationContext (0.00s) +=== RUN TestConvertResourceToLabels +--- PASS: TestConvertResourceToLabels (0.00s) +=== RUN TestConvertResourceToLabelsAllDataTypesEmptyDataPoint +--- PASS: TestConvertResourceToLabelsAllDataTypesEmptyDataPoint (0.00s) +=== RUN TestTracesRequest +--- PASS: TestTracesRequest (0.00s) +=== RUN TestTraceExporter_InvalidName +--- PASS: TestTraceExporter_InvalidName (0.00s) +=== RUN TestTraceExporter_NilLogger +--- PASS: TestTraceExporter_NilLogger (0.00s) +=== RUN TestTraceExporter_NilPushTraceData +--- PASS: TestTraceExporter_NilPushTraceData (0.00s) +=== RUN TestTraceExporter_Default +--- PASS: TestTraceExporter_Default (0.00s) +=== RUN TestTraceExporter_Default_ReturnError +--- PASS: TestTraceExporter_Default_ReturnError (0.00s) +=== RUN TestTraceExporter_WithRecordMetrics +--- PASS: TestTraceExporter_WithRecordMetrics (0.00s) +=== RUN TestTraceExporter_WithRecordMetrics_NonZeroDropped +--- PASS: TestTraceExporter_WithRecordMetrics_NonZeroDropped (0.00s) +=== RUN TestTraceExporter_WithRecordMetrics_ReturnError +--- PASS: TestTraceExporter_WithRecordMetrics_ReturnError (0.00s) +=== RUN TestTraceExporter_WithSpan +--- PASS: TestTraceExporter_WithSpan (0.00s) +=== RUN TestTraceExporter_WithSpan_NonZeroDropped +--- PASS: TestTraceExporter_WithSpan_NonZeroDropped (0.00s) +=== RUN TestTraceExporter_WithSpan_ReturnError +--- PASS: TestTraceExporter_WithSpan_ReturnError (0.00s) +=== RUN TestTraceExporter_WithShutdown +--- PASS: TestTraceExporter_WithShutdown (0.00s) +=== RUN TestTraceExporter_WithShutdown_ReturnError +--- PASS: TestTraceExporter_WithShutdown_ReturnError (0.00s) +PASS +ok go.opentelemetry.io/collector/exporter/exporterhelper (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsExporter +--- PASS: TestCreateMetricsExporter (0.00s) +=== RUN TestCreateTraceExporter +--- PASS: TestCreateTraceExporter (0.00s) +=== RUN TestCreateLogsExporter +--- PASS: TestCreateLogsExporter (0.00s) +=== RUN TestFileTraceExporterNoErrors +--- PASS: TestFileTraceExporterNoErrors (0.01s) +=== RUN TestFileMetricsExporterNoErrors +--- PASS: TestFileMetricsExporterNoErrors (0.01s) +=== RUN TestFileLogsExporterNoErrors +--- PASS: TestFileLogsExporterNoErrors (0.00s) +=== RUN TestFileLogsExporterErrors +=== RUN TestFileLogsExporterErrors/opening +=== RUN TestFileLogsExporterErrors/resource +=== RUN TestFileLogsExporterErrors/log_start +=== RUN TestFileLogsExporterErrors/logs +--- PASS: TestFileLogsExporterErrors (0.00s) + --- PASS: TestFileLogsExporterErrors/opening (0.00s) + --- PASS: TestFileLogsExporterErrors/resource (0.00s) + --- PASS: TestFileLogsExporterErrors/log_start (0.00s) + --- PASS: TestFileLogsExporterErrors/logs (0.00s) +PASS +ok go.opentelemetry.io/collector/exporter/fileexporter (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestNew +=== RUN TestNew/createExporter +=== RUN TestNew/createExporterWithHeaders +=== RUN TestNew/createBasicSecureExporter +=== RUN TestNew/createSecureExporterWithClientTLS +=== RUN TestNew/createSecureExporterWithKeepAlive +=== RUN TestNew/createSecureExporterWithMissingFile +--- PASS: TestNew (0.03s) + --- PASS: TestNew/createExporter (0.01s) + --- PASS: TestNew/createExporterWithHeaders (0.00s) + --- PASS: TestNew/createBasicSecureExporter (0.00s) + --- PASS: TestNew/createSecureExporterWithClientTLS (0.01s) + --- PASS: TestNew/createSecureExporterWithKeepAlive (0.00s) + --- PASS: TestNew/createSecureExporterWithMissingFile (0.00s) +=== RUN TestMutualTLS +--- PASS: TestMutualTLS (0.07s) +=== RUN TestConnectionStateChange +--- PASS: TestConnectionStateChange (0.02s) +=== RUN TestConnectionReporterEndsOnStopped +--- PASS: TestConnectionReporterEndsOnStopped (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsExporter +--- PASS: TestCreateMetricsExporter (0.00s) +=== RUN TestCreateInstanceViaFactory +--- PASS: TestCreateInstanceViaFactory (0.00s) +=== RUN TestProcessorMetrics +--- PASS: TestProcessorMetrics (0.00s) +PASS +ok go.opentelemetry.io/collector/exporter/jaegerexporter (cached) +=== RUN TestAuthentication +=== RUN TestAuthentication/#00 +=== RUN TestAuthentication/#01 +=== RUN TestAuthentication/#02 +=== RUN TestAuthentication/#03 +=== RUN TestAuthentication/#04 +=== RUN TestAuthentication/#05 +=== RUN TestAuthentication/#06 +=== RUN TestAuthentication/#07 +=== RUN TestAuthentication/#08 +=== RUN TestAuthentication/#09 +=== RUN TestAuthentication/#10 +--- PASS: TestAuthentication (0.00s) + --- PASS: TestAuthentication/#00 (0.00s) + --- PASS: TestAuthentication/#01 (0.00s) + --- PASS: TestAuthentication/#02 (0.00s) + --- PASS: TestAuthentication/#03 (0.00s) + --- PASS: TestAuthentication/#04 (0.00s) + --- PASS: TestAuthentication/#05 (0.00s) + --- PASS: TestAuthentication/#06 (0.00s) + --- PASS: TestAuthentication/#07 (0.00s) + --- PASS: TestAuthentication/#08 (0.00s) + --- PASS: TestAuthentication/#09 (0.00s) + --- PASS: TestAuthentication/#10 (0.00s) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateTracesExporter +--- PASS: TestCreateTracesExporter (0.00s) +=== RUN TestCreateMetricsExport +--- PASS: TestCreateMetricsExport (0.01s) +=== RUN TestCreateTracesExporter_err +--- PASS: TestCreateTracesExporter_err (0.95s) +=== RUN TestCreateMetricsExporter_err +--- PASS: TestCreateMetricsExporter_err (0.76s) +=== RUN TestWithMarshallers +=== RUN TestWithMarshallers/custom_encoding +=== RUN TestWithMarshallers/default_encoding +--- PASS: TestWithMarshallers (0.01s) + --- PASS: TestWithMarshallers/custom_encoding (0.00s) + --- PASS: TestWithMarshallers/default_encoding (0.00s) +=== RUN TestJaegerMarshaller +=== RUN TestJaegerMarshaller/jaeger_proto +=== RUN TestJaegerMarshaller/jaeger_json +--- PASS: TestJaegerMarshaller (0.00s) + --- PASS: TestJaegerMarshaller/jaeger_proto (0.00s) + --- PASS: TestJaegerMarshaller/jaeger_json (0.00s) +=== RUN TestJaegerMarshaller_error_covert_traceID +--- PASS: TestJaegerMarshaller_error_covert_traceID (0.00s) +=== RUN TestNewExporter_err_version +--- PASS: TestNewExporter_err_version (0.00s) +=== RUN TestNewExporter_err_encoding +--- PASS: TestNewExporter_err_encoding (0.00s) +=== RUN TestNewMetricsExporter_err_version +--- PASS: TestNewMetricsExporter_err_version (0.00s) +=== RUN TestNewMetricsExporter_err_encoding +--- PASS: TestNewMetricsExporter_err_encoding (0.00s) +=== RUN TestNewMetricsExporter_err_traces_encoding +--- PASS: TestNewMetricsExporter_err_traces_encoding (0.00s) +=== RUN TestNewExporter_err_auth_type +--- PASS: TestNewExporter_err_auth_type (0.00s) +=== RUN TestTraceDataPusher +--- PASS: TestTraceDataPusher (0.00s) +=== RUN TestTraceDataPusher_err +--- PASS: TestTraceDataPusher_err (0.00s) +=== RUN TestTraceDataPusher_marshall_error +--- PASS: TestTraceDataPusher_marshall_error (0.00s) +=== RUN TestMetricsDataPusher +--- PASS: TestMetricsDataPusher (0.00s) +=== RUN TestMetricsDataPusher_err +--- PASS: TestMetricsDataPusher_err (0.00s) +=== RUN TestMetricsDataPusher_marshal_error +--- PASS: TestMetricsDataPusher_marshal_error (0.00s) +=== RUN TestDefaultTracesMarshallers +=== RUN TestDefaultTracesMarshallers/otlp_proto +=== RUN TestDefaultTracesMarshallers/jaeger_proto +=== RUN TestDefaultTracesMarshallers/jaeger_json +--- PASS: TestDefaultTracesMarshallers (0.00s) + --- PASS: TestDefaultTracesMarshallers/otlp_proto (0.00s) + --- PASS: TestDefaultTracesMarshallers/jaeger_proto (0.00s) + --- PASS: TestDefaultTracesMarshallers/jaeger_json (0.00s) +=== RUN TestDefaultMetricsMarshallers +=== RUN TestDefaultMetricsMarshallers/otlp_proto +--- PASS: TestDefaultMetricsMarshallers (0.00s) + --- PASS: TestDefaultMetricsMarshallers/otlp_proto (0.00s) +=== RUN TestOTLPTracesPbMarshaller +--- PASS: TestOTLPTracesPbMarshaller (0.00s) +=== RUN TestOTLPMetricsPbMarshaller +--- PASS: TestOTLPMetricsPbMarshaller (0.00s) +PASS +ok go.opentelemetry.io/collector/exporter/kafkaexporter (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsExporter +--- PASS: TestCreateMetricsExporter (0.00s) +=== RUN TestCreateTraceExporter +--- PASS: TestCreateTraceExporter (0.01s) +=== RUN TestCreateLogsExporter +--- PASS: TestCreateLogsExporter (0.00s) +=== RUN TestLoggingTraceExporterNoErrors +--- PASS: TestLoggingTraceExporterNoErrors (0.00s) +=== RUN TestLoggingMetricsExporterNoErrors +--- PASS: TestLoggingMetricsExporterNoErrors (0.00s) +=== RUN TestLoggingLogsExporterNoErrors +--- PASS: TestLoggingLogsExporterNoErrors (0.00s) +=== RUN TestNestedArraySerializesCorrectly +--- PASS: TestNestedArraySerializesCorrectly (0.00s) +PASS +ok go.opentelemetry.io/collector/exporter/loggingexporter (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateTraceExporter +=== RUN TestCreateTraceExporter/NoEndpoint +=== RUN TestCreateTraceExporter/ZeroNumWorkers +=== RUN TestCreateTraceExporter/UseSecure +=== RUN TestCreateTraceExporter/Keepalive +=== RUN TestCreateTraceExporter/Compression +=== RUN TestCreateTraceExporter/Headers +=== RUN TestCreateTraceExporter/CompressionError +=== RUN TestCreateTraceExporter/CaCert +=== RUN TestCreateTraceExporter/CertPemFileError +--- PASS: TestCreateTraceExporter (0.52s) + --- PASS: TestCreateTraceExporter/NoEndpoint (0.00s) + --- PASS: TestCreateTraceExporter/ZeroNumWorkers (0.00s) + --- PASS: TestCreateTraceExporter/UseSecure (0.01s) + --- PASS: TestCreateTraceExporter/Keepalive (0.01s) + --- PASS: TestCreateTraceExporter/Compression (0.00s) + --- PASS: TestCreateTraceExporter/Headers (0.01s) + --- PASS: TestCreateTraceExporter/CompressionError (0.00s) + --- PASS: TestCreateTraceExporter/CaCert (0.01s) + --- PASS: TestCreateTraceExporter/CertPemFileError (0.00s) +=== RUN TestSendTraces +--- PASS: TestSendTraces (0.03s) +=== RUN TestSendTraces_NoBackend +--- PASS: TestSendTraces_NoBackend (0.98s) +=== RUN TestSendTraces_AfterStop +--- PASS: TestSendTraces_AfterStop (0.00s) +=== RUN TestSendMetrics +--- PASS: TestSendMetrics (0.02s) +=== RUN TestSendMetrics_NoBackend +--- PASS: TestSendMetrics_NoBackend (0.87s) +=== RUN TestSendMetrics_AfterStop +--- PASS: TestSendMetrics_AfterStop (0.00s) +PASS +ok go.opentelemetry.io/collector/exporter/opencensusexporter (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsExporter +--- PASS: TestCreateMetricsExporter (0.01s) +=== RUN TestCreateTraceExporter +=== RUN TestCreateTraceExporter/NoEndpoint +=== RUN TestCreateTraceExporter/UseSecure +=== RUN TestCreateTraceExporter/Keepalive +=== RUN TestCreateTraceExporter/Compression +=== RUN TestCreateTraceExporter/Headers +=== RUN TestCreateTraceExporter/NumConsumers +=== RUN TestCreateTraceExporter/CompressionError +=== RUN TestCreateTraceExporter/CaCert +=== RUN TestCreateTraceExporter/CertPemFileError +--- PASS: TestCreateTraceExporter (0.02s) + --- PASS: TestCreateTraceExporter/NoEndpoint (0.00s) + --- PASS: TestCreateTraceExporter/UseSecure (0.00s) + --- PASS: TestCreateTraceExporter/Keepalive (0.01s) + --- PASS: TestCreateTraceExporter/Compression (0.00s) + --- PASS: TestCreateTraceExporter/Headers (0.00s) + --- PASS: TestCreateTraceExporter/NumConsumers (0.00s) + --- PASS: TestCreateTraceExporter/CompressionError (0.00s) + --- PASS: TestCreateTraceExporter/CaCert (0.00s) + --- PASS: TestCreateTraceExporter/CertPemFileError (0.00s) +=== RUN TestCreateLogsExporter +--- PASS: TestCreateLogsExporter (0.01s) +=== RUN TestSendTraces +--- PASS: TestSendTraces (0.02s) +=== RUN TestSendMetrics +--- PASS: TestSendMetrics (0.02s) +=== RUN TestSendTraceDataServerDownAndUp +--- PASS: TestSendTraceDataServerDownAndUp (4.03s) +=== RUN TestSendTraceDataServerStartWhileRequest +--- PASS: TestSendTraceDataServerStartWhileRequest (2.01s) +=== RUN TestSendLogData +--- PASS: TestSendLogData (0.02s) +PASS +ok go.opentelemetry.io/collector/exporter/otlpexporter (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsExporter +--- PASS: TestCreateMetricsExporter (0.74s) +=== RUN TestCreateTraceExporter +=== RUN TestCreateTraceExporter/NoEndpoint +=== RUN TestCreateTraceExporter/UseSecure +=== RUN TestCreateTraceExporter/Headers +=== RUN TestCreateTraceExporter/CaCert +=== RUN TestCreateTraceExporter/CertPemFileError +--- PASS: TestCreateTraceExporter (0.02s) + --- PASS: TestCreateTraceExporter/NoEndpoint (0.00s) + --- PASS: TestCreateTraceExporter/UseSecure (0.00s) + --- PASS: TestCreateTraceExporter/Headers (0.00s) + --- PASS: TestCreateTraceExporter/CaCert (0.01s) + --- PASS: TestCreateTraceExporter/CertPemFileError (0.00s) +=== RUN TestCreateLogsExporter +--- PASS: TestCreateLogsExporter (0.00s) +=== RUN TestInvalidConfig +--- PASS: TestInvalidConfig (0.00s) +=== RUN TestTraceNoBackend +--- PASS: TestTraceNoBackend (0.01s) +=== RUN TestTraceInvalidUrl +--- PASS: TestTraceInvalidUrl (0.01s) +=== RUN TestTraceError +--- PASS: TestTraceError (0.01s) +=== RUN TestTraceRoundTrip +=== RUN TestTraceRoundTrip/wrongbase +=== RUN TestTraceRoundTrip/onlybase +=== RUN TestTraceRoundTrip/override +--- PASS: TestTraceRoundTrip (0.05s) + --- PASS: TestTraceRoundTrip/wrongbase (0.02s) + --- PASS: TestTraceRoundTrip/onlybase (0.02s) + --- PASS: TestTraceRoundTrip/override (0.02s) +=== RUN TestCompressionOptions +=== RUN TestCompressionOptions/no_compression +=== RUN TestCompressionOptions/gzip +=== RUN TestCompressionOptions/incorrect_compression +--- PASS: TestCompressionOptions (0.04s) + --- PASS: TestCompressionOptions/no_compression (0.02s) + --- PASS: TestCompressionOptions/gzip (0.02s) + --- PASS: TestCompressionOptions/incorrect_compression (0.00s) +=== RUN TestMetricsError +--- PASS: TestMetricsError (0.00s) +=== RUN TestMetricsRoundTrip +=== RUN TestMetricsRoundTrip/wrongbase +=== RUN TestMetricsRoundTrip/onlybase +=== RUN TestMetricsRoundTrip/override +--- PASS: TestMetricsRoundTrip (0.05s) + --- PASS: TestMetricsRoundTrip/wrongbase (0.01s) + --- PASS: TestMetricsRoundTrip/onlybase (0.01s) + --- PASS: TestMetricsRoundTrip/override (0.02s) +=== RUN TestLogsError +--- PASS: TestLogsError (0.01s) +=== RUN TestLogsRoundTrip +=== RUN TestLogsRoundTrip/wrongbase +=== RUN TestLogsRoundTrip/onlybase +=== RUN TestLogsRoundTrip/override +--- PASS: TestLogsRoundTrip (0.05s) + --- PASS: TestLogsRoundTrip/wrongbase (0.01s) + --- PASS: TestLogsRoundTrip/onlybase (0.02s) + --- PASS: TestLogsRoundTrip/override (0.01s) +=== RUN TestErrorResponses +=== RUN TestErrorResponses/400 +=== RUN TestErrorResponses/404 +=== RUN TestErrorResponses/419 +=== RUN TestErrorResponses/503 +=== RUN TestErrorResponses/503-Retry-After +--- PASS: TestErrorResponses (0.02s) + --- PASS: TestErrorResponses/400 (0.00s) + --- PASS: TestErrorResponses/404 (0.00s) + --- PASS: TestErrorResponses/419 (0.00s) + --- PASS: TestErrorResponses/503 (0.00s) + --- PASS: TestErrorResponses/503-Retry-After (0.00s) +PASS +ok go.opentelemetry.io/collector/exporter/otlphttpexporter (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsExporter +--- PASS: TestCreateMetricsExporter (0.00s) +=== RUN TestPrometheusExporter +--- PASS: TestPrometheusExporter (0.00s) +=== RUN TestPrometheusExporter_endToEnd +--- PASS: TestPrometheusExporter_endToEnd (0.03s) +=== RUN TestPrometheusExporter_endToEndWithTimestamps +--- PASS: TestPrometheusExporter_endToEndWithTimestamps (0.02s) +PASS +ok go.opentelemetry.io/collector/exporter/prometheusexporter (cached) +=== RUN Test_loadConfig +--- PASS: Test_loadConfig (0.01s) +=== RUN Test_NewPrwExporter +=== RUN Test_NewPrwExporter/invalid_URL +=== RUN Test_NewPrwExporter/nil_client +=== RUN Test_NewPrwExporter/invalid_labels_case +=== RUN Test_NewPrwExporter/success_case +=== RUN Test_NewPrwExporter/success_case_no_labels +--- PASS: Test_NewPrwExporter (0.00s) + --- PASS: Test_NewPrwExporter/invalid_URL (0.00s) + --- PASS: Test_NewPrwExporter/nil_client (0.00s) + --- PASS: Test_NewPrwExporter/invalid_labels_case (0.00s) + --- PASS: Test_NewPrwExporter/success_case (0.00s) + --- PASS: Test_NewPrwExporter/success_case_no_labels (0.00s) +=== RUN Test_Shutdown +--- PASS: Test_Shutdown (0.00s) +=== RUN Test_export +=== RUN Test_export/success_case +=== RUN Test_export/server_no_response_case +=== RUN Test_export/error_status_code_case +--- PASS: Test_export (0.01s) + --- PASS: Test_export/success_case (0.00s) + --- PASS: Test_export/server_no_response_case (0.00s) + --- PASS: Test_export/error_status_code_case (0.00s) +=== RUN Test_PushMetrics +=== RUN Test_PushMetrics/invalid_type_case +=== RUN Test_PushMetrics/intSum_case +=== RUN Test_PushMetrics/doubleSum_case +=== RUN Test_PushMetrics/doubleGauge_case +=== RUN Test_PushMetrics/intGauge_case +=== RUN Test_PushMetrics/intHistogram_case +=== RUN Test_PushMetrics/doubleHistogram_case +=== RUN Test_PushMetrics/doubleSummary_case +=== RUN Test_PushMetrics/unmatchedBoundBucketIntHist_case +=== RUN Test_PushMetrics/unmatchedBoundBucketDoubleHist_case +=== RUN Test_PushMetrics/5xx_case +=== RUN Test_PushMetrics/nilDataPointDoubleGauge_case +=== RUN Test_PushMetrics/nilDataPointIntGauge_case +=== RUN Test_PushMetrics/nilDataPointDoubleSum_case +=== RUN Test_PushMetrics/nilDataPointIntSum_case +=== RUN Test_PushMetrics/nilDataPointDoubleHistogram_case +=== RUN Test_PushMetrics/nilDataPointIntHistogram_case +=== RUN Test_PushMetrics/nilDataPointDoubleSummary_case +--- PASS: Test_PushMetrics (0.03s) + --- PASS: Test_PushMetrics/invalid_type_case (0.00s) + --- PASS: Test_PushMetrics/intSum_case (0.00s) + --- PASS: Test_PushMetrics/doubleSum_case (0.00s) + --- PASS: Test_PushMetrics/doubleGauge_case (0.00s) + --- PASS: Test_PushMetrics/intGauge_case (0.00s) + --- PASS: Test_PushMetrics/intHistogram_case (0.00s) + --- PASS: Test_PushMetrics/doubleHistogram_case (0.00s) + --- PASS: Test_PushMetrics/doubleSummary_case (0.00s) + --- PASS: Test_PushMetrics/unmatchedBoundBucketIntHist_case (0.00s) + --- PASS: Test_PushMetrics/unmatchedBoundBucketDoubleHist_case (0.00s) + --- PASS: Test_PushMetrics/5xx_case (0.00s) + --- PASS: Test_PushMetrics/nilDataPointDoubleGauge_case (0.00s) + --- PASS: Test_PushMetrics/nilDataPointIntGauge_case (0.00s) + --- PASS: Test_PushMetrics/nilDataPointDoubleSum_case (0.00s) + --- PASS: Test_PushMetrics/nilDataPointIntSum_case (0.00s) + --- PASS: Test_PushMetrics/nilDataPointDoubleHistogram_case (0.00s) + --- PASS: Test_PushMetrics/nilDataPointIntHistogram_case (0.00s) + --- PASS: Test_PushMetrics/nilDataPointDoubleSummary_case (0.00s) +=== RUN Test_validateAndSanitizeExternalLabels +=== RUN Test_validateAndSanitizeExternalLabels/success_case_no_labels +=== RUN Test_validateAndSanitizeExternalLabels/success_case_with_labels +=== RUN Test_validateAndSanitizeExternalLabels/success_case_2_with_labels +=== RUN Test_validateAndSanitizeExternalLabels/success_case_with_sanitized_labels +=== RUN Test_validateAndSanitizeExternalLabels/fail_case_empty_label +--- PASS: Test_validateAndSanitizeExternalLabels (0.00s) + --- PASS: Test_validateAndSanitizeExternalLabels/success_case_no_labels (0.00s) + --- PASS: Test_validateAndSanitizeExternalLabels/success_case_with_labels (0.00s) + --- PASS: Test_validateAndSanitizeExternalLabels/success_case_2_with_labels (0.00s) + --- PASS: Test_validateAndSanitizeExternalLabels/success_case_with_sanitized_labels (0.00s) + --- PASS: Test_validateAndSanitizeExternalLabels/fail_case_empty_label (0.00s) +=== RUN Test_createDefaultConfig +--- PASS: Test_createDefaultConfig (0.00s) +=== RUN Test_createMetricsExporter +=== RUN Test_createMetricsExporter/success_case +=== RUN Test_createMetricsExporter/fail_case +=== RUN Test_createMetricsExporter/invalid_config_case +=== RUN Test_createMetricsExporter/invalid_tls_config_case +--- PASS: Test_createMetricsExporter (0.00s) + --- PASS: Test_createMetricsExporter/success_case (0.00s) + --- PASS: Test_createMetricsExporter/fail_case (0.00s) + --- PASS: Test_createMetricsExporter/invalid_config_case (0.00s) + --- PASS: Test_createMetricsExporter/invalid_tls_config_case (0.00s) +=== RUN Test_validateMetrics +=== RUN Test_validateMetrics/valid_valid_IntHistogram +=== RUN Test_validateMetrics/valid_valid_DoubleHistogram +=== RUN Test_validateMetrics/valid_valid_DoubleSummary +=== RUN Test_validateMetrics/valid_valid_IntGauge +=== RUN Test_validateMetrics/valid_valid_DoubleGauge +=== RUN Test_validateMetrics/valid_valid_IntSum +=== RUN Test_validateMetrics/valid_valid_DoubleSum +=== RUN Test_validateMetrics/invalid_nil +=== RUN Test_validateMetrics/valid_empty +=== RUN Test_validateMetrics/valid_noMatchIntGauge +=== RUN Test_validateMetrics/valid_notMatchIntSum +=== RUN Test_validateMetrics/valid_notMatchDoubleSum +=== RUN Test_validateMetrics/valid_notMatchIntHistogram +=== RUN Test_validateMetrics/valid_notMatchDoubleHistogram +=== RUN Test_validateMetrics/valid_invalidIntSum +=== RUN Test_validateMetrics/valid_nil +=== RUN Test_validateMetrics/valid_invalidDoubleHistogram +=== RUN Test_validateMetrics/valid_invalidDoubleSum +=== RUN Test_validateMetrics/valid_notMatchDoubleSummary +=== RUN Test_validateMetrics/valid_invalidIntHistogram +=== RUN Test_validateMetrics/valid_notMatchDoubleGauge +--- PASS: Test_validateMetrics (0.00s) + --- PASS: Test_validateMetrics/valid_valid_IntHistogram (0.00s) + --- PASS: Test_validateMetrics/valid_valid_DoubleHistogram (0.00s) + --- PASS: Test_validateMetrics/valid_valid_DoubleSummary (0.00s) + --- PASS: Test_validateMetrics/valid_valid_IntGauge (0.00s) + --- PASS: Test_validateMetrics/valid_valid_DoubleGauge (0.00s) + --- PASS: Test_validateMetrics/valid_valid_IntSum (0.00s) + --- PASS: Test_validateMetrics/valid_valid_DoubleSum (0.00s) + --- PASS: Test_validateMetrics/invalid_nil (0.00s) + --- PASS: Test_validateMetrics/valid_empty (0.00s) + --- PASS: Test_validateMetrics/valid_noMatchIntGauge (0.00s) + --- PASS: Test_validateMetrics/valid_notMatchIntSum (0.00s) + --- PASS: Test_validateMetrics/valid_notMatchDoubleSum (0.00s) + --- PASS: Test_validateMetrics/valid_notMatchIntHistogram (0.00s) + --- PASS: Test_validateMetrics/valid_notMatchDoubleHistogram (0.00s) + --- PASS: Test_validateMetrics/valid_invalidIntSum (0.00s) + --- PASS: Test_validateMetrics/valid_nil (0.00s) + --- PASS: Test_validateMetrics/valid_invalidDoubleHistogram (0.00s) + --- PASS: Test_validateMetrics/valid_invalidDoubleSum (0.00s) + --- PASS: Test_validateMetrics/valid_notMatchDoubleSummary (0.00s) + --- PASS: Test_validateMetrics/valid_invalidIntHistogram (0.00s) + --- PASS: Test_validateMetrics/valid_notMatchDoubleGauge (0.00s) +=== RUN Test_addSample +=== RUN Test_addSample/nil_case +=== RUN Test_addSample/two_points_same_ts_same_metric +=== RUN Test_addSample/two_points_different_ts_same_metric +--- PASS: Test_addSample (0.00s) + --- PASS: Test_addSample/nil_case (0.00s) + --- PASS: Test_addSample/two_points_same_ts_same_metric (0.00s) + --- PASS: Test_addSample/two_points_different_ts_same_metric (0.00s) +=== RUN Test_timeSeriesSignature +=== RUN Test_timeSeriesSignature/int64_signature +=== RUN Test_timeSeriesSignature/histogram_signature +=== RUN Test_timeSeriesSignature/unordered_signature +=== RUN Test_timeSeriesSignature/nil_case +--- PASS: Test_timeSeriesSignature (0.00s) + --- PASS: Test_timeSeriesSignature/int64_signature (0.00s) + --- PASS: Test_timeSeriesSignature/histogram_signature (0.00s) + --- PASS: Test_timeSeriesSignature/unordered_signature (0.00s) + --- PASS: Test_timeSeriesSignature/nil_case (0.00s) +=== RUN Test_createLabelSet +=== RUN Test_createLabelSet/labels_clean +=== RUN Test_createLabelSet/labels_duplicate_in_extras +2021/02/25 17:05:17 label test_label11 is overwritten. Check if Prometheus reserved labels are used. +=== RUN Test_createLabelSet/labels_dirty +=== RUN Test_createLabelSet/no_original_case +=== RUN Test_createLabelSet/empty_extra_case +=== RUN Test_createLabelSet/single_left_over_case +=== RUN Test_createLabelSet/valid_external_labels +=== RUN Test_createLabelSet/overwritten_external_labels +--- PASS: Test_createLabelSet (0.00s) + --- PASS: Test_createLabelSet/labels_clean (0.00s) + --- PASS: Test_createLabelSet/labels_duplicate_in_extras (0.00s) + --- PASS: Test_createLabelSet/labels_dirty (0.00s) + --- PASS: Test_createLabelSet/no_original_case (0.00s) + --- PASS: Test_createLabelSet/empty_extra_case (0.00s) + --- PASS: Test_createLabelSet/single_left_over_case (0.00s) + --- PASS: Test_createLabelSet/valid_external_labels (0.00s) + --- PASS: Test_createLabelSet/overwritten_external_labels (0.00s) +=== RUN Test_getPromMetricName +=== RUN Test_getPromMetricName/nil_case +=== RUN Test_getPromMetricName/normal_case +=== RUN Test_getPromMetricName/empty_namespace +=== RUN Test_getPromMetricName/total_suffix +=== RUN Test_getPromMetricName/dirty_string +--- PASS: Test_getPromMetricName (0.00s) + --- PASS: Test_getPromMetricName/nil_case (0.00s) + --- PASS: Test_getPromMetricName/normal_case (0.00s) + --- PASS: Test_getPromMetricName/empty_namespace (0.00s) + --- PASS: Test_getPromMetricName/total_suffix (0.00s) + --- PASS: Test_getPromMetricName/dirty_string (0.00s) +=== RUN Test_batchTimeSeries +=== RUN Test_batchTimeSeries/no_timeseries +=== RUN Test_batchTimeSeries/normal_case +=== RUN Test_batchTimeSeries/two_requests +--- PASS: Test_batchTimeSeries (0.00s) + --- PASS: Test_batchTimeSeries/no_timeseries (0.00s) + --- PASS: Test_batchTimeSeries/normal_case (0.00s) + --- PASS: Test_batchTimeSeries/two_requests (0.00s) +PASS +ok go.opentelemetry.io/collector/exporter/prometheusremotewriteexporter (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateInstanceViaFactory +--- PASS: TestCreateInstanceViaFactory (0.00s) +=== RUN TestZipkinExporter_roundtripJSON +--- PASS: TestZipkinExporter_roundtripJSON (0.02s) +=== RUN TestZipkinExporter_invalidFormat +--- PASS: TestZipkinExporter_invalidFormat (0.00s) +=== RUN TestZipkinExporter_roundtripProto +--- PASS: TestZipkinExporter_roundtripProto (0.01s) +PASS +ok go.opentelemetry.io/collector/exporter/zipkinexporter (cached) +=== RUN TestNewFactory +--- PASS: TestNewFactory (0.00s) +=== RUN TestNewFactory_WithConstructors +--- PASS: TestNewFactory_WithConstructors (0.00s) +PASS +ok go.opentelemetry.io/collector/extension/extensionhelper (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestFactory_CreateDefaultConfig +--- PASS: TestFactory_CreateDefaultConfig (0.00s) +=== RUN TestFactory_CreateExtension +--- PASS: TestFactory_CreateExtension (0.00s) +PASS +ok go.opentelemetry.io/collector/extension/fluentbitextension (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestFactory_CreateDefaultConfig +--- PASS: TestFactory_CreateDefaultConfig (0.00s) +=== RUN TestFactory_CreateExtension +--- PASS: TestFactory_CreateExtension (0.00s) +=== RUN TestFactory_CreateExtensionOnlyOnce +--- PASS: TestFactory_CreateExtensionOnlyOnce (0.00s) +=== RUN TestHealthCheckExtensionUsage +--- PASS: TestHealthCheckExtensionUsage (0.01s) +=== RUN TestHealthCheckExtensionPortAlreadyInUse +--- PASS: TestHealthCheckExtensionPortAlreadyInUse (0.00s) +=== RUN TestHealthCheckMultipleStarts +--- PASS: TestHealthCheckMultipleStarts (0.00s) +=== RUN TestHealthCheckMultipleShutdowns +--- PASS: TestHealthCheckMultipleShutdowns (0.00s) +=== RUN TestHealthCheckShutdownWithoutStart +--- PASS: TestHealthCheckShutdownWithoutStart (0.00s) +PASS +ok go.opentelemetry.io/collector/extension/healthcheckextension (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestFactory_CreateDefaultConfig +--- PASS: TestFactory_CreateDefaultConfig (0.00s) +=== RUN TestFactory_CreateExtension +--- PASS: TestFactory_CreateExtension (0.00s) +=== RUN TestFactory_CreateExtensionOnlyOnce +--- PASS: TestFactory_CreateExtensionOnlyOnce (0.00s) +=== RUN TestPerformanceProfilerExtensionUsage +--- PASS: TestPerformanceProfilerExtensionUsage (0.02s) +=== RUN TestPerformanceProfilerExtensionPortAlreadyInUse +--- PASS: TestPerformanceProfilerExtensionPortAlreadyInUse (0.00s) +=== RUN TestPerformanceProfilerMultipleStarts +--- PASS: TestPerformanceProfilerMultipleStarts (0.00s) +=== RUN TestPerformanceProfilerMultipleShutdowns +--- PASS: TestPerformanceProfilerMultipleShutdowns (0.00s) +=== RUN TestPerformanceProfilerShutdownWithoutStart +--- PASS: TestPerformanceProfilerShutdownWithoutStart (0.00s) +PASS +ok go.opentelemetry.io/collector/extension/pprofextension (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestFactory_CreateDefaultConfig +--- PASS: TestFactory_CreateDefaultConfig (0.00s) +=== RUN TestFactory_CreateExtension +--- PASS: TestFactory_CreateExtension (0.00s) +=== RUN TestFactory_CreateExtensionOnlyOnce +--- PASS: TestFactory_CreateExtensionOnlyOnce (0.00s) +=== RUN TestZPagesExtensionUsage +--- PASS: TestZPagesExtensionUsage (0.01s) +=== RUN TestZPagesExtensionPortAlreadyInUse +--- PASS: TestZPagesExtensionPortAlreadyInUse (0.00s) +=== RUN TestZPagesMultipleStarts +--- PASS: TestZPagesMultipleStarts (0.00s) +=== RUN TestZPagesMultipleShutdowns +--- PASS: TestZPagesMultipleShutdowns (0.00s) +=== RUN TestZPagesShutdownWithoutStart +--- PASS: TestZPagesShutdownWithoutStart (0.00s) +PASS +ok go.opentelemetry.io/collector/extension/zpagesextension (cached) +? go.opentelemetry.io/collector/internal [no test files] +? go.opentelemetry.io/collector/internal/collector/telemetry [no test files] +=== RUN TestNewSpanID +--- PASS: TestNewSpanID (0.00s) +=== RUN TestSpanIDHexString +--- PASS: TestSpanIDHexString (0.00s) +=== RUN TestSpanIDEqual +--- PASS: TestSpanIDEqual (0.00s) +=== RUN TestSpanIDMarshal +--- PASS: TestSpanIDMarshal (0.00s) +=== RUN TestSpanIDMarshalJSON +--- PASS: TestSpanIDMarshalJSON (0.00s) +=== RUN TestSpanIDUnmarshal +--- PASS: TestSpanIDUnmarshal (0.00s) +=== RUN TestSpanIDUnmarshalJSON +--- PASS: TestSpanIDUnmarshalJSON (0.00s) +=== RUN TestNewTraceID +--- PASS: TestNewTraceID (0.00s) +=== RUN TestTraceIDHexString +--- PASS: TestTraceIDHexString (0.00s) +=== RUN TestTraceIDEqual +--- PASS: TestTraceIDEqual (0.00s) +=== RUN TestTraceIDMarshal +--- PASS: TestTraceIDMarshal (0.00s) +=== RUN TestTraceIDMarshalJSON +--- PASS: TestTraceIDMarshalJSON (0.00s) +=== RUN TestTraceIDUnmarshal +--- PASS: TestTraceIDUnmarshal (0.00s) +=== RUN TestTraceIDUnmarshalJSON +--- PASS: TestTraceIDUnmarshalJSON (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/data (cached) +=== RUN TestGenDefault +--- PASS: TestGenDefault (0.00s) +=== RUN TestDoubleHistogramFunctions +--- PASS: TestDoubleHistogramFunctions (0.00s) +=== RUN TestIntHistogramFunctions +--- PASS: TestIntHistogramFunctions (0.00s) +=== RUN TestGenDoubleHistogram +--- PASS: TestGenDoubleHistogram (0.00s) +=== RUN TestGenDoubleGauge +--- PASS: TestGenDoubleGauge (0.00s) +=== RUN TestGenerateMetricDatas +--- PASS: TestGenerateMetricDatas (0.01s) +=== RUN TestPICTtoCfg +=== RUN TestPICTtoCfg/none +=== RUN TestPICTtoCfg/one +=== RUN TestPICTtoCfg/many +--- PASS: TestPICTtoCfg (0.00s) + --- PASS: TestPICTtoCfg/none (0.00s) + --- PASS: TestPICTtoCfg/one (0.00s) + --- PASS: TestPICTtoCfg/many (0.00s) +=== RUN TestGenerateResource +--- PASS: TestGenerateResource (0.00s) +=== RUN TestGenerateParentSpan +--- PASS: TestGenerateParentSpan (0.00s) +=== RUN TestGenerateChildSpan +--- PASS: TestGenerateChildSpan (0.00s) +=== RUN TestGenerateSpans +--- PASS: TestGenerateSpans (0.02s) +=== RUN TestGenerateTraces +--- PASS: TestGenerateTraces (0.25s) +PASS +ok go.opentelemetry.io/collector/internal/goldendataset (cached) +=== RUN TestHTTPClientCompression +=== RUN TestHTTPClientCompression/NoCompression +=== RUN TestHTTPClientCompression/ValidGzip +--- PASS: TestHTTPClientCompression (0.06s) + --- PASS: TestHTTPClientCompression/NoCompression (0.04s) + --- PASS: TestHTTPClientCompression/ValidGzip (0.02s) +=== RUN TestHTTPContentDecompressionHandler +=== RUN TestHTTPContentDecompressionHandler/NoCompression +=== RUN TestHTTPContentDecompressionHandler/ValidGzip +=== RUN TestHTTPContentDecompressionHandler/ValidZlib +=== RUN TestHTTPContentDecompressionHandler/InvalidGzip +=== RUN TestHTTPContentDecompressionHandler/InvalidZlib +--- PASS: TestHTTPContentDecompressionHandler (0.08s) + --- PASS: TestHTTPContentDecompressionHandler/NoCompression (0.01s) + --- PASS: TestHTTPContentDecompressionHandler/ValidGzip (0.02s) + --- PASS: TestHTTPContentDecompressionHandler/ValidZlib (0.02s) + --- PASS: TestHTTPContentDecompressionHandler/InvalidGzip (0.01s) + --- PASS: TestHTTPContentDecompressionHandler/InvalidZlib (0.01s) +PASS +ok go.opentelemetry.io/collector/internal/middleware (cached) +testing: warning: no tests to run +PASS +ok go.opentelemetry.io/collector/internal/processor/filterconfig (cached) [no tests to run] +=== RUN TestCompileExprError +--- PASS: TestCompileExprError (0.00s) +=== RUN TestRunExprError +--- PASS: TestRunExprError (0.00s) +=== RUN TestUnknownDataType +--- PASS: TestUnknownDataType (0.00s) +=== RUN TestNilIntGauge +--- PASS: TestNilIntGauge (0.00s) +=== RUN TestNilDoubleGauge +--- PASS: TestNilDoubleGauge (0.00s) +=== RUN TestNilDoubleSum +--- PASS: TestNilDoubleSum (0.00s) +=== RUN TestNilIntSum +--- PASS: TestNilIntSum (0.00s) +=== RUN TestNilIntHistogram +--- PASS: TestNilIntHistogram (0.00s) +=== RUN TestNilDoubleHistogram +--- PASS: TestNilDoubleHistogram (0.00s) +=== RUN TestIntGaugeEmptyDataPoint +--- PASS: TestIntGaugeEmptyDataPoint (0.00s) +=== RUN TestDoubleGaugeEmptyDataPoint +--- PASS: TestDoubleGaugeEmptyDataPoint (0.00s) +=== RUN TestDoubleSumEmptyDataPoint +--- PASS: TestDoubleSumEmptyDataPoint (0.00s) +=== RUN TestIntSumEmptyDataPoint +--- PASS: TestIntSumEmptyDataPoint (0.00s) +=== RUN TestIntHistogramEmptyDataPoint +--- PASS: TestIntHistogramEmptyDataPoint (0.00s) +=== RUN TestDoubleHistogramEmptyDataPoint +--- PASS: TestDoubleHistogramEmptyDataPoint (0.00s) +=== RUN TestMatchIntGaugeByMetricName +--- PASS: TestMatchIntGaugeByMetricName (0.00s) +=== RUN TestNonMatchIntGaugeByMetricName +--- PASS: TestNonMatchIntGaugeByMetricName (0.00s) +=== RUN TestNonMatchIntGaugeDataPointByMetricAndHasLabel +--- PASS: TestNonMatchIntGaugeDataPointByMetricAndHasLabel (0.00s) +=== RUN TestMatchIntGaugeDataPointByMetricAndHasLabel +--- PASS: TestMatchIntGaugeDataPointByMetricAndHasLabel (0.00s) +=== RUN TestMatchIntGaugeDataPointByMetricAndLabelValue +--- PASS: TestMatchIntGaugeDataPointByMetricAndLabelValue (0.00s) +=== RUN TestNonMatchIntGaugeDataPointByMetricAndLabelValue +--- PASS: TestNonMatchIntGaugeDataPointByMetricAndLabelValue (0.00s) +=== RUN TestMatchIntGaugeDataPointByMetricAndSecondPointLabelValue +--- PASS: TestMatchIntGaugeDataPointByMetricAndSecondPointLabelValue (0.00s) +=== RUN TestMatchDoubleGaugeByMetricName +--- PASS: TestMatchDoubleGaugeByMetricName (0.00s) +=== RUN TestNonMatchDoubleGaugeByMetricName +--- PASS: TestNonMatchDoubleGaugeByMetricName (0.00s) +=== RUN TestMatchDoubleSumByMetricName +--- PASS: TestMatchDoubleSumByMetricName (0.00s) +=== RUN TestNonMatchDoubleSumByMetricName +--- PASS: TestNonMatchDoubleSumByMetricName (0.00s) +=== RUN TestMatchIntSumByMetricName +--- PASS: TestMatchIntSumByMetricName (0.00s) +=== RUN TestNonMatchIntSumByMetricName +--- PASS: TestNonMatchIntSumByMetricName (0.00s) +=== RUN TestMatchIntHistogramByMetricName +--- PASS: TestMatchIntHistogramByMetricName (0.00s) +=== RUN TestNonMatchIntHistogramByMetricName +--- PASS: TestNonMatchIntHistogramByMetricName (0.00s) +=== RUN TestMatchDoubleHistogramByMetricName +--- PASS: TestMatchDoubleHistogramByMetricName (0.00s) +=== RUN TestNonMatchDoubleHistogramByMetricName +--- PASS: TestNonMatchDoubleHistogramByMetricName (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filterexpr (cached) +=== RUN TestHelper_AttributeValue +--- PASS: TestHelper_AttributeValue (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filterhelper (cached) +=== RUN TestLogRecord_validateMatchesConfiguration_InvalidConfig +=== RUN TestLogRecord_validateMatchesConfiguration_InvalidConfig/empty_property +=== RUN TestLogRecord_validateMatchesConfiguration_InvalidConfig/empty_log_names_and_attributes +=== RUN TestLogRecord_validateMatchesConfiguration_InvalidConfig/span_properties +=== RUN TestLogRecord_validateMatchesConfiguration_InvalidConfig/invalid_match_type +=== RUN TestLogRecord_validateMatchesConfiguration_InvalidConfig/missing_match_type +=== RUN TestLogRecord_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern +=== RUN TestLogRecord_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern2 +--- PASS: TestLogRecord_validateMatchesConfiguration_InvalidConfig (0.00s) + --- PASS: TestLogRecord_validateMatchesConfiguration_InvalidConfig/empty_property (0.00s) + --- PASS: TestLogRecord_validateMatchesConfiguration_InvalidConfig/empty_log_names_and_attributes (0.00s) + --- PASS: TestLogRecord_validateMatchesConfiguration_InvalidConfig/span_properties (0.00s) + --- PASS: TestLogRecord_validateMatchesConfiguration_InvalidConfig/invalid_match_type (0.00s) + --- PASS: TestLogRecord_validateMatchesConfiguration_InvalidConfig/missing_match_type (0.00s) + --- PASS: TestLogRecord_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern (0.00s) + --- PASS: TestLogRecord_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern2 (0.00s) +=== RUN TestLogRecord_Matching_False +=== RUN TestLogRecord_Matching_False/log_name_doesnt_match +=== RUN TestLogRecord_Matching_False/log_name_doesnt_match_any +--- PASS: TestLogRecord_Matching_False (0.00s) + --- PASS: TestLogRecord_Matching_False/log_name_doesnt_match (0.00s) + --- PASS: TestLogRecord_Matching_False/log_name_doesnt_match_any (0.00s) +=== RUN TestLogRecord_Matching_True +=== RUN TestLogRecord_Matching_True/log_name_match +=== RUN TestLogRecord_Matching_True/log_name_second_match +--- PASS: TestLogRecord_Matching_True (0.00s) + --- PASS: TestLogRecord_Matching_True/log_name_match (0.00s) + --- PASS: TestLogRecord_Matching_True/log_name_second_match (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filterlog (cached) +=== RUN Test_validateMatchesConfiguration_InvalidConfig +=== RUN Test_validateMatchesConfiguration_InvalidConfig/regexp_match_type_for_int_attribute +=== RUN Test_validateMatchesConfiguration_InvalidConfig/unknown_attribute_value +=== RUN Test_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_attribute +=== RUN Test_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_resource +=== RUN Test_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_library_name +=== RUN Test_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_library_version +=== RUN Test_validateMatchesConfiguration_InvalidConfig/empty_key_name_in_attributes_list +--- PASS: Test_validateMatchesConfiguration_InvalidConfig (0.00s) + --- PASS: Test_validateMatchesConfiguration_InvalidConfig/regexp_match_type_for_int_attribute (0.00s) + --- PASS: Test_validateMatchesConfiguration_InvalidConfig/unknown_attribute_value (0.00s) + --- PASS: Test_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_attribute (0.00s) + --- PASS: Test_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_resource (0.00s) + --- PASS: Test_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_library_name (0.00s) + --- PASS: Test_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_library_version (0.00s) + --- PASS: Test_validateMatchesConfiguration_InvalidConfig/empty_key_name_in_attributes_list (0.00s) +=== RUN Test_Matching_False +=== RUN Test_Matching_False/wrong_library_name +=== RUN Test_Matching_False/wrong_library_version +=== RUN Test_Matching_False/wrong_attribute_value +=== RUN Test_Matching_False/wrong_resource_value +=== RUN Test_Matching_False/incompatible_attribute_value +=== RUN Test_Matching_False/unsupported_attribute_value +=== RUN Test_Matching_False/property_key_does_not_exist +--- PASS: Test_Matching_False (0.00s) + --- PASS: Test_Matching_False/wrong_library_name (0.00s) + --- PASS: Test_Matching_False/wrong_library_version (0.00s) + --- PASS: Test_Matching_False/wrong_attribute_value (0.00s) + --- PASS: Test_Matching_False/wrong_resource_value (0.00s) + --- PASS: Test_Matching_False/incompatible_attribute_value (0.00s) + --- PASS: Test_Matching_False/unsupported_attribute_value (0.00s) + --- PASS: Test_Matching_False/property_key_does_not_exist (0.00s) +=== RUN Test_MatchingCornerCases +--- PASS: Test_MatchingCornerCases (0.00s) +=== RUN Test_Matching_True +=== RUN Test_Matching_True/library_match +=== RUN Test_Matching_True/library_match_with_version +=== RUN Test_Matching_True/attribute_exact_value_match +=== RUN Test_Matching_True/attribute_regex_value_match +=== RUN Test_Matching_True/resource_exact_value_match +=== RUN Test_Matching_True/property_exists +=== RUN Test_Matching_True/match_all_settings_exists +--- PASS: Test_Matching_True (0.00s) + --- PASS: Test_Matching_True/library_match (0.00s) + --- PASS: Test_Matching_True/library_match_with_version (0.00s) + --- PASS: Test_Matching_True/attribute_exact_value_match (0.00s) + --- PASS: Test_Matching_True/attribute_regex_value_match (0.00s) + --- PASS: Test_Matching_True/resource_exact_value_match (0.00s) + --- PASS: Test_Matching_True/property_exists (0.00s) + --- PASS: Test_Matching_True/match_all_settings_exists (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filtermatcher (cached) +=== RUN TestConfig +=== RUN TestConfig/config/regexp +=== RUN TestConfig/config/regexpoptions +=== RUN TestConfig/config/strict +=== RUN TestConfig/config/emptyproperties +--- PASS: TestConfig (0.00s) + --- PASS: TestConfig/config/regexp (0.00s) + --- PASS: TestConfig/config/regexpoptions (0.00s) + --- PASS: TestConfig/config/strict (0.00s) + --- PASS: TestConfig/config/emptyproperties (0.00s) +=== RUN TestMatcherMatches +=== RUN TestMatcherMatches/regexpNameMatch +=== RUN TestMatcherMatches/regexpNameMisatch +=== RUN TestMatcherMatches/strictNameMatch +=== RUN TestMatcherMatches/strictNameMismatch +=== RUN TestMatcherMatches/matcherWithNoPropertyFilters +--- PASS: TestMatcherMatches (0.00s) + --- PASS: TestMatcherMatches/regexpNameMatch (0.00s) + --- PASS: TestMatcherMatches/regexpNameMisatch (0.00s) + --- PASS: TestMatcherMatches/strictNameMatch (0.00s) + --- PASS: TestMatcherMatches/strictNameMismatch (0.00s) + --- PASS: TestMatcherMatches/matcherWithNoPropertyFilters (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filtermetric (cached) +=== RUN TestConfig +=== RUN TestConfig/regexp/emptyoptions +=== RUN TestConfig/regexp/withoptions +=== RUN TestConfig/strict/default +=== RUN TestConfig/regexp/default +--- PASS: TestConfig (0.00s) + --- PASS: TestConfig/regexp/emptyoptions (0.00s) + --- PASS: TestConfig/regexp/withoptions (0.00s) + --- PASS: TestConfig/strict/default (0.00s) + --- PASS: TestConfig/regexp/default (0.00s) +=== RUN TestConfigInvalid +=== RUN TestConfigInvalid/invalid/matchtype +--- PASS: TestConfigInvalid (0.00s) + --- PASS: TestConfigInvalid/invalid/matchtype (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filterset (cached) +=== RUN TestConfig +=== RUN TestConfig/regexp/cachedisabledwithsize +=== RUN TestConfig/regexp/cacheenablednosize +--- PASS: TestConfig (0.00s) + --- PASS: TestConfig/regexp/cachedisabledwithsize (0.00s) + --- PASS: TestConfig/regexp/cacheenablednosize (0.00s) +=== RUN TestNewRegexpFilterSet +=== RUN TestNewRegexpFilterSet/validFilters +=== RUN TestNewRegexpFilterSet/invalidFilter +=== RUN TestNewRegexpFilterSet/emptyFilter +--- PASS: TestNewRegexpFilterSet (0.00s) + --- PASS: TestNewRegexpFilterSet/validFilters (0.00s) + --- PASS: TestNewRegexpFilterSet/invalidFilter (0.00s) + --- PASS: TestNewRegexpFilterSet/emptyFilter (0.00s) +=== RUN TestRegexpMatches +=== RUN TestRegexpMatches/full/name/match +=== RUN TestRegexpMatches/extra/full/name/match/extra +=== RUN TestRegexpMatches/full_name_match +=== RUN TestRegexpMatches/prefix/test/match +=== RUN TestRegexpMatches/prefix_test_match +=== RUN TestRegexpMatches/extra/prefix/test/match +=== RUN TestRegexpMatches/test/match/suffix +=== RUN TestRegexpMatches/test/match/suffixextra +=== RUN TestRegexpMatches/test_match_suffix +=== RUN TestRegexpMatches/test/contains/match +=== RUN TestRegexpMatches/test_contains_match +=== RUN TestRegexpMatches/not_exact_string_match +=== RUN TestRegexpMatches/random +=== RUN TestRegexpMatches/c +--- PASS: TestRegexpMatches (0.00s) + --- PASS: TestRegexpMatches/full/name/match (0.00s) + --- PASS: TestRegexpMatches/extra/full/name/match/extra (0.00s) + --- PASS: TestRegexpMatches/full_name_match (0.00s) + --- PASS: TestRegexpMatches/prefix/test/match (0.00s) + --- PASS: TestRegexpMatches/prefix_test_match (0.00s) + --- PASS: TestRegexpMatches/extra/prefix/test/match (0.00s) + --- PASS: TestRegexpMatches/test/match/suffix (0.00s) + --- PASS: TestRegexpMatches/test/match/suffixextra (0.00s) + --- PASS: TestRegexpMatches/test_match_suffix (0.00s) + --- PASS: TestRegexpMatches/test/contains/match (0.00s) + --- PASS: TestRegexpMatches/test_contains_match (0.00s) + --- PASS: TestRegexpMatches/not_exact_string_match (0.00s) + --- PASS: TestRegexpMatches/random (0.00s) + --- PASS: TestRegexpMatches/c (0.00s) +=== RUN TestRegexpDeDup +--- PASS: TestRegexpDeDup (0.00s) +=== RUN TestRegexpMatchesCaches +=== RUN TestRegexpMatchesCaches/full/name/match +=== RUN TestRegexpMatchesCaches/extra/full/name/match/extra +=== RUN TestRegexpMatchesCaches/full_name_match +=== RUN TestRegexpMatchesCaches/prefix/test/match +=== RUN TestRegexpMatchesCaches/prefix_test_match +=== RUN TestRegexpMatchesCaches/extra/prefix/test/match +=== RUN TestRegexpMatchesCaches/test/match/suffix +=== RUN TestRegexpMatchesCaches/test/match/suffixextra +=== RUN TestRegexpMatchesCaches/test_match_suffix +=== RUN TestRegexpMatchesCaches/test/contains/match +=== RUN TestRegexpMatchesCaches/test_contains_match +=== RUN TestRegexpMatchesCaches/not_exact_string_match +=== RUN TestRegexpMatchesCaches/random +=== RUN TestRegexpMatchesCaches/c +--- PASS: TestRegexpMatchesCaches (0.01s) + --- PASS: TestRegexpMatchesCaches/full/name/match (0.00s) + --- PASS: TestRegexpMatchesCaches/extra/full/name/match/extra (0.00s) + --- PASS: TestRegexpMatchesCaches/full_name_match (0.00s) + --- PASS: TestRegexpMatchesCaches/prefix/test/match (0.00s) + --- PASS: TestRegexpMatchesCaches/prefix_test_match (0.00s) + --- PASS: TestRegexpMatchesCaches/extra/prefix/test/match (0.00s) + --- PASS: TestRegexpMatchesCaches/test/match/suffix (0.00s) + --- PASS: TestRegexpMatchesCaches/test/match/suffixextra (0.00s) + --- PASS: TestRegexpMatchesCaches/test_match_suffix (0.00s) + --- PASS: TestRegexpMatchesCaches/test/contains/match (0.00s) + --- PASS: TestRegexpMatchesCaches/test_contains_match (0.00s) + --- PASS: TestRegexpMatchesCaches/not_exact_string_match (0.00s) + --- PASS: TestRegexpMatchesCaches/random (0.00s) + --- PASS: TestRegexpMatchesCaches/c (0.00s) +=== RUN TestWithCacheSize +--- PASS: TestWithCacheSize (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filterset/regexp (cached) +=== RUN TestNewStrictFilterSet +=== RUN TestNewStrictFilterSet/validFilters +--- PASS: TestNewStrictFilterSet (0.00s) + --- PASS: TestNewStrictFilterSet/validFilters (0.00s) +=== RUN TestStrictMatches +=== RUN TestStrictMatches/exact_string_match +=== RUN TestStrictMatches/.*/suffix +=== RUN TestStrictMatches/(a|b) +=== RUN TestStrictMatches/not_exact_string_match +=== RUN TestStrictMatches/random +=== RUN TestStrictMatches/test/match/suffix +=== RUN TestStrictMatches/prefix/metric/one +=== RUN TestStrictMatches/c +--- PASS: TestStrictMatches (0.00s) + --- PASS: TestStrictMatches/exact_string_match (0.00s) + --- PASS: TestStrictMatches/.*/suffix (0.00s) + --- PASS: TestStrictMatches/(a|b) (0.00s) + --- PASS: TestStrictMatches/not_exact_string_match (0.00s) + --- PASS: TestStrictMatches/random (0.00s) + --- PASS: TestStrictMatches/test/match/suffix (0.00s) + --- PASS: TestStrictMatches/prefix/metric/one (0.00s) + --- PASS: TestStrictMatches/c (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filterset/strict (cached) +=== RUN TestSpan_validateMatchesConfiguration_InvalidConfig +=== RUN TestSpan_validateMatchesConfiguration_InvalidConfig/empty_property +=== RUN TestSpan_validateMatchesConfiguration_InvalidConfig/empty_service_span_names_and_attributes +=== RUN TestSpan_validateMatchesConfiguration_InvalidConfig/log_properties +=== RUN TestSpan_validateMatchesConfiguration_InvalidConfig/invalid_match_type +=== RUN TestSpan_validateMatchesConfiguration_InvalidConfig/missing_match_type +=== RUN TestSpan_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_service +=== RUN TestSpan_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_span +--- PASS: TestSpan_validateMatchesConfiguration_InvalidConfig (0.00s) + --- PASS: TestSpan_validateMatchesConfiguration_InvalidConfig/empty_property (0.00s) + --- PASS: TestSpan_validateMatchesConfiguration_InvalidConfig/empty_service_span_names_and_attributes (0.00s) + --- PASS: TestSpan_validateMatchesConfiguration_InvalidConfig/log_properties (0.00s) + --- PASS: TestSpan_validateMatchesConfiguration_InvalidConfig/invalid_match_type (0.00s) + --- PASS: TestSpan_validateMatchesConfiguration_InvalidConfig/missing_match_type (0.00s) + --- PASS: TestSpan_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_service (0.00s) + --- PASS: TestSpan_validateMatchesConfiguration_InvalidConfig/invalid_regexp_pattern_span (0.00s) +=== RUN TestSpan_Matching_False +=== RUN TestSpan_Matching_False/service_name_doesnt_match_regexp +=== RUN TestSpan_Matching_False/service_name_doesnt_match_strict +=== RUN TestSpan_Matching_False/span_name_doesnt_match +=== RUN TestSpan_Matching_False/span_name_doesnt_match_any +--- PASS: TestSpan_Matching_False (0.00s) + --- PASS: TestSpan_Matching_False/service_name_doesnt_match_regexp (0.00s) + --- PASS: TestSpan_Matching_False/service_name_doesnt_match_strict (0.00s) + --- PASS: TestSpan_Matching_False/span_name_doesnt_match (0.00s) + --- PASS: TestSpan_Matching_False/span_name_doesnt_match_any (0.00s) +=== RUN TestSpan_MissingServiceName +--- PASS: TestSpan_MissingServiceName (0.00s) +=== RUN TestSpan_Matching_True +=== RUN TestSpan_Matching_True/service_name_match_regexp +=== RUN TestSpan_Matching_True/service_name_match_strict +=== RUN TestSpan_Matching_True/span_name_match +=== RUN TestSpan_Matching_True/span_name_second_match +--- PASS: TestSpan_Matching_True (0.00s) + --- PASS: TestSpan_Matching_True/service_name_match_regexp (0.00s) + --- PASS: TestSpan_Matching_True/service_name_match_strict (0.00s) + --- PASS: TestSpan_Matching_True/span_name_match (0.00s) + --- PASS: TestSpan_Matching_True/span_name_second_match (0.00s) +=== RUN TestServiceNameForResource +--- PASS: TestServiceNameForResource (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/processor/filterspan (cached) +=== RUN TestToFromOtlpLog +=== RUN TestToFromOtlpLog/empty +=== RUN TestToFromOtlpLog/one-empty-resource-logs +=== RUN TestToFromOtlpLog/no-log-records +=== RUN TestToFromOtlpLog/one-empty-log-record +=== RUN TestToFromOtlpLog/one-log-record-no-resource +=== RUN TestToFromOtlpLog/one-log-record +=== RUN TestToFromOtlpLog/two-records-same-resource +=== RUN TestToFromOtlpLog/two-records-same-resource-one-different +--- PASS: TestToFromOtlpLog (0.00s) + --- PASS: TestToFromOtlpLog/empty (0.00s) + --- PASS: TestToFromOtlpLog/one-empty-resource-logs (0.00s) + --- PASS: TestToFromOtlpLog/no-log-records (0.00s) + --- PASS: TestToFromOtlpLog/one-empty-log-record (0.00s) + --- PASS: TestToFromOtlpLog/one-log-record-no-resource (0.00s) + --- PASS: TestToFromOtlpLog/one-log-record (0.00s) + --- PASS: TestToFromOtlpLog/two-records-same-resource (0.00s) + --- PASS: TestToFromOtlpLog/two-records-same-resource-one-different (0.00s) +=== RUN TestToFromOtlpMetrics +=== RUN TestToFromOtlpMetrics/empty +=== RUN TestToFromOtlpMetrics/one-empty-resource-metrics +=== RUN TestToFromOtlpMetrics/no-libraries +=== RUN TestToFromOtlpMetrics/one-empty-instrumentation-library +=== RUN TestToFromOtlpMetrics/one-metric-no-resource +=== RUN TestToFromOtlpMetrics/one-metric +=== RUN TestToFromOtlpMetrics/two-metrics +=== RUN TestToFromOtlpMetrics/one-metric-no-labels +=== RUN TestToFromOtlpMetrics/all-types-no-data-points +=== RUN TestToFromOtlpMetrics/all-metric-types +--- PASS: TestToFromOtlpMetrics (0.00s) + --- PASS: TestToFromOtlpMetrics/empty (0.00s) + --- PASS: TestToFromOtlpMetrics/one-empty-resource-metrics (0.00s) + --- PASS: TestToFromOtlpMetrics/no-libraries (0.00s) + --- PASS: TestToFromOtlpMetrics/one-empty-instrumentation-library (0.00s) + --- PASS: TestToFromOtlpMetrics/one-metric-no-resource (0.00s) + --- PASS: TestToFromOtlpMetrics/one-metric (0.00s) + --- PASS: TestToFromOtlpMetrics/two-metrics (0.00s) + --- PASS: TestToFromOtlpMetrics/one-metric-no-labels (0.00s) + --- PASS: TestToFromOtlpMetrics/all-types-no-data-points (0.00s) + --- PASS: TestToFromOtlpMetrics/all-metric-types (0.00s) +=== RUN TestGenerateMetricsManyMetricsSameResource +--- PASS: TestGenerateMetricsManyMetricsSameResource (0.00s) +=== RUN TestToFromOtlpTrace +=== RUN TestToFromOtlpTrace/empty +=== RUN TestToFromOtlpTrace/one-empty-resource-spans +=== RUN TestToFromOtlpTrace/no-libraries +=== RUN TestToFromOtlpTrace/one-empty-instrumentation-library +=== RUN TestToFromOtlpTrace/one-span-no-resource +=== RUN TestToFromOtlpTrace/one-span +=== RUN TestToFromOtlpTrace/two-spans-same-resource +=== RUN TestToFromOtlpTrace/two-spans-same-resource-one-different +--- PASS: TestToFromOtlpTrace (0.00s) + --- PASS: TestToFromOtlpTrace/empty (0.00s) + --- PASS: TestToFromOtlpTrace/one-empty-resource-spans (0.00s) + --- PASS: TestToFromOtlpTrace/no-libraries (0.00s) + --- PASS: TestToFromOtlpTrace/one-empty-instrumentation-library (0.00s) + --- PASS: TestToFromOtlpTrace/one-span-no-resource (0.00s) + --- PASS: TestToFromOtlpTrace/one-span (0.00s) + --- PASS: TestToFromOtlpTrace/two-spans-same-resource (0.00s) + --- PASS: TestToFromOtlpTrace/two-spans-same-resource-one-different (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/testdata (cached) +=== RUN TestInfoString +--- PASS: TestInfoString (0.00s) +PASS +ok go.opentelemetry.io/collector/internal/version (cached) +=== RUN TestConfigure +=== RUN TestConfigure/none +=== RUN TestConfigure/basic +=== RUN TestConfigure/normal +=== RUN TestConfigure/detailed +--- PASS: TestConfigure (0.00s) + --- PASS: TestConfigure/none (0.00s) + --- PASS: TestConfigure/basic (0.00s) + --- PASS: TestConfigure/normal (0.00s) + --- PASS: TestConfigure/detailed (0.00s) +=== RUN TestReceiveTraceDataOp +--- PASS: TestReceiveTraceDataOp (0.00s) +=== RUN TestReceiveLogsOp +--- PASS: TestReceiveLogsOp (0.00s) +=== RUN TestReceiveMetricsOp +--- PASS: TestReceiveMetricsOp (0.00s) +=== RUN TestScrapeMetricsDataOp +--- PASS: TestScrapeMetricsDataOp (0.00s) +=== RUN TestExportTraceDataOp +--- PASS: TestExportTraceDataOp (0.00s) +=== RUN TestExportMetricsOp +--- PASS: TestExportMetricsOp (0.00s) +=== RUN TestExportLogsOp +--- PASS: TestExportLogsOp (0.00s) +=== RUN TestReceiveWithLongLivedCtx +--- PASS: TestReceiveWithLongLivedCtx (0.00s) +=== RUN TestProcessorTraceData +--- PASS: TestProcessorTraceData (0.00s) +=== RUN TestProcessorMetricsData +--- PASS: TestProcessorMetricsData (0.00s) +=== RUN TestProcessorMetricViews +=== RUN TestProcessorMetricViews/none +=== RUN TestProcessorMetricViews/basic +--- PASS: TestProcessorMetricViews (0.00s) + --- PASS: TestProcessorMetricViews/none (0.00s) + --- PASS: TestProcessorMetricViews/basic (0.00s) +=== RUN TestProcessorLogRecords +--- PASS: TestProcessorLogRecords (0.00s) +PASS +ok go.opentelemetry.io/collector/obsreport (cached) +=== RUN TestCheckReceiverTracesViews +--- PASS: TestCheckReceiverTracesViews (0.00s) +=== RUN TestCheckReceiverMetricsViews +--- PASS: TestCheckReceiverMetricsViews (0.00s) +=== RUN TestCheckReceiverLogsViews +--- PASS: TestCheckReceiverLogsViews (0.00s) +=== RUN TestCheckExporterTracesViews +--- PASS: TestCheckExporterTracesViews (0.00s) +=== RUN TestCheckExporterMetricsViews +--- PASS: TestCheckExporterMetricsViews (0.00s) +=== RUN TestCheckExporterLogsViews +--- PASS: TestCheckExporterLogsViews (0.00s) +PASS +ok go.opentelemetry.io/collector/obsreport/obsreporttest (cached) +=== RUN TestTraceProcessorCloningNotMultiplexing +--- PASS: TestTraceProcessorCloningNotMultiplexing (0.00s) +=== RUN TestTraceProcessorCloningMultiplexing +--- PASS: TestTraceProcessorCloningMultiplexing (0.00s) +=== RUN TestMetricsProcessorCloningNotMultiplexing +--- PASS: TestMetricsProcessorCloningNotMultiplexing (0.00s) +=== RUN TestMetricsProcessorCloningMultiplexing +--- PASS: TestMetricsProcessorCloningMultiplexing (0.00s) +=== RUN TestLogsProcessorCloningNotMultiplexing +--- PASS: TestLogsProcessorCloningNotMultiplexing (0.00s) +=== RUN TestLogsProcessorCloningMultiplexing +--- PASS: TestLogsProcessorCloningMultiplexing (0.00s) +=== RUN TestTracesProcessorNotMultiplexing +--- PASS: TestTracesProcessorNotMultiplexing (0.00s) +=== RUN TestTracesProcessorMultiplexing +--- PASS: TestTracesProcessorMultiplexing (0.00s) +=== RUN TestTraceProcessorWhenOneErrors +--- PASS: TestTraceProcessorWhenOneErrors (0.00s) +=== RUN TestMetricsProcessorNotMultiplexing +--- PASS: TestMetricsProcessorNotMultiplexing (0.00s) +=== RUN TestMetricsProcessorMultiplexing +--- PASS: TestMetricsProcessorMultiplexing (0.00s) +=== RUN TestMetricsProcessorWhenOneErrors +--- PASS: TestMetricsProcessorWhenOneErrors (0.00s) +=== RUN TestLogsProcessorNotMultiplexing +--- PASS: TestLogsProcessorNotMultiplexing (0.00s) +=== RUN TestLogsProcessorMultiplexing +--- PASS: TestLogsProcessorMultiplexing (0.00s) +=== RUN TestLogsProcessorWhenOneErrors +--- PASS: TestLogsProcessorWhenOneErrors (0.00s) +=== RUN TestSpanCountByResourceStringAttribute +--- PASS: TestSpanCountByResourceStringAttribute (0.00s) +PASS +ok go.opentelemetry.io/collector/processor (cached) +=== RUN TestLogProcessor_NilEmptyData +=== RUN TestLogProcessor_NilEmptyData/empty +=== RUN TestLogProcessor_NilEmptyData/one-empty-resource-logs +=== RUN TestLogProcessor_NilEmptyData/no-libraries +--- PASS: TestLogProcessor_NilEmptyData (0.00s) + --- PASS: TestLogProcessor_NilEmptyData/empty (0.00s) + --- PASS: TestLogProcessor_NilEmptyData/one-empty-resource-logs (0.00s) + --- PASS: TestLogProcessor_NilEmptyData/no-libraries (0.00s) +=== RUN TestAttributes_FilterLogs +=== RUN TestAttributes_FilterLogs/apply_processor +=== RUN TestAttributes_FilterLogs/apply_processor_with_different_value_for_exclude_property +=== RUN TestAttributes_FilterLogs/incorrect_name_for_include_property +=== RUN TestAttributes_FilterLogs/attribute_match_for_exclude_property +--- PASS: TestAttributes_FilterLogs (0.00s) + --- PASS: TestAttributes_FilterLogs/apply_processor (0.00s) + --- PASS: TestAttributes_FilterLogs/apply_processor_with_different_value_for_exclude_property (0.00s) + --- PASS: TestAttributes_FilterLogs/incorrect_name_for_include_property (0.00s) + --- PASS: TestAttributes_FilterLogs/attribute_match_for_exclude_property (0.00s) +=== RUN TestAttributes_FilterLogsByNameStrict +=== RUN TestAttributes_FilterLogsByNameStrict/apply +=== RUN TestAttributes_FilterLogsByNameStrict/apply#01 +=== RUN TestAttributes_FilterLogsByNameStrict/incorrect_log_name +=== RUN TestAttributes_FilterLogsByNameStrict/dont_apply +=== RUN TestAttributes_FilterLogsByNameStrict/incorrect_log_name_with_attr +--- PASS: TestAttributes_FilterLogsByNameStrict (0.00s) + --- PASS: TestAttributes_FilterLogsByNameStrict/apply (0.00s) + --- PASS: TestAttributes_FilterLogsByNameStrict/apply#01 (0.00s) + --- PASS: TestAttributes_FilterLogsByNameStrict/incorrect_log_name (0.00s) + --- PASS: TestAttributes_FilterLogsByNameStrict/dont_apply (0.00s) + --- PASS: TestAttributes_FilterLogsByNameStrict/incorrect_log_name_with_attr (0.00s) +=== RUN TestAttributes_FilterLogsByNameRegexp +=== RUN TestAttributes_FilterLogsByNameRegexp/apply_to_log_with_no_attrs +=== RUN TestAttributes_FilterLogsByNameRegexp/apply_to_log_with_attr +=== RUN TestAttributes_FilterLogsByNameRegexp/incorrect_log_name +=== RUN TestAttributes_FilterLogsByNameRegexp/apply_dont_apply +=== RUN TestAttributes_FilterLogsByNameRegexp/incorrect_log_name_with_attr +--- PASS: TestAttributes_FilterLogsByNameRegexp (0.00s) + --- PASS: TestAttributes_FilterLogsByNameRegexp/apply_to_log_with_no_attrs (0.00s) + --- PASS: TestAttributes_FilterLogsByNameRegexp/apply_to_log_with_attr (0.00s) + --- PASS: TestAttributes_FilterLogsByNameRegexp/incorrect_log_name (0.00s) + --- PASS: TestAttributes_FilterLogsByNameRegexp/apply_dont_apply (0.00s) + --- PASS: TestAttributes_FilterLogsByNameRegexp/incorrect_log_name_with_attr (0.00s) +=== RUN TestLogAttributes_Hash +=== RUN TestLogAttributes_Hash/String +=== RUN TestLogAttributes_Hash/Int +=== RUN TestLogAttributes_Hash/Double +=== RUN TestLogAttributes_Hash/Bool +--- PASS: TestLogAttributes_Hash (0.00s) + --- PASS: TestLogAttributes_Hash/String (0.00s) + --- PASS: TestLogAttributes_Hash/Int (0.00s) + --- PASS: TestLogAttributes_Hash/Double (0.00s) + --- PASS: TestLogAttributes_Hash/Bool (0.00s) +=== RUN TestSpanProcessor_NilEmptyData +=== RUN TestSpanProcessor_NilEmptyData/empty +=== RUN TestSpanProcessor_NilEmptyData/one-empty-resource-spans +=== RUN TestSpanProcessor_NilEmptyData/no-libraries +=== RUN TestSpanProcessor_NilEmptyData/one-empty-instrumentation-library +--- PASS: TestSpanProcessor_NilEmptyData (0.00s) + --- PASS: TestSpanProcessor_NilEmptyData/empty (0.00s) + --- PASS: TestSpanProcessor_NilEmptyData/one-empty-resource-spans (0.00s) + --- PASS: TestSpanProcessor_NilEmptyData/no-libraries (0.00s) + --- PASS: TestSpanProcessor_NilEmptyData/one-empty-instrumentation-library (0.00s) +=== RUN TestAttributes_FilterSpans +=== RUN TestAttributes_FilterSpans/apply_processor +=== RUN TestAttributes_FilterSpans/apply_processor_with_different_value_for_exclude_property +=== RUN TestAttributes_FilterSpans/incorrect_name_for_include_property +=== RUN TestAttributes_FilterSpans/attribute_match_for_exclude_property +--- PASS: TestAttributes_FilterSpans (0.00s) + --- PASS: TestAttributes_FilterSpans/apply_processor (0.00s) + --- PASS: TestAttributes_FilterSpans/apply_processor_with_different_value_for_exclude_property (0.00s) + --- PASS: TestAttributes_FilterSpans/incorrect_name_for_include_property (0.00s) + --- PASS: TestAttributes_FilterSpans/attribute_match_for_exclude_property (0.00s) +=== RUN TestAttributes_FilterSpansByNameStrict +=== RUN TestAttributes_FilterSpansByNameStrict/apply +=== RUN TestAttributes_FilterSpansByNameStrict/apply#01 +=== RUN TestAttributes_FilterSpansByNameStrict/incorrect_span_name +=== RUN TestAttributes_FilterSpansByNameStrict/dont_apply +=== RUN TestAttributes_FilterSpansByNameStrict/incorrect_span_name_with_attr +--- PASS: TestAttributes_FilterSpansByNameStrict (0.00s) + --- PASS: TestAttributes_FilterSpansByNameStrict/apply (0.00s) + --- PASS: TestAttributes_FilterSpansByNameStrict/apply#01 (0.00s) + --- PASS: TestAttributes_FilterSpansByNameStrict/incorrect_span_name (0.00s) + --- PASS: TestAttributes_FilterSpansByNameStrict/dont_apply (0.00s) + --- PASS: TestAttributes_FilterSpansByNameStrict/incorrect_span_name_with_attr (0.00s) +=== RUN TestAttributes_FilterSpansByNameRegexp +=== RUN TestAttributes_FilterSpansByNameRegexp/apply_to_span_with_no_attrs +=== RUN TestAttributes_FilterSpansByNameRegexp/apply_to_span_with_attr +=== RUN TestAttributes_FilterSpansByNameRegexp/incorrect_span_name +=== RUN TestAttributes_FilterSpansByNameRegexp/apply_dont_apply +=== RUN TestAttributes_FilterSpansByNameRegexp/incorrect_span_name_with_attr +--- PASS: TestAttributes_FilterSpansByNameRegexp (0.00s) + --- PASS: TestAttributes_FilterSpansByNameRegexp/apply_to_span_with_no_attrs (0.00s) + --- PASS: TestAttributes_FilterSpansByNameRegexp/apply_to_span_with_attr (0.00s) + --- PASS: TestAttributes_FilterSpansByNameRegexp/incorrect_span_name (0.00s) + --- PASS: TestAttributes_FilterSpansByNameRegexp/apply_dont_apply (0.00s) + --- PASS: TestAttributes_FilterSpansByNameRegexp/incorrect_span_name_with_attr (0.00s) +=== RUN TestAttributes_Hash +=== RUN TestAttributes_Hash/String +=== RUN TestAttributes_Hash/Int +=== RUN TestAttributes_Hash/Double +=== RUN TestAttributes_Hash/Bool +--- PASS: TestAttributes_Hash (0.00s) + --- PASS: TestAttributes_Hash/String (0.00s) + --- PASS: TestAttributes_Hash/Int (0.00s) + --- PASS: TestAttributes_Hash/Double (0.00s) + --- PASS: TestAttributes_Hash/Bool (0.00s) +=== RUN TestLoadingConfig +--- PASS: TestLoadingConfig (0.02s) +=== RUN TestFactory_Type +--- PASS: TestFactory_Type (0.00s) +=== RUN TestFactory_CreateDefaultConfig +--- PASS: TestFactory_CreateDefaultConfig (0.00s) +=== RUN TestFactoryCreateTraceProcessor_EmptyActions +--- PASS: TestFactoryCreateTraceProcessor_EmptyActions (0.00s) +=== RUN TestFactoryCreateTraceProcessor_InvalidActions +--- PASS: TestFactoryCreateTraceProcessor_InvalidActions (0.00s) +=== RUN TestFactoryCreateTraceProcessor +--- PASS: TestFactoryCreateTraceProcessor (0.00s) +=== RUN TestFactory_CreateMetricsProcessor +--- PASS: TestFactory_CreateMetricsProcessor (0.00s) +=== RUN TestFactoryCreateLogsProcessor_EmptyActions +--- PASS: TestFactoryCreateLogsProcessor_EmptyActions (0.00s) +=== RUN TestFactoryCreateLogsProcessor_InvalidActions +--- PASS: TestFactoryCreateLogsProcessor_InvalidActions (0.00s) +=== RUN TestFactoryCreateLogsProcessor +--- PASS: TestFactoryCreateLogsProcessor (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/attributesprocessor (cached) +=== RUN TestBatchProcessorSpansDelivered +--- PASS: TestBatchProcessorSpansDelivered (7.04s) +=== RUN TestBatchProcessorSpansDeliveredEnforceBatchSize +--- PASS: TestBatchProcessorSpansDeliveredEnforceBatchSize (1.40s) +=== RUN TestBatchProcessorSentBySize +--- PASS: TestBatchProcessorSentBySize (0.00s) +=== RUN TestBatchProcessorSentByTimeout +--- PASS: TestBatchProcessorSentByTimeout (0.21s) +=== RUN TestBatchProcessorTraceSendWhenClosing +--- PASS: TestBatchProcessorTraceSendWhenClosing (0.00s) +=== RUN TestBatchMetricProcessor_ReceivingData +--- PASS: TestBatchMetricProcessor_ReceivingData (0.03s) +=== RUN TestBatchMetricProcessor_BatchSize +--- PASS: TestBatchMetricProcessor_BatchSize (0.00s) +=== RUN TestBatchMetricsProcessor_Timeout +--- PASS: TestBatchMetricsProcessor_Timeout (0.20s) +=== RUN TestBatchMetricProcessor_Shutdown +--- PASS: TestBatchMetricProcessor_Shutdown (0.00s) +=== RUN TestBatchLogProcessor_ReceivingData +--- PASS: TestBatchLogProcessor_ReceivingData (0.02s) +=== RUN TestBatchLogProcessor_BatchSize +--- PASS: TestBatchLogProcessor_BatchSize (0.00s) +=== RUN TestBatchLogsProcessor_Timeout +--- PASS: TestBatchLogsProcessor_Timeout (0.21s) +=== RUN TestBatchLogProcessor_Shutdown +--- PASS: TestBatchLogProcessor_Shutdown (0.00s) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateProcessor +--- PASS: TestCreateProcessor (0.00s) +=== RUN TestBatchProcessorMetrics +--- PASS: TestBatchProcessorMetrics (0.00s) +=== RUN TestSplitMetrics_noop +--- PASS: TestSplitMetrics_noop (0.00s) +=== RUN TestSplitMetrics +--- PASS: TestSplitMetrics (0.00s) +=== RUN TestSplitMetricsMultipleResourceSpans +--- PASS: TestSplitMetricsMultipleResourceSpans (0.00s) +=== RUN TestSplitMetricsMultipleResourceSpans_split_size_greater_than_metric_size +--- PASS: TestSplitMetricsMultipleResourceSpans_split_size_greater_than_metric_size (0.00s) +=== RUN TestSplitTraces_noop +--- PASS: TestSplitTraces_noop (0.00s) +=== RUN TestSplitTraces +--- PASS: TestSplitTraces (0.00s) +=== RUN TestSplitTracesMultipleResourceSpans +--- PASS: TestSplitTracesMultipleResourceSpans (0.00s) +=== RUN TestSplitTracesMultipleResourceSpans_split_size_greater_than_span_size +--- PASS: TestSplitTracesMultipleResourceSpans_split_size_greater_than_span_size (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/batchprocessor (cached) +=== RUN TestLoadingConfigStrict +=== RUN TestLoadingConfigStrict/filter/empty +=== RUN TestLoadingConfigStrict/filter/include +=== RUN TestLoadingConfigStrict/filter/exclude +=== RUN TestLoadingConfigStrict/filter/includeexclude +--- PASS: TestLoadingConfigStrict (0.01s) + --- PASS: TestLoadingConfigStrict/filter/empty (0.00s) + --- PASS: TestLoadingConfigStrict/filter/include (0.00s) + --- PASS: TestLoadingConfigStrict/filter/exclude (0.00s) + --- PASS: TestLoadingConfigStrict/filter/includeexclude (0.00s) +=== RUN TestLoadingConfigRegexp +=== RUN TestLoadingConfigRegexp/filter/include +=== RUN TestLoadingConfigRegexp/filter/exclude +=== RUN TestLoadingConfigRegexp/filter/unlimitedcache +=== RUN TestLoadingConfigRegexp/filter/limitedcache +--- PASS: TestLoadingConfigRegexp (0.01s) + --- PASS: TestLoadingConfigRegexp/filter/include (0.00s) + --- PASS: TestLoadingConfigRegexp/filter/exclude (0.00s) + --- PASS: TestLoadingConfigRegexp/filter/unlimitedcache (0.00s) + --- PASS: TestLoadingConfigRegexp/filter/limitedcache (0.00s) +=== RUN TestLoadingConfigExpr +=== RUN TestLoadingConfigExpr/filter/empty +=== RUN TestLoadingConfigExpr/filter/include +=== RUN TestLoadingConfigExpr/filter/exclude +=== RUN TestLoadingConfigExpr/filter/includeexclude +--- PASS: TestLoadingConfigExpr (0.01s) + --- PASS: TestLoadingConfigExpr/filter/empty (0.00s) + --- PASS: TestLoadingConfigExpr/filter/include (0.00s) + --- PASS: TestLoadingConfigExpr/filter/exclude (0.00s) + --- PASS: TestLoadingConfigExpr/filter/includeexclude (0.00s) +=== RUN TestExprError +--- PASS: TestExprError (0.00s) +=== RUN TestExprProcessor +--- PASS: TestExprProcessor (0.04s) +=== RUN TestType +--- PASS: TestType (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateProcessors +=== RUN TestCreateProcessors/config_regexp.yaml/filter/unlimitedcache +=== RUN TestCreateProcessors/config_regexp.yaml/filter/limitedcache +=== RUN TestCreateProcessors/config_regexp.yaml/filter +=== RUN TestCreateProcessors/config_regexp.yaml/filter/include +=== RUN TestCreateProcessors/config_regexp.yaml/filter/exclude +=== RUN TestCreateProcessors/config_strict.yaml/filter/empty +=== RUN TestCreateProcessors/config_strict.yaml/filter/include +=== RUN TestCreateProcessors/config_strict.yaml/filter/exclude +=== RUN TestCreateProcessors/config_strict.yaml/filter/includeexclude +=== RUN TestCreateProcessors/config_invalid.yaml/filter/include +--- PASS: TestCreateProcessors (0.02s) + --- PASS: TestCreateProcessors/config_regexp.yaml/filter/unlimitedcache (0.00s) + --- PASS: TestCreateProcessors/config_regexp.yaml/filter/limitedcache (0.00s) + --- PASS: TestCreateProcessors/config_regexp.yaml/filter (0.00s) + --- PASS: TestCreateProcessors/config_regexp.yaml/filter/include (0.00s) + --- PASS: TestCreateProcessors/config_regexp.yaml/filter/exclude (0.00s) + --- PASS: TestCreateProcessors/config_strict.yaml/filter/empty (0.00s) + --- PASS: TestCreateProcessors/config_strict.yaml/filter/include (0.00s) + --- PASS: TestCreateProcessors/config_strict.yaml/filter/exclude (0.00s) + --- PASS: TestCreateProcessors/config_strict.yaml/filter/includeexclude (0.00s) + --- PASS: TestCreateProcessors/config_invalid.yaml/filter/include (0.00s) +=== RUN TestFilterMetricProcessor +=== RUN TestFilterMetricProcessor/includeFilter +=== RUN TestFilterMetricProcessor/excludeFilter +=== RUN TestFilterMetricProcessor/includeAndExclude +=== RUN TestFilterMetricProcessor/includeAndExcludeWithEmptyAndNil +=== RUN TestFilterMetricProcessor/emptyFilterInclude +=== RUN TestFilterMetricProcessor/emptyFilterExclude +=== RUN TestFilterMetricProcessor/includeWithNilResourceAttributes +=== RUN TestFilterMetricProcessor/excludeNilWithResourceAttributes +=== RUN TestFilterMetricProcessor/includeAllWithResourceAttributes +=== RUN TestFilterMetricProcessor/includeAllWithMissingResourceAttributes +=== RUN TestFilterMetricProcessor/excludeAllWithMissingResourceAttributes +=== RUN TestFilterMetricProcessor/includeWithRegexResourceAttributes +--- PASS: TestFilterMetricProcessor (0.01s) + --- PASS: TestFilterMetricProcessor/includeFilter (0.00s) + --- PASS: TestFilterMetricProcessor/excludeFilter (0.00s) + --- PASS: TestFilterMetricProcessor/includeAndExclude (0.00s) + --- PASS: TestFilterMetricProcessor/includeAndExcludeWithEmptyAndNil (0.00s) + --- PASS: TestFilterMetricProcessor/emptyFilterInclude (0.00s) + --- PASS: TestFilterMetricProcessor/emptyFilterExclude (0.00s) + --- PASS: TestFilterMetricProcessor/includeWithNilResourceAttributes (0.00s) + --- PASS: TestFilterMetricProcessor/excludeNilWithResourceAttributes (0.00s) + --- PASS: TestFilterMetricProcessor/includeAllWithResourceAttributes (0.00s) + --- PASS: TestFilterMetricProcessor/includeAllWithMissingResourceAttributes (0.00s) + --- PASS: TestFilterMetricProcessor/excludeAllWithMissingResourceAttributes (0.00s) + --- PASS: TestFilterMetricProcessor/includeWithRegexResourceAttributes (0.00s) +=== RUN TestMetricIndexSingle +--- PASS: TestMetricIndexSingle (0.00s) +=== RUN TestMetricIndexAll +--- PASS: TestMetricIndexAll (0.00s) +=== RUN TestNilResourceMetrics +--- PASS: TestNilResourceMetrics (0.00s) +=== RUN TestNilILM +--- PASS: TestNilILM (0.00s) +=== RUN TestNilMetric +--- PASS: TestNilMetric (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/filterprocessor (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateProcessor +--- PASS: TestCreateProcessor (0.00s) +=== RUN TestNew +=== RUN TestNew/zero_checkInterval +=== RUN TestNew/zero_memAllocLimit +=== RUN TestNew/memSpikeLimit_gt_memAllocLimit +=== RUN TestNew/success +--- PASS: TestNew (0.00s) + --- PASS: TestNew/zero_checkInterval (0.00s) + --- PASS: TestNew/zero_memAllocLimit (0.00s) + --- PASS: TestNew/memSpikeLimit_gt_memAllocLimit (0.00s) + --- PASS: TestNew/success (0.00s) +=== RUN TestMetricsMemoryPressureResponse +--- PASS: TestMetricsMemoryPressureResponse (0.00s) +=== RUN TestTraceMemoryPressureResponse +--- PASS: TestTraceMemoryPressureResponse (0.00s) +=== RUN TestLogMemoryPressureResponse +--- PASS: TestLogMemoryPressureResponse (0.00s) +=== RUN TestGetDecision +=== RUN TestGetDecision/fixed_limit +=== RUN TestGetDecision/fixed_limit_error +=== RUN TestGetDecision/percentage_limit +=== RUN TestGetDecision/percentage_limit_error +--- PASS: TestGetDecision (0.00s) + --- PASS: TestGetDecision/fixed_limit (0.00s) + --- PASS: TestGetDecision/fixed_limit_error (0.00s) + --- PASS: TestGetDecision/percentage_limit (0.00s) + --- PASS: TestGetDecision/percentage_limit_error (0.00s) +=== RUN TestDropDecision +=== RUN TestDropDecision/should_drop_over_limit +=== RUN TestDropDecision/should_not_drop +=== RUN TestDropDecision/should_not_drop_spike,_fixed_usageChecker +=== RUN TestDropDecision/should_drop,_spike,_percentage_usageChecker +=== RUN TestDropDecision/should_drop,_spike,_percentage_usageChecker#01 +--- PASS: TestDropDecision (0.00s) + --- PASS: TestDropDecision/should_drop_over_limit (0.00s) + --- PASS: TestDropDecision/should_not_drop (0.00s) + --- PASS: TestDropDecision/should_not_drop_spike,_fixed_usageChecker (0.00s) + --- PASS: TestDropDecision/should_drop,_spike,_percentage_usageChecker (0.00s) + --- PASS: TestDropDecision/should_drop,_spike,_percentage_usageChecker#01 (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/memorylimiter (cached) +? go.opentelemetry.io/collector/processor/memorylimiter/internal/cgroups [no test files] +=== RUN TestTotalMemory +--- PASS: TestTotalMemory (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/memorylimiter/internal/iruntime (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestLoadConfigEmpty +--- PASS: TestLoadConfigEmpty (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateProcessor +--- PASS: TestCreateProcessor (0.00s) +=== RUN TestNewTraceProcessor +=== RUN TestNewTraceProcessor/nil_nextConsumer +=== RUN TestNewTraceProcessor/happy_path +=== RUN TestNewTraceProcessor/happy_path_hash_seed +--- PASS: TestNewTraceProcessor (0.00s) + --- PASS: TestNewTraceProcessor/nil_nextConsumer (0.00s) + --- PASS: TestNewTraceProcessor/happy_path (0.00s) + --- PASS: TestNewTraceProcessor/happy_path_hash_seed (0.00s) +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_tiny +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_small +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_medium +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_high +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_all +--- PASS: Test_tracesamplerprocessor_SamplingPercentageRange (7.54s) + --- PASS: Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_tiny (1.69s) + --- PASS: Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_small (1.25s) + --- PASS: Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_medium (2.34s) + --- PASS: Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_high (1.14s) + --- PASS: Test_tracesamplerprocessor_SamplingPercentageRange/random_sampling_all (1.13s) +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange_MultipleResourceSpans +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange_MultipleResourceSpans/single_batch_single_trace_two_resource_spans +=== RUN Test_tracesamplerprocessor_SamplingPercentageRange_MultipleResourceSpans/single_batch_two_traces_two_resource_spans +--- PASS: Test_tracesamplerprocessor_SamplingPercentageRange_MultipleResourceSpans (0.00s) + --- PASS: Test_tracesamplerprocessor_SamplingPercentageRange_MultipleResourceSpans/single_batch_single_trace_two_resource_spans (0.00s) + --- PASS: Test_tracesamplerprocessor_SamplingPercentageRange_MultipleResourceSpans/single_batch_two_traces_two_resource_spans (0.00s) +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority/must_sample +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority/must_sample_double +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority/must_sample_string +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority/must_not_sample +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority/must_not_sample_double +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority/must_not_sample_string +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority/defer_sample_expect_not_sampled +=== RUN Test_tracesamplerprocessor_SpanSamplingPriority/defer_sample_expect_sampled +--- PASS: Test_tracesamplerprocessor_SpanSamplingPriority (0.00s) + --- PASS: Test_tracesamplerprocessor_SpanSamplingPriority/must_sample (0.00s) + --- PASS: Test_tracesamplerprocessor_SpanSamplingPriority/must_sample_double (0.00s) + --- PASS: Test_tracesamplerprocessor_SpanSamplingPriority/must_sample_string (0.00s) + --- PASS: Test_tracesamplerprocessor_SpanSamplingPriority/must_not_sample (0.00s) + --- PASS: Test_tracesamplerprocessor_SpanSamplingPriority/must_not_sample_double (0.00s) + --- PASS: Test_tracesamplerprocessor_SpanSamplingPriority/must_not_sample_string (0.00s) + --- PASS: Test_tracesamplerprocessor_SpanSamplingPriority/defer_sample_expect_not_sampled (0.00s) + --- PASS: Test_tracesamplerprocessor_SpanSamplingPriority/defer_sample_expect_sampled (0.00s) +=== RUN Test_parseSpanSamplingPriority +=== RUN Test_parseSpanSamplingPriority/nil_span +=== RUN Test_parseSpanSamplingPriority/nil_attributes +=== RUN Test_parseSpanSamplingPriority/no_sampling_priority +=== RUN Test_parseSpanSamplingPriority/sampling_priority_int_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_int_gt_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_int_lt_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_double_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_double_gt_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_double_lt_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_string_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_string_gt_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_string_lt_zero +=== RUN Test_parseSpanSamplingPriority/sampling_priority_string_NaN +--- PASS: Test_parseSpanSamplingPriority (0.00s) + --- PASS: Test_parseSpanSamplingPriority/nil_span (0.00s) + --- PASS: Test_parseSpanSamplingPriority/nil_attributes (0.00s) + --- PASS: Test_parseSpanSamplingPriority/no_sampling_priority (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_int_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_int_gt_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_int_lt_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_double_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_double_gt_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_double_lt_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_string_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_string_gt_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_string_lt_zero (0.00s) + --- PASS: Test_parseSpanSamplingPriority/sampling_priority_string_NaN (0.00s) +=== RUN Test_hash +--- PASS: Test_hash (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/probabilisticsamplerprocessor (cached) +=== RUN TestAttributes_InsertValue +=== RUN TestAttributes_InsertValue/InsertEmptyAttributes +=== RUN TestAttributes_InsertValue/InsertKeyNoExists +=== RUN TestAttributes_InsertValue/InsertKeyExists +--- PASS: TestAttributes_InsertValue (0.00s) + --- PASS: TestAttributes_InsertValue/InsertEmptyAttributes (0.00s) + --- PASS: TestAttributes_InsertValue/InsertKeyNoExists (0.00s) + --- PASS: TestAttributes_InsertValue/InsertKeyExists (0.00s) +=== RUN TestAttributes_InsertFromAttribute +=== RUN TestAttributes_InsertFromAttribute/InsertEmptyAttributes +=== RUN TestAttributes_InsertFromAttribute/InsertMissingFromAttribute +=== RUN TestAttributes_InsertFromAttribute/InsertAttributeExists +=== RUN TestAttributes_InsertFromAttribute/InsertKeysExists +--- PASS: TestAttributes_InsertFromAttribute (0.00s) + --- PASS: TestAttributes_InsertFromAttribute/InsertEmptyAttributes (0.00s) + --- PASS: TestAttributes_InsertFromAttribute/InsertMissingFromAttribute (0.00s) + --- PASS: TestAttributes_InsertFromAttribute/InsertAttributeExists (0.00s) + --- PASS: TestAttributes_InsertFromAttribute/InsertKeysExists (0.00s) +=== RUN TestAttributes_UpdateValue +=== RUN TestAttributes_UpdateValue/UpdateNoAttributes +=== RUN TestAttributes_UpdateValue/UpdateKeyNoExist +=== RUN TestAttributes_UpdateValue/UpdateAttributes +--- PASS: TestAttributes_UpdateValue (0.00s) + --- PASS: TestAttributes_UpdateValue/UpdateNoAttributes (0.00s) + --- PASS: TestAttributes_UpdateValue/UpdateKeyNoExist (0.00s) + --- PASS: TestAttributes_UpdateValue/UpdateAttributes (0.00s) +=== RUN TestAttributes_UpdateFromAttribute +=== RUN TestAttributes_UpdateFromAttribute/UpdateNoAttributes +=== RUN TestAttributes_UpdateFromAttribute/UpdateKeyNoExistFromAttribute +=== RUN TestAttributes_UpdateFromAttribute/UpdateKeyNoExistMainAttributed +=== RUN TestAttributes_UpdateFromAttribute/UpdateKeyFromExistingAttribute +--- PASS: TestAttributes_UpdateFromAttribute (0.00s) + --- PASS: TestAttributes_UpdateFromAttribute/UpdateNoAttributes (0.00s) + --- PASS: TestAttributes_UpdateFromAttribute/UpdateKeyNoExistFromAttribute (0.00s) + --- PASS: TestAttributes_UpdateFromAttribute/UpdateKeyNoExistMainAttributed (0.00s) + --- PASS: TestAttributes_UpdateFromAttribute/UpdateKeyFromExistingAttribute (0.00s) +=== RUN TestAttributes_UpsertValue +=== RUN TestAttributes_UpsertValue/UpsertNoAttributes +=== RUN TestAttributes_UpsertValue/UpsertAttributeNoExist +=== RUN TestAttributes_UpsertValue/UpsertAttributeExists +--- PASS: TestAttributes_UpsertValue (0.00s) + --- PASS: TestAttributes_UpsertValue/UpsertNoAttributes (0.00s) + --- PASS: TestAttributes_UpsertValue/UpsertAttributeNoExist (0.00s) + --- PASS: TestAttributes_UpsertValue/UpsertAttributeExists (0.00s) +=== RUN TestAttributes_Extract +=== RUN TestAttributes_Extract/UpsertEmptyAttributes +=== RUN TestAttributes_Extract/No_extract_with_no_target_key +=== RUN TestAttributes_Extract/No_extract_with_non_string_target_key +=== RUN TestAttributes_Extract/No_extract_with_no_pattern_matching +=== RUN TestAttributes_Extract/No_extract_with_no_pattern_matching#01 +=== RUN TestAttributes_Extract/Extract_insert_new_values. +=== RUN TestAttributes_Extract/Extract_updates_existing_values_ +=== RUN TestAttributes_Extract/Extract_upserts_values +--- PASS: TestAttributes_Extract (0.00s) + --- PASS: TestAttributes_Extract/UpsertEmptyAttributes (0.00s) + --- PASS: TestAttributes_Extract/No_extract_with_no_target_key (0.00s) + --- PASS: TestAttributes_Extract/No_extract_with_non_string_target_key (0.00s) + --- PASS: TestAttributes_Extract/No_extract_with_no_pattern_matching (0.00s) + --- PASS: TestAttributes_Extract/No_extract_with_no_pattern_matching#01 (0.00s) + --- PASS: TestAttributes_Extract/Extract_insert_new_values. (0.00s) + --- PASS: TestAttributes_Extract/Extract_updates_existing_values_ (0.00s) + --- PASS: TestAttributes_Extract/Extract_upserts_values (0.00s) +=== RUN TestAttributes_UpsertFromAttribute +=== RUN TestAttributes_UpsertFromAttribute/UpsertEmptyAttributes +=== RUN TestAttributes_UpsertFromAttribute/UpsertFromAttributeNoExist +=== RUN TestAttributes_UpsertFromAttribute/UpsertFromAttributeExistsInsert +=== RUN TestAttributes_UpsertFromAttribute/UpsertFromAttributeExistsUpdate +--- PASS: TestAttributes_UpsertFromAttribute (0.00s) + --- PASS: TestAttributes_UpsertFromAttribute/UpsertEmptyAttributes (0.00s) + --- PASS: TestAttributes_UpsertFromAttribute/UpsertFromAttributeNoExist (0.00s) + --- PASS: TestAttributes_UpsertFromAttribute/UpsertFromAttributeExistsInsert (0.00s) + --- PASS: TestAttributes_UpsertFromAttribute/UpsertFromAttributeExistsUpdate (0.00s) +=== RUN TestAttributes_Delete +=== RUN TestAttributes_Delete/DeleteEmptyAttributes +=== RUN TestAttributes_Delete/DeleteAttributeNoExist +=== RUN TestAttributes_Delete/DeleteAttributeExists +--- PASS: TestAttributes_Delete (0.00s) + --- PASS: TestAttributes_Delete/DeleteEmptyAttributes (0.00s) + --- PASS: TestAttributes_Delete/DeleteAttributeNoExist (0.00s) + --- PASS: TestAttributes_Delete/DeleteAttributeExists (0.00s) +=== RUN TestAttributes_HashValue +=== RUN TestAttributes_HashValue/HashNoAttributes +=== RUN TestAttributes_HashValue/HashKeyNoExist +=== RUN TestAttributes_HashValue/HashString +=== RUN TestAttributes_HashValue/HashInt +=== RUN TestAttributes_HashValue/HashDouble +=== RUN TestAttributes_HashValue/HashBoolTrue +=== RUN TestAttributes_HashValue/HashBoolFalse +--- PASS: TestAttributes_HashValue (0.00s) + --- PASS: TestAttributes_HashValue/HashNoAttributes (0.00s) + --- PASS: TestAttributes_HashValue/HashKeyNoExist (0.00s) + --- PASS: TestAttributes_HashValue/HashString (0.00s) + --- PASS: TestAttributes_HashValue/HashInt (0.00s) + --- PASS: TestAttributes_HashValue/HashDouble (0.00s) + --- PASS: TestAttributes_HashValue/HashBoolTrue (0.00s) + --- PASS: TestAttributes_HashValue/HashBoolFalse (0.00s) +=== RUN TestAttributes_FromAttributeNoChange +=== RUN TestAttributes_FromAttributeNoChange/FromAttributeNoChange +--- PASS: TestAttributes_FromAttributeNoChange (0.00s) + --- PASS: TestAttributes_FromAttributeNoChange/FromAttributeNoChange (0.00s) +=== RUN TestAttributes_Ordering +=== RUN TestAttributes_Ordering/OrderingApplyAllSteps +=== RUN TestAttributes_Ordering/OrderingOperationExists +=== RUN TestAttributes_Ordering/OrderingSvcOperationExists +=== RUN TestAttributes_Ordering/OrderingBothAttributesExist +--- PASS: TestAttributes_Ordering (0.00s) + --- PASS: TestAttributes_Ordering/OrderingApplyAllSteps (0.00s) + --- PASS: TestAttributes_Ordering/OrderingOperationExists (0.00s) + --- PASS: TestAttributes_Ordering/OrderingSvcOperationExists (0.00s) + --- PASS: TestAttributes_Ordering/OrderingBothAttributesExist (0.00s) +=== RUN TestInvalidConfig +=== RUN TestInvalidConfig/missing_key +=== RUN TestInvalidConfig/invalid_action +=== RUN TestInvalidConfig/unsupported_value +=== RUN TestInvalidConfig/missing_value_or_from_attribute +=== RUN TestInvalidConfig/both_set_value_and_from_attribute +=== RUN TestInvalidConfig/pattern_shouldn't_be_specified +=== RUN TestInvalidConfig/missing_rule_for_extract +=== RUN TestInvalidConfig/set_value_for_extract +=== RUN TestInvalidConfig/set_from_attribute_for_extract +=== RUN TestInvalidConfig/invalid_regex +=== RUN TestInvalidConfig/delete_with_regex +=== RUN TestInvalidConfig/regex_with_unnamed_capture_group +=== RUN TestInvalidConfig/regex_with_one_unnamed_capture_groups +--- PASS: TestInvalidConfig (0.00s) + --- PASS: TestInvalidConfig/missing_key (0.00s) + --- PASS: TestInvalidConfig/invalid_action (0.00s) + --- PASS: TestInvalidConfig/unsupported_value (0.00s) + --- PASS: TestInvalidConfig/missing_value_or_from_attribute (0.00s) + --- PASS: TestInvalidConfig/both_set_value_and_from_attribute (0.00s) + --- PASS: TestInvalidConfig/pattern_shouldn't_be_specified (0.00s) + --- PASS: TestInvalidConfig/missing_rule_for_extract (0.00s) + --- PASS: TestInvalidConfig/set_value_for_extract (0.00s) + --- PASS: TestInvalidConfig/set_from_attribute_for_extract (0.00s) + --- PASS: TestInvalidConfig/invalid_regex (0.00s) + --- PASS: TestInvalidConfig/delete_with_regex (0.00s) + --- PASS: TestInvalidConfig/regex_with_unnamed_capture_group (0.00s) + --- PASS: TestInvalidConfig/regex_with_one_unnamed_capture_groups (0.00s) +=== RUN TestValidConfiguration +--- PASS: TestValidConfiguration (0.00s) +=== RUN TestNewTrace +--- PASS: TestNewTrace (0.00s) +=== RUN TestNewMetrics_WithConstructors +--- PASS: TestNewMetrics_WithConstructors (0.00s) +=== RUN TestDefaultOptions +--- PASS: TestDefaultOptions (0.00s) +=== RUN TestWithOptions +--- PASS: TestWithOptions (0.00s) +=== RUN TestNewTraceExporter +--- PASS: TestNewTraceExporter (0.00s) +=== RUN TestNewTraceExporter_NilRequiredFields +--- PASS: TestNewTraceExporter_NilRequiredFields (0.00s) +=== RUN TestNewTraceExporter_ProcessTraceError +--- PASS: TestNewTraceExporter_ProcessTraceError (0.00s) +=== RUN TestNewMetricsExporter +--- PASS: TestNewMetricsExporter (0.00s) +=== RUN TestNewMetricsExporter_NilRequiredFields +--- PASS: TestNewMetricsExporter_NilRequiredFields (0.00s) +=== RUN TestNewMetricsExporter_ProcessMetricsError +--- PASS: TestNewMetricsExporter_ProcessMetricsError (0.00s) +=== RUN TestNewMetricsExporter_ProcessMetricsErrSkipProcessingData +--- PASS: TestNewMetricsExporter_ProcessMetricsErrSkipProcessingData (0.00s) +=== RUN TestNewLogsExporter +--- PASS: TestNewLogsExporter (0.00s) +=== RUN TestNewLogsExporter_NilRequiredFields +--- PASS: TestNewLogsExporter_NilRequiredFields (0.00s) +=== RUN TestNewLogsExporter_ProcessLogError +--- PASS: TestNewLogsExporter_ProcessLogError (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/processorhelper (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateProcessor +--- PASS: TestCreateProcessor (0.00s) +=== RUN TestInvalidEmptyActions +--- PASS: TestInvalidEmptyActions (0.00s) +=== RUN TestInvalidAttributeActions +--- PASS: TestInvalidAttributeActions (0.00s) +=== RUN TestResourceProcessorAttributesUpsert +=== RUN TestResourceProcessorAttributesUpsert/config_with_attributes_applied_on_nil_resource +=== RUN TestResourceProcessorAttributesUpsert/config_with_attributes_applied_on_empty_resource +=== RUN TestResourceProcessorAttributesUpsert/config_attributes_applied_on_existing_resource_attributes +=== RUN TestResourceProcessorAttributesUpsert/config_attributes_replacement +--- PASS: TestResourceProcessorAttributesUpsert (0.00s) + --- PASS: TestResourceProcessorAttributesUpsert/config_with_attributes_applied_on_nil_resource (0.00s) + --- PASS: TestResourceProcessorAttributesUpsert/config_with_attributes_applied_on_empty_resource (0.00s) + --- PASS: TestResourceProcessorAttributesUpsert/config_attributes_applied_on_existing_resource_attributes (0.00s) + --- PASS: TestResourceProcessorAttributesUpsert/config_attributes_replacement (0.00s) +=== RUN TestResourceProcessorError +--- PASS: TestResourceProcessorError (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/resourceprocessor (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestFactory_Type +--- PASS: TestFactory_Type (0.00s) +=== RUN TestFactory_CreateDefaultConfig +--- PASS: TestFactory_CreateDefaultConfig (0.00s) +=== RUN TestFactory_CreateTraceProcessor +--- PASS: TestFactory_CreateTraceProcessor (0.00s) +=== RUN TestFactory_CreateTraceProcessor_InvalidConfig +=== RUN TestFactory_CreateTraceProcessor_InvalidConfig/missing_config +=== RUN TestFactory_CreateTraceProcessor_InvalidConfig/invalid_regexp +--- PASS: TestFactory_CreateTraceProcessor_InvalidConfig (0.00s) + --- PASS: TestFactory_CreateTraceProcessor_InvalidConfig/missing_config (0.00s) + --- PASS: TestFactory_CreateTraceProcessor_InvalidConfig/invalid_regexp (0.00s) +=== RUN TestFactory_CreateMetricProcessor +--- PASS: TestFactory_CreateMetricProcessor (0.00s) +=== RUN TestNewTraceProcessor +--- PASS: TestNewTraceProcessor (0.00s) +=== RUN TestSpanProcessor_NilEmptyData +=== RUN TestSpanProcessor_NilEmptyData/empty +=== RUN TestSpanProcessor_NilEmptyData/one-empty-resource-spans +=== RUN TestSpanProcessor_NilEmptyData/no-libraries +=== RUN TestSpanProcessor_NilEmptyData/one-empty-instrumentation-library +--- PASS: TestSpanProcessor_NilEmptyData (0.00s) + --- PASS: TestSpanProcessor_NilEmptyData/empty (0.00s) + --- PASS: TestSpanProcessor_NilEmptyData/one-empty-resource-spans (0.00s) + --- PASS: TestSpanProcessor_NilEmptyData/no-libraries (0.00s) + --- PASS: TestSpanProcessor_NilEmptyData/one-empty-instrumentation-library (0.00s) +=== RUN TestSpanProcessor_Values +=== RUN TestSpanProcessor_Values/#00 +=== RUN TestSpanProcessor_Values/nil-attributes +=== RUN TestSpanProcessor_Values/empty-attributes +=== RUN TestSpanProcessor_Values/string-type +=== RUN TestSpanProcessor_Values/int-type +=== RUN TestSpanProcessor_Values/double-type +=== RUN TestSpanProcessor_Values/bool-type +--- PASS: TestSpanProcessor_Values (0.00s) + --- PASS: TestSpanProcessor_Values/#00 (0.00s) + --- PASS: TestSpanProcessor_Values/nil-attributes (0.00s) + --- PASS: TestSpanProcessor_Values/empty-attributes (0.00s) + --- PASS: TestSpanProcessor_Values/string-type (0.00s) + --- PASS: TestSpanProcessor_Values/int-type (0.00s) + --- PASS: TestSpanProcessor_Values/double-type (0.00s) + --- PASS: TestSpanProcessor_Values/bool-type (0.00s) +=== RUN TestSpanProcessor_MissingKeys +=== RUN TestSpanProcessor_MissingKeys/first-keys-missing +=== RUN TestSpanProcessor_MissingKeys/middle-key-missing +=== RUN TestSpanProcessor_MissingKeys/last-key-missing +=== RUN TestSpanProcessor_MissingKeys/all-keys-exists +--- PASS: TestSpanProcessor_MissingKeys (0.00s) + --- PASS: TestSpanProcessor_MissingKeys/first-keys-missing (0.00s) + --- PASS: TestSpanProcessor_MissingKeys/middle-key-missing (0.00s) + --- PASS: TestSpanProcessor_MissingKeys/last-key-missing (0.00s) + --- PASS: TestSpanProcessor_MissingKeys/all-keys-exists (0.00s) +=== RUN TestSpanProcessor_Separator +--- PASS: TestSpanProcessor_Separator (0.00s) +=== RUN TestSpanProcessor_NoSeparatorMultipleKeys +--- PASS: TestSpanProcessor_NoSeparatorMultipleKeys (0.00s) +=== RUN TestSpanProcessor_SeparatorMultipleKeys +--- PASS: TestSpanProcessor_SeparatorMultipleKeys (0.00s) +=== RUN TestSpanProcessor_NilName +--- PASS: TestSpanProcessor_NilName (0.00s) +=== RUN TestSpanProcessor_ToAttributes +=== RUN TestSpanProcessor_ToAttributes//api/v1/document/321083210/update/1 +=== RUN TestSpanProcessor_ToAttributes//api/v1/document/321083210/update/2 +=== RUN TestSpanProcessor_ToAttributes//api/v1/document/321083210/update/3 +=== RUN TestSpanProcessor_ToAttributes//api/v1/document/321083210/update/4 +=== RUN TestSpanProcessor_ToAttributes/#00 +--- PASS: TestSpanProcessor_ToAttributes (0.00s) + --- PASS: TestSpanProcessor_ToAttributes//api/v1/document/321083210/update/1 (0.00s) + --- PASS: TestSpanProcessor_ToAttributes//api/v1/document/321083210/update/2 (0.00s) + --- PASS: TestSpanProcessor_ToAttributes//api/v1/document/321083210/update/3 (0.00s) + --- PASS: TestSpanProcessor_ToAttributes//api/v1/document/321083210/update/4 (0.00s) + --- PASS: TestSpanProcessor_ToAttributes/#00 (0.00s) +=== RUN TestSpanProcessor_skipSpan +=== RUN TestSpanProcessor_skipSpan/url/url +=== RUN TestSpanProcessor_skipSpan/noslasheshere +=== RUN TestSpanProcessor_skipSpan/www.test.com/code +=== RUN TestSpanProcessor_skipSpan/donot/ +=== RUN TestSpanProcessor_skipSpan/donot/change +--- PASS: TestSpanProcessor_skipSpan (0.00s) + --- PASS: TestSpanProcessor_skipSpan/url/url (0.00s) + --- PASS: TestSpanProcessor_skipSpan/noslasheshere (0.00s) + --- PASS: TestSpanProcessor_skipSpan/www.test.com/code (0.00s) + --- PASS: TestSpanProcessor_skipSpan/donot/ (0.00s) + --- PASS: TestSpanProcessor_skipSpan/donot/change (0.00s) +PASS +ok go.opentelemetry.io/collector/processor/spanprocessor (cached) +? go.opentelemetry.io/collector/receiver [no test files] +=== RUN TestAckEncoding +--- PASS: TestAckEncoding (0.00s) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestMessageEventConversion +--- PASS: TestMessageEventConversion (0.00s) +=== RUN TestAttributeTypeConversion +--- PASS: TestAttributeTypeConversion (0.00s) +=== RUN TestEventMode +--- PASS: TestEventMode (0.00s) +=== RUN TestTimeFromTimestampBadType +--- PASS: TestTimeFromTimestampBadType (0.00s) +=== RUN TestMessageEventConversionWithErrors +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_0 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_1 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_2 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_3 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_4 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_5 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_6 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_7 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_8 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_9 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_10 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_11 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_12 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_13 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_14 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_15 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_16 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_17 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_18 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_19 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_20 +=== RUN TestMessageEventConversionWithErrors/EOF_at_byte_21 +=== RUN TestMessageEventConversionWithErrors/Invalid_timestamp_type_uint +--- PASS: TestMessageEventConversionWithErrors (0.01s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_0 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_1 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_2 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_3 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_4 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_5 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_6 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_7 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_8 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_9 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_10 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_11 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_12 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_13 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_14 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_15 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_16 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_17 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_18 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_19 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_20 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/EOF_at_byte_21 (0.00s) + --- PASS: TestMessageEventConversionWithErrors/Invalid_timestamp_type_uint (0.00s) +=== RUN TestForwardEventConversionWithErrors +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_0 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_1 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_2 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_3 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_4 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_5 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_6 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_7 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_8 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_9 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_10 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_11 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_12 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_13 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_14 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_15 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_16 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_17 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_18 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_19 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_20 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_21 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_22 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_23 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_24 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_25 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_26 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_27 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_28 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_29 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_30 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_31 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_32 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_33 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_34 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_35 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_36 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_37 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_38 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_39 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_40 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_41 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_42 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_43 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_44 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_45 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_46 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_47 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_48 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_49 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_50 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_51 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_52 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_53 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_54 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_55 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_56 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_57 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_58 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_59 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_60 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_61 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_62 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_63 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_64 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_65 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_66 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_67 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_68 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_69 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_70 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_71 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_72 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_73 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_74 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_75 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_76 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_77 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_78 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_79 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_80 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_81 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_82 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_83 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_84 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_85 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_86 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_87 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_88 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_89 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_90 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_91 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_92 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_93 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_94 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_95 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_96 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_97 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_98 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_99 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_100 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_101 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_102 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_103 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_104 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_105 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_106 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_107 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_108 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_109 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_110 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_111 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_112 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_113 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_114 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_115 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_116 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_117 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_118 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_119 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_120 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_121 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_122 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_123 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_124 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_125 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_126 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_127 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_128 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_129 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_130 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_131 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_132 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_133 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_134 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_135 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_136 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_137 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_138 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_139 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_140 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_141 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_142 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_143 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_144 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_145 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_146 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_147 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_148 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_149 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_150 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_151 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_152 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_153 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_154 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_155 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_156 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_157 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_158 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_159 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_160 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_161 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_162 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_163 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_164 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_165 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_166 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_167 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_168 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_169 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_170 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_171 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_172 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_173 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_174 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_175 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_176 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_177 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_178 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_179 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_180 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_181 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_182 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_183 +=== RUN TestForwardEventConversionWithErrors/EOF_at_byte_184 +--- PASS: TestForwardEventConversionWithErrors (0.05s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_0 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_1 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_2 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_3 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_4 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_5 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_6 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_7 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_8 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_9 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_10 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_11 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_12 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_13 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_14 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_15 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_16 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_17 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_18 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_19 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_20 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_21 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_22 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_23 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_24 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_25 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_26 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_27 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_28 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_29 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_30 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_31 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_32 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_33 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_34 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_35 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_36 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_37 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_38 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_39 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_40 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_41 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_42 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_43 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_44 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_45 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_46 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_47 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_48 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_49 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_50 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_51 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_52 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_53 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_54 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_55 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_56 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_57 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_58 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_59 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_60 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_61 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_62 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_63 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_64 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_65 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_66 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_67 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_68 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_69 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_70 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_71 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_72 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_73 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_74 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_75 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_76 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_77 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_78 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_79 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_80 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_81 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_82 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_83 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_84 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_85 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_86 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_87 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_88 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_89 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_90 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_91 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_92 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_93 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_94 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_95 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_96 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_97 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_98 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_99 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_100 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_101 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_102 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_103 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_104 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_105 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_106 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_107 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_108 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_109 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_110 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_111 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_112 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_113 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_114 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_115 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_116 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_117 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_118 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_119 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_120 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_121 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_122 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_123 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_124 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_125 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_126 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_127 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_128 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_129 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_130 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_131 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_132 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_133 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_134 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_135 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_136 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_137 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_138 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_139 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_140 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_141 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_142 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_143 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_144 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_145 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_146 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_147 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_148 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_149 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_150 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_151 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_152 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_153 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_154 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_155 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_156 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_157 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_158 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_159 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_160 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_161 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_162 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_163 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_164 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_165 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_166 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_167 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_168 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_169 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_170 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_171 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_172 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_173 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_174 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_175 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_176 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_177 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_178 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_179 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_180 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_181 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_182 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_183 (0.00s) + --- PASS: TestForwardEventConversionWithErrors/EOF_at_byte_184 (0.00s) +=== RUN TestPackedForwardEventConversionWithErrors +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_0 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_1 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_2 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_3 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_4 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_5 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_6 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_7 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_8 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_9 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_10 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_11 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_12 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_13 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_14 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_15 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_16 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_17 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_18 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_19 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_20 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_21 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_22 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_23 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_24 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_25 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_26 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_27 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_28 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_29 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_30 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_31 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_32 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_33 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_34 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_35 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_36 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_37 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_38 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_39 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_40 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_41 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_42 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_43 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_44 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_45 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_46 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_47 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_48 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_49 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_50 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_51 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_52 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_53 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_54 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_55 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_56 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_57 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_58 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_59 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_60 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_61 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_62 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_63 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_64 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_65 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_66 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_67 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_68 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_69 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_70 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_71 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_72 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_73 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_74 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_75 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_76 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_77 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_78 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_79 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_80 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_81 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_82 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_83 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_84 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_85 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_86 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_87 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_88 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_89 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_90 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_91 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_92 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_93 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_94 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_95 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_96 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_97 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_98 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_99 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_100 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_101 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_102 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_103 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_104 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_105 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_106 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_107 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_108 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_109 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_110 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_111 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_112 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_113 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_114 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_115 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_116 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_117 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_118 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_119 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_120 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_121 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_122 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_123 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_124 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_125 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_126 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_127 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_128 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_129 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_130 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_131 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_132 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_133 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_134 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_135 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_136 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_137 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_138 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_139 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_140 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_141 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_142 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_143 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_144 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_145 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_146 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_147 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_148 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_149 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_150 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_151 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_152 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_153 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_154 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_155 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_156 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_157 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_158 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_159 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_160 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_161 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_162 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_163 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_164 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_165 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_166 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_167 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_168 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_169 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_170 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_171 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_172 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_173 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_174 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_175 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_176 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_177 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_178 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_179 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_180 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_181 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_182 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_183 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_184 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_185 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_186 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_187 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_188 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_189 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_190 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_191 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_192 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_193 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_194 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_195 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_196 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_197 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_198 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_199 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_200 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_201 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_202 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_203 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_204 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_205 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_206 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_207 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_208 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_209 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_210 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_211 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_212 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_213 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_214 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_215 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_216 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_217 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_218 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_219 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_220 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_221 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_222 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_223 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_224 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_225 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_226 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_227 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_228 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_229 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_230 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_231 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_232 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_233 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_234 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_235 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_236 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_237 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_238 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_239 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_240 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_241 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_242 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_243 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_244 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_245 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_246 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_247 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_248 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_249 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_250 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_251 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_252 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_253 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_254 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_255 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_256 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_257 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_258 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_259 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_260 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_261 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_262 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_263 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_264 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_265 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_266 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_267 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_268 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_269 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_270 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_271 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_272 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_273 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_274 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_275 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_276 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_277 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_278 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_279 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_280 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_281 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_282 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_283 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_284 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_285 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_286 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_287 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_288 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_289 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_290 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_291 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_292 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_293 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_294 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_295 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_296 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_297 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_298 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_299 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_300 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_301 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_302 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_303 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_304 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_305 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_306 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_307 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_308 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_309 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_310 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_311 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_312 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_313 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_314 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_315 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_316 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_317 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_318 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_319 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_320 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_321 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_322 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_323 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_324 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_325 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_326 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_327 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_328 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_329 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_330 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_331 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_332 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_333 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_334 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_335 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_336 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_337 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_338 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_339 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_340 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_341 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_342 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_343 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_344 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_345 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_346 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_347 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_348 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_349 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_350 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_351 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_352 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_353 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_354 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_355 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_356 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_357 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_358 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_359 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_360 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_361 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_362 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_363 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_364 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_365 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_366 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_367 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_368 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_369 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_370 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_371 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_372 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_373 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_374 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_375 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_376 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_377 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_378 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_379 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_380 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_381 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_382 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_383 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_384 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_385 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_386 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_387 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_388 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_389 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_390 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_391 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_392 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_393 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_394 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_395 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_396 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_397 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_398 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_399 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_400 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_401 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_402 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_403 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_404 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_405 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_406 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_407 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_408 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_409 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_410 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_411 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_412 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_413 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_414 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_415 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_416 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_417 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_418 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_419 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_420 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_421 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_422 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_423 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_424 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_425 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_426 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_427 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_428 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_429 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_430 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_431 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_432 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_433 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_434 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_435 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_436 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_437 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_438 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_439 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_440 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_441 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_442 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_443 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_444 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_445 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_446 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_447 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_448 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_449 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_450 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_451 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_452 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_453 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_454 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_455 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_456 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_457 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_458 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_459 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_460 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_461 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_462 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_463 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_464 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_465 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_466 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_467 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_468 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_469 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_470 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_471 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_472 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_473 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_474 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_475 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_476 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_477 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_478 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_479 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_480 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_481 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_482 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_483 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_484 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_485 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_486 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_487 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_488 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_489 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_490 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_491 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_492 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_493 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_494 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_495 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_496 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_497 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_498 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_499 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_500 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_501 +=== RUN TestPackedForwardEventConversionWithErrors/EOF_at_byte_502 +=== RUN TestPackedForwardEventConversionWithErrors/Invalid_gzip_header +gzip: invalid header--- PASS: TestPackedForwardEventConversionWithErrors (0.11s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_0 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_1 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_2 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_3 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_4 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_5 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_6 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_7 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_8 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_9 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_10 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_11 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_12 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_13 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_14 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_15 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_16 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_17 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_18 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_19 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_20 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_21 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_22 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_23 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_24 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_25 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_26 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_27 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_28 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_29 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_30 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_31 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_32 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_33 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_34 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_35 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_36 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_37 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_38 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_39 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_40 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_41 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_42 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_43 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_44 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_45 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_46 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_47 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_48 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_49 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_50 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_51 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_52 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_53 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_54 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_55 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_56 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_57 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_58 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_59 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_60 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_61 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_62 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_63 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_64 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_65 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_66 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_67 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_68 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_69 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_70 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_71 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_72 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_73 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_74 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_75 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_76 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_77 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_78 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_79 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_80 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_81 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_82 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_83 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_84 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_85 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_86 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_87 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_88 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_89 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_90 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_91 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_92 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_93 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_94 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_95 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_96 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_97 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_98 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_99 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_100 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_101 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_102 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_103 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_104 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_105 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_106 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_107 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_108 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_109 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_110 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_111 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_112 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_113 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_114 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_115 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_116 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_117 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_118 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_119 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_120 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_121 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_122 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_123 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_124 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_125 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_126 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_127 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_128 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_129 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_130 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_131 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_132 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_133 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_134 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_135 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_136 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_137 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_138 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_139 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_140 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_141 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_142 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_143 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_144 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_145 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_146 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_147 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_148 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_149 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_150 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_151 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_152 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_153 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_154 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_155 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_156 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_157 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_158 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_159 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_160 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_161 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_162 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_163 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_164 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_165 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_166 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_167 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_168 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_169 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_170 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_171 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_172 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_173 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_174 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_175 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_176 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_177 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_178 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_179 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_180 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_181 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_182 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_183 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_184 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_185 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_186 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_187 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_188 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_189 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_190 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_191 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_192 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_193 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_194 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_195 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_196 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_197 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_198 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_199 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_200 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_201 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_202 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_203 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_204 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_205 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_206 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_207 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_208 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_209 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_210 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_211 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_212 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_213 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_214 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_215 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_216 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_217 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_218 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_219 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_220 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_221 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_222 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_223 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_224 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_225 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_226 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_227 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_228 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_229 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_230 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_231 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_232 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_233 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_234 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_235 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_236 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_237 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_238 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_239 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_240 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_241 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_242 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_243 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_244 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_245 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_246 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_247 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_248 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_249 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_250 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_251 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_252 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_253 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_254 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_255 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_256 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_257 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_258 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_259 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_260 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_261 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_262 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_263 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_264 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_265 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_266 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_267 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_268 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_269 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_270 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_271 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_272 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_273 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_274 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_275 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_276 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_277 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_278 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_279 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_280 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_281 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_282 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_283 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_284 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_285 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_286 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_287 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_288 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_289 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_290 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_291 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_292 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_293 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_294 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_295 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_296 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_297 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_298 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_299 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_300 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_301 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_302 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_303 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_304 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_305 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_306 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_307 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_308 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_309 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_310 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_311 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_312 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_313 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_314 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_315 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_316 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_317 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_318 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_319 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_320 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_321 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_322 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_323 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_324 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_325 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_326 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_327 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_328 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_329 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_330 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_331 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_332 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_333 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_334 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_335 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_336 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_337 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_338 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_339 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_340 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_341 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_342 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_343 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_344 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_345 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_346 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_347 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_348 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_349 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_350 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_351 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_352 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_353 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_354 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_355 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_356 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_357 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_358 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_359 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_360 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_361 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_362 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_363 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_364 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_365 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_366 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_367 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_368 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_369 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_370 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_371 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_372 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_373 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_374 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_375 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_376 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_377 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_378 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_379 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_380 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_381 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_382 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_383 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_384 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_385 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_386 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_387 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_388 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_389 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_390 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_391 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_392 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_393 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_394 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_395 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_396 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_397 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_398 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_399 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_400 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_401 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_402 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_403 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_404 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_405 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_406 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_407 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_408 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_409 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_410 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_411 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_412 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_413 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_414 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_415 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_416 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_417 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_418 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_419 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_420 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_421 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_422 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_423 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_424 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_425 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_426 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_427 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_428 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_429 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_430 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_431 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_432 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_433 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_434 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_435 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_436 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_437 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_438 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_439 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_440 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_441 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_442 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_443 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_444 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_445 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_446 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_447 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_448 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_449 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_450 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_451 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_452 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_453 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_454 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_455 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_456 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_457 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_458 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_459 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_460 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_461 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_462 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_463 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_464 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_465 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_466 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_467 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_468 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_469 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_470 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_471 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_472 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_473 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_474 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_475 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_476 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_477 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_478 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_479 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_480 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_481 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_482 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_483 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_484 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_485 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_486 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_487 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_488 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_489 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_490 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_491 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_492 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_493 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_494 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_495 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_496 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_497 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_498 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_499 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_500 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_501 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/EOF_at_byte_502 (0.00s) + --- PASS: TestPackedForwardEventConversionWithErrors/Invalid_gzip_header (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateReceiver +--- PASS: TestCreateReceiver (0.00s) +=== RUN TestUDPHeartbeat +--- PASS: TestUDPHeartbeat (0.00s) +=== RUN TestMessageEventConversionMalformed +--- PASS: TestMessageEventConversionMalformed (0.00s) +=== RUN TestMessageEvent +--- PASS: TestMessageEvent (0.01s) +=== RUN TestForwardEvent +--- PASS: TestForwardEvent (0.01s) +=== RUN TestEventAcknowledgment +[{{debug 2021-02-25 17:05:52.388659 -0500 EST m=+0.227242466 Got connection undefined } [{remoteAddr 15 0 127.0.0.1:61457 }]}]--- PASS: TestEventAcknowledgment (0.00s) +=== RUN TestForwardPackedEvent +--- PASS: TestForwardPackedEvent (0.01s) +=== RUN TestForwardPackedCompressedEvent +--- PASS: TestForwardPackedCompressedEvent (0.01s) +=== RUN TestUnixEndpoint +--- PASS: TestUnixEndpoint (0.01s) +=== RUN TestHighVolume +--- PASS: TestHighVolume (0.25s) +=== RUN TestDetermineNextEventMode +=== RUN TestDetermineNextEventMode/basic +=== RUN TestDetermineNextEventMode/str8-tag +=== RUN TestDetermineNextEventMode/str16-tag +=== RUN TestDetermineNextEventMode/str32-tag +=== RUN TestDetermineNextEventMode/non-string-tag +=== RUN TestDetermineNextEventMode/float-second-elm +--- PASS: TestDetermineNextEventMode (0.00s) + --- PASS: TestDetermineNextEventMode/basic (0.00s) + --- PASS: TestDetermineNextEventMode/str8-tag (0.00s) + --- PASS: TestDetermineNextEventMode/str16-tag (0.00s) + --- PASS: TestDetermineNextEventMode/str32-tag (0.00s) + --- PASS: TestDetermineNextEventMode/non-string-tag (0.00s) + --- PASS: TestDetermineNextEventMode/float-second-elm (0.00s) +=== RUN TestTimeEventExp +--- PASS: TestTimeEventExp (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/fluentforwardreceiver (cached) +=== RUN TestViews +--- PASS: TestViews (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/fluentforwardreceiver/observ (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestLoadInvalidConfig_NoScrapers +--- PASS: TestLoadInvalidConfig_NoScrapers (0.00s) +=== RUN TestLoadInvalidConfig_InvalidScraperKey +--- PASS: TestLoadInvalidConfig_InvalidScraperKey (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateReceiver +--- PASS: TestCreateReceiver (0.00s) +=== RUN TestCreateReceiver_ScraperKeyConfigError +--- PASS: TestCreateReceiver_ScraperKeyConfigError (0.00s) +=== RUN TestGatherMetrics_EndToEnd +--- PASS: TestGatherMetrics_EndToEnd (0.28s) +=== RUN TestGatherMetrics_ScraperKeyConfigError +--- PASS: TestGatherMetrics_ScraperKeyConfigError (0.00s) +=== RUN TestGatherMetrics_CreateMetricsScraperError +--- PASS: TestGatherMetrics_CreateMetricsScraperError (0.00s) +=== RUN TestGatherMetrics_CreateMetricsResourceScraperError +--- PASS: TestGatherMetrics_CreateMetricsResourceScraperError (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver (cached) +? go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal [no test files] +? go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/metadata [no test files] +? go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/perfcounters [no test files] +=== RUN TestScrape +=== RUN TestScrape/Standard +=== RUN TestScrape/Validate_Start_Time +=== RUN TestScrape/Boot_Time_Error +=== RUN TestScrape/Times_Error +--- PASS: TestScrape (0.00s) + --- PASS: TestScrape/Standard (0.00s) + --- PASS: TestScrape/Validate_Start_Time (0.00s) + --- PASS: TestScrape/Boot_Time_Error (0.00s) + --- PASS: TestScrape/Times_Error (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsScraper +--- PASS: TestCreateMetricsScraper (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/cpuscraper (cached) +=== RUN TestScrape_Others +=== RUN TestScrape_Others/Error +--- PASS: TestScrape_Others (0.00s) + --- PASS: TestScrape_Others/Error (0.00s) +=== RUN TestScrape +=== RUN TestScrape/Standard +=== RUN TestScrape/Validate_Start_Time +=== RUN TestScrape/Boot_Time_Error +=== RUN TestScrape/Include_Filter_that_matches_nothing +=== RUN TestScrape/Invalid_Include_Filter +=== RUN TestScrape/Invalid_Exclude_Filter +--- PASS: TestScrape (0.01s) + --- PASS: TestScrape/Standard (0.00s) + --- PASS: TestScrape/Validate_Start_Time (0.00s) + --- PASS: TestScrape/Boot_Time_Error (0.00s) + --- PASS: TestScrape/Include_Filter_that_matches_nothing (0.00s) + --- PASS: TestScrape/Invalid_Include_Filter (0.00s) + --- PASS: TestScrape/Invalid_Exclude_Filter (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsScraper +--- PASS: TestCreateMetricsScraper (0.00s) +=== RUN TestCreateMetricsScraper_Error +--- PASS: TestCreateMetricsScraper_Error (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/diskscraper (cached) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsScraper +--- PASS: TestCreateMetricsScraper (0.00s) +=== RUN TestCreateMetricsScraper_Error +--- PASS: TestCreateMetricsScraper_Error (0.00s) +=== RUN TestScrape +=== RUN TestScrape/Standard +=== RUN TestScrape/Include_single_device_filter +=== RUN TestScrape/Include_Device_Filter_that_matches_nothing +=== RUN TestScrape/Include_filter_with_devices,_filesystem_type_and_mount_points +=== RUN TestScrape/Invalid_Include_Device_Filter +=== RUN TestScrape/Invalid_Exclude_Device_Filter +=== RUN TestScrape/Invalid_Include_Filesystems_Filter +=== RUN TestScrape/Invalid_Exclude_Filesystems_Filter +=== RUN TestScrape/Invalid_Include_Moountpoints_Filter +=== RUN TestScrape/Invalid_Exclude_Moountpoints_Filter +=== RUN TestScrape/Partitions_Error +=== RUN TestScrape/Usage_Error +--- PASS: TestScrape (0.01s) + --- PASS: TestScrape/Standard (0.00s) + --- PASS: TestScrape/Include_single_device_filter (0.00s) + --- PASS: TestScrape/Include_Device_Filter_that_matches_nothing (0.00s) + --- PASS: TestScrape/Include_filter_with_devices,_filesystem_type_and_mount_points (0.00s) + --- PASS: TestScrape/Invalid_Include_Device_Filter (0.00s) + --- PASS: TestScrape/Invalid_Exclude_Device_Filter (0.00s) + --- PASS: TestScrape/Invalid_Include_Filesystems_Filter (0.00s) + --- PASS: TestScrape/Invalid_Exclude_Filesystems_Filter (0.00s) + --- PASS: TestScrape/Invalid_Include_Moountpoints_Filter (0.00s) + --- PASS: TestScrape/Invalid_Exclude_Moountpoints_Filter (0.00s) + --- PASS: TestScrape/Partitions_Error (0.00s) + --- PASS: TestScrape/Usage_Error (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/filesystemscraper (cached) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsScraper +--- PASS: TestCreateMetricsScraper (0.00s) +=== RUN TestScrape +=== RUN TestScrape/Standard +=== RUN TestScrape/Load_Error +--- PASS: TestScrape (0.00s) + --- PASS: TestScrape/Standard (0.00s) + --- PASS: TestScrape/Load_Error (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/loadscraper (cached) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsScraper +--- PASS: TestCreateMetricsScraper (0.00s) +=== RUN TestScrape +=== RUN TestScrape/Standard +=== RUN TestScrape/Error +--- PASS: TestScrape (0.00s) + --- PASS: TestScrape/Standard (0.00s) + --- PASS: TestScrape/Error (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/memoryscraper (cached) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsScraper +--- PASS: TestCreateMetricsScraper (0.00s) +=== RUN TestCreateMetricsScraper_Error +--- PASS: TestCreateMetricsScraper_Error (0.00s) +=== RUN TestScrape +=== RUN TestScrape/Standard +=== RUN TestScrape/Validate_Start_Time +=== RUN TestScrape/Include_Filter_that_matches_nothing +=== RUN TestScrape/Invalid_Include_Filter +=== RUN TestScrape/Invalid_Exclude_Filter +=== RUN TestScrape/Boot_Time_Error +=== RUN TestScrape/IOCounters_Error +=== RUN TestScrape/Connections_Error +--- PASS: TestScrape (1.01s) + --- PASS: TestScrape/Standard (0.78s) + --- PASS: TestScrape/Validate_Start_Time (0.08s) + --- PASS: TestScrape/Include_Filter_that_matches_nothing (0.07s) + --- PASS: TestScrape/Invalid_Include_Filter (0.00s) + --- PASS: TestScrape/Invalid_Exclude_Filter (0.00s) + --- PASS: TestScrape/Boot_Time_Error (0.00s) + --- PASS: TestScrape/IOCounters_Error (0.07s) + --- PASS: TestScrape/Connections_Error (0.01s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/networkscraper (cached) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsScraper +--- PASS: TestCreateMetricsScraper (0.00s) +=== RUN TestScrape_Errors +=== RUN TestScrape_Errors/virtualMemoryError +=== RUN TestScrape_Errors/swapMemoryError +=== RUN TestScrape_Errors/multipleErrors +--- PASS: TestScrape_Errors (0.00s) + --- PASS: TestScrape_Errors/virtualMemoryError (0.00s) + --- PASS: TestScrape_Errors/swapMemoryError (0.00s) + --- PASS: TestScrape_Errors/multipleErrors (0.00s) +=== RUN TestScrape +=== RUN TestScrape/Standard +=== RUN TestScrape/Validate_Start_Time +=== RUN TestScrape/Boot_Time_Error +--- PASS: TestScrape (0.00s) + --- PASS: TestScrape/Standard (0.00s) + --- PASS: TestScrape/Validate_Start_Time (0.00s) + --- PASS: TestScrape/Boot_Time_Error (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/pagingscraper (cached) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateMetricsScraper +--- PASS: TestCreateMetricsScraper (0.00s) +=== RUN TestScrape +=== RUN TestScrape/Standard +=== RUN TestScrape/Error +--- PASS: TestScrape (0.11s) + --- PASS: TestScrape/Standard (0.11s) + --- PASS: TestScrape/Error (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/processesscraper (cached) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateResourceMetricsScraper +--- PASS: TestCreateResourceMetricsScraper (0.00s) +=== RUN TestScrape + process_scraper_test.go:41: skipping test on darwin +--- SKIP: TestScrape (0.00s) +=== RUN TestScrapeMetrics_NewError + process_scraper_test.go:41: skipping test on darwin +--- SKIP: TestScrapeMetrics_NewError (0.00s) +=== RUN TestScrapeMetrics_GetProcessesError + process_scraper_test.go:41: skipping test on darwin +--- SKIP: TestScrapeMetrics_GetProcessesError (0.00s) +=== RUN TestScrapeMetrics_Filtered + process_scraper_test.go:41: skipping test on darwin +--- SKIP: TestScrapeMetrics_Filtered (0.00s) +=== RUN TestScrapeMetrics_ProcessErrors + process_scraper_test.go:41: skipping test on darwin +--- SKIP: TestScrapeMetrics_ProcessErrors (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/processscraper (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestFailedLoadConfig +--- PASS: TestFailedLoadConfig (0.01s) +=== RUN TestTypeStr +--- PASS: TestTypeStr (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateReceiver +--- PASS: TestCreateReceiver (0.00s) +=== RUN TestCreateReceiverGeneralConfig +--- PASS: TestCreateReceiverGeneralConfig (0.02s) +=== RUN TestCreateDefaultGRPCEndpoint +--- PASS: TestCreateDefaultGRPCEndpoint (0.00s) +=== RUN TestCreateTLSGPRCEndpoint +--- PASS: TestCreateTLSGPRCEndpoint (0.00s) +=== RUN TestCreateInvalidHTTPEndpoint +--- PASS: TestCreateInvalidHTTPEndpoint (0.00s) +=== RUN TestCreateInvalidThriftBinaryEndpoint +--- PASS: TestCreateInvalidThriftBinaryEndpoint (0.00s) +=== RUN TestCreateInvalidThriftCompactEndpoint +--- PASS: TestCreateInvalidThriftCompactEndpoint (0.00s) +=== RUN TestDefaultAgentRemoteSamplingEndpointAndPort +--- PASS: TestDefaultAgentRemoteSamplingEndpointAndPort (0.00s) +=== RUN TestAgentRemoteSamplingEndpoint +--- PASS: TestAgentRemoteSamplingEndpoint (0.00s) +=== RUN TestCreateNoPort +--- PASS: TestCreateNoPort (0.00s) +=== RUN TestCreateLargePort +--- PASS: TestCreateLargePort (0.00s) +=== RUN TestCreateInvalidHost +--- PASS: TestCreateInvalidHost (0.00s) +=== RUN TestCreateNoProtocols +--- PASS: TestCreateNoProtocols (0.00s) +=== RUN TestThriftBinaryBadPort +--- PASS: TestThriftBinaryBadPort (0.00s) +=== RUN TestThriftCompactBadPort +--- PASS: TestThriftCompactBadPort (0.00s) +=== RUN TestRemoteSamplingConfigPropagation +--- PASS: TestRemoteSamplingConfigPropagation (0.00s) +=== RUN TestRemoteSamplingFileRequiresGRPC +--- PASS: TestRemoteSamplingFileRequiresGRPC (0.00s) +=== RUN TestCustomUnmarshalErrors +--- PASS: TestCustomUnmarshalErrors (0.00s) +=== RUN TestJaegerAgentUDP_ThriftCompact +--- PASS: TestJaegerAgentUDP_ThriftCompact (0.01s) +=== RUN TestJaegerAgentUDP_ThriftCompact_InvalidPort +--- PASS: TestJaegerAgentUDP_ThriftCompact_InvalidPort (0.00s) +=== RUN TestJaegerAgentUDP_ThriftBinary +--- PASS: TestJaegerAgentUDP_ThriftBinary (0.01s) +=== RUN TestJaegerAgentUDP_ThriftBinary_PortInUse +--- PASS: TestJaegerAgentUDP_ThriftBinary_PortInUse (0.00s) +=== RUN TestJaegerAgentUDP_ThriftBinary_InvalidPort +--- PASS: TestJaegerAgentUDP_ThriftBinary_InvalidPort (0.00s) +=== RUN TestJaegerHTTP +--- PASS: TestJaegerHTTP (0.12s) +=== RUN TestTraceSource +--- PASS: TestTraceSource (0.00s) +=== RUN TestThriftHTTPBodyDecode +--- PASS: TestThriftHTTPBodyDecode (0.00s) +=== RUN TestClientIPDetection +--- PASS: TestClientIPDetection (0.00s) +=== RUN TestReception + trace_receiver_test.go:141: Starting + trace_receiver_test.go:145: Start +--- PASS: TestReception (0.01s) +=== RUN TestPortsNotOpen +--- PASS: TestPortsNotOpen (0.00s) +=== RUN TestGRPCReception +--- PASS: TestGRPCReception (0.00s) +=== RUN TestGRPCReceptionWithTLS +--- PASS: TestGRPCReceptionWithTLS (0.02s) +=== RUN TestSampling + trace_receiver_test.go:395: Start +--- PASS: TestSampling (0.01s) +=== RUN TestSamplingFailsOnNotConfigured + trace_receiver_test.go:447: Start +--- PASS: TestSamplingFailsOnNotConfigured (0.00s) +=== RUN TestSamplingFailsOnBadFile +--- PASS: TestSamplingFailsOnBadFile (0.00s) +=== RUN TestSamplingStrategiesMutualTLS +--- PASS: TestSamplingStrategiesMutualTLS (0.22s) +=== RUN TestConsumeThriftTrace +--- PASS: TestConsumeThriftTrace (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/jaegerreceiver (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateTraceReceiver +--- PASS: TestCreateTraceReceiver (0.77s) +=== RUN TestCreateTraceReceiver_error +--- PASS: TestCreateTraceReceiver_error (0.00s) +=== RUN TestWithUnmarshallers +=== RUN TestWithUnmarshallers/custom_encoding +=== RUN TestWithUnmarshallers/default_encoding +--- PASS: TestWithUnmarshallers (0.00s) + --- PASS: TestWithUnmarshallers/custom_encoding (0.00s) + --- PASS: TestWithUnmarshallers/default_encoding (0.00s) +=== RUN TestUnmarshallJaeger +=== RUN TestUnmarshallJaeger/jaeger_proto +=== RUN TestUnmarshallJaeger/jaeger_json +--- PASS: TestUnmarshallJaeger (0.00s) + --- PASS: TestUnmarshallJaeger/jaeger_proto (0.00s) + --- PASS: TestUnmarshallJaeger/jaeger_json (0.00s) +=== RUN TestUnmarshallJaegerProto_error +--- PASS: TestUnmarshallJaegerProto_error (0.00s) +=== RUN TestUnmarshallJaegerJSON_error +--- PASS: TestUnmarshallJaegerJSON_error (0.00s) +=== RUN TestNewReceiver_version_err +--- PASS: TestNewReceiver_version_err (0.00s) +=== RUN TestNewReceiver_encoding_err +--- PASS: TestNewReceiver_encoding_err (0.00s) +=== RUN TestNewExporter_err_auth_type +--- PASS: TestNewExporter_err_auth_type (0.00s) +=== RUN TestReceiverStart +--- PASS: TestReceiverStart (0.00s) +=== RUN TestReceiverStartConsume +--- PASS: TestReceiverStartConsume (0.00s) +=== RUN TestReceiver_error +--- PASS: TestReceiver_error (0.10s) +=== RUN TestConsumerGroupHandler +--- PASS: TestConsumerGroupHandler (0.00s) +=== RUN TestConsumerGroupHandler_error_unmarshall +--- PASS: TestConsumerGroupHandler_error_unmarshall (0.00s) +=== RUN TestConsumerGroupHandler_error_nextConsumer +--- PASS: TestConsumerGroupHandler_error_nextConsumer (0.00s) +=== RUN TestMetrics +--- PASS: TestMetrics (0.00s) +=== RUN TestUnmarshallOTLP +--- PASS: TestUnmarshallOTLP (0.00s) +=== RUN TestUnmarshallOTLP_error +--- PASS: TestUnmarshallOTLP_error (0.00s) +=== RUN TestDefaultUnMarshaller +=== RUN TestDefaultUnMarshaller/otlp_proto +=== RUN TestDefaultUnMarshaller/jaeger_proto +=== RUN TestDefaultUnMarshaller/jaeger_json +=== RUN TestDefaultUnMarshaller/zipkin_proto +=== RUN TestDefaultUnMarshaller/zipkin_json +=== RUN TestDefaultUnMarshaller/zipkin_thrift +--- PASS: TestDefaultUnMarshaller (0.00s) + --- PASS: TestDefaultUnMarshaller/otlp_proto (0.00s) + --- PASS: TestDefaultUnMarshaller/jaeger_proto (0.00s) + --- PASS: TestDefaultUnMarshaller/jaeger_json (0.00s) + --- PASS: TestDefaultUnMarshaller/zipkin_proto (0.00s) + --- PASS: TestDefaultUnMarshaller/zipkin_json (0.00s) + --- PASS: TestDefaultUnMarshaller/zipkin_thrift (0.00s) +=== RUN TestUnmarshallZipkin +=== RUN TestUnmarshallZipkin/zipkin_proto +=== RUN TestUnmarshallZipkin/zipkin_json +=== RUN TestUnmarshallZipkin/zipkin_thrift +--- PASS: TestUnmarshallZipkin (0.00s) + --- PASS: TestUnmarshallZipkin/zipkin_proto (0.00s) + --- PASS: TestUnmarshallZipkin/zipkin_json (0.00s) + --- PASS: TestUnmarshallZipkin/zipkin_thrift (0.00s) +=== RUN TestUnmarshallZipkinThrift_error +--- PASS: TestUnmarshallZipkinThrift_error (0.00s) +=== RUN TestUnmarshallZipkinJSON_error +--- PASS: TestUnmarshallZipkinJSON_error (0.00s) +=== RUN TestUnmarshallZipkinProto_error +--- PASS: TestUnmarshallZipkinProto_error (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/kafkareceiver (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestBuildOptions_TLSCredentials +--- PASS: TestBuildOptions_TLSCredentials (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateReceiver +--- PASS: TestCreateReceiver (0.31s) +=== RUN TestCreateTraceReceiver +=== RUN TestCreateTraceReceiver/default +=== RUN TestCreateTraceReceiver/invalid_port +=== RUN TestCreateTraceReceiver/max-msg-size-and-concurrent-connections +--- PASS: TestCreateTraceReceiver (0.03s) + --- PASS: TestCreateTraceReceiver/default (0.01s) + --- PASS: TestCreateTraceReceiver/invalid_port (0.00s) + --- PASS: TestCreateTraceReceiver/max-msg-size-and-concurrent-connections (0.00s) +=== RUN TestCreateMetricReceiver +=== RUN TestCreateMetricReceiver/default +=== RUN TestCreateMetricReceiver/invalid_address +=== RUN TestCreateMetricReceiver/keepalive +--- PASS: TestCreateMetricReceiver (0.03s) + --- PASS: TestCreateMetricReceiver/default (0.01s) + --- PASS: TestCreateMetricReceiver/invalid_address (0.02s) + --- PASS: TestCreateMetricReceiver/keepalive (0.00s) +=== RUN TestGrpcGateway_endToEnd +--- PASS: TestGrpcGateway_endToEnd (0.04s) +=== RUN TestTraceGrpcGatewayCors_endToEnd +--- PASS: TestTraceGrpcGatewayCors_endToEnd (0.02s) +=== RUN TestMetricsGrpcGatewayCors_endToEnd +--- PASS: TestMetricsGrpcGatewayCors_endToEnd (0.02s) +=== RUN TestStopWithoutStartNeverCrashes +--- PASS: TestStopWithoutStartNeverCrashes (0.00s) +=== RUN TestNewPortAlreadyUsed +--- PASS: TestNewPortAlreadyUsed (0.00s) +=== RUN TestMultipleStopReceptionShouldNotError +--- PASS: TestMultipleStopReceptionShouldNotError (0.02s) +=== RUN TestStartWithoutConsumersShouldFail +--- PASS: TestStartWithoutConsumersShouldFail (0.00s) +=== RUN TestReceiveOnUnixDomainSocket_endToEnd +--- PASS: TestReceiveOnUnixDomainSocket_endToEnd (0.02s) +=== RUN TestOCReceiverTrace_HandleNextConsumerResponse +=== RUN TestOCReceiverTrace_HandleNextConsumerResponse/IngestTest/oc_trace +--- PASS: TestOCReceiverTrace_HandleNextConsumerResponse (0.02s) + --- PASS: TestOCReceiverTrace_HandleNextConsumerResponse/IngestTest/oc_trace (0.02s) +=== RUN TestOCReceiverMetrics_HandleNextConsumerResponse +=== RUN TestOCReceiverMetrics_HandleNextConsumerResponse/IngestTest/oc_metrics +--- PASS: TestOCReceiverMetrics_HandleNextConsumerResponse (0.03s) + --- PASS: TestOCReceiverMetrics_HandleNextConsumerResponse/IngestTest/oc_metrics (0.03s) +PASS +ok go.opentelemetry.io/collector/receiver/opencensusreceiver (cached) +=== RUN TestReceiver_endToEnd +--- PASS: TestReceiver_endToEnd (0.59s) +=== RUN TestExportMultiplexing +--- PASS: TestExportMultiplexing (0.16s) +=== RUN TestExportProtocolViolations_nodelessFirstMessage + opencensus_test.go:224: Test ended early enough +--- PASS: TestExportProtocolViolations_nodelessFirstMessage (0.01s) +=== RUN TestExportProtocolConformation_metricsInFirstMessage +--- PASS: TestExportProtocolConformation_metricsInFirstMessage (0.11s) +PASS +ok go.opentelemetry.io/collector/receiver/opencensusreceiver/ocmetrics (cached) +=== RUN TestEnsureRecordedMetrics +--- PASS: TestEnsureRecordedMetrics (0.90s) +=== RUN TestEnsureRecordedMetrics_zeroLengthSpansSender +--- PASS: TestEnsureRecordedMetrics_zeroLengthSpansSender (0.09s) +=== RUN TestExportSpanLinkingMaintainsParentLink +--- PASS: TestExportSpanLinkingMaintainsParentLink (0.09s) +=== RUN TestReceiver_endToEnd +--- PASS: TestReceiver_endToEnd (0.01s) +=== RUN TestExportMultiplexing +--- PASS: TestExportMultiplexing (0.16s) +=== RUN TestExportProtocolViolations_nodelessFirstMessage + opencensus_test.go:238: Test ended early enough +--- PASS: TestExportProtocolViolations_nodelessFirstMessage (0.00s) +=== RUN TestExportProtocolConformation_spansInFirstMessage +--- PASS: TestExportProtocolConformation_spansInFirstMessage (0.10s) +PASS +ok go.opentelemetry.io/collector/receiver/opencensusreceiver/octrace (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.01s) +=== RUN TestFailedLoadConfig +--- PASS: TestFailedLoadConfig (0.01s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateReceiver +--- PASS: TestCreateReceiver (0.00s) +=== RUN TestCreateTraceReceiver +=== RUN TestCreateTraceReceiver/default +=== RUN TestCreateTraceReceiver/invalid_grpc_port +=== RUN TestCreateTraceReceiver/invalid_http_port +--- PASS: TestCreateTraceReceiver (0.00s) + --- PASS: TestCreateTraceReceiver/default (0.00s) + --- PASS: TestCreateTraceReceiver/invalid_grpc_port (0.00s) + --- PASS: TestCreateTraceReceiver/invalid_http_port (0.00s) +=== RUN TestCreateMetricReceiver +=== RUN TestCreateMetricReceiver/default +=== RUN TestCreateMetricReceiver/invalid_grpc_address +=== RUN TestCreateMetricReceiver/invalid_http_address +--- PASS: TestCreateMetricReceiver (0.01s) + --- PASS: TestCreateMetricReceiver/default (0.00s) + --- PASS: TestCreateMetricReceiver/invalid_grpc_address (0.00s) + --- PASS: TestCreateMetricReceiver/invalid_http_address (0.00s) +=== RUN TestCreateLogReceiver +=== RUN TestCreateLogReceiver/default +=== RUN TestCreateLogReceiver/invalid_grpc_address +=== RUN TestCreateLogReceiver/invalid_http_address +=== RUN TestCreateLogReceiver/no_next_consumer +=== RUN TestCreateLogReceiver/no_http_or_grcp_config +--- PASS: TestCreateLogReceiver (0.01s) + --- PASS: TestCreateLogReceiver/default (0.00s) + --- PASS: TestCreateLogReceiver/invalid_grpc_address (0.00s) + --- PASS: TestCreateLogReceiver/invalid_http_address (0.00s) + --- PASS: TestCreateLogReceiver/no_next_consumer (0.00s) + --- PASS: TestCreateLogReceiver/no_http_or_grcp_config (0.00s) +=== RUN TestJSONPbMarshal +--- PASS: TestJSONPbMarshal (0.00s) +=== RUN TestJSONPbUnmarshal +--- PASS: TestJSONPbUnmarshal (0.00s) +=== RUN TestJsonHttp +=== RUN TestJsonHttp/JSONUncompressed/v1/trace +=== RUN TestJsonHttp/JSONUncompressed/v1/traces +=== RUN TestJsonHttp/JSONGzipCompressed/v1/trace +=== RUN TestJsonHttp/JSONGzipCompressed/v1/traces +=== RUN TestJsonHttp/NotGRPCError/v1/trace +=== RUN TestJsonHttp/NotGRPCError/v1/traces +=== RUN TestJsonHttp/GRPCError/v1/trace +=== RUN TestJsonHttp/GRPCError/v1/traces +--- PASS: TestJsonHttp (0.04s) + --- PASS: TestJsonHttp/JSONUncompressed/v1/trace (0.00s) + --- PASS: TestJsonHttp/JSONUncompressed/v1/traces (0.00s) + --- PASS: TestJsonHttp/JSONGzipCompressed/v1/trace (0.01s) + --- PASS: TestJsonHttp/JSONGzipCompressed/v1/traces (0.00s) + --- PASS: TestJsonHttp/NotGRPCError/v1/trace (0.00s) + --- PASS: TestJsonHttp/NotGRPCError/v1/traces (0.00s) + --- PASS: TestJsonHttp/GRPCError/v1/trace (0.00s) + --- PASS: TestJsonHttp/GRPCError/v1/traces (0.00s) +=== RUN TestJsonMarshaling +--- PASS: TestJsonMarshaling (0.00s) +=== RUN TestJsonUnmarshaling +=== RUN TestJsonUnmarshaling/empty_string_trace_id +=== RUN TestJsonUnmarshaling/zero_bytes_trace_id +--- PASS: TestJsonUnmarshaling (0.00s) + --- PASS: TestJsonUnmarshaling/empty_string_trace_id (0.00s) + --- PASS: TestJsonUnmarshaling/zero_bytes_trace_id (0.00s) +=== RUN TestProtoHttp +=== RUN TestProtoHttp/ProtoUncompressed/v1/trace +=== RUN TestProtoHttp/ProtoUncompressed/v1/traces +=== RUN TestProtoHttp/ProtoGzipCompressed/v1/trace +=== RUN TestProtoHttp/ProtoGzipCompressed/v1/traces +=== RUN TestProtoHttp/NotGRPCError/v1/trace +=== RUN TestProtoHttp/NotGRPCError/v1/traces +=== RUN TestProtoHttp/GRPCError/v1/trace +=== RUN TestProtoHttp/GRPCError/v1/traces +--- PASS: TestProtoHttp (0.03s) + --- PASS: TestProtoHttp/ProtoUncompressed/v1/trace (0.00s) + --- PASS: TestProtoHttp/ProtoUncompressed/v1/traces (0.00s) + --- PASS: TestProtoHttp/ProtoGzipCompressed/v1/trace (0.00s) + --- PASS: TestProtoHttp/ProtoGzipCompressed/v1/traces (0.00s) + --- PASS: TestProtoHttp/NotGRPCError/v1/trace (0.00s) + --- PASS: TestProtoHttp/NotGRPCError/v1/traces (0.00s) + --- PASS: TestProtoHttp/GRPCError/v1/trace (0.00s) + --- PASS: TestProtoHttp/GRPCError/v1/traces (0.00s) +=== RUN TestOTLPReceiverInvalidContentEncoding +=== RUN TestOTLPReceiverInvalidContentEncoding/JsonGzipUncompressed +=== RUN TestOTLPReceiverInvalidContentEncoding/ProtoGzipUncompressed +--- PASS: TestOTLPReceiverInvalidContentEncoding (0.01s) + --- PASS: TestOTLPReceiverInvalidContentEncoding/JsonGzipUncompressed (0.00s) + --- PASS: TestOTLPReceiverInvalidContentEncoding/ProtoGzipUncompressed (0.00s) +=== RUN TestGRPCNewPortAlreadyUsed +--- PASS: TestGRPCNewPortAlreadyUsed (0.00s) +=== RUN TestHTTPNewPortAlreadyUsed +--- PASS: TestHTTPNewPortAlreadyUsed (0.00s) +=== RUN TestGRPCStartWithoutConsumers +--- PASS: TestGRPCStartWithoutConsumers (0.00s) +=== RUN TestHTTPStartWithoutConsumers +--- PASS: TestHTTPStartWithoutConsumers (0.00s) +=== RUN TestOTLPReceiverTrace_HandleNextConsumerResponse +=== RUN TestOTLPReceiverTrace_HandleNextConsumerResponse/IngestTest/otlp_trace +--- PASS: TestOTLPReceiverTrace_HandleNextConsumerResponse (0.01s) + --- PASS: TestOTLPReceiverTrace_HandleNextConsumerResponse/IngestTest/otlp_trace (0.01s) +=== RUN TestGRPCInvalidTLSCredentials +--- PASS: TestGRPCInvalidTLSCredentials (0.00s) +=== RUN TestHTTPInvalidTLSCredentials +--- PASS: TestHTTPInvalidTLSCredentials (0.00s) +=== RUN TestShutdown + otlp_test.go:871: + Error Trace: otlp_test.go:871 + Error: Not equal: + expected: 1 + actual : 2 + Test: TestShutdown + otlp_test.go:871: + Error Trace: otlp_test.go:871 + Error: Not equal: + expected: 1 + actual : 2 + Test: TestShutdown + otlp_test.go:871: + Error Trace: otlp_test.go:871 + Error: Not equal: + expected: 2 + actual : 3 + Test: TestShutdown + otlp_test.go:871: + Error Trace: otlp_test.go:871 + Error: Not equal: + expected: 2 + actual : 3 + Test: TestShutdown +--- FAIL: TestShutdown (0.10s) +FAIL +FAIL go.opentelemetry.io/collector/receiver/otlpreceiver 0.576s +=== RUN TestExport +--- PASS: TestExport (2.30s) +=== RUN TestExport_EmptyRequest +--- PASS: TestExport_EmptyRequest (0.01s) +=== RUN TestExport_ErrorConsumer +--- PASS: TestExport_ErrorConsumer (0.01s) +PASS +ok go.opentelemetry.io/collector/receiver/otlpreceiver/logs (cached) +=== RUN TestExport +--- PASS: TestExport (1.09s) +=== RUN TestExport_EmptyRequest +--- PASS: TestExport_EmptyRequest (0.01s) +=== RUN TestExport_ErrorConsumer +--- PASS: TestExport_ErrorConsumer (0.01s) +PASS +ok go.opentelemetry.io/collector/receiver/otlpreceiver/metrics (cached) +=== RUN TestExport +--- PASS: TestExport (1.70s) +=== RUN TestExport_EmptyRequest +--- PASS: TestExport_EmptyRequest (0.01s) +=== RUN TestExport_ErrorConsumer +--- PASS: TestExport_ErrorConsumer (0.01s) +=== RUN TestDeprecatedStatusCode +=== RUN TestDeprecatedStatusCode/STATUS_CODE_UNSET/DEPRECATED_STATUS_CODE_OK +=== RUN TestDeprecatedStatusCode/STATUS_CODE_UNSET/DEPRECATED_STATUS_CODE_ABORTED +=== RUN TestDeprecatedStatusCode/STATUS_CODE_OK/DEPRECATED_STATUS_CODE_OK +=== RUN TestDeprecatedStatusCode/STATUS_CODE_OK/DEPRECATED_STATUS_CODE_UNKNOWN_ERROR +=== RUN TestDeprecatedStatusCode/STATUS_CODE_ERROR/DEPRECATED_STATUS_CODE_OK +=== RUN TestDeprecatedStatusCode/STATUS_CODE_ERROR/DEPRECATED_STATUS_CODE_UNKNOWN_ERROR +--- PASS: TestDeprecatedStatusCode (0.02s) + --- PASS: TestDeprecatedStatusCode/STATUS_CODE_UNSET/DEPRECATED_STATUS_CODE_OK (0.00s) + --- PASS: TestDeprecatedStatusCode/STATUS_CODE_UNSET/DEPRECATED_STATUS_CODE_ABORTED (0.00s) + --- PASS: TestDeprecatedStatusCode/STATUS_CODE_OK/DEPRECATED_STATUS_CODE_OK (0.00s) + --- PASS: TestDeprecatedStatusCode/STATUS_CODE_OK/DEPRECATED_STATUS_CODE_UNKNOWN_ERROR (0.00s) + --- PASS: TestDeprecatedStatusCode/STATUS_CODE_ERROR/DEPRECATED_STATUS_CODE_OK (0.00s) + --- PASS: TestDeprecatedStatusCode/STATUS_CODE_ERROR/DEPRECATED_STATUS_CODE_UNKNOWN_ERROR (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/otlpreceiver/trace (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestLoadConfigWithEnvVar +--- PASS: TestLoadConfigWithEnvVar (0.00s) +=== RUN TestLoadConfigK8s +--- PASS: TestLoadConfigK8s (0.00s) +=== RUN TestLoadConfigFailsOnUnknownSection +--- PASS: TestLoadConfigFailsOnUnknownSection (0.00s) +=== RUN TestLoadConfigFailsOnUnknownPrometheusSection +--- PASS: TestLoadConfigFailsOnUnknownPrometheusSection (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateReceiver +--- PASS: TestCreateReceiver (0.00s) +=== RUN TestFactoryCanParseServiceDiscoveryConfigs +--- PASS: TestFactoryCanParseServiceDiscoveryConfigs (0.01s) +=== RUN TestEndToEnd +=== RUN TestEndToEnd/scrape1 +=== RUN TestEndToEnd/scrape2 +=== RUN TestEndToEnd/scrape1#01 +=== RUN TestEndToEnd/scrape2#01 +=== RUN TestEndToEnd/scrape3 +=== RUN TestEndToEnd/scrape4 +=== RUN TestEndToEnd/scrape5 +=== RUN TestEndToEnd/scrape1#02 +=== RUN TestEndToEnd/scrape2#02 +--- PASS: TestEndToEnd (13.01s) + --- PASS: TestEndToEnd/scrape1 (0.00s) + --- PASS: TestEndToEnd/scrape2 (0.00s) + --- PASS: TestEndToEnd/scrape1#01 (0.00s) + --- PASS: TestEndToEnd/scrape2#01 (0.00s) + --- PASS: TestEndToEnd/scrape3 (0.00s) + --- PASS: TestEndToEnd/scrape4 (0.00s) + --- PASS: TestEndToEnd/scrape5 (0.00s) + --- PASS: TestEndToEnd/scrape1#02 (0.00s) + --- PASS: TestEndToEnd/scrape2#02 (0.00s) +=== RUN TestStartTimeMetric +--- PASS: TestStartTimeMetric (6.59s) +=== RUN TestStartTimeMetricRegex +--- PASS: TestStartTimeMetricRegex (6.94s) +PASS +ok go.opentelemetry.io/collector/receiver/prometheusreceiver (cached) +=== RUN TestLog +=== RUN TestLog/Starting_provider +{"level":"debug","ts":1614290774.4097679,"caller":"testing/testing.go:1123","msg":"Starting provider","provider":"string/0","subs":"[target1]"} +=== RUN TestLog/Scrape_failed +{"level":"error","ts":1614290774.412699,"caller":"testing/testing.go:1123","msg":"Scrape failed","scrape_pool":"target1","err":"server returned HTTP status 500 Internal Server Error","stacktrace":"testing.tRunner\n\t/usr/local/opt/go/libexec/src/testing/testing.go:1123"} +--- PASS: TestLog (0.01s) + --- PASS: TestLog/Starting_provider (0.00s) + --- PASS: TestLog/Scrape_failed (0.00s) +=== RUN TestExtractLogData +=== RUN TestExtractLogData/nil_fields +=== RUN TestExtractLogData/empty_fields +=== RUN TestExtractLogData/info_level +=== RUN TestExtractLogData/warn_level +=== RUN TestExtractLogData/error_level +=== RUN TestExtractLogData/debug_level_+_extra_fields +=== RUN TestExtractLogData/missing_level_field +=== RUN TestExtractLogData/invalid_level_type +--- PASS: TestExtractLogData (0.00s) + --- PASS: TestExtractLogData/nil_fields (0.00s) + --- PASS: TestExtractLogData/empty_fields (0.00s) + --- PASS: TestExtractLogData/info_level (0.00s) + --- PASS: TestExtractLogData/warn_level (0.00s) + --- PASS: TestExtractLogData/error_level (0.00s) + --- PASS: TestExtractLogData/debug_level_+_extra_fields (0.00s) + --- PASS: TestExtractLogData/missing_level_field (0.00s) + --- PASS: TestExtractLogData/invalid_level_type (0.00s) +=== RUN Test_gauge +--- PASS: Test_gauge (0.00s) +=== RUN Test_gaugeDistribution +--- PASS: Test_gaugeDistribution (0.00s) +=== RUN Test_cumulative +--- PASS: Test_cumulative (0.00s) +=== RUN Test_cumulativeDistribution +--- PASS: Test_cumulativeDistribution (0.00s) +=== RUN Test_summary +--- PASS: Test_summary (0.00s) +=== RUN Test_multiMetrics +--- PASS: Test_multiMetrics (0.00s) +=== RUN Test_multiTimeseries +--- PASS: Test_multiTimeseries (0.00s) +=== RUN Test_emptyLabels +--- PASS: Test_emptyLabels (0.00s) +=== RUN Test_tsGC +--- PASS: Test_tsGC (0.00s) +=== RUN Test_jobGC +--- PASS: Test_jobGC (0.04s) +=== RUN Test_startTimeMetricMatch +=== RUN Test_startTimeMetricMatch/prefix_match +=== RUN Test_startTimeMetricMatch/match +=== RUN Test_startTimeMetricMatch/nomatch1 +=== RUN Test_startTimeMetricMatch/nomatch2 +--- PASS: Test_startTimeMetricMatch (0.00s) + --- PASS: Test_startTimeMetricMatch/prefix_match (0.00s) + --- PASS: Test_startTimeMetricMatch/match (0.00s) + --- PASS: Test_startTimeMetricMatch/nomatch1 (0.00s) + --- PASS: Test_startTimeMetricMatch/nomatch2 (0.00s) +=== RUN Test_metricBuilder_counters +=== RUN Test_metricBuilder_counters/single-item +=== RUN Test_metricBuilder_counters/two-items +=== RUN Test_metricBuilder_counters/two-metrics +=== RUN Test_metricBuilder_counters/metrics-with-poor-names +--- PASS: Test_metricBuilder_counters (0.00s) + --- PASS: Test_metricBuilder_counters/single-item (0.00s) + --- PASS: Test_metricBuilder_counters/two-items (0.00s) + --- PASS: Test_metricBuilder_counters/two-metrics (0.00s) + --- PASS: Test_metricBuilder_counters/metrics-with-poor-names (0.00s) +=== RUN Test_metricBuilder_gauges +=== RUN Test_metricBuilder_gauges/one-gauge +=== RUN Test_metricBuilder_gauges/gauge-with-different-tags +=== RUN Test_metricBuilder_gauges/gauge-comes-and-go-with-different-tagset +--- PASS: Test_metricBuilder_gauges (0.00s) + --- PASS: Test_metricBuilder_gauges/one-gauge (0.00s) + --- PASS: Test_metricBuilder_gauges/gauge-with-different-tags (0.00s) + --- PASS: Test_metricBuilder_gauges/gauge-comes-and-go-with-different-tagset (0.00s) +=== RUN Test_metricBuilder_untype +=== RUN Test_metricBuilder_untype/one-unknown +=== RUN Test_metricBuilder_untype/no-type-hint +=== RUN Test_metricBuilder_untype/untype-metric-poor-names +--- PASS: Test_metricBuilder_untype (0.00s) + --- PASS: Test_metricBuilder_untype/one-unknown (0.00s) + --- PASS: Test_metricBuilder_untype/no-type-hint (0.00s) + --- PASS: Test_metricBuilder_untype/untype-metric-poor-names (0.00s) +=== RUN Test_metricBuilder_histogram +=== RUN Test_metricBuilder_histogram/single_item +=== RUN Test_metricBuilder_histogram/multi-groups +=== RUN Test_metricBuilder_histogram/multi-groups-and-families +=== RUN Test_metricBuilder_histogram/unordered-buckets +=== RUN Test_metricBuilder_histogram/only-one-bucket +=== RUN Test_metricBuilder_histogram/only-one-bucket-noninf +=== RUN Test_metricBuilder_histogram/corrupted-no-buckets +=== RUN Test_metricBuilder_histogram/corrupted-no-sum +=== RUN Test_metricBuilder_histogram/corrupted-no-count +--- PASS: Test_metricBuilder_histogram (0.00s) + --- PASS: Test_metricBuilder_histogram/single_item (0.00s) + --- PASS: Test_metricBuilder_histogram/multi-groups (0.00s) + --- PASS: Test_metricBuilder_histogram/multi-groups-and-families (0.00s) + --- PASS: Test_metricBuilder_histogram/unordered-buckets (0.00s) + --- PASS: Test_metricBuilder_histogram/only-one-bucket (0.00s) + --- PASS: Test_metricBuilder_histogram/only-one-bucket-noninf (0.00s) + --- PASS: Test_metricBuilder_histogram/corrupted-no-buckets (0.00s) + --- PASS: Test_metricBuilder_histogram/corrupted-no-sum (0.00s) + --- PASS: Test_metricBuilder_histogram/corrupted-no-count (0.00s) +=== RUN Test_metricBuilder_summary +=== RUN Test_metricBuilder_summary/no-sum-and-count +=== RUN Test_metricBuilder_summary/empty-quantiles +=== RUN Test_metricBuilder_summary/regular-summary +--- PASS: Test_metricBuilder_summary (0.00s) + --- PASS: Test_metricBuilder_summary/no-sum-and-count (0.00s) + --- PASS: Test_metricBuilder_summary/empty-quantiles (0.00s) + --- PASS: Test_metricBuilder_summary/regular-summary (0.00s) +=== RUN Test_metricBuilder_skipped +=== RUN Test_metricBuilder_skipped/skip-internal-metrics +2021-02-25T17:06:14.474-0500 WARN internal/metricsbuilder.go:108 The 'up' metric contains invalid value {"value": 2, "scrape_timestamp": 1555366625000, "target_labels": "map[]"} +go.opentelemetry.io/collector/receiver/prometheusreceiver/internal.(*metricBuilder).AddDataPoint + /Users/tnajaryan/work/repos/opentelemetry-collector/receiver/prometheusreceiver/internal/metricsbuilder.go:108 +go.opentelemetry.io/collector/receiver/prometheusreceiver/internal.runBuilderTests.func1 + /Users/tnajaryan/work/repos/opentelemetry-collector/receiver/prometheusreceiver/internal/metricsbuilder_test.go:105 +testing.tRunner + /usr/local/opt/go/libexec/src/testing/testing.go:1123 +--- PASS: Test_metricBuilder_skipped (0.00s) + --- PASS: Test_metricBuilder_skipped/skip-internal-metrics (0.00s) +=== RUN Test_metricBuilder_baddata +=== RUN Test_metricBuilder_baddata/empty-metric-name +=== RUN Test_metricBuilder_baddata/histogram-datapoint-no-bucket-label +=== RUN Test_metricBuilder_baddata/summary-datapoint-no-quantile-label +--- PASS: Test_metricBuilder_baddata (0.00s) + --- PASS: Test_metricBuilder_baddata/empty-metric-name (0.00s) + --- PASS: Test_metricBuilder_baddata/histogram-datapoint-no-bucket-label (0.00s) + --- PASS: Test_metricBuilder_baddata/summary-datapoint-no-quantile-label (0.00s) +=== RUN Test_isUsefulLabel +=== RUN Test_isUsefulLabel/metricName +=== RUN Test_isUsefulLabel/instance +=== RUN Test_isUsefulLabel/scheme +=== RUN Test_isUsefulLabel/metricPath +=== RUN Test_isUsefulLabel/job +=== RUN Test_isUsefulLabel/bucket +=== RUN Test_isUsefulLabel/bucketForGaugeDistribution +=== RUN Test_isUsefulLabel/bucketForCumulativeDistribution +=== RUN Test_isUsefulLabel/Quantile +=== RUN Test_isUsefulLabel/QuantileForSummay +=== RUN Test_isUsefulLabel/other +=== RUN Test_isUsefulLabel/empty +--- PASS: Test_isUsefulLabel (0.00s) + --- PASS: Test_isUsefulLabel/metricName (0.00s) + --- PASS: Test_isUsefulLabel/instance (0.00s) + --- PASS: Test_isUsefulLabel/scheme (0.00s) + --- PASS: Test_isUsefulLabel/metricPath (0.00s) + --- PASS: Test_isUsefulLabel/job (0.00s) + --- PASS: Test_isUsefulLabel/bucket (0.00s) + --- PASS: Test_isUsefulLabel/bucketForGaugeDistribution (0.00s) + --- PASS: Test_isUsefulLabel/bucketForCumulativeDistribution (0.00s) + --- PASS: Test_isUsefulLabel/Quantile (0.00s) + --- PASS: Test_isUsefulLabel/QuantileForSummay (0.00s) + --- PASS: Test_isUsefulLabel/other (0.00s) + --- PASS: Test_isUsefulLabel/empty (0.00s) +=== RUN Test_dpgSignature +=== RUN Test_dpgSignature/1st_label +=== RUN Test_dpgSignature/2nd_label +=== RUN Test_dpgSignature/two_labels +=== RUN Test_dpgSignature/extra_label +=== RUN Test_dpgSignature/different_order +=== RUN Test_dpgSignature/knownLabelKeys_updated +--- PASS: Test_dpgSignature (0.00s) + --- PASS: Test_dpgSignature/1st_label (0.00s) + --- PASS: Test_dpgSignature/2nd_label (0.00s) + --- PASS: Test_dpgSignature/two_labels (0.00s) + --- PASS: Test_dpgSignature/extra_label (0.00s) + --- PASS: Test_dpgSignature/different_order (0.00s) + --- PASS: Test_dpgSignature/knownLabelKeys_updated (0.00s) +=== RUN Test_normalizeMetricName +=== RUN Test_normalizeMetricName/normal +=== RUN Test_normalizeMetricName/count +=== RUN Test_normalizeMetricName/bucket +=== RUN Test_normalizeMetricName/sum +=== RUN Test_normalizeMetricName/no_prefix +--- PASS: Test_normalizeMetricName (0.00s) + --- PASS: Test_normalizeMetricName/normal (0.00s) + --- PASS: Test_normalizeMetricName/count (0.00s) + --- PASS: Test_normalizeMetricName/bucket (0.00s) + --- PASS: Test_normalizeMetricName/sum (0.00s) + --- PASS: Test_normalizeMetricName/no_prefix (0.00s) +=== RUN Test_getBoundary +=== RUN Test_getBoundary/histogram +=== RUN Test_getBoundary/gaugehistogram +=== RUN Test_getBoundary/gaugehistogram_no_label +=== RUN Test_getBoundary/gaugehistogram_bad_value +=== RUN Test_getBoundary/summary +=== RUN Test_getBoundary/otherType +--- PASS: Test_getBoundary (0.00s) + --- PASS: Test_getBoundary/histogram (0.00s) + --- PASS: Test_getBoundary/gaugehistogram (0.00s) + --- PASS: Test_getBoundary/gaugehistogram_no_label (0.00s) + --- PASS: Test_getBoundary/gaugehistogram_bad_value (0.00s) + --- PASS: Test_getBoundary/summary (0.00s) + --- PASS: Test_getBoundary/otherType (0.00s) +=== RUN Test_convToOCAMetricType +=== RUN Test_convToOCAMetricType/counter +=== RUN Test_convToOCAMetricType/gauge +=== RUN Test_convToOCAMetricType/histogram +=== RUN Test_convToOCAMetricType/guageHistogram +=== RUN Test_convToOCAMetricType/summary +=== RUN Test_convToOCAMetricType/info +=== RUN Test_convToOCAMetricType/stateset +=== RUN Test_convToOCAMetricType/unknown +--- PASS: Test_convToOCAMetricType (0.00s) + --- PASS: Test_convToOCAMetricType/counter (0.00s) + --- PASS: Test_convToOCAMetricType/gauge (0.00s) + --- PASS: Test_convToOCAMetricType/histogram (0.00s) + --- PASS: Test_convToOCAMetricType/guageHistogram (0.00s) + --- PASS: Test_convToOCAMetricType/summary (0.00s) + --- PASS: Test_convToOCAMetricType/info (0.00s) + --- PASS: Test_convToOCAMetricType/stateset (0.00s) + --- PASS: Test_convToOCAMetricType/unknown (0.00s) +=== RUN Test_heuristicalMetricAndKnownUnits +=== RUN Test_heuristicalMetricAndKnownUnits/test +=== RUN Test_heuristicalMetricAndKnownUnits/millisecond +=== RUN Test_heuristicalMetricAndKnownUnits/test_millisecond +=== RUN Test_heuristicalMetricAndKnownUnits/test_milliseconds +=== RUN Test_heuristicalMetricAndKnownUnits/test_ms +=== RUN Test_heuristicalMetricAndKnownUnits/test_second +=== RUN Test_heuristicalMetricAndKnownUnits/test_seconds +=== RUN Test_heuristicalMetricAndKnownUnits/test_s +=== RUN Test_heuristicalMetricAndKnownUnits/test_microsecond +=== RUN Test_heuristicalMetricAndKnownUnits/test_microseconds +=== RUN Test_heuristicalMetricAndKnownUnits/test_us +=== RUN Test_heuristicalMetricAndKnownUnits/test_nanosecond +=== RUN Test_heuristicalMetricAndKnownUnits/test_nanoseconds +=== RUN Test_heuristicalMetricAndKnownUnits/test_ns +=== RUN Test_heuristicalMetricAndKnownUnits/test_byte +=== RUN Test_heuristicalMetricAndKnownUnits/test_bytes +=== RUN Test_heuristicalMetricAndKnownUnits/test_by +=== RUN Test_heuristicalMetricAndKnownUnits/test_bit +=== RUN Test_heuristicalMetricAndKnownUnits/test_bits +=== RUN Test_heuristicalMetricAndKnownUnits/test_kilogram +=== RUN Test_heuristicalMetricAndKnownUnits/test_kilograms +=== RUN Test_heuristicalMetricAndKnownUnits/test_kg +=== RUN Test_heuristicalMetricAndKnownUnits/test_gram +=== RUN Test_heuristicalMetricAndKnownUnits/test_grams +=== RUN Test_heuristicalMetricAndKnownUnits/test_g +=== RUN Test_heuristicalMetricAndKnownUnits/test_nanogram +=== RUN Test_heuristicalMetricAndKnownUnits/test_nanograms +=== RUN Test_heuristicalMetricAndKnownUnits/test_ng +=== RUN Test_heuristicalMetricAndKnownUnits/test_meter +=== RUN Test_heuristicalMetricAndKnownUnits/test_meters +=== RUN Test_heuristicalMetricAndKnownUnits/test_metre +=== RUN Test_heuristicalMetricAndKnownUnits/test_metres +=== RUN Test_heuristicalMetricAndKnownUnits/test_m +=== RUN Test_heuristicalMetricAndKnownUnits/test_kilometer +=== RUN Test_heuristicalMetricAndKnownUnits/test_kilometers +=== RUN Test_heuristicalMetricAndKnownUnits/test_kilometre +=== RUN Test_heuristicalMetricAndKnownUnits/test_kilometres +=== RUN Test_heuristicalMetricAndKnownUnits/test_km +=== RUN Test_heuristicalMetricAndKnownUnits/test_milimeter +=== RUN Test_heuristicalMetricAndKnownUnits/test_milimeters +=== RUN Test_heuristicalMetricAndKnownUnits/test_milimetre +=== RUN Test_heuristicalMetricAndKnownUnits/test_milimetres +=== RUN Test_heuristicalMetricAndKnownUnits/test_mm +--- PASS: Test_heuristicalMetricAndKnownUnits (0.01s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/millisecond (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_millisecond (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_milliseconds (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_ms (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_second (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_seconds (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_s (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_microsecond (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_microseconds (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_us (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_nanosecond (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_nanoseconds (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_ns (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_byte (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_bytes (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_by (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_bit (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_bits (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_kilogram (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_kilograms (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_kg (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_gram (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_grams (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_g (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_nanogram (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_nanograms (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_ng (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_meter (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_meters (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_metre (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_metres (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_m (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_kilometer (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_kilometers (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_kilometre (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_kilometres (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_km (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_milimeter (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_milimeters (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_milimetre (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_milimetres (0.00s) + --- PASS: Test_heuristicalMetricAndKnownUnits/test_mm (0.00s) +=== RUN TestOcaStore +--- PASS: TestOcaStore (0.00s) +=== RUN TestNoopAppender +--- PASS: TestNoopAppender (0.00s) +=== RUN Test_transaction +=== RUN Test_transaction/Commit_Without_Adding +=== RUN Test_transaction/Rollback_dose_nothing +=== RUN Test_transaction/Add_One_No_Target +=== RUN Test_transaction/Add_One_Job_not_found +=== RUN Test_transaction/Add_One_Good +=== RUN Test_transaction/Error_when_start_time_is_zero +=== RUN Test_transaction/Drop_NaN_value +--- PASS: Test_transaction (0.00s) + --- PASS: Test_transaction/Commit_Without_Adding (0.00s) + --- PASS: Test_transaction/Rollback_dose_nothing (0.00s) + --- PASS: Test_transaction/Add_One_No_Target (0.00s) + --- PASS: Test_transaction/Add_One_Job_not_found (0.00s) + --- PASS: Test_transaction/Add_One_Good (0.00s) + --- PASS: Test_transaction/Error_when_start_time_is_zero (0.00s) + --- PASS: Test_transaction/Drop_NaN_value (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/prometheusreceiver/internal (cached) +=== RUN TestNewFactory +--- PASS: TestNewFactory (0.00s) +=== RUN TestNewFactory_WithConstructors +--- PASS: TestNewFactory_WithConstructors (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/receiverhelper (cached) +FAIL +=== RUN TestScrapeController +=== RUN TestScrapeController/NoScrapers +=== RUN TestScrapeController/AddMetricsScrapersWithCollectionInterval +=== RUN TestScrapeController/AddMetricsScrapers_NilNextConsumerError +=== RUN TestScrapeController/AddMetricsScrapersWithCollectionInterval_InvalidCollectionIntervalError +=== RUN TestScrapeController/AddMetricsScrapers_ScrapeError +=== RUN TestScrapeController/AddMetricsScrapersWithInitializeAndClose +=== RUN TestScrapeController/AddMetricsScrapersWithInitializeAndCloseErrors +=== RUN TestScrapeController/AddResourceMetricsScrapersWithCollectionInterval +=== RUN TestScrapeController/AddResourceMetricsScrapers_NewError +=== RUN TestScrapeController/AddResourceMetricsScrapers_ScrapeError +=== RUN TestScrapeController/AddResourceMetricsScrapersWithInitializeAndClose +=== RUN TestScrapeController/AddResourceMetricsScrapersWithInitializeAndCloseErrors +--- PASS: TestScrapeController (0.03s) + --- PASS: TestScrapeController/NoScrapers (0.00s) + --- PASS: TestScrapeController/AddMetricsScrapersWithCollectionInterval (0.00s) + --- PASS: TestScrapeController/AddMetricsScrapers_NilNextConsumerError (0.00s) + --- PASS: TestScrapeController/AddMetricsScrapersWithCollectionInterval_InvalidCollectionIntervalError (0.00s) + --- PASS: TestScrapeController/AddMetricsScrapers_ScrapeError (0.00s) + --- PASS: TestScrapeController/AddMetricsScrapersWithInitializeAndClose (0.00s) + --- PASS: TestScrapeController/AddMetricsScrapersWithInitializeAndCloseErrors (0.00s) + --- PASS: TestScrapeController/AddResourceMetricsScrapersWithCollectionInterval (0.00s) + --- PASS: TestScrapeController/AddResourceMetricsScrapers_NewError (0.00s) + --- PASS: TestScrapeController/AddResourceMetricsScrapers_ScrapeError (0.01s) + --- PASS: TestScrapeController/AddResourceMetricsScrapersWithInitializeAndClose (0.00s) + --- PASS: TestScrapeController/AddResourceMetricsScrapersWithInitializeAndCloseErrors (0.00s) +=== RUN TestSingleScrapePerTick +--- PASS: TestSingleScrapePerTick (0.10s) +PASS +ok go.opentelemetry.io/collector/receiver/scraperhelper (cached) +=== RUN TestLoadConfig +--- PASS: TestLoadConfig (0.00s) +=== RUN TestCreateDefaultConfig +--- PASS: TestCreateDefaultConfig (0.00s) +=== RUN TestCreateReceiver +--- PASS: TestCreateReceiver (0.00s) +=== RUN TestConvertSpansToTraceSpans_protobuf +--- PASS: TestConvertSpansToTraceSpans_protobuf (0.00s) +=== RUN TestNew +=== RUN TestNew/nil_nextConsumer +=== RUN TestNew/happy_path +--- PASS: TestNew (0.00s) + --- PASS: TestNew/nil_nextConsumer (0.00s) + --- PASS: TestNew/happy_path (0.00s) +=== RUN TestZipkinReceiverPortAlreadyInUse +--- PASS: TestZipkinReceiverPortAlreadyInUse (0.00s) +=== RUN TestConvertSpansToTraceSpans_json +--- PASS: TestConvertSpansToTraceSpans_json (0.00s) +=== RUN TestConversionRoundtrip +--- PASS: TestConversionRoundtrip (0.01s) +=== RUN TestStartTraceReception +=== RUN TestStartTraceReception/nil_host +=== RUN TestStartTraceReception/valid_host +--- PASS: TestStartTraceReception (0.00s) + --- PASS: TestStartTraceReception/nil_host (0.00s) + --- PASS: TestStartTraceReception/valid_host (0.00s) +=== RUN TestReceiverContentTypes +=== RUN TestReceiverContentTypes//api/v1/spans_application/json_gzip +=== RUN TestReceiverContentTypes//api/v1/spans_application/x-thrift_gzip +=== RUN TestReceiverContentTypes//api/v2/spans_application/json_gzip +=== RUN TestReceiverContentTypes//api/v2/spans_application/json_zlib +=== RUN TestReceiverContentTypes//api/v2/spans_application/json_ +--- PASS: TestReceiverContentTypes (0.02s) + --- PASS: TestReceiverContentTypes//api/v1/spans_application/json_gzip (0.01s) + --- PASS: TestReceiverContentTypes//api/v1/spans_application/x-thrift_gzip (0.00s) + --- PASS: TestReceiverContentTypes//api/v2/spans_application/json_gzip (0.00s) + --- PASS: TestReceiverContentTypes//api/v2/spans_application/json_zlib (0.00s) + --- PASS: TestReceiverContentTypes//api/v2/spans_application/json_ (0.00s) +=== RUN TestReceiverInvalidContentType +--- PASS: TestReceiverInvalidContentType (0.00s) +=== RUN TestReceiverConsumerError +--- PASS: TestReceiverConsumerError (0.00s) +=== RUN TestConvertSpansToTraceSpans_JSONWithoutSerivceName +--- PASS: TestConvertSpansToTraceSpans_JSONWithoutSerivceName (0.00s) +=== RUN TestReceiverConvertsStringsToTypes +--- PASS: TestReceiverConvertsStringsToTypes (0.00s) +PASS +ok go.opentelemetry.io/collector/receiver/zipkinreceiver (cached) +=== RUN TestApplication_Start +2021-02-25T17:06:56.073-0500 INFO service/service.go:411 Starting InProcess Collector... {"Version": "latest", "GitHash": "", "NumCPU": 8} +2021-02-25T17:06:56.074-0500 INFO service/service.go:255 Setting up own telemetry... +2021-02-25T17:06:56.084-0500 INFO service/telemetry.go:102 Serving Prometheus metrics {"address": "localhost:61859", "level": 0, "service.instance.id": "f703f2c8-af03-4441-bc24-dabc1634611d"} +2021-02-25T17:06:56.087-0500 INFO service/service.go:292 Loading configuration... +2021-02-25T17:06:56.091-0500 INFO service/service.go:303 Applying configuration... +2021-02-25T17:06:56.091-0500 INFO service/service.go:324 Starting extensions... +2021-02-25T17:06:56.091-0500 INFO builder/extensions_builder.go:53 Extension is starting... {"component_kind": "extension", "component_type": "health_check", "component_name": "health_check"} +2021-02-25T17:06:56.091-0500 INFO healthcheckextension/healthcheckextension.go:40 Starting health_check extension {"component_kind": "extension", "component_type": "health_check", "component_name": "health_check", "config": {"TypeVal":"health_check","NameVal":"health_check","Port":13133}} +2021-02-25T17:06:56.091-0500 INFO builder/extensions_builder.go:59 Extension started. {"component_kind": "extension", "component_type": "health_check", "component_name": "health_check"} +2021-02-25T17:06:56.091-0500 INFO builder/extensions_builder.go:53 Extension is starting... {"component_kind": "extension", "component_type": "pprof", "component_name": "pprof"} +2021-02-25T17:06:56.092-0500 INFO pprofextension/pprofextension.go:49 Starting net/http/pprof server {"component_kind": "extension", "component_type": "pprof", "component_name": "pprof", "config": {"TypeVal":"pprof","NameVal":"pprof","Endpoint":"localhost:1777","BlockProfileFraction":0,"MutexProfileFraction":0,"SaveToFile":""}} +2021-02-25T17:06:56.093-0500 INFO builder/extensions_builder.go:59 Extension started. {"component_kind": "extension", "component_type": "pprof", "component_name": "pprof"} +2021-02-25T17:06:56.093-0500 INFO builder/extensions_builder.go:53 Extension is starting... {"component_kind": "extension", "component_type": "zpages", "component_name": "zpages"} +2021-02-25T17:06:56.093-0500 INFO zpagesextension/zpagesextension.go:42 Register Host's zPages {"component_kind": "extension", "component_type": "zpages", "component_name": "zpages"} +2021-02-25T17:06:56.094-0500 INFO zpagesextension/zpagesextension.go:55 Starting zPages extension {"component_kind": "extension", "component_type": "zpages", "component_name": "zpages", "config": {"TypeVal":"zpages","NameVal":"zpages","Endpoint":"localhost:55679"}} +2021-02-25T17:06:56.094-0500 INFO builder/extensions_builder.go:59 Extension started. {"component_kind": "extension", "component_type": "zpages", "component_name": "zpages"} +2021-02-25T17:06:56.096-0500 INFO builder/exporters_builder.go:306 Exporter is enabled. {"component_kind": "exporter", "exporter": "opencensus"} +2021-02-25T17:06:56.096-0500 INFO service/service.go:339 Starting exporters... +2021-02-25T17:06:56.096-0500 INFO builder/exporters_builder.go:92 Exporter is starting... {"component_kind": "exporter", "component_type": "opencensus", "component_name": "opencensus"} +2021-02-25T17:06:56.096-0500 INFO builder/exporters_builder.go:97 Exporter started. {"component_kind": "exporter", "component_type": "opencensus", "component_name": "opencensus"} +2021-02-25T17:06:56.096-0500 INFO builder/pipelines_builder.go:207 Pipeline is enabled. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.096-0500 INFO service/service.go:352 Starting processors... +2021-02-25T17:06:56.096-0500 INFO builder/pipelines_builder.go:51 Pipeline is starting... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.097-0500 INFO builder/pipelines_builder.go:61 Pipeline is started. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.097-0500 INFO builder/receivers_builder.go:235 Receiver is enabled. {"component_kind": "receiver", "component_type": "jaeger", "component_name": "jaeger", "datatype": "traces"} +2021-02-25T17:06:56.097-0500 INFO service/service.go:364 Starting receivers... +2021-02-25T17:06:56.097-0500 INFO builder/receivers_builder.go:70 Receiver is starting... {"component_kind": "receiver", "component_type": "jaeger", "component_name": "jaeger"} +2021-02-25T17:06:56.097-0500 INFO static/strategy_store.go:203 No sampling strategies provided or URL is unavailable, using defaults {"component_kind": "receiver", "component_type": "jaeger", "component_name": "jaeger"} +2021-02-25T17:06:56.097-0500 INFO builder/receivers_builder.go:75 Receiver started. {"component_kind": "receiver", "component_type": "jaeger", "component_name": "jaeger"} +2021-02-25T17:06:56.098-0500 INFO healthcheck/handler.go:128 Health Check state change {"component_kind": "extension", "component_type": "health_check", "component_name": "health_check", "status": "ready"} +2021-02-25T17:06:56.098-0500 INFO service/service.go:267 Everything is ready. Begin running and processing data. +2021-02-25T17:06:56.107-0500 INFO service/service.go:280 Received signal from OS {"signal": "terminated"} +2021-02-25T17:06:56.107-0500 INFO service/service.go:447 Starting shutdown... +2021-02-25T17:06:56.107-0500 INFO healthcheck/handler.go:128 Health Check state change {"component_kind": "extension", "component_type": "health_check", "component_name": "health_check", "status": "unavailable"} +2021-02-25T17:06:56.107-0500 INFO service/service.go:380 Stopping receivers... +2021-02-25T17:06:56.107-0500 INFO service/service.go:386 Stopping processors... +2021-02-25T17:06:56.108-0500 INFO builder/pipelines_builder.go:69 Pipeline is shutting down... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.108-0500 INFO builder/pipelines_builder.go:75 Pipeline is shutdown. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.108-0500 INFO service/service.go:392 Stopping exporters... +2021-02-25T17:06:56.108-0500 INFO service/service.go:402 Stopping extensions... +2021-02-25T17:06:56.109-0500 INFO service/service.go:469 Shutdown complete. +--- PASS: TestApplication_Start (0.04s) +=== RUN TestApplication_ReportError +2021-02-25T17:06:56.110-0500 INFO service/service.go:411 Starting InProcess Collector... {"Version": "latest", "GitHash": "", "NumCPU": 8} +2021-02-25T17:06:56.110-0500 INFO service/service.go:255 Setting up own telemetry... +2021-02-25T17:06:56.113-0500 INFO service/service.go:292 Loading configuration... +2021-02-25T17:06:56.115-0500 INFO service/service.go:303 Applying configuration... +2021-02-25T17:06:56.115-0500 INFO service/service.go:324 Starting extensions... +2021-02-25T17:06:56.117-0500 INFO builder/exporters_builder.go:306 Exporter is enabled. {"component_kind": "exporter", "exporter": "otlp"} +2021-02-25T17:06:56.117-0500 INFO service/service.go:339 Starting exporters... +2021-02-25T17:06:56.117-0500 INFO builder/exporters_builder.go:92 Exporter is starting... {"component_kind": "exporter", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.118-0500 INFO builder/exporters_builder.go:97 Exporter started. {"component_kind": "exporter", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.118-0500 INFO builder/pipelines_builder.go:207 Pipeline is enabled. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.118-0500 INFO service/service.go:352 Starting processors... +2021-02-25T17:06:56.118-0500 INFO builder/pipelines_builder.go:51 Pipeline is starting... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.118-0500 INFO builder/pipelines_builder.go:61 Pipeline is started. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.118-0500 INFO builder/receivers_builder.go:235 Receiver is enabled. {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp", "datatype": "traces"} +2021-02-25T17:06:56.118-0500 INFO service/service.go:364 Starting receivers... +2021-02-25T17:06:56.118-0500 INFO builder/receivers_builder.go:70 Receiver is starting... {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.118-0500 INFO otlpreceiver/otlp.go:93 Starting GRPC server on endpoint 0.0.0.0:4317 {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.118-0500 INFO otlpreceiver/otlp.go:130 Setting up a second GRPC listener on legacy endpoint 0.0.0.0:55680 {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.118-0500 INFO otlpreceiver/otlp.go:93 Starting GRPC server on endpoint 0.0.0.0:55680 {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.118-0500 INFO builder/receivers_builder.go:75 Receiver started. {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.118-0500 INFO service/service.go:267 Everything is ready. Begin running and processing data. +2021-02-25T17:06:56.119-0500 ERROR service/service.go:278 Asynchronous error received, terminating process {"error": "err2"} +go.opentelemetry.io/collector/service.(*Application).runAndWaitForShutdownEvent + /Users/tnajaryan/work/repos/opentelemetry-collector/service/service.go:278 +go.opentelemetry.io/collector/service.(*Application).execute + /Users/tnajaryan/work/repos/opentelemetry-collector/service/service.go:440 +go.opentelemetry.io/collector/service.New.func1 + /Users/tnajaryan/work/repos/opentelemetry-collector/service/service.go:165 +github.com/spf13/cobra.(*Command).execute + /Users/tnajaryan/go/pkg/mod/github.com/spf13/cobra@v1.1.3/command.go:852 +github.com/spf13/cobra.(*Command).ExecuteC + /Users/tnajaryan/go/pkg/mod/github.com/spf13/cobra@v1.1.3/command.go:960 +github.com/spf13/cobra.(*Command).Execute + /Users/tnajaryan/go/pkg/mod/github.com/spf13/cobra@v1.1.3/command.go:897 +go.opentelemetry.io/collector/service.(*Application).Run + /Users/tnajaryan/work/repos/opentelemetry-collector/service/service.go:482 +go.opentelemetry.io/collector/service.TestApplication_ReportError.func2 + /Users/tnajaryan/work/repos/opentelemetry-collector/service/service_test.go:130 +2021-02-25T17:06:56.119-0500 INFO service/service.go:447 Starting shutdown... +2021-02-25T17:06:56.119-0500 INFO service/service.go:380 Stopping receivers... +2021-02-25T17:06:56.119-0500 INFO service/service.go:386 Stopping processors... +2021-02-25T17:06:56.119-0500 INFO builder/pipelines_builder.go:69 Pipeline is shutting down... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.119-0500 INFO builder/pipelines_builder.go:75 Pipeline is shutdown. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.119-0500 INFO service/service.go:392 Stopping exporters... +2021-02-25T17:06:56.120-0500 INFO service/service.go:402 Stopping extensions... +2021-02-25T17:06:56.120-0500 INFO service/service.go:469 Shutdown complete. +Error: failed to shutdown extensions: err1 +--- PASS: TestApplication_ReportError (0.01s) +=== RUN TestApplication_StartAsGoRoutine +2021-02-25T17:06:56.120-0500 INFO service/service.go:411 Starting InProcess Collector... {"Version": "latest", "GitHash": "", "NumCPU": 8} +2021-02-25T17:06:56.121-0500 INFO service/service.go:255 Setting up own telemetry... +2021-02-25T17:06:56.122-0500 INFO service/service.go:292 Loading configuration... +2021-02-25T17:06:56.124-0500 INFO service/service.go:303 Applying configuration... +2021-02-25T17:06:56.124-0500 INFO service/service.go:324 Starting extensions... +2021-02-25T17:06:56.126-0500 INFO builder/exporters_builder.go:306 Exporter is enabled. {"component_kind": "exporter", "exporter": "logging"} +2021-02-25T17:06:56.126-0500 INFO service/service.go:339 Starting exporters... +2021-02-25T17:06:56.126-0500 INFO builder/exporters_builder.go:92 Exporter is starting... {"component_kind": "exporter", "component_type": "logging", "component_name": "logging"} +2021-02-25T17:06:56.126-0500 INFO builder/exporters_builder.go:97 Exporter started. {"component_kind": "exporter", "component_type": "logging", "component_name": "logging"} +2021-02-25T17:06:56.126-0500 INFO builder/pipelines_builder.go:207 Pipeline is enabled. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.126-0500 INFO service/service.go:352 Starting processors... +2021-02-25T17:06:56.126-0500 INFO builder/pipelines_builder.go:51 Pipeline is starting... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.127-0500 INFO builder/pipelines_builder.go:61 Pipeline is started. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.127-0500 INFO builder/receivers_builder.go:235 Receiver is enabled. {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp", "datatype": "traces"} +2021-02-25T17:06:56.127-0500 INFO service/service.go:364 Starting receivers... +2021-02-25T17:06:56.127-0500 INFO builder/receivers_builder.go:70 Receiver is starting... {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.127-0500 INFO otlpreceiver/otlp.go:93 Starting GRPC server on endpoint 0.0.0.0:4317 {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.127-0500 INFO otlpreceiver/otlp.go:130 Setting up a second GRPC listener on legacy endpoint 0.0.0.0:55680 {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.127-0500 INFO otlpreceiver/otlp.go:93 Starting GRPC server on endpoint 0.0.0.0:55680 {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.127-0500 INFO builder/receivers_builder.go:75 Receiver started. {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:06:56.127-0500 INFO service/service.go:267 Everything is ready. Begin running and processing data. +2021-02-25T17:06:56.127-0500 INFO service/service.go:282 Received stop test request +2021-02-25T17:06:56.127-0500 INFO service/service.go:239 stopTestChan already closed +2021-02-25T17:06:56.127-0500 INFO service/service.go:447 Starting shutdown... +2021-02-25T17:06:56.128-0500 INFO service/service.go:380 Stopping receivers... +2021-02-25T17:06:56.128-0500 INFO service/service.go:386 Stopping processors... +2021-02-25T17:06:56.128-0500 INFO builder/pipelines_builder.go:69 Pipeline is shutting down... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.128-0500 INFO builder/pipelines_builder.go:75 Pipeline is shutdown. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.128-0500 INFO service/service.go:392 Stopping exporters... +2021-02-25T17:06:56.128-0500 INFO service/service.go:402 Stopping extensions... +2021-02-25T17:06:56.128-0500 INFO service/service.go:469 Shutdown complete. +Error: failed to shutdown pipelines: failed to shutdown exporters: sync /dev/stderr: bad file descriptor +--- PASS: TestApplication_StartAsGoRoutine (0.01s) +=== RUN TestApplication_setupExtensions +=== RUN TestApplication_setupExtensions/extension_not_configured +=== RUN TestApplication_setupExtensions/missing_extension_factory +=== RUN TestApplication_setupExtensions/error_on_create_extension +=== RUN TestApplication_setupExtensions/bad_factory +--- PASS: TestApplication_setupExtensions (0.00s) + --- PASS: TestApplication_setupExtensions/extension_not_configured (0.00s) + --- PASS: TestApplication_setupExtensions/missing_extension_factory (0.00s) + --- PASS: TestApplication_setupExtensions/error_on_create_extension (0.00s) + --- PASS: TestApplication_setupExtensions/bad_factory (0.00s) +=== RUN TestApplication_GetFactory +--- PASS: TestApplication_GetFactory (0.00s) +=== RUN TestApplication_GetExtensions +2021-02-25T17:06:56.130-0500 INFO service/service.go:411 Starting ... {"Version": "", "GitHash": "", "NumCPU": 8} +2021-02-25T17:06:56.130-0500 INFO service/service.go:255 Setting up own telemetry... +2021-02-25T17:06:56.131-0500 INFO service/service.go:292 Loading configuration... +2021-02-25T17:06:56.131-0500 INFO service/service.go:303 Applying configuration... +2021-02-25T17:06:56.131-0500 INFO service/service.go:324 Starting extensions... +2021-02-25T17:06:56.131-0500 INFO builder/extensions_builder.go:53 Extension is starting... {"component_kind": "extension", "component_type": "exampleextension", "component_name": "exampleextension"} +2021-02-25T17:06:56.131-0500 INFO builder/extensions_builder.go:59 Extension started. {"component_kind": "extension", "component_type": "exampleextension", "component_name": "exampleextension"} +2021-02-25T17:06:56.131-0500 INFO builder/exporters_builder.go:306 Exporter is enabled. {"component_kind": "exporter", "exporter": "exampleexporter"} +2021-02-25T17:06:56.131-0500 INFO service/service.go:339 Starting exporters... +2021-02-25T17:06:56.131-0500 INFO builder/exporters_builder.go:92 Exporter is starting... {"component_kind": "exporter", "component_type": "exampleexporter", "component_name": "exampleexporter"} +2021-02-25T17:06:56.131-0500 INFO builder/exporters_builder.go:97 Exporter started. {"component_kind": "exporter", "component_type": "exampleexporter", "component_name": "exampleexporter"} +2021-02-25T17:06:56.131-0500 INFO builder/pipelines_builder.go:207 Pipeline is enabled. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.131-0500 INFO service/service.go:352 Starting processors... +2021-02-25T17:06:56.131-0500 INFO builder/pipelines_builder.go:51 Pipeline is starting... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.131-0500 INFO builder/pipelines_builder.go:61 Pipeline is started. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.131-0500 INFO builder/receivers_builder.go:235 Receiver is enabled. {"component_kind": "receiver", "component_type": "examplereceiver", "component_name": "examplereceiver", "datatype": "traces"} +2021-02-25T17:06:56.131-0500 INFO service/service.go:364 Starting receivers... +2021-02-25T17:06:56.131-0500 INFO builder/receivers_builder.go:70 Receiver is starting... {"component_kind": "receiver", "component_type": "examplereceiver", "component_name": "examplereceiver"} +2021-02-25T17:06:56.131-0500 INFO builder/receivers_builder.go:75 Receiver started. {"component_kind": "receiver", "component_type": "examplereceiver", "component_name": "examplereceiver"} +2021-02-25T17:06:56.132-0500 INFO service/service.go:267 Everything is ready. Begin running and processing data. +2021-02-25T17:06:56.132-0500 INFO service/service.go:282 Received stop test request +2021-02-25T17:06:56.132-0500 INFO service/service.go:447 Starting shutdown... +2021-02-25T17:06:56.132-0500 INFO service/service.go:380 Stopping receivers... +2021-02-25T17:06:56.132-0500 INFO service/service.go:386 Stopping processors... +2021-02-25T17:06:56.132-0500 INFO builder/pipelines_builder.go:69 Pipeline is shutting down... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.132-0500 INFO builder/pipelines_builder.go:75 Pipeline is shutdown. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.132-0500 INFO service/service.go:392 Stopping exporters... +2021-02-25T17:06:56.132-0500 INFO service/service.go:402 Stopping extensions... +2021-02-25T17:06:56.132-0500 INFO service/service.go:469 Shutdown complete. +--- PASS: TestApplication_GetExtensions (0.00s) +=== RUN TestApplication_GetExporters +2021-02-25T17:06:56.133-0500 INFO service/service.go:411 Starting ... {"Version": "", "GitHash": "", "NumCPU": 8} +2021-02-25T17:06:56.133-0500 INFO service/service.go:255 Setting up own telemetry... +2021-02-25T17:06:56.133-0500 INFO service/service.go:292 Loading configuration... +2021-02-25T17:06:56.133-0500 INFO service/service.go:303 Applying configuration... +2021-02-25T17:06:56.133-0500 INFO service/service.go:324 Starting extensions... +2021-02-25T17:06:56.133-0500 INFO builder/extensions_builder.go:53 Extension is starting... {"component_kind": "extension", "component_type": "exampleextension", "component_name": "exampleextension"} +2021-02-25T17:06:56.133-0500 INFO builder/extensions_builder.go:59 Extension started. {"component_kind": "extension", "component_type": "exampleextension", "component_name": "exampleextension"} +2021-02-25T17:06:56.133-0500 INFO builder/exporters_builder.go:306 Exporter is enabled. {"component_kind": "exporter", "exporter": "exampleexporter"} +2021-02-25T17:06:56.133-0500 INFO service/service.go:339 Starting exporters... +2021-02-25T17:06:56.133-0500 INFO builder/exporters_builder.go:92 Exporter is starting... {"component_kind": "exporter", "component_type": "exampleexporter", "component_name": "exampleexporter"} +2021-02-25T17:06:56.133-0500 INFO builder/exporters_builder.go:97 Exporter started. {"component_kind": "exporter", "component_type": "exampleexporter", "component_name": "exampleexporter"} +2021-02-25T17:06:56.133-0500 INFO builder/pipelines_builder.go:207 Pipeline is enabled. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.133-0500 INFO service/service.go:352 Starting processors... +2021-02-25T17:06:56.133-0500 INFO builder/pipelines_builder.go:51 Pipeline is starting... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.133-0500 INFO builder/pipelines_builder.go:61 Pipeline is started. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.134-0500 INFO builder/receivers_builder.go:235 Receiver is enabled. {"component_kind": "receiver", "component_type": "examplereceiver", "component_name": "examplereceiver", "datatype": "traces"} +2021-02-25T17:06:56.134-0500 INFO service/service.go:364 Starting receivers... +2021-02-25T17:06:56.134-0500 INFO builder/receivers_builder.go:70 Receiver is starting... {"component_kind": "receiver", "component_type": "examplereceiver", "component_name": "examplereceiver"} +2021-02-25T17:06:56.134-0500 INFO builder/receivers_builder.go:75 Receiver started. {"component_kind": "receiver", "component_type": "examplereceiver", "component_name": "examplereceiver"} +2021-02-25T17:06:56.134-0500 INFO service/service.go:267 Everything is ready. Begin running and processing data. +2021-02-25T17:06:56.134-0500 INFO service/service.go:282 Received stop test request +2021-02-25T17:06:56.134-0500 INFO service/service.go:447 Starting shutdown... +2021-02-25T17:06:56.134-0500 INFO service/service.go:380 Stopping receivers... +2021-02-25T17:06:56.134-0500 INFO service/service.go:386 Stopping processors... +2021-02-25T17:06:56.134-0500 INFO builder/pipelines_builder.go:69 Pipeline is shutting down... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.134-0500 INFO builder/pipelines_builder.go:75 Pipeline is shutdown. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:06:56.134-0500 INFO service/service.go:392 Stopping exporters... +2021-02-25T17:06:56.134-0500 INFO service/service.go:402 Stopping extensions... +2021-02-25T17:06:56.134-0500 INFO service/service.go:469 Shutdown complete. +--- PASS: TestApplication_GetExporters (0.00s) +=== RUN TestSetFlag +=== RUN TestSetFlag/unknown_component +=== RUN TestSetFlag/component_not_added_to_pipeline +=== RUN TestSetFlag/ok +--- PASS: TestSetFlag (0.02s) + --- PASS: TestSetFlag/unknown_component (0.01s) + --- PASS: TestSetFlag/component_not_added_to_pipeline (0.00s) + --- PASS: TestSetFlag/ok (0.01s) +=== RUN TestSetFlag_component_does_not_exist +--- PASS: TestSetFlag_component_does_not_exist (0.00s) +=== RUN TestSetFlags +--- PASS: TestSetFlags (0.00s) +=== RUN TestSetFlags_err_set_flag +--- PASS: TestSetFlags_err_set_flag (0.00s) +=== RUN TestSetFlags_empty +--- PASS: TestSetFlags_empty (0.00s) +PASS +ok go.opentelemetry.io/collector/service (cached) +=== RUN TestExportersBuilder_Build +--- PASS: TestExportersBuilder_Build (0.00s) +=== RUN TestExportersBuilder_BuildLogs +--- PASS: TestExportersBuilder_BuildLogs (0.00s) +=== RUN TestExportersBuilder_StartAll +--- PASS: TestExportersBuilder_StartAll (0.00s) +=== RUN TestExportersBuilder_StopAll +--- PASS: TestExportersBuilder_StopAll (0.00s) +=== RUN TestExportersBuilder_ErrorOnNilExporter +=== RUN TestExportersBuilder_ErrorOnNilExporter/trace +=== RUN TestExportersBuilder_ErrorOnNilExporter/metrics +=== RUN TestExportersBuilder_ErrorOnNilExporter/logs +--- PASS: TestExportersBuilder_ErrorOnNilExporter (0.00s) + --- PASS: TestExportersBuilder_ErrorOnNilExporter/trace (0.00s) + --- PASS: TestExportersBuilder_ErrorOnNilExporter/metrics (0.00s) + --- PASS: TestExportersBuilder_ErrorOnNilExporter/logs (0.00s) +=== RUN TestPipelinesBuilder_Build +=== RUN TestPipelinesBuilder_Build/one-exporter +=== RUN TestPipelinesBuilder_Build/multi-exporter +--- PASS: TestPipelinesBuilder_Build (0.01s) + --- PASS: TestPipelinesBuilder_Build/one-exporter (0.01s) + --- PASS: TestPipelinesBuilder_Build/multi-exporter (0.01s) +=== RUN TestPipelinesBuilder_BuildVarious +=== RUN TestPipelinesBuilder_BuildVarious/logs +=== RUN TestPipelinesBuilder_BuildVarious/nosuchdatatype +--- PASS: TestPipelinesBuilder_BuildVarious (0.00s) + --- PASS: TestPipelinesBuilder_BuildVarious/logs (0.00s) + --- PASS: TestPipelinesBuilder_BuildVarious/nosuchdatatype (0.00s) +=== RUN TestProcessorsBuilder_ErrorOnUnsupportedProcessor +--- PASS: TestProcessorsBuilder_ErrorOnUnsupportedProcessor (0.00s) +=== RUN TestReceiversBuilder_Build +=== RUN TestReceiversBuilder_Build/one-exporter +=== RUN TestReceiversBuilder_Build/multi-exporter +=== RUN TestReceiversBuilder_Build/multi-metrics-receiver +=== RUN TestReceiversBuilder_Build/multi-receiver-multi-exporter +--- PASS: TestReceiversBuilder_Build (0.02s) + --- PASS: TestReceiversBuilder_Build/one-exporter (0.01s) + --- PASS: TestReceiversBuilder_Build/multi-exporter (0.00s) + --- PASS: TestReceiversBuilder_Build/multi-metrics-receiver (0.01s) + --- PASS: TestReceiversBuilder_Build/multi-receiver-multi-exporter (0.00s) +=== RUN TestReceiversBuilder_BuildCustom +=== RUN TestReceiversBuilder_BuildCustom/logs +=== RUN TestReceiversBuilder_BuildCustom/nosuchdatatype +--- PASS: TestReceiversBuilder_BuildCustom (0.00s) + --- PASS: TestReceiversBuilder_BuildCustom/logs (0.00s) + --- PASS: TestReceiversBuilder_BuildCustom/nosuchdatatype (0.00s) +=== RUN TestReceiversBuilder_DataTypeError +--- PASS: TestReceiversBuilder_DataTypeError (0.00s) +=== RUN TestReceiversBuilder_StartAll +--- PASS: TestReceiversBuilder_StartAll (0.00s) +=== RUN TestReceiversBuilder_StopAll +--- PASS: TestReceiversBuilder_StopAll (0.00s) +=== RUN TestReceiversBuilder_ErrorOnNilReceiver +--- PASS: TestReceiversBuilder_ErrorOnNilReceiver (0.00s) +=== RUN TestReceiversBuilder_Unused +--- PASS: TestReceiversBuilder_Unused (0.00s) +PASS +ok go.opentelemetry.io/collector/service/builder (cached) +=== RUN TestDefaultComponents +--- PASS: TestDefaultComponents (0.00s) +=== RUN TestComponentDocs +--- PASS: TestComponentDocs (0.00s) +PASS +ok go.opentelemetry.io/collector/service/defaultcomponents (cached) +=== RUN TestTemplateFuncs +--- PASS: TestTemplateFuncs (0.00s) +=== RUN TestNoCrash +--- PASS: TestNoCrash (0.01s) +PASS +ok go.opentelemetry.io/collector/service/internal (cached) +=== RUN TestProcessTelemetry +--- PASS: TestProcessTelemetry (0.56s) +PASS +ok go.opentelemetry.io/collector/service/internal/telemetry (cached) +? go.opentelemetry.io/collector/testbed/correctness [no test files] +=== RUN TestSameMetrics +--- PASS: TestSameMetrics (0.00s) +=== RUN TestDifferentValues +--- PASS: TestDifferentValues (0.00s) +=== RUN TestDifferentNumPts +--- PASS: TestDifferentNumPts (0.00s) +=== RUN TestDifferentPtTypes +--- PASS: TestDifferentPtTypes (0.00s) +=== RUN TestDoubleHistogram +--- PASS: TestDoubleHistogram (0.00s) +=== RUN TestIntHistogram +--- PASS: TestIntHistogram (0.00s) +=== RUN TestPDMToPDRM +--- PASS: TestPDMToPDRM (0.00s) +=== RUN TestHarness_MetricsGoldenData +=== RUN TestHarness_MetricsGoldenData/otlp-otlp +2021/02/25 17:13:12 starting testbed receiver +2021/02/25 17:13:12 starting collector +2021-02-25T17:13:12.442-0500 INFO service/service.go:411 Starting InProcess Collector... {"Version": "latest", "GitHash": "", "NumCPU": 8} +2021-02-25T17:13:12.442-0500 INFO service/service.go:255 Setting up own telemetry... +2021-02-25T17:13:12.444-0500 INFO service/service.go:292 Loading configuration... +2021-02-25T17:13:12.444-0500 INFO service/service.go:303 Applying configuration... +2021-02-25T17:13:12.444-0500 INFO service/service.go:324 Starting extensions... +2021-02-25T17:13:12.446-0500 INFO builder/exporters_builder.go:306 Exporter is enabled. {"component_kind": "exporter", "exporter": "otlp"} +2021-02-25T17:13:12.446-0500 INFO service/service.go:339 Starting exporters... +2021-02-25T17:13:12.446-0500 INFO builder/exporters_builder.go:92 Exporter is starting... {"component_kind": "exporter", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:12.448-0500 INFO builder/exporters_builder.go:97 Exporter started. {"component_kind": "exporter", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:12.448-0500 INFO builder/pipelines_builder.go:207 Pipeline is enabled. {"pipeline_name": "metrics", "pipeline_datatype": "metrics"} +2021-02-25T17:13:12.448-0500 INFO service/service.go:352 Starting processors... +2021-02-25T17:13:12.448-0500 INFO builder/pipelines_builder.go:51 Pipeline is starting... {"pipeline_name": "metrics", "pipeline_datatype": "metrics"} +2021-02-25T17:13:12.448-0500 INFO builder/pipelines_builder.go:61 Pipeline is started. {"pipeline_name": "metrics", "pipeline_datatype": "metrics"} +2021-02-25T17:13:12.449-0500 INFO builder/receivers_builder.go:235 Receiver is enabled. {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp", "datatype": "metrics"} +2021-02-25T17:13:12.449-0500 INFO service/service.go:364 Starting receivers... +2021-02-25T17:13:12.449-0500 INFO builder/receivers_builder.go:70 Receiver is starting... {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:12.449-0500 INFO otlpreceiver/otlp.go:93 Starting GRPC server on endpoint 127.0.0.1:62848 {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:12.449-0500 INFO builder/receivers_builder.go:75 Receiver started. {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:12.449-0500 INFO service/service.go:267 Everything is ready. Begin running and processing data. +2021/02/25 17:13:12 starting testbed sender +2021/02/25 17:13:12 waiting for allMetricsReceived +2021/02/25 17:13:12 all metrics received +2021/02/25 17:13:12 stopping testbed receiver +2021-02-25T17:13:12.480-0500 INFO service/service.go:282 Received stop test request +2021-02-25T17:13:12.480-0500 INFO service/service.go:447 Starting shutdown... +2021-02-25T17:13:12.480-0500 INFO service/service.go:380 Stopping receivers... +2021-02-25T17:13:12.480-0500 INFO service/service.go:386 Stopping processors... +2021-02-25T17:13:12.480-0500 INFO exporterhelper/queued_retry.go:276 Exporting failed. Will retry the request after interval. {"component_kind": "exporter", "component_type": "otlp", "component_name": "otlp", "error": "failed to push metrics data via OTLP exporter: rpc error: code = Unavailable desc = transport is closing", "interval": "5.52330144s"} +2021-02-25T17:13:12.481-0500 INFO builder/pipelines_builder.go:69 Pipeline is shutting down... {"pipeline_name": "metrics", "pipeline_datatype": "metrics"} +2021-02-25T17:13:12.481-0500 INFO builder/pipelines_builder.go:75 Pipeline is shutdown. {"pipeline_name": "metrics", "pipeline_datatype": "metrics"} +2021-02-25T17:13:12.481-0500 INFO service/service.go:392 Stopping exporters... +2021-02-25T17:13:12.481-0500 INFO service/service.go:402 Stopping extensions... +2021-02-25T17:13:12.481-0500 INFO service/service.go:469 Shutdown complete. +--- PASS: TestHarness_MetricsGoldenData (0.05s) + --- PASS: TestHarness_MetricsGoldenData/otlp-otlp (0.05s) +PASS +ok go.opentelemetry.io/collector/testbed/correctness/metrics 1.305s +2021/02/25 17:13:12 RUN_TESTBED is not defined, skipping E2E tests. +ok go.opentelemetry.io/collector/testbed/correctness/traces 1.211s +=== RUN TestGoldenDataProvider +--- PASS: TestGoldenDataProvider (0.01s) +=== RUN TestGeneratorAndBackend +=== RUN TestGeneratorAndBackend/Jaeger-JaegerGRPC +2021/02/25 17:13:20 Starting mock backend... +2021/02/25 17:13:20 Starting load generator at 1000 items/sec. +2021/02/25 17:13:20 Stopped generator. Sent: 70 items +2021/02/25 17:13:20 Stopping mock backend... +2021/02/25 17:13:20 Stopped backend. Received: 70 items (916/sec) +=== RUN TestGeneratorAndBackend/Zipkin-Zipkin +2021/02/25 17:13:20 Starting mock backend... +2021/02/25 17:13:20 Starting load generator at 1000 items/sec. +2021/02/25 17:13:20 Stopped generator. Sent: 70 items +2021/02/25 17:13:20 Stopping mock backend... +2021/02/25 17:13:20 Fatal error reported: http: Server closed +2021/02/25 17:13:20 Stopped backend. Received: 70 items (910/sec) +--- PASS: TestGeneratorAndBackend (0.16s) + --- PASS: TestGeneratorAndBackend/Jaeger-JaegerGRPC (0.08s) + --- PASS: TestGeneratorAndBackend/Zipkin-Zipkin (0.08s) +=== RUN TestNewInProcessPipeline +2021-02-25T17:13:20.471-0500 INFO service/service.go:411 Starting InProcess Collector... {"Version": "latest", "GitHash": "", "NumCPU": 8} +2021-02-25T17:13:20.471-0500 INFO service/service.go:255 Setting up own telemetry... +2021-02-25T17:13:20.480-0500 INFO service/telemetry.go:102 Serving Prometheus metrics {"address": "localhost:8888", "level": 0, "service.instance.id": "72314089-eff6-48df-bd8e-2b3a0d953b54"} +2021-02-25T17:13:20.483-0500 INFO service/service.go:292 Loading configuration... +2021-02-25T17:13:20.483-0500 INFO service/service.go:303 Applying configuration... +2021-02-25T17:13:20.483-0500 INFO service/service.go:324 Starting extensions... +2021-02-25T17:13:20.486-0500 INFO builder/exporters_builder.go:306 Exporter is enabled. {"component_kind": "exporter", "exporter": "otlp"} +2021-02-25T17:13:20.486-0500 INFO service/service.go:339 Starting exporters... +2021-02-25T17:13:20.486-0500 INFO builder/exporters_builder.go:92 Exporter is starting... {"component_kind": "exporter", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:20.487-0500 INFO builder/exporters_builder.go:97 Exporter started. {"component_kind": "exporter", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:20.487-0500 INFO builder/pipelines_builder.go:207 Pipeline is enabled. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:13:20.487-0500 INFO service/service.go:352 Starting processors... +2021-02-25T17:13:20.487-0500 INFO builder/pipelines_builder.go:51 Pipeline is starting... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:13:20.487-0500 INFO builder/pipelines_builder.go:61 Pipeline is started. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:13:20.488-0500 INFO builder/receivers_builder.go:235 Receiver is enabled. {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp", "datatype": "traces"} +2021-02-25T17:13:20.488-0500 INFO service/service.go:364 Starting receivers... +2021-02-25T17:13:20.488-0500 INFO builder/receivers_builder.go:70 Receiver is starting... {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:20.488-0500 INFO otlpreceiver/otlp.go:93 Starting GRPC server on endpoint 127.0.0.1:62863 {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:20.488-0500 INFO builder/receivers_builder.go:75 Receiver started. {"component_kind": "receiver", "component_type": "otlp", "component_name": "otlp"} +2021-02-25T17:13:20.488-0500 INFO service/service.go:267 Everything is ready. Begin running and processing data. +2021-02-25T17:13:20.488-0500 INFO service/service.go:282 Received stop test request +2021-02-25T17:13:20.489-0500 INFO service/service.go:447 Starting shutdown... +2021-02-25T17:13:20.489-0500 INFO service/service.go:380 Stopping receivers... +2021-02-25T17:13:20.489-0500 INFO service/service.go:386 Stopping processors... +2021-02-25T17:13:20.489-0500 INFO builder/pipelines_builder.go:69 Pipeline is shutting down... {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:13:20.489-0500 INFO builder/pipelines_builder.go:75 Pipeline is shutdown. {"pipeline_name": "traces", "pipeline_datatype": "traces"} +2021-02-25T17:13:20.489-0500 INFO service/service.go:392 Stopping exporters... +2021-02-25T17:13:20.489-0500 INFO service/service.go:402 Stopping extensions... +2021-02-25T17:13:20.489-0500 INFO service/service.go:469 Shutdown complete. +--- PASS: TestNewInProcessPipeline (0.02s) +PASS +ok go.opentelemetry.io/collector/testbed/testbed 1.246s +2021/02/25 17:13:20 RUN_TESTBED is not defined, skipping E2E tests. +ok go.opentelemetry.io/collector/testbed/tests 1.277s +=== RUN TestGetAvailableLocalAddress +--- PASS: TestGetAvailableLocalAddress (0.01s) +=== RUN TestGetAvailablePort +--- PASS: TestGetAvailablePort (0.00s) +=== RUN TestWaitForPort +--- PASS: TestWaitForPort (5.11s) +=== RUN TestCreateExclusionsList +--- PASS: TestCreateExclusionsList (0.00s) +PASS +ok go.opentelemetry.io/collector/testutil (cached) +=== RUN TestLogs +--- PASS: TestLogs (0.00s) +PASS +ok go.opentelemetry.io/collector/testutil/logstest (cached) +=== RUN TestResourceProcessor +--- PASS: TestResourceProcessor (0.00s) +PASS +ok go.opentelemetry.io/collector/testutil/metricstestutil (cached) +? go.opentelemetry.io/collector/translator/conventions [no test files] +=== RUN TestMetricsToOC +=== RUN TestMetricsToOC/empty +=== RUN TestMetricsToOC/one-empty-resource-metrics +=== RUN TestMetricsToOC/no-libraries +=== RUN TestMetricsToOC/one-empty-instrumentation-library +=== RUN TestMetricsToOC/one-metric-no-resource +=== RUN TestMetricsToOC/one-metric +=== RUN TestMetricsToOC/one-metric-no-labels +=== RUN TestMetricsToOC/all-types-no-data-points +=== RUN TestMetricsToOC/sample-metric +--- PASS: TestMetricsToOC (0.00s) + --- PASS: TestMetricsToOC/empty (0.00s) + --- PASS: TestMetricsToOC/one-empty-resource-metrics (0.00s) + --- PASS: TestMetricsToOC/no-libraries (0.00s) + --- PASS: TestMetricsToOC/one-empty-instrumentation-library (0.00s) + --- PASS: TestMetricsToOC/one-metric-no-resource (0.00s) + --- PASS: TestMetricsToOC/one-metric (0.00s) + --- PASS: TestMetricsToOC/one-metric-no-labels (0.00s) + --- PASS: TestMetricsToOC/all-types-no-data-points (0.00s) + --- PASS: TestMetricsToOC/sample-metric (0.00s) +=== RUN TestMetricsToOC_InvalidDataType +--- PASS: TestMetricsToOC_InvalidDataType (0.00s) +=== RUN TestOCToMetrics +=== RUN TestOCToMetrics/empty +=== RUN TestOCToMetrics/one-empty-resource-metrics +=== RUN TestOCToMetrics/no-libraries +=== RUN TestOCToMetrics/all-types-no-data-points +=== RUN TestOCToMetrics/one-metric-no-labels +=== RUN TestOCToMetrics/one-metric +=== RUN TestOCToMetrics/one-metric-one-summary +=== RUN TestOCToMetrics/one-metric-one-nil +=== RUN TestOCToMetrics/one-metric-one-nil-timeseries +=== RUN TestOCToMetrics/one-metric-one-nil-point +=== RUN TestOCToMetrics/one-metric-one-nil-point#01 +=== RUN TestOCToMetrics/sample-metric +--- PASS: TestOCToMetrics (0.01s) + --- PASS: TestOCToMetrics/empty (0.00s) + --- PASS: TestOCToMetrics/one-empty-resource-metrics (0.00s) + --- PASS: TestOCToMetrics/no-libraries (0.00s) + --- PASS: TestOCToMetrics/all-types-no-data-points (0.00s) + --- PASS: TestOCToMetrics/one-metric-no-labels (0.00s) + --- PASS: TestOCToMetrics/one-metric (0.00s) + --- PASS: TestOCToMetrics/one-metric-one-summary (0.00s) + --- PASS: TestOCToMetrics/one-metric-one-nil (0.00s) + --- PASS: TestOCToMetrics/one-metric-one-nil-timeseries (0.00s) + --- PASS: TestOCToMetrics/one-metric-one-nil-point (0.00s) + --- PASS: TestOCToMetrics/one-metric-one-nil-point#01 (0.00s) + --- PASS: TestOCToMetrics/sample-metric (0.00s) +=== RUN TestOCToMetrics_ResourceInMetric +--- PASS: TestOCToMetrics_ResourceInMetric (0.00s) +=== RUN TestOCToMetrics_ResourceInMetricOnly +--- PASS: TestOCToMetrics_ResourceInMetricOnly (0.00s) +=== RUN TestOcNodeResourceToInternal +--- PASS: TestOcNodeResourceToInternal (0.00s) +=== RUN TestOcTraceStateToInternal +--- PASS: TestOcTraceStateToInternal (0.00s) +=== RUN TestInitAttributeMapFromOC +--- PASS: TestInitAttributeMapFromOC (0.00s) +=== RUN TestOcSpanKindToInternal +=== RUN TestOcSpanKindToInternal/SPAN_KIND_CLIENT +=== RUN TestOcSpanKindToInternal/SPAN_KIND_SERVER +=== RUN TestOcSpanKindToInternal/SPAN_KIND_UNSPECIFIED +=== RUN TestOcSpanKindToInternal/SPAN_KIND_CONSUMER +=== RUN TestOcSpanKindToInternal/SPAN_KIND_PRODUCER +=== RUN TestOcSpanKindToInternal/SPAN_KIND_UNSPECIFIED#01 +=== RUN TestOcSpanKindToInternal/SPAN_KIND_CLIENT#01 +=== RUN TestOcSpanKindToInternal/SPAN_KIND_INTERNAL +--- PASS: TestOcSpanKindToInternal (0.00s) + --- PASS: TestOcSpanKindToInternal/SPAN_KIND_CLIENT (0.00s) + --- PASS: TestOcSpanKindToInternal/SPAN_KIND_SERVER (0.00s) + --- PASS: TestOcSpanKindToInternal/SPAN_KIND_UNSPECIFIED (0.00s) + --- PASS: TestOcSpanKindToInternal/SPAN_KIND_CONSUMER (0.00s) + --- PASS: TestOcSpanKindToInternal/SPAN_KIND_PRODUCER (0.00s) + --- PASS: TestOcSpanKindToInternal/SPAN_KIND_UNSPECIFIED#01 (0.00s) + --- PASS: TestOcSpanKindToInternal/SPAN_KIND_CLIENT#01 (0.00s) + --- PASS: TestOcSpanKindToInternal/SPAN_KIND_INTERNAL (0.00s) +=== RUN TestOcToInternal +=== RUN TestOcToInternal/empty +=== RUN TestOcToInternal/one-empty-resource-spans +=== RUN TestOcToInternal/no-libraries +=== RUN TestOcToInternal/one-span-no-resource +=== RUN TestOcToInternal/one-span +=== RUN TestOcToInternal/one-span-zeroed-parent-id +=== RUN TestOcToInternal/one-span-one-nil +=== RUN TestOcToInternal/two-spans-same-resource +=== RUN TestOcToInternal/two-spans-same-resource-one-different +=== RUN TestOcToInternal/two-spans-and-separate-in-the-middle +--- PASS: TestOcToInternal (0.01s) + --- PASS: TestOcToInternal/empty (0.00s) + --- PASS: TestOcToInternal/one-empty-resource-spans (0.00s) + --- PASS: TestOcToInternal/no-libraries (0.00s) + --- PASS: TestOcToInternal/one-span-no-resource (0.00s) + --- PASS: TestOcToInternal/one-span (0.00s) + --- PASS: TestOcToInternal/one-span-zeroed-parent-id (0.00s) + --- PASS: TestOcToInternal/one-span-one-nil (0.00s) + --- PASS: TestOcToInternal/two-spans-same-resource (0.00s) + --- PASS: TestOcToInternal/two-spans-same-resource-one-different (0.00s) + --- PASS: TestOcToInternal/two-spans-and-separate-in-the-middle (0.00s) +=== RUN TestOcSameProcessAsParentSpanToInternal +--- PASS: TestOcSameProcessAsParentSpanToInternal (0.00s) +=== RUN TestResourceToOC +=== RUN TestResourceToOC/nil +=== RUN TestResourceToOC/empty +=== RUN TestResourceToOC/with-attributes +--- PASS: TestResourceToOC (0.00s) + --- PASS: TestResourceToOC/nil (0.00s) + --- PASS: TestResourceToOC/empty (0.00s) + --- PASS: TestResourceToOC/with-attributes (0.00s) +=== RUN TestContainerResourceToOC +--- PASS: TestContainerResourceToOC (0.00s) +=== RUN TestAttributeValueToString +--- PASS: TestAttributeValueToString (0.00s) +=== RUN TestInferResourceType +=== RUN TestInferResourceType/empty_labels +=== RUN TestInferResourceType/container +=== RUN TestInferResourceType/pod +=== RUN TestInferResourceType/host +=== RUN TestInferResourceType/gce +--- PASS: TestInferResourceType (0.00s) + --- PASS: TestInferResourceType/empty_labels (0.00s) + --- PASS: TestInferResourceType/container (0.00s) + --- PASS: TestInferResourceType/pod (0.00s) + --- PASS: TestInferResourceType/host (0.00s) + --- PASS: TestInferResourceType/gce (0.00s) +=== RUN TestResourceToOCAndBack +=== RUN TestResourceToOCAndBack/Nil +=== RUN TestResourceToOCAndBack/Empty +=== RUN TestResourceToOCAndBack/VMOnPrem +=== RUN TestResourceToOCAndBack/VMCloud +=== RUN TestResourceToOCAndBack/K8sOnPrem +=== RUN TestResourceToOCAndBack/K8sCloud +=== RUN TestResourceToOCAndBack/Faas +=== RUN TestResourceToOCAndBack/Exec +--- PASS: TestResourceToOCAndBack (0.00s) + --- PASS: TestResourceToOCAndBack/Nil (0.00s) + --- PASS: TestResourceToOCAndBack/Empty (0.00s) + --- PASS: TestResourceToOCAndBack/VMOnPrem (0.00s) + --- PASS: TestResourceToOCAndBack/VMCloud (0.00s) + --- PASS: TestResourceToOCAndBack/K8sOnPrem (0.00s) + --- PASS: TestResourceToOCAndBack/K8sCloud (0.00s) + --- PASS: TestResourceToOCAndBack/Faas (0.00s) + --- PASS: TestResourceToOCAndBack/Exec (0.00s) +=== RUN TestInternalTraceStateToOC +--- PASS: TestInternalTraceStateToOC (0.00s) +=== RUN TestAttributesMapToOC +--- PASS: TestAttributesMapToOC (0.00s) +=== RUN TestSpanKindToOC +=== RUN TestSpanKindToOC/SPAN_KIND_CLIENT +=== RUN TestSpanKindToOC/SPAN_KIND_SERVER +=== RUN TestSpanKindToOC/SPAN_KIND_CONSUMER +=== RUN TestSpanKindToOC/SPAN_KIND_PRODUCER +=== RUN TestSpanKindToOC/SPAN_KIND_UNSPECIFIED +=== RUN TestSpanKindToOC/SPAN_KIND_INTERNAL +--- PASS: TestSpanKindToOC (0.00s) + --- PASS: TestSpanKindToOC/SPAN_KIND_CLIENT (0.00s) + --- PASS: TestSpanKindToOC/SPAN_KIND_SERVER (0.00s) + --- PASS: TestSpanKindToOC/SPAN_KIND_CONSUMER (0.00s) + --- PASS: TestSpanKindToOC/SPAN_KIND_PRODUCER (0.00s) + --- PASS: TestSpanKindToOC/SPAN_KIND_UNSPECIFIED (0.00s) + --- PASS: TestSpanKindToOC/SPAN_KIND_INTERNAL (0.00s) +=== RUN TestAttributesMapTOOcSameProcessAsParentSpan +--- PASS: TestAttributesMapTOOcSameProcessAsParentSpan (0.00s) +=== RUN TestSpanKindToOCAttribute +=== RUN TestSpanKindToOCAttribute/SPAN_KIND_CONSUMER +=== RUN TestSpanKindToOCAttribute/SPAN_KIND_PRODUCER +=== RUN TestSpanKindToOCAttribute/SPAN_KIND_INTERNAL +=== RUN TestSpanKindToOCAttribute/SPAN_KIND_UNSPECIFIED +=== RUN TestSpanKindToOCAttribute/SPAN_KIND_SERVER +=== RUN TestSpanKindToOCAttribute/SPAN_KIND_CLIENT +--- PASS: TestSpanKindToOCAttribute (0.00s) + --- PASS: TestSpanKindToOCAttribute/SPAN_KIND_CONSUMER (0.00s) + --- PASS: TestSpanKindToOCAttribute/SPAN_KIND_PRODUCER (0.00s) + --- PASS: TestSpanKindToOCAttribute/SPAN_KIND_INTERNAL (0.00s) + --- PASS: TestSpanKindToOCAttribute/SPAN_KIND_UNSPECIFIED (0.00s) + --- PASS: TestSpanKindToOCAttribute/SPAN_KIND_SERVER (0.00s) + --- PASS: TestSpanKindToOCAttribute/SPAN_KIND_CLIENT (0.00s) +=== RUN TestInternalToOC +=== RUN TestInternalToOC/one-empty-resource-spans +=== RUN TestInternalToOC/no-libraries +=== RUN TestInternalToOC/one-empty-instrumentation-library +=== RUN TestInternalToOC/one-span-no-resource +=== RUN TestInternalToOC/one-span +=== RUN TestInternalToOC/two-spans-same-resource +--- PASS: TestInternalToOC (0.00s) + --- PASS: TestInternalToOC/one-empty-resource-spans (0.00s) + --- PASS: TestInternalToOC/no-libraries (0.00s) + --- PASS: TestInternalToOC/one-empty-instrumentation-library (0.00s) + --- PASS: TestInternalToOC/one-span-no-resource (0.00s) + --- PASS: TestInternalToOC/one-span (0.00s) + --- PASS: TestInternalToOC/two-spans-same-resource (0.00s) +=== RUN TestInternalTracesToOCTracesAndBack +--- PASS: TestInternalTracesToOCTracesAndBack (0.40s) +PASS +ok go.opentelemetry.io/collector/translator/internaldata (cached) +=== RUN TestUInt64ToTraceIDConversion +--- PASS: TestUInt64ToTraceIDConversion (0.00s) +=== RUN TestUInt64ToSpanIDConversion +--- PASS: TestUInt64ToSpanIDConversion (0.00s) +=== RUN TestTraceIDUInt64RoundTrip +--- PASS: TestTraceIDUInt64RoundTrip (0.00s) +=== RUN TestSpanIdUInt64RoundTrip +--- PASS: TestSpanIdUInt64RoundTrip (0.00s) +=== RUN TestHTTPStatusFromOTStatus +--- PASS: TestHTTPStatusFromOTStatus (0.00s) +=== RUN TestOTStatusFromHTTPStatus +--- PASS: TestOTStatusFromHTTPStatus (0.00s) +=== RUN TestAttributeValueToString +=== RUN TestAttributeValueToString/string +=== RUN TestAttributeValueToString/json_string +=== RUN TestAttributeValueToString/int64 +=== RUN TestAttributeValueToString/float64 +=== RUN TestAttributeValueToString/boolean +=== RUN TestAttributeValueToString/null +=== RUN TestAttributeValueToString/null#01 +=== RUN TestAttributeValueToString/map +=== RUN TestAttributeValueToString/array +=== RUN TestAttributeValueToString/array#01 +--- PASS: TestAttributeValueToString (0.00s) + --- PASS: TestAttributeValueToString/string (0.00s) + --- PASS: TestAttributeValueToString/json_string (0.00s) + --- PASS: TestAttributeValueToString/int64 (0.00s) + --- PASS: TestAttributeValueToString/float64 (0.00s) + --- PASS: TestAttributeValueToString/boolean (0.00s) + --- PASS: TestAttributeValueToString/null (0.00s) + --- PASS: TestAttributeValueToString/null#01 (0.00s) + --- PASS: TestAttributeValueToString/map (0.00s) + --- PASS: TestAttributeValueToString/array (0.00s) + --- PASS: TestAttributeValueToString/array#01 (0.00s) +=== RUN TestAttributeMapToStringAndBack +--- PASS: TestAttributeMapToStringAndBack (0.00s) +=== RUN TestAttributeArrayToStringAndBack +--- PASS: TestAttributeArrayToStringAndBack (0.00s) +PASS +ok go.opentelemetry.io/collector/translator/trace (cached) +=== RUN TestGetStatusCodeValFromAttr +=== RUN TestGetStatusCodeValFromAttr/ok-string +=== RUN TestGetStatusCodeValFromAttr/ok-int +=== RUN TestGetStatusCodeValFromAttr/wrong-type +=== RUN TestGetStatusCodeValFromAttr/invalid-string +=== RUN TestGetStatusCodeValFromAttr/invalid-int +--- PASS: TestGetStatusCodeValFromAttr (0.00s) + --- PASS: TestGetStatusCodeValFromAttr/ok-string (0.00s) + --- PASS: TestGetStatusCodeValFromAttr/ok-int (0.00s) + --- PASS: TestGetStatusCodeValFromAttr/wrong-type (0.00s) + --- PASS: TestGetStatusCodeValFromAttr/invalid-string (0.00s) + --- PASS: TestGetStatusCodeValFromAttr/invalid-int (0.00s) +=== RUN TestGetStatusCodeFromHTTPStatusAttr +=== RUN TestGetStatusCodeFromHTTPStatusAttr/string-unknown +=== RUN TestGetStatusCodeFromHTTPStatusAttr/string-ok +=== RUN TestGetStatusCodeFromHTTPStatusAttr/int-not-found +=== RUN TestGetStatusCodeFromHTTPStatusAttr/int-invalid-arg +=== RUN TestGetStatusCodeFromHTTPStatusAttr/int-internal +--- PASS: TestGetStatusCodeFromHTTPStatusAttr (0.00s) + --- PASS: TestGetStatusCodeFromHTTPStatusAttr/string-unknown (0.00s) + --- PASS: TestGetStatusCodeFromHTTPStatusAttr/string-ok (0.00s) + --- PASS: TestGetStatusCodeFromHTTPStatusAttr/int-not-found (0.00s) + --- PASS: TestGetStatusCodeFromHTTPStatusAttr/int-invalid-arg (0.00s) + --- PASS: TestGetStatusCodeFromHTTPStatusAttr/int-internal (0.00s) +=== RUN TestJTagsToInternalAttributes +--- PASS: TestJTagsToInternalAttributes (0.00s) +=== RUN TestProtoBatchToInternalTraces +=== RUN TestProtoBatchToInternalTraces/empty +=== RUN TestProtoBatchToInternalTraces/no-spans +=== RUN TestProtoBatchToInternalTraces/no-resource-attrs +=== RUN TestProtoBatchToInternalTraces/one-span-no-resources +=== RUN TestProtoBatchToInternalTraces/two-spans-child-parent +=== RUN TestProtoBatchToInternalTraces/two-spans-with-follower +--- PASS: TestProtoBatchToInternalTraces (0.00s) + --- PASS: TestProtoBatchToInternalTraces/empty (0.00s) + --- PASS: TestProtoBatchToInternalTraces/no-spans (0.00s) + --- PASS: TestProtoBatchToInternalTraces/no-resource-attrs (0.00s) + --- PASS: TestProtoBatchToInternalTraces/one-span-no-resources (0.00s) + --- PASS: TestProtoBatchToInternalTraces/two-spans-child-parent (0.00s) + --- PASS: TestProtoBatchToInternalTraces/two-spans-with-follower (0.00s) +=== RUN TestProtoBatchToInternalTracesWithTwoLibraries +--- PASS: TestProtoBatchToInternalTracesWithTwoLibraries (0.00s) +=== RUN TestSetInternalSpanStatus +=== RUN TestSetInternalSpanStatus/No_tags_set_->_OK_status +=== RUN TestSetInternalSpanStatus/error_tag_set_->_Error_status +=== RUN TestSetInternalSpanStatus/status.code_is_set_as_int +=== RUN TestSetInternalSpanStatus/status.code,_status.message_and_error_tags_are_set +=== RUN TestSetInternalSpanStatus/http.status_code_tag_is_set_as_string +=== RUN TestSetInternalSpanStatus/http.status_code,_http.status_message_and_error_tags_are_set +=== RUN TestSetInternalSpanStatus/status.code_has_precedence_over_http.status_code. +=== RUN TestSetInternalSpanStatus/Ignore_http.status_code_==_200_if_error_set_to_true. +--- PASS: TestSetInternalSpanStatus (0.00s) + --- PASS: TestSetInternalSpanStatus/No_tags_set_->_OK_status (0.00s) + --- PASS: TestSetInternalSpanStatus/error_tag_set_->_Error_status (0.00s) + --- PASS: TestSetInternalSpanStatus/status.code_is_set_as_int (0.00s) + --- PASS: TestSetInternalSpanStatus/status.code,_status.message_and_error_tags_are_set (0.00s) + --- PASS: TestSetInternalSpanStatus/http.status_code_tag_is_set_as_string (0.00s) + --- PASS: TestSetInternalSpanStatus/http.status_code,_http.status_message_and_error_tags_are_set (0.00s) + --- PASS: TestSetInternalSpanStatus/status.code_has_precedence_over_http.status_code. (0.00s) + --- PASS: TestSetInternalSpanStatus/Ignore_http.status_code_==_200_if_error_set_to_true. (0.00s) +=== RUN TestProtoBatchesToInternalTraces +--- PASS: TestProtoBatchesToInternalTraces (0.00s) +=== RUN TestJSpanKindToInternal +=== RUN TestJSpanKindToInternal/client +=== RUN TestJSpanKindToInternal/server +=== RUN TestJSpanKindToInternal/producer +=== RUN TestJSpanKindToInternal/consumer +=== RUN TestJSpanKindToInternal/internal +=== RUN TestJSpanKindToInternal/all-others +--- PASS: TestJSpanKindToInternal (0.00s) + --- PASS: TestJSpanKindToInternal/client (0.00s) + --- PASS: TestJSpanKindToInternal/server (0.00s) + --- PASS: TestJSpanKindToInternal/producer (0.00s) + --- PASS: TestJSpanKindToInternal/consumer (0.00s) + --- PASS: TestJSpanKindToInternal/internal (0.00s) + --- PASS: TestJSpanKindToInternal/all-others (0.00s) +=== RUN TestJThriftTagsToInternalAttributes +--- PASS: TestJThriftTagsToInternalAttributes (0.00s) +=== RUN TestThriftBatchToInternalTraces +=== RUN TestThriftBatchToInternalTraces/empty +=== RUN TestThriftBatchToInternalTraces/no-spans +=== RUN TestThriftBatchToInternalTraces/one-span-no-resources +=== RUN TestThriftBatchToInternalTraces/two-spans-child-parent +=== RUN TestThriftBatchToInternalTraces/two-spans-with-follower +--- PASS: TestThriftBatchToInternalTraces (0.00s) + --- PASS: TestThriftBatchToInternalTraces/empty (0.00s) + --- PASS: TestThriftBatchToInternalTraces/no-spans (0.00s) + --- PASS: TestThriftBatchToInternalTraces/one-span-no-resources (0.00s) + --- PASS: TestThriftBatchToInternalTraces/two-spans-child-parent (0.00s) + --- PASS: TestThriftBatchToInternalTraces/two-spans-with-follower (0.00s) +=== RUN TestGetTagFromStatusCode +=== RUN TestGetTagFromStatusCode/ok +=== RUN TestGetTagFromStatusCode/error +--- PASS: TestGetTagFromStatusCode (0.00s) + --- PASS: TestGetTagFromStatusCode/ok (0.00s) + --- PASS: TestGetTagFromStatusCode/error (0.00s) +=== RUN TestGetErrorTagFromStatusCode +--- PASS: TestGetErrorTagFromStatusCode (0.00s) +=== RUN TestGetTagFromStatusMsg +--- PASS: TestGetTagFromStatusMsg (0.00s) +=== RUN TestGetTagFromSpanKind +=== RUN TestGetTagFromSpanKind/unspecified +=== RUN TestGetTagFromSpanKind/client +=== RUN TestGetTagFromSpanKind/server +=== RUN TestGetTagFromSpanKind/producer +=== RUN TestGetTagFromSpanKind/consumer +=== RUN TestGetTagFromSpanKind/internal +--- PASS: TestGetTagFromSpanKind (0.00s) + --- PASS: TestGetTagFromSpanKind/unspecified (0.00s) + --- PASS: TestGetTagFromSpanKind/client (0.00s) + --- PASS: TestGetTagFromSpanKind/server (0.00s) + --- PASS: TestGetTagFromSpanKind/producer (0.00s) + --- PASS: TestGetTagFromSpanKind/consumer (0.00s) + --- PASS: TestGetTagFromSpanKind/internal (0.00s) +=== RUN TestAttributesToJaegerProtoTags +--- PASS: TestAttributesToJaegerProtoTags (0.00s) +=== RUN TestInternalTracesToJaegerProto +=== RUN TestInternalTracesToJaegerProto/empty +=== RUN TestInternalTracesToJaegerProto/no-spans +=== RUN TestInternalTracesToJaegerProto/no-resource-attrs +=== RUN TestInternalTracesToJaegerProto/one-span-no-resources +=== RUN TestInternalTracesToJaegerProto/library-info +=== RUN TestInternalTracesToJaegerProto/two-spans-child-parent +=== RUN TestInternalTracesToJaegerProto/two-spans-with-follower +--- PASS: TestInternalTracesToJaegerProto (0.00s) + --- PASS: TestInternalTracesToJaegerProto/empty (0.00s) + --- PASS: TestInternalTracesToJaegerProto/no-spans (0.00s) + --- PASS: TestInternalTracesToJaegerProto/no-resource-attrs (0.00s) + --- PASS: TestInternalTracesToJaegerProto/one-span-no-resources (0.00s) + --- PASS: TestInternalTracesToJaegerProto/library-info (0.00s) + --- PASS: TestInternalTracesToJaegerProto/two-spans-child-parent (0.00s) + --- PASS: TestInternalTracesToJaegerProto/two-spans-with-follower (0.00s) +=== RUN TestInternalTracesToJaegerProtoBatchesAndBack +--- PASS: TestInternalTracesToJaegerProtoBatchesAndBack (0.39s) +PASS +ok go.opentelemetry.io/collector/translator/trace/jaeger (cached) +=== RUN TestAttribToStatusCode +=== RUN TestAttribToStatusCode/nil +=== RUN TestAttribToStatusCode/valid-int-code +=== RUN TestAttribToStatusCode/invalid-int-code +=== RUN TestAttribToStatusCode/valid-string-code +=== RUN TestAttribToStatusCode/invalid-string-code +=== RUN TestAttribToStatusCode/bool-code +--- PASS: TestAttribToStatusCode (0.00s) + --- PASS: TestAttribToStatusCode/nil (0.00s) + --- PASS: TestAttribToStatusCode/valid-int-code (0.00s) + --- PASS: TestAttribToStatusCode/invalid-int-code (0.00s) + --- PASS: TestAttribToStatusCode/valid-string-code (0.00s) + --- PASS: TestAttribToStatusCode/invalid-string-code (0.00s) + --- PASS: TestAttribToStatusCode/bool-code (0.00s) +=== RUN TestStatusCodeMapperCases +=== RUN TestStatusCodeMapperCases/no_relevant_attributes +=== RUN TestStatusCodeMapperCases/http:_500 +=== RUN TestStatusCodeMapperCases/http:_message_only,_nil +=== RUN TestStatusCodeMapperCases/http:_500#01 +=== RUN TestStatusCodeMapperCases/http:_500,_with_error_attribute +=== RUN TestStatusCodeMapperCases/oc:_internal +=== RUN TestStatusCodeMapperCases/oc:_description_and_error +=== RUN TestStatusCodeMapperCases/oc:_error_only +=== RUN TestStatusCodeMapperCases/oc:_empty_error_tag +=== RUN TestStatusCodeMapperCases/oc:_description_only,_no_status +=== RUN TestStatusCodeMapperCases/oc:_priority_over_http +=== RUN TestStatusCodeMapperCases/error:_valid_oc_status_priority_over_http +=== RUN TestStatusCodeMapperCases/error:_invalid_oc_status_uses_http +=== RUN TestStatusCodeMapperCases/error_only:_string_description +=== RUN TestStatusCodeMapperCases/error_only:_true +=== RUN TestStatusCodeMapperCases/error_only:_false +=== RUN TestStatusCodeMapperCases/error_only:_1 +--- PASS: TestStatusCodeMapperCases (0.00s) + --- PASS: TestStatusCodeMapperCases/no_relevant_attributes (0.00s) + --- PASS: TestStatusCodeMapperCases/http:_500 (0.00s) + --- PASS: TestStatusCodeMapperCases/http:_message_only,_nil (0.00s) + --- PASS: TestStatusCodeMapperCases/http:_500#01 (0.00s) + --- PASS: TestStatusCodeMapperCases/http:_500,_with_error_attribute (0.00s) + --- PASS: TestStatusCodeMapperCases/oc:_internal (0.00s) + --- PASS: TestStatusCodeMapperCases/oc:_description_and_error (0.00s) + --- PASS: TestStatusCodeMapperCases/oc:_error_only (0.00s) + --- PASS: TestStatusCodeMapperCases/oc:_empty_error_tag (0.00s) + --- PASS: TestStatusCodeMapperCases/oc:_description_only,_no_status (0.00s) + --- PASS: TestStatusCodeMapperCases/oc:_priority_over_http (0.00s) + --- PASS: TestStatusCodeMapperCases/error:_valid_oc_status_priority_over_http (0.00s) + --- PASS: TestStatusCodeMapperCases/error:_invalid_oc_status_uses_http (0.00s) + --- PASS: TestStatusCodeMapperCases/error_only:_string_description (0.00s) + --- PASS: TestStatusCodeMapperCases/error_only:_true (0.00s) + --- PASS: TestStatusCodeMapperCases/error_only:_false (0.00s) + --- PASS: TestStatusCodeMapperCases/error_only:_1 (0.00s) +=== RUN TestInternalTracesToZipkinSpans +=== RUN TestInternalTracesToZipkinSpans/empty +=== RUN TestInternalTracesToZipkinSpans/oneEmpty +=== RUN TestInternalTracesToZipkinSpans/noLibs +=== RUN TestInternalTracesToZipkinSpans/oneEmptyLib +=== RUN TestInternalTracesToZipkinSpans/oneSpanNoResrouce +=== RUN TestInternalTracesToZipkinSpans/oneSpan +--- PASS: TestInternalTracesToZipkinSpans (0.00s) + --- PASS: TestInternalTracesToZipkinSpans/empty (0.00s) + --- PASS: TestInternalTracesToZipkinSpans/oneEmpty (0.00s) + --- PASS: TestInternalTracesToZipkinSpans/noLibs (0.00s) + --- PASS: TestInternalTracesToZipkinSpans/oneEmptyLib (0.00s) + --- PASS: TestInternalTracesToZipkinSpans/oneSpanNoResrouce (0.00s) + --- PASS: TestInternalTracesToZipkinSpans/oneSpan (0.00s) +=== RUN TestInternalTracesToZipkinSpansAndBack +--- PASS: TestInternalTracesToZipkinSpansAndBack (1.56s) +=== RUN TestZipkinThriftFallbackToLocalComponent +--- PASS: TestZipkinThriftFallbackToLocalComponent (0.00s) +=== RUN TestV1ThriftToOCProto +--- PASS: TestV1ThriftToOCProto (0.00s) +=== RUN TestZipkinThriftAnnotationsToOCStatus +--- PASS: TestZipkinThriftAnnotationsToOCStatus (0.00s) +=== RUN TestThriftHTTPToGRPCStatusCode +--- PASS: TestThriftHTTPToGRPCStatusCode (0.01s) +=== RUN Test_bytesInt16ToInt64 +=== RUN Test_bytesInt16ToInt64/too_short_byte_slice +=== RUN Test_bytesInt16ToInt64/exact_size_byte_slice +=== RUN Test_bytesInt16ToInt64/large_byte_slice +--- PASS: Test_bytesInt16ToInt64 (0.00s) + --- PASS: Test_bytesInt16ToInt64/too_short_byte_slice (0.00s) + --- PASS: Test_bytesInt16ToInt64/exact_size_byte_slice (0.00s) + --- PASS: Test_bytesInt16ToInt64/large_byte_slice (0.00s) +=== RUN Test_bytesInt32ToInt64 +=== RUN Test_bytesInt32ToInt64/too_short_byte_slice +=== RUN Test_bytesInt32ToInt64/exact_size_byte_slice +=== RUN Test_bytesInt32ToInt64/large_byte_slice +--- PASS: Test_bytesInt32ToInt64 (0.00s) + --- PASS: Test_bytesInt32ToInt64/too_short_byte_slice (0.00s) + --- PASS: Test_bytesInt32ToInt64/exact_size_byte_slice (0.00s) + --- PASS: Test_bytesInt32ToInt64/large_byte_slice (0.00s) +=== RUN Test_bytesInt64ToInt64 +=== RUN Test_bytesInt64ToInt64/too_short_byte_slice +=== RUN Test_bytesInt64ToInt64/exact_size_byte_slice +=== RUN Test_bytesInt64ToInt64/large_byte_slice +--- PASS: Test_bytesInt64ToInt64 (0.00s) + --- PASS: Test_bytesInt64ToInt64/too_short_byte_slice (0.00s) + --- PASS: Test_bytesInt64ToInt64/exact_size_byte_slice (0.00s) + --- PASS: Test_bytesInt64ToInt64/large_byte_slice (0.00s) +=== RUN Test_bytesFloat64ToFloat64 +=== RUN Test_bytesFloat64ToFloat64/too_short_byte_slice +=== RUN Test_bytesFloat64ToFloat64/exact_size_byte_slice +=== RUN Test_bytesFloat64ToFloat64/large_byte_slice +--- PASS: Test_bytesFloat64ToFloat64 (0.00s) + --- PASS: Test_bytesFloat64ToFloat64/too_short_byte_slice (0.00s) + --- PASS: Test_bytesFloat64ToFloat64/exact_size_byte_slice (0.00s) + --- PASS: Test_bytesFloat64ToFloat64/large_byte_slice (0.00s) +=== RUN TestV1ThriftToTraces +--- PASS: TestV1ThriftToTraces (0.00s) +=== RUN Test_hexIDToOCID +=== RUN Test_hexIDToOCID/empty_hex_string +=== RUN Test_hexIDToOCID/wrong_length +=== RUN Test_hexIDToOCID/parse_error +=== RUN Test_hexIDToOCID/all_zero +=== RUN Test_hexIDToOCID/happy_path +--- PASS: Test_hexIDToOCID (0.00s) + --- PASS: Test_hexIDToOCID/empty_hex_string (0.00s) + --- PASS: Test_hexIDToOCID/wrong_length (0.00s) + --- PASS: Test_hexIDToOCID/parse_error (0.00s) + --- PASS: Test_hexIDToOCID/all_zero (0.00s) + --- PASS: Test_hexIDToOCID/happy_path (0.00s) +=== RUN Test_hexTraceIDToOCTraceID +=== RUN Test_hexTraceIDToOCTraceID/empty_hex_string +=== RUN Test_hexTraceIDToOCTraceID/wrong_length +=== RUN Test_hexTraceIDToOCTraceID/parse_error +=== RUN Test_hexTraceIDToOCTraceID/all_zero +=== RUN Test_hexTraceIDToOCTraceID/happy_path +--- PASS: Test_hexTraceIDToOCTraceID (0.00s) + --- PASS: Test_hexTraceIDToOCTraceID/empty_hex_string (0.00s) + --- PASS: Test_hexTraceIDToOCTraceID/wrong_length (0.00s) + --- PASS: Test_hexTraceIDToOCTraceID/parse_error (0.00s) + --- PASS: Test_hexTraceIDToOCTraceID/all_zero (0.00s) + --- PASS: Test_hexTraceIDToOCTraceID/happy_path (0.00s) +=== RUN TestZipkinJSONFallbackToLocalComponent +--- PASS: TestZipkinJSONFallbackToLocalComponent (0.00s) +=== RUN TestSingleJSONV1BatchToOCProto +--- PASS: TestSingleJSONV1BatchToOCProto (0.00s) +=== RUN TestMultipleJSONV1BatchesToOCProto +--- PASS: TestMultipleJSONV1BatchesToOCProto (0.03s) +=== RUN TestZipkinAnnotationsToOCStatus +=== RUN TestZipkinAnnotationsToOCStatus/only_status.code_tag +=== RUN TestZipkinAnnotationsToOCStatus/only_status.message_tag +=== RUN TestZipkinAnnotationsToOCStatus/both_status.code_and_status.message +=== RUN TestZipkinAnnotationsToOCStatus/http_status.code +=== RUN TestZipkinAnnotationsToOCStatus/http_and_oc +=== RUN TestZipkinAnnotationsToOCStatus/http_and_only_oc_code +=== RUN TestZipkinAnnotationsToOCStatus/http_and_only_oc_message +=== RUN TestZipkinAnnotationsToOCStatus/census_tags +=== RUN TestZipkinAnnotationsToOCStatus/census_tags_priority_over_others +--- PASS: TestZipkinAnnotationsToOCStatus (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/only_status.code_tag (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/only_status.message_tag (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/both_status.code_and_status.message (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/http_status.code (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/http_and_oc (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/http_and_only_oc_code (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/http_and_only_oc_message (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/census_tags (0.00s) + --- PASS: TestZipkinAnnotationsToOCStatus/census_tags_priority_over_others (0.00s) +=== RUN TestSpanWithoutTimestampGetsTag +--- PASS: TestSpanWithoutTimestampGetsTag (0.00s) +=== RUN TestJSONHTTPToGRPCStatusCode +--- PASS: TestJSONHTTPToGRPCStatusCode (0.04s) +=== RUN TestSpanKindTranslation +=== RUN TestSpanKindTranslation/cr +=== RUN TestSpanKindTranslation/sr +=== RUN TestSpanKindTranslation/ms +=== RUN TestSpanKindTranslation/mr +--- PASS: TestSpanKindTranslation (0.00s) + --- PASS: TestSpanKindTranslation/cr (0.00s) + --- PASS: TestSpanKindTranslation/sr (0.00s) + --- PASS: TestSpanKindTranslation/ms (0.00s) + --- PASS: TestSpanKindTranslation/mr (0.00s) +=== RUN TestZipkinV1ToOCSpanInvalidTraceId +--- PASS: TestZipkinV1ToOCSpanInvalidTraceId (0.00s) +=== RUN TestZipkinV1ToOCSpanInvalidSpanId +--- PASS: TestZipkinV1ToOCSpanInvalidSpanId (0.00s) +=== RUN TestSingleJSONV1BatchToTraces +--- PASS: TestSingleJSONV1BatchToTraces (0.00s) +=== RUN TestErrorSpanToTraces +--- PASS: TestErrorSpanToTraces (0.00s) +=== RUN TestZipkinSpansToInternalTraces +=== RUN TestZipkinSpansToInternalTraces/empty +=== RUN TestZipkinSpansToInternalTraces/nilSpan +=== RUN TestZipkinSpansToInternalTraces/minimalSpan +=== RUN TestZipkinSpansToInternalTraces/onlyLocalEndpointSpan +=== RUN TestZipkinSpansToInternalTraces/errorTag +--- PASS: TestZipkinSpansToInternalTraces (0.00s) + --- PASS: TestZipkinSpansToInternalTraces/empty (0.00s) + --- PASS: TestZipkinSpansToInternalTraces/nilSpan (0.00s) + --- PASS: TestZipkinSpansToInternalTraces/minimalSpan (0.00s) + --- PASS: TestZipkinSpansToInternalTraces/onlyLocalEndpointSpan (0.00s) + --- PASS: TestZipkinSpansToInternalTraces/errorTag (0.00s) +PASS +ok go.opentelemetry.io/collector/translator/trace/zipkin (cached)