blob: 7f267070beca64f09afb12f9a28e811af2054d47 [file] [log] [blame]
/*
* Licensed to the 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.
* The 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 istiov2
import (
"os"
"os/user"
"testing"
istioinfra "github.com/apache/servicecomb-mesher/proxy/pkg/infras/istio"
"github.com/go-chassis/go-chassis/core/lager"
"github.com/go-chassis/go-chassis/core/registry"
"github.com/go-chassis/go-chassis/pkg/util/iputil"
)
const (
TEST_POD_NAME = "testpod"
NAMESPACE_DEFAULT = "default"
)
var (
KubeConfig string
ValidPilotAddr string
LocalIPAddress string
nodeInfo *istioinfra.NodeInfo
testXdsClient *istioinfra.XdsClient
testCacheManager *CacheManager
err error
)
func init() {
lager.Init(&lager.Options{LoggerLevel: "DEBUG"})
}
func TestNewCacheManager2(t *testing.T) {
// Get kube config path and local ip
if KUBE_CONFIG := os.Getenv("KUBE_CONFIG"); KUBE_CONFIG != "" {
KubeConfig = KUBE_CONFIG
} else {
usr, err := user.Current()
if err != nil {
panic("Failed to get current user info: " + err.Error())
} else {
KubeConfig = usr.HomeDir + "/" + ".kube/config"
}
}
ValidPilotAddr = "localhost:15010"
if PILOT_ADDR := os.Getenv("PILOT_ADDR"); PILOT_ADDR != "" {
ValidPilotAddr = PILOT_ADDR
}
if INSTANCE_IP := os.Getenv("INSTANCE_IP"); INSTANCE_IP != "" {
LocalIPAddress = INSTANCE_IP
} else if LocalIPAddress = iputil.GetLocalIP(); LocalIPAddress == "" {
panic("Failed to get the local ip address, please check the network environment")
}
nodeInfo = &istioinfra.NodeInfo{
PodName: TEST_POD_NAME,
Namespace: NAMESPACE_DEFAULT,
InstanceIP: LocalIPAddress,
}
testXdsClient, err = istioinfra.NewXdsClient(ValidPilotAddr, nil, nodeInfo, KubeConfig)
if err != nil {
panic("Failed to prepare test, xds client creation failed: " + err.Error())
}
}
func TestNewCacheManager(t *testing.T) {
testCacheManager, err = NewCacheManager(testXdsClient)
if err != nil {
t.Errorf("Failed to create CacheManager: %s", err.Error())
}
}
// func TestAutoSync(t *testing.T) {
// testCacheManager.AutoSync()
// }
func TestPullMicroserviceInstance(t *testing.T) {
err = testCacheManager.pullMicroserviceInstance()
if err != nil {
t.Errorf("Failed to pull microservice instances: %s", err.Error())
}
}
// func TestMakeIPIndex(t *testing.T) {
// err := testCacheManager.MakeIPIndex()
// if err != nil {
// t.Errorf("Failed to make ip index: %s", err.Error())
// }
// }
func TestEndpointCache(t *testing.T) {
ec := EndpointCache{
cache: map[string]EndpointSubset{},
}
subset := EndpointSubset{
subsetName: "foo",
tags: map[string]string{},
instances: []*registry.MicroServiceInstance{},
}
defer func() {
if r := recover(); r != nil {
t.Error("should not panic")
}
}()
waitChannel := make(chan int)
for i := 0; i < 1000; i++ {
go func() {
ec.Set("foo", subset)
waitChannel <- 0
}()
}
for i := 0; i < 1000; i++ {
<-waitChannel
}
}