mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37:36 +03:00
Add unit tests for sources.go
Tests cover most of the cache and download related code paths and specify the expected result of various starting states and external failure modes. Where the current code's behaviour doesn't match a test's expectations, the test is disabled and annotated with a TODO until it can be fixed. Added dependency on `github.com/powerman/check` and ran `go mod vendor`.
This commit is contained in:
parent
503bfb877b
commit
af0629856c
61 changed files with 7200 additions and 0 deletions
24
vendor/github.com/powerman/check/flags.go
generated
vendored
Normal file
24
vendor/github.com/powerman/check/flags.go
generated
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
package check
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"sync"
|
||||
)
|
||||
|
||||
type peekFlags struct {
|
||||
sync.Once
|
||||
conveyJSON bool
|
||||
}
|
||||
|
||||
var flags peekFlags
|
||||
|
||||
func (p *peekFlags) detect() *peekFlags {
|
||||
flags.Do(func() {
|
||||
flag.Visit(func(f *flag.Flag) {
|
||||
if f.Name == "convey-json" {
|
||||
p.conveyJSON = f.Value.String() == "true"
|
||||
}
|
||||
})
|
||||
})
|
||||
return p
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue