7 Star 22 Fork 0

Gitee 极速下载 / caddy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/mholt/caddy
克隆/下载
modules_test.go 2.45 KB
一键复制 编辑 原始数据 按行查看 历史
Matthew Holt 提交于 2019-12-31 22:51 . Couple of minor fixes, update readme
// Copyright 2015 Matthew Holt and The Caddy Authors
//
// Licensed 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 caddy
import (
"reflect"
"testing"
)
func TestGetModules(t *testing.T) {
modulesMu.Lock()
modules = map[string]ModuleInfo{
"a": {ID: "a"},
"a.b": {ID: "a.b"},
"a.b.c": {ID: "a.b.c"},
"a.b.cd": {ID: "a.b.cd"},
"a.c": {ID: "a.c"},
"a.d": {ID: "a.d"},
"b": {ID: "b"},
"b.a": {ID: "b.a"},
"b.b": {ID: "b.b"},
"b.a.c": {ID: "b.a.c"},
"c": {ID: "c"},
}
modulesMu.Unlock()
for i, tc := range []struct {
input string
expect []ModuleInfo
}{
{
input: "",
expect: []ModuleInfo{
{ID: "a"},
{ID: "b"},
{ID: "c"},
},
},
{
input: "a",
expect: []ModuleInfo{
{ID: "a.b"},
{ID: "a.c"},
{ID: "a.d"},
},
},
{
input: "a.b",
expect: []ModuleInfo{
{ID: "a.b.c"},
{ID: "a.b.cd"},
},
},
{
input: "a.b.c",
},
{
input: "b",
expect: []ModuleInfo{
{ID: "b.a"},
{ID: "b.b"},
},
},
{
input: "asdf",
},
} {
actual := GetModules(tc.input)
if !reflect.DeepEqual(actual, tc.expect) {
t.Errorf("Test %d: Expected %v but got %v", i, tc.expect, actual)
}
}
}
func TestModuleID(t *testing.T) {
for i, tc := range []struct {
input ModuleID
expectNamespace string
expectName string
}{
{
input: "foo",
expectNamespace: "",
expectName: "foo",
},
{
input: "foo.bar",
expectNamespace: "foo",
expectName: "bar",
},
{
input: "a.b.c",
expectNamespace: "a.b",
expectName: "c",
},
} {
actualNamespace := tc.input.Namespace()
if actualNamespace != tc.expectNamespace {
t.Errorf("Test %d: Expected namespace '%s' but got '%s'", i, tc.expectNamespace, actualNamespace)
}
actualName := tc.input.Name()
if actualName != tc.expectName {
t.Errorf("Test %d: Expected name '%s' but got '%s'", i, tc.expectName, actualName)
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/caddy.git
git@gitee.com:mirrors/caddy.git
mirrors
caddy
caddy
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891