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
|
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
}
|