blob: 5efe211607d2bbbea2adead17ecd94ce24ca21a5 [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 servicecenter
import (
"context"
"errors"
"testing"
"github.com/apache/servicecomb-service-center/server/core/proto"
"github.com/apache/servicecomb-service-center/syncer/config"
"github.com/apache/servicecomb-service-center/syncer/pkg/mock/mockplugin"
"github.com/apache/servicecomb-service-center/syncer/pkg/mock/mocksotrage"
"github.com/apache/servicecomb-service-center/syncer/plugins"
pb "github.com/apache/servicecomb-service-center/syncer/proto"
)
func TestNewServicecenter(t *testing.T) {
defer func() {
err := recover()
if err != nil {
t.Log(err)
}
}()
_, err := NewServicecenter([]string{"127.0.0.1:30100"})
if err != nil {
t.Log(err)
}
_, err = NewServicecenter([]string{"127.0.0.1:30100"})
if err != nil {
t.Fatal(err)
return
}
}
func TestOnEvent(t *testing.T) {
conf := config.DefaultConfig()
conf.ServicecenterPlugin = mockplugin.PluginName
initPlugin(conf)
dc, err := NewServicecenter([]string{"http://127.0.0.1:30100"})
if err != nil {
t.Fatal(err)
return
}
dc.SetStorage(mocksotrage.New())
mockplugin.SetGetAll(func(ctx context.Context) (data *pb.SyncData, e error) {
return nil, errors.New("test error")
})
dc.FlushData()
data := dc.Discovery()
if err != nil {
t.Log(err)
}
mockplugin.SetGetAll(nil)
dc.FlushData()
data = dc.Discovery()
if err != nil {
t.Fatal(err)
return
}
nodeName := "test_node"
dc.Registry(nodeName, data)
mockplugin.SetGetAll(mockplugin.NewGetAll)
dc.FlushData()
newData := dc.Discovery()
if err != nil {
t.Fatal(err)
return
}
dc.Registry(nodeName, newData)
mockplugin.SetRegisterInstance(func(ctx context.Context, domainProject, serviceId string, instance *proto.MicroServiceInstance) (s string, e error) {
return "", errors.New("test error")
})
dc.Registry(nodeName, data)
mockplugin.SetRegisterInstance(nil)
dc.Registry(nodeName, data)
dc.Registry(nodeName, data)
mockplugin.SetHeartbeat(func(ctx context.Context, domainProject, serviceId, instanceId string) error {
return errors.New("test error")
})
dc.Registry(nodeName, data)
}
func initPlugin(conf *config.Config) {
plugins.SetPluginConfig(plugins.PluginServicecenter.String(), conf.ServicecenterPlugin)
}