mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17: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
42
vendor/github.com/powerman/check/goconvey.go
generated
vendored
Normal file
42
vendor/github.com/powerman/check/goconvey.go
generated
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
package check
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/smartystreets/goconvey/convey/reporting"
|
||||
)
|
||||
|
||||
var errNoGoConvey = errors.New("goconvey not detected")
|
||||
|
||||
func reportToGoConvey(actual, expected, failure string) error {
|
||||
if !flags.detect().conveyJSON {
|
||||
return errNoGoConvey
|
||||
}
|
||||
|
||||
testFile, testLine, funcLine := callerTestFileLines()
|
||||
report := reporting.ScopeResult{
|
||||
File: testFile,
|
||||
Line: funcLine,
|
||||
Assertions: []*reporting.AssertionResult{{
|
||||
File: testFile,
|
||||
Line: testLine,
|
||||
Expected: expected,
|
||||
Actual: actual,
|
||||
Failure: failure,
|
||||
}},
|
||||
}
|
||||
|
||||
var buf bytes.Buffer
|
||||
fmt.Fprintln(&buf, reporting.OpenJson)
|
||||
if err := json.NewEncoder(&buf).Encode(report); err != nil {
|
||||
return err
|
||||
}
|
||||
fmt.Fprintln(&buf, ",")
|
||||
fmt.Fprintln(&buf, reporting.CloseJson)
|
||||
_, err := buf.WriteTo(os.Stdout)
|
||||
return err
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue