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
|
package qwd
import (
"crypto/sha256"
"fmt"
"io/ioutil"
"testing"
"github.com/osm/quake/common/context"
)
type qwdTest struct {
filePath string
checksum string
}
var qwdTests = []qwdTest{
{
filePath: "testdata/demo1.qwd",
checksum: "849cf01cb3fe5c7161625dafdf03178536048d093eda885ca9b37fc673c3c72a",
},
{
filePath: "testdata/demo2.qwd",
checksum: "c90f0a6c9ba79fc7f84d90b12d923a3ad2c0e54849d8df6fd913264f147931b2",
},
{
filePath: "testdata/demo3.qwd",
checksum: "b816f366489d22ed70b84f105a19ce63810fee7295e3b3612fdf7e09c26fc9e9",
},
{
filePath: "testdata/demo4.qwd",
checksum: "6b9088a13fc08609ca58e9887379e743beae0c0752939c001ac35d81a8f9c5af",
},
{
filePath: "testdata/demo5.qwd",
checksum: "698b1961ee8ac009fff062255cece5ab6729c50df9f6ece2d1cf7f1c52406c13",
},
{
filePath: "testdata/demo6.qwd",
checksum: "796357af178feb0c5fd5bff9cc6423914a36cc028f172b92c1336f1000e48d74",
},
}
func TestParse(t *testing.T) {
for _, qt := range qwdTests {
t.Run(qt.filePath, func(t *testing.T) {
data, err := ioutil.ReadFile(qt.filePath)
if err != nil {
t.Errorf("unable to open demo file, %v", err)
}
demo, err := Parse(context.New(), data)
if err != nil {
t.Errorf("unable to parse demo, %v", err)
}
h := sha256.New()
h.Write(demo.Bytes())
checksum := fmt.Sprintf("%x", h.Sum(nil))
if checksum != qt.checksum {
t.Errorf("sha256 checksums didn't match")
t.Logf("output: %#v", checksum)
t.Logf("expected: %#v", qt.checksum)
}
})
}
}
|