-
Notifications
You must be signed in to change notification settings - Fork 7
/
bench_test.go
75 lines (61 loc) · 1.71 KB
/
bench_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// SPDX-FileCopyrightText: 2014-2024 caixw
//
// SPDX-License-Identifier: MIT
package mux
import (
"testing"
"github.com/issue9/assert/v4"
"github.com/issue9/assert/v4/rest"
"github.com/issue9/mux/v9/header"
"github.com/issue9/mux/v9/types"
)
func BenchmarkHosts_Match(b *testing.B) {
a := assert.New(b, false)
h := NewHosts(true, "caixw.io", "caixw.oi", "*.example.com")
a.NotNil(h)
r := rest.Get(a, "https://caixw.io/test").Request()
ps := types.NewContext()
for range b.N {
a.True(h.Match(r, ps))
}
}
func BenchmarkHeaderVersionWithoutKey_Match(b *testing.B) {
a := assert.New(b, false)
h := NewHeaderVersion("", "version", nil, "3.0", "4.0", "1.0", "2.0")
r := rest.Get(a, "https://caixw.io/test").
Header(header.Accept, "application/json; version=1.0").
Request()
ps := types.NewContext()
for range b.N {
a.True(h.Match(r, ps))
}
}
func BenchmarkHeaderVersionWithKey_Match(b *testing.B) {
a := assert.New(b, false)
h := NewHeaderVersion("version", "", nil, "3.0", "4.0", "1.0", "2.0")
r := rest.Get(a, "https://caixw.io/test").
Header(header.Accept, "application/json; version=1.0").
Request()
ps := types.NewContext()
for range b.N {
a.True(h.Match(r, ps))
}
}
func BenchmarkPathVersionWithoutKey_Match(b *testing.B) {
a := assert.New(b, false)
h := NewPathVersion("", "v4", "v3", "v1/", "/v2")
ps := types.NewContext()
for range b.N {
r := rest.Get(a, "https://caixw.io/v1/test").Request()
a.True(h.Match(r, ps))
}
}
func BenchmarkPathVersionWithKey_Match(b *testing.B) {
a := assert.New(b, false)
h := NewPathVersion("version", "v4", "v3", "v1/", "/v2")
ps := types.NewContext()
for range b.N {
r := rest.Get(a, "https://caixw.io/v1/test").Request()
a.True(h.Match(r, ps))
}
}