mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37:36 +03:00
Move most of the prefetching code into sources.go
The proxy shouldn't need to know how prefetching works, just that it needs to do it occasionally. Now the prefetching algorithm can be refactored without having to touch the proxy code.
This commit is contained in:
parent
78f2dead79
commit
7e73a26a2f
4 changed files with 28 additions and 26 deletions
|
@ -321,14 +321,14 @@ func setupSourceTestCase(t *testing.T, d *SourceTestData, i int,
|
|||
func TestNewSource(t *testing.T) {
|
||||
teardown, d := setupSourceTest(t)
|
||||
defer teardown()
|
||||
doTest := func(t *testing.T, e *SourceTestExpect, got Source, err error) {
|
||||
doTest := func(t *testing.T, e *SourceTestExpect, got *Source, err error) {
|
||||
c := check.T(t)
|
||||
if len(e.err) > 0 {
|
||||
c.Match(err, e.err, "Unexpected error")
|
||||
} else {
|
||||
c.Nil(err, "Unexpected error")
|
||||
}
|
||||
c.DeepEqual(got, *e.Source, "Unexpected return")
|
||||
c.DeepEqual(got, e.Source, "Unexpected return")
|
||||
checkTestServer(c, d)
|
||||
checkSourceCache(c, e.cachePath, e.cache)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue