summaryrefslogtreecommitdiffstats
path: root/hugolib/siteJSONEncode_test.go
blob: c040eb01b983ea75d269b8ec68f68b974809e006 (plain)
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
package hugolib

import (
	"encoding/json"
	"testing"
)

// Issue #1123
// Testing prevention of cyclic refs in JSON encoding
// May be smart to run with: -timeout 4000ms
func TestEncodePage(t *testing.T) {

	// borrowed from menu_test.go
	s := createTestSite(MENU_PAGE_SOURCES)
	testSiteSetup(s, t)

	_, err := json.Marshal(s)
	check(t, err)

	_, err = json.Marshal(s.Pages[0])
	check(t, err)
}

func check(t *testing.T, err error) {
	if err != nil {
		t.Fatalf("Failed %s", err)
	}
}