forked from hashicorp/terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree_gob_test.go
More file actions
37 lines (31 loc) · 764 Bytes
/
Copy pathtree_gob_test.go
File metadata and controls
37 lines (31 loc) · 764 Bytes
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
35
36
37
package module
import (
"bytes"
"encoding/gob"
"strings"
"testing"
)
func TestTreeEncodeDecodeGob(t *testing.T) {
storage := testStorage(t)
tree := NewTree("", testConfig(t, "basic"))
// This should get things
if err := tree.Load(storage, GetModeGet); err != nil {
t.Fatalf("err: %s", err)
}
// Encode it.
var buf bytes.Buffer
enc := gob.NewEncoder(&buf)
if err := enc.Encode(tree); err != nil {
t.Fatalf("err: %s", err)
}
dec := gob.NewDecoder(&buf)
var actual Tree
if err := dec.Decode(&actual); err != nil {
t.Fatalf("err: %s", err)
}
actualStr := strings.TrimSpace(actual.String())
expectedStr := strings.TrimSpace(tree.String())
if actualStr != expectedStr {
t.Fatalf("\n%s\n\nexpected:\n\n%s", actualStr, expectedStr)
}
}