blob: 6b90ae734c2f1fa9b4515e3b583666f1aace239a [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 resolver
import (
"testing"
// "github.com/go-chassis/go-chassis/core/archaius"
// cConfig "github.com/go-chassis/go-chassis/core/config"
// "github.com/go-chassis/go-chassis/core/lager"
// "github.com/go-chassis/go-chassis/pkg/util/fileutil"
// "github.com/apache/servicecomb-mesher/cmd"
// "github.com/apache/servicecomb-mesher/config"
"net/http"
// "os"
// "path/filepath"
"github.com/go-chassis/go-chassis/core/lager"
"github.com/stretchr/testify/assert"
)
func init() {
lager.Init(&lager.Options{LoggerLevel: "DEBUG"})
}
func TestResolve(t *testing.T) {
d := &DefaultDestinationResolver{}
header := http.Header{}
header.Add("cookie", "user=jason")
header.Add("X-Age", "18")
destinationString := "Server"
destinationString, p, err := d.Resolve("127.0.1.1", "abc", "", map[string]string{})
assert.Error(t, err)
assert.Equal(t, "", p)
destinationString, p, err = d.Resolve("abc", "", "", map[string]string{})
assert.Error(t, err)
assert.Equal(t, "", p)
destinationString, p, err = d.Resolve("abc", "", "http://127.0.0.1:80/test", map[string]string{})
assert.NoError(t, err)
assert.Equal(t, "80", p)
destinationString, p, err = d.Resolve("abc", "", "Server:80/test", map[string]string{})
assert.Error(t, err)
destinationString, p, err = d.Resolve("abc", "", "127.0.0.1:80", map[string]string{})
assert.Error(t, err)
assert.Equal(t, "", p)
t.Log(destinationString)
}
func TestGetDestinationResolver(t *testing.T) {
dr := GetDestinationResolver("http")
assert.NotNil(t, dr)
dr = GetDestinationResolver("http_nil")
assert.Nil(t, dr)
SetDefaultDestinationResolver("http_nil", &DefaultDestinationResolver{})
dr = GetDestinationResolver("http_nil")
assert.NotNil(t, dr)
}
func BenchmarkDefaultDestinationResolver_Resolve(b *testing.B) {
d := &DefaultDestinationResolver{}
for i := 0; i < b.N; i++ {
d.Resolve("abc", "", "http://127.0.0.1:80/test", map[string]string{})
}
}