blob: b6aaf4d1ed6bc8ea870a09e62e74a4d44d5d56c3 [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 plugin
import (
"net/http"
"testing"
"github.com/apache/servicecomb-service-center/pkg/plugin"
"github.com/apache/servicecomb-service-center/server/config"
"github.com/apache/servicecomb-service-center/server/plugin/auth"
)
func init() {
config.Init()
}
type mockAuthPlugin struct {
Times int
}
func (*mockAuthPlugin) Identify(r *http.Request) error {
return nil
}
func TestPluginManager_New(t *testing.T) {
pm := &plugin.Manager{}
pm.Initialize()
p := pm.Get(auth.AUTH, "buildin")
if p != nil {
t.Fatalf("TestPluginManager_New failed")
}
times := 0
fn := func() plugin.Instance {
times++
return &mockAuthPlugin{times}
}
pm.Register(plugin.Plugin{auth.AUTH, "buildin", fn})
i := pm.Instance(auth.AUTH)
if i != pm.Instance(auth.AUTH) {
t.Fatalf("TestPluginManager_New failed")
}
pm.ReloadAll()
n := pm.Instance(auth.AUTH)
if i == n {
t.Fatalf("TestPluginManager_New failed")
}
defer func() {
if err := recover(); err != nil {
t.Fatalf("TestPluginManager_New failed")
}
}()
plugin.RegisterPlugin(plugin.Plugin{Kind: "999", Name: "999", New: nil})
plugin.DynamicPluginFunc("999", "999")
plugin.LoadPlugins()
}