1 Star 0 Fork 0

ww156/acme

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
http_test.go 1.69 KB
一键复制 编辑 原始数据 按行查看 历史
ww156 提交于 2021-11-03 11:03 . init
// Copyright 2020 Matthew Holt
//
// 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 acme
import (
"net/http"
"reflect"
"testing"
)
func TestExtractLinks(t *testing.T) {
// Original test code by Isaac (https://github.com/eggsampler/acme)
linkTests := []struct {
Name string
LinkHeaders []string
WantedLink string
ExpectedURLs []string
}{
{
Name: "no links",
WantedLink: "fail",
ExpectedURLs: nil,
},
{Name: "joined links",
LinkHeaders: []string{`<https://url/path>; rel="next", <http://url/path?query>; rel="up"`},
WantedLink: "up",
ExpectedURLs: []string{"http://url/path?query"},
},
{
Name: "separate links",
LinkHeaders: []string{`<https://url/path>; rel="next"`, `<http://url/path?query>; rel="up"`},
WantedLink: "up",
ExpectedURLs: []string{"http://url/path?query"},
},
}
for _, currentTest := range linkTests {
linkURLs := extractLinks(&http.Response{Header: http.Header{"Link": currentTest.LinkHeaders}}, currentTest.WantedLink)
if !reflect.DeepEqual(linkURLs, currentTest.ExpectedURLs) {
t.Fatalf("%s: links not equal, expected: %s, got: %s", currentTest.Name, currentTest.ExpectedURLs, linkURLs)
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/childewang/acme.git
git@gitee.com:childewang/acme.git
childewang
acme
acme
master

搜索帮助