File: helper.go

package info (click to toggle)
golang-github-yudai-gojsondiff 1.0.0%2Bgit20180504.0525c87-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 232 kB
  • sloc: makefile: 11
file content (34 lines) | stat: -rw-r--r-- 764 bytes parent folder | download | duplicates (2)
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
}