blob: da3a03a365ab4b39964682155ec3e83e1a348ccd [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 interceptor
import (
"testing"
"github.com/apache/skywalking-cli/graphql/schema"
)
func Test_parseScope(t *testing.T) {
empty := ""
nonEmpty := "test"
tests := []struct {
name string
args *schema.Entity
want schema.Scope
}{
{
name: "all of names are empty",
args: &schema.Entity{
ServiceName: &empty,
ServiceInstanceName: &empty,
EndpointName: &empty,
DestServiceName: &empty,
DestServiceInstanceName: &empty,
DestEndpointName: &empty,
},
want: schema.ScopeAll,
},
{
name: "all of names are not empty",
args: &schema.Entity{
ServiceName: &nonEmpty,
ServiceInstanceName: &nonEmpty,
EndpointName: &nonEmpty,
DestServiceName: &nonEmpty,
DestServiceInstanceName: &nonEmpty,
DestEndpointName: &nonEmpty,
},
want: schema.ScopeEndpointRelation,
},
{
name: "only serviceName is not empty",
args: &schema.Entity{
ServiceName: &nonEmpty,
ServiceInstanceName: &empty,
EndpointName: &empty,
DestServiceName: &empty,
DestServiceInstanceName: &empty,
DestEndpointName: &empty,
},
want: schema.ScopeService,
},
{
name: "instanceName is not empty",
args: &schema.Entity{
ServiceName: &nonEmpty,
ServiceInstanceName: &nonEmpty,
EndpointName: &empty,
DestServiceName: &empty,
DestServiceInstanceName: &empty,
DestEndpointName: &empty,
},
want: schema.ScopeServiceInstance,
},
{
name: "endpointName is not empty",
args: &schema.Entity{
ServiceName: &nonEmpty,
ServiceInstanceName: &empty,
EndpointName: &nonEmpty,
DestServiceName: &empty,
DestServiceInstanceName: &empty,
DestEndpointName: &empty,
},
want: schema.ScopeEndpoint,
},
{
name: "destService is not empty",
args: &schema.Entity{
ServiceName: &nonEmpty,
ServiceInstanceName: &empty,
EndpointName: &empty,
DestServiceName: &nonEmpty,
DestServiceInstanceName: &empty,
DestEndpointName: &empty,
},
want: schema.ScopeServiceRelation,
},
{
name: "destInstance is not empty",
args: &schema.Entity{
ServiceName: &nonEmpty,
ServiceInstanceName: &nonEmpty,
EndpointName: &empty,
DestServiceName: &nonEmpty,
DestServiceInstanceName: &nonEmpty,
DestEndpointName: &empty,
},
want: schema.ScopeServiceInstanceRelation,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := parseScope(tt.args); got != tt.want {
t.Errorf("parseScope() = %v, want %v", got, tt.want)
}
})
}
}