acme-dns/vendor/github.com/yudai/gojsondiff/tests/helper.go

35 lines
764 B
Go
Raw Normal View History

2018-01-22 16:19:33 +07:00
package tests
import (
. "github.com/onsi/ginkgo"
"encoding/json"
"io/ioutil"
)
func LoadFixture(file string) map[string]interface{} {
content, err := ioutil.ReadFile(file)
if err != nil {
Fail("Fixture file '" + file + "' not found.")
}
var result map[string]interface{}
err = json.Unmarshal(content, &result)
if err != nil {
Fail("Unmarshaling JSON of '" + file + "' failed: " + err.Error())
}
return result
}
func LoadFixtureAsArray(file string) []interface{} {
content, err := ioutil.ReadFile(file)
if err != nil {
Fail("Fixture file '" + file + "' not found.")
}
var result []interface{}
err = json.Unmarshal(content, &result)
if err != nil {
Fail("Unmarshaling JSON of '" + file + "' failed: " + err.Error())
}
return result
}