aboutsummaryrefslogtreecommitdiffstats
path: root/demo/qwd/parse_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'demo/qwd/parse_test.go')
-rw-r--r--demo/qwd/parse_test.go67
1 files changed, 67 insertions, 0 deletions
diff --git a/demo/qwd/parse_test.go b/demo/qwd/parse_test.go
new file mode 100644
index 0000000..97e39df
--- /dev/null
+++ b/demo/qwd/parse_test.go
@@ -0,0 +1,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)
+ }
+ })
+ }
+}