blob: e0f917d608fea053534a3289e68839999f0d021f [file] [log] [blame]
// Licensed to Apache Software Foundation (ASF) under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Apache Software Foundation (ASF) licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package otlpmetricsv1
import (
"context"
"testing"
metrics "skywalking.apache.org/repo/goapi/proto/opentelemetry/proto/collector/metrics/v1"
common "skywalking.apache.org/repo/goapi/proto/opentelemetry/proto/common/v1"
v1 "skywalking.apache.org/repo/goapi/proto/opentelemetry/proto/metrics/v1"
resource "skywalking.apache.org/repo/goapi/proto/opentelemetry/proto/resource/v1"
sniffer "skywalking.apache.org/repo/goapi/satellite/data/v1"
"google.golang.org/grpc"
_ "github.com/apache/skywalking-satellite/internal/satellite/test"
receiver_grpc "github.com/apache/skywalking-satellite/plugins/receiver/grpc"
)
func TestReceiver_RegisterHandler(t *testing.T) {
recConf := make(map[string]string, 2)
receiver_grpc.TestReceiverWithConfig(new(Receiver), recConf, func(t *testing.T, sequence int, conn *grpc.ClientConn, ctx context.Context) string {
client := metrics.NewMetricsServiceClient(conn)
data := initData()
_, err := client.Export(ctx, data)
if err != nil {
t.Fatalf("cannot open the stream send mode: %v", err)
}
return data.String()
}, func(data *sniffer.SniffData) string {
return data.GetOpenTelementryMetricsV1Request().String()
}, t)
}
func initData() *metrics.ExportMetricsServiceRequest {
return &metrics.ExportMetricsServiceRequest{
ResourceMetrics: []*v1.ResourceMetrics{
{
Resource: &resource.Resource{
Attributes: []*common.KeyValue{
{
Key: "test",
Value: &common.AnyValue{
Value: &common.AnyValue_StringValue{
StringValue: "1",
},
},
},
},
},
},
},
}
}