-
Notifications
You must be signed in to change notification settings - Fork 0
/
ratelimit_test.go
52 lines (43 loc) · 1.39 KB
/
ratelimit_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
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package ratelimit_test
import (
"net/http"
"testing"
"time"
"github.com/philippta/flyscrape"
"github.com/philippta/flyscrape/modules/followlinks"
"github.com/philippta/flyscrape/modules/hook"
"github.com/philippta/flyscrape/modules/ratelimit"
"github.com/philippta/flyscrape/modules/starturl"
"github.com/stretchr/testify/require"
)
func TestRatelimit(t *testing.T) {
var times []time.Time
mods := []flyscrape.Module{
&starturl.Module{URL: "http://www.example.com"},
&followlinks.Module{},
hook.Module{
AdaptTransportFn: func(rt http.RoundTripper) http.RoundTripper {
return flyscrape.MockTransport(200, `<a href="foo">foo</a>`)
},
ReceiveResponseFn: func(r *flyscrape.Response) {
times = append(times, time.Now())
},
},
&ratelimit.Module{
Rate: 100,
},
}
start := time.Now()
scraper := flyscrape.NewScraper()
scraper.Modules = mods
scraper.Run()
first := times[0].Add(-10 * time.Millisecond)
second := times[1].Add(-20 * time.Millisecond)
require.Less(t, first.Sub(start), 2*time.Millisecond)
require.Less(t, second.Sub(start), 2*time.Millisecond)
require.Less(t, start.Sub(first), 2*time.Millisecond)
require.Less(t, start.Sub(second), 2*time.Millisecond)
}