restic/tree_test.go

80 lines
1.9 KiB
Go
Raw Normal View History

2014-07-28 18:20:32 +00:00
package khepri_test
2014-04-21 21:25:31 +00:00
import (
"bytes"
2014-07-28 18:20:32 +00:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
2014-04-21 21:25:31 +00:00
"strings"
"time"
2014-07-28 18:20:32 +00:00
"github.com/fd0/khepri"
2014-04-21 21:25:31 +00:00
)
func parseTime(str string) time.Time {
t, err := time.Parse(time.RFC3339Nano, str)
if err != nil {
panic(err)
}
return t
}
var _ = Describe("Tree", func() {
2014-07-28 18:20:32 +00:00
var t *khepri.Tree
2014-04-21 21:25:31 +00:00
var raw string
BeforeEach(func() {
2014-07-28 18:20:32 +00:00
t = new(khepri.Tree)
t.Nodes = []khepri.Node{
khepri.Node{
2014-04-27 21:59:58 +00:00
Name: "foobar",
Mode: 0755,
ModTime: parseTime("2014-04-20T22:16:54.161401+02:00"),
AccessTime: parseTime("2014-04-21T22:16:54.161401+02:00"),
User: 1000,
Group: 1001,
Content: []byte{0x41, 0x42, 0x43},
2014-04-21 21:25:31 +00:00
},
2014-07-28 18:20:32 +00:00
khepri.Node{
2014-04-27 21:59:58 +00:00
Name: "baz",
Mode: 0755,
User: 1000,
ModTime: parseTime("2014-04-20T22:16:54.161401+02:00"),
AccessTime: parseTime("2014-04-21T22:16:54.161401+02:00"),
Group: 1001,
Content: []byte("\xde\xad\xbe\xef\xba\xdc\x0d\xe0"),
2014-04-21 21:25:31 +00:00
},
}
2014-04-27 21:59:58 +00:00
raw = `{"nodes":[{"name":"foobar","mode":493,"mtime":"2014-04-20T22:16:54.161401+02:00","atime":"2014-04-21T22:16:54.161401+02:00","user":1000,"group":1001,"content":"414243"},{"name":"baz","mode":493,"mtime":"2014-04-20T22:16:54.161401+02:00","atime":"2014-04-21T22:16:54.161401+02:00","user":1000,"group":1001,"content":"deadbeefbadc0de0"}]}`
2014-04-21 21:25:31 +00:00
})
It("Should save", func() {
var buf bytes.Buffer
t.Save(&buf)
Expect(strings.TrimRight(buf.String(), "\n")).To(Equal(raw))
2014-07-28 18:20:32 +00:00
t2 := new(khepri.Tree)
2014-04-21 21:25:31 +00:00
err := t2.Restore(&buf)
Expect(err).NotTo(HaveOccurred())
// test tree for equality
Expect(t2).To(Equal(t))
// test nodes for equality
for i, n := range t.Nodes {
Expect(n.Content).To(Equal(t2.Nodes[i].Content))
}
})
It("Should restore", func() {
buf := bytes.NewBufferString(raw)
2014-07-28 18:20:32 +00:00
t2 := new(khepri.Tree)
2014-04-21 21:25:31 +00:00
err := t2.Restore(buf)
Expect(err).NotTo(HaveOccurred())
// test if tree has correctly been restored
Expect(t2).To(Equal(t))
})
})