summaryrefslogtreecommitdiff
path: root/preproc/helpers_test.go
diff options
context:
space:
mode:
authorNick White <git@njw.name>2019-05-13 19:46:27 +0100
committerNick White <git@njw.name>2019-05-13 19:46:27 +0100
commit6abca706a944a62231608c4a8d8fbdff81f4ca3c (patch)
treef231898570d7a7e7fbfa1603dc551be6423e6a3d /preproc/helpers_test.go
parent02a6c66eb77a5b455bcf2d0547d2383074eb7e41 (diff)
Add -slow flag to test to skip slow tests by default
Diffstat (limited to 'preproc/helpers_test.go')
-rw-r--r--preproc/helpers_test.go56
1 files changed, 0 insertions, 56 deletions
diff --git a/preproc/helpers_test.go b/preproc/helpers_test.go
deleted file mode 100644
index 326b59d..0000000
--- a/preproc/helpers_test.go
+++ /dev/null
@@ -1,56 +0,0 @@
-package preproc
-
-// TODO: add different pages as test cases
-// TODO: test non integral img version
-
-import (
- "flag"
- "image"
- "image/draw"
- "image/png"
- "os"
-)
-
-var update = flag.Bool("update", false, "update golden files")
-
-func decode(s string) (*image.Gray, error) {
- f, err := os.Open(s)
- defer f.Close()
- if err != nil {
- return nil, err
- }
- img, err := png.Decode(f)
- if err != nil {
- return nil, err
- }
- b := img.Bounds()
- gray := image.NewGray(image.Rect(0, 0, b.Dx(), b.Dy()))
- draw.Draw(gray, b, img, b.Min, draw.Src)
- return gray, nil
-}
-
-func imgsequal(img1 *image.Gray, img2 *image.Gray) bool {
- b := img1.Bounds()
- if !b.Eq(img2.Bounds()) {
- return false
- }
- for y := b.Min.Y; y < b.Max.Y; y++ {
- for x := b.Min.X; x < b.Max.X; x++ {
- r0, g0, b0, a0 := img1.At(x, y).RGBA()
- r1, g1, b1, a1 := img2.At(x, y).RGBA()
- if r0 != r1 {
- return false
- }
- if g0 != g1 {
- return false
- }
- if b0 != b1 {
- return false
- }
- if a0 != a1 {
- return false
- }
- }
- }
- return true
-}