forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfqdn_test.go
59 lines (49 loc) · 1.7 KB
/
fqdn_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
// Copyright 2019 Authors of Cilium
//
// 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.
// +build !privileged_tests
package main
import (
"fmt"
"net"
"time"
"github.com/cilium/cilium/pkg/endpoint"
"github.com/cilium/cilium/pkg/fqdn"
. "gopkg.in/check.v1"
)
// makeIPs generates count sequential IPv4 IPs
func makeIPs(count uint32) []net.IP {
ips := make([]net.IP, 0, count)
for i := uint32(0); i < count; i++ {
ips = append(ips, net.IPv4(byte(i>>24), byte(i>>16), byte(i>>8), byte(i>>0)))
}
return ips
}
// BenchmarkFqdnCache tests how slow a full dump of DNSHistory from a number of
// endpoints is. Each endpoints has 1000 DNS lookups, each with 10 IPs. The
// dump iterates over all endpoints, lookups, and IPs.
func (ds *DaemonSuite) BenchmarkFqdnCache(c *C) {
c.StopTimer()
var endpoints []*endpoint.Endpoint
for i := 0; i < c.N; i++ {
lookupTime := time.Now()
ep := &endpoint.Endpoint{} // only works because we only touch .DNSHistory
ep.DNSHistory = fqdn.NewDNSCache(0)
for i := 0; i < 1000; i++ {
ep.DNSHistory.Update(lookupTime, fmt.Sprintf("domain-%d.com.", i), makeIPs(10), 1000)
}
endpoints = append(endpoints, ep)
}
c.StartTimer()
extractDNSLookups(endpoints, "0.0.0.0/0", "*")
}