forked from folbricht/desync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformat_test.go
158 lines (143 loc) · 3.27 KB
/
format_test.go
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package desync
import (
"bytes"
"io/ioutil"
"os"
"reflect"
"testing"
)
func TestFormatDecoder(t *testing.T) {
f, err := os.Open("testdata/flat.catar")
if err != nil {
t.Fatal(err)
}
defer f.Close()
d := NewFormatDecoder(f)
// Define an array of what is expected in the test file
expected := []interface{}{
FormatEntry{},
FormatUser{},
FormatGroup{},
FormatSELinux{},
FormatFilename{}, // "device"
FormatEntry{},
FormatSELinux{},
FormatDevice{},
FormatFilename{}, // "file1.txt"
FormatEntry{},
FormatUser{},
FormatGroup{},
FormatSELinux{},
FormatPayload{},
FormatFilename{}, // "file2.txt"
FormatEntry{},
FormatGroup{},
FormatSELinux{},
FormatPayload{},
FormatFilename{}, // "symlink"
FormatEntry{},
FormatUser{},
FormatGroup{},
FormatSELinux{},
FormatSymlink{},
FormatGoodbye{},
nil,
}
for _, exp := range expected {
v, err := d.Next()
if err != nil {
t.Fatal(err)
}
if reflect.TypeOf(exp) != reflect.TypeOf(v) {
t.Fatalf("expected %s, got %s", reflect.TypeOf(exp), reflect.TypeOf(v))
}
}
}
func TestIndexDecoder(t *testing.T) {
f, err := os.Open("testdata/index.caibx")
if err != nil {
t.Fatal(err)
}
defer f.Close()
d := NewFormatDecoder(f)
// The file should start with the index
e, err := d.Next()
if err != nil {
t.Fatal(err)
}
index, ok := e.(FormatIndex)
if !ok {
t.Fatal("file doesn't start with an index")
}
if index.FeatureFlags != CaFormatSHA512256|CaFormatExcludeNoDump {
t.Fatal("index flags don't match expected")
}
// Now get the table with the chunks
e, err = d.Next()
if err != nil {
t.Fatal(err)
}
table, ok := e.(FormatTable)
if !ok {
t.Fatal("index table not found")
}
// Define the chunk IDs and the order they should be in the file
expected := []string{
"437884da2d1e61cf50b43b263ff15f25a870b0eae84bc22e4b5c307a0428764d",
"985462e6b3293bbe61e43882686b481751ecf4b285bae4dffc2dfa8829f971ac",
"fadff4b303624f2be3d0e04c2f105306118a9f608ef1e4f83c1babbd23a2315f",
}
// Check the expected length of the table
if len(table.Items) != len(expected) {
t.Fatalf("expected %d chunks in index table, got %d", len(expected), len(table.Items))
}
// And then make sure the IDs and order match
for i := range expected {
id, _ := ChunkIDFromString(expected[i])
if table.Items[i].Chunk != id {
t.Fatalf("expected chunk %s, got %s", id, table.Items[i].Chunk)
}
}
}
// Decode and then encode index/archive files to test the encode produces the
// exact same output.
func TestEncoder(t *testing.T) {
files := []string{
"testdata/index.caibx",
"testdata/nested.catar",
}
for _, name := range files {
in, err := ioutil.ReadFile(name)
if err != nil {
t.Fatal(err)
}
// Decoder
d := NewFormatDecoder(bytes.NewReader(in))
// Encoder
out := new(bytes.Buffer)
e := NewFormatEncoder(out)
// Decode each element, then encode it again
var total int64
for {
v, err := d.Next()
if err != nil {
t.Fatal(err)
}
if v == nil {
break
}
n, err := e.Encode(v)
if err != nil {
t.Fatal(err)
}
total += n
}
// in/out should match
if !bytes.Equal(in, out.Bytes()) {
t.Fatalf("decoded/encoded don't match for file '%s'", name)
}
if total != int64(out.Len()) {
t.Fatalf("unexpected length for encoding of '%s'", name)
}
}
}