summaryrefslogtreecommitdiff
path: root/custom_test.go
blob: 2556716b8378e9d9b69416fc65ad5aa6170e418a (plain)
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
package caesar

import (
	"bytes"
	"flag"
	"io"
	"io/ioutil"
	"os"
	"testing"
)

var customTests string

func TestMain(m *testing.M) {
	flag.StringVar(&customTests, "custom", "", "input file for custom test cases")
	flag.Parse()
	os.Exit(m.Run())
}

func TestCustom(t *testing.T) {
	if customTests == "" {
		t.Skip("skipping custom tests")
	}
	f, err := os.Open(customTests)
	if err != nil {
		t.Fatalf("could not open custom test input: %v", err)
	}
	defer f.Close()
	data, err := ioutil.ReadAll(f)
	if err != nil {
		t.Fatalf("could not read custom test input: %v", err)
	}
	buf := bytes.NewBuffer(data)
	for {
		// read input
		inp, err := buf.ReadBytes(',')
		if err == io.EOF {
			return
		} else if err != nil {
			t.Fatalf("read error: %v", err)
		}

		// read expected output
		exp, err := buf.ReadBytes('\n')
		if err == io.EOF {
			return
		} else if err != nil {
			t.Fatalf("read error: %v", err)
		}

		if len(inp) < 2 || len(exp) < 2 {
			t.Fatalf("malformed input")
		}

		inString := string(inp[:len(inp)-1])
		expectString := string(exp[:len(exp)-1])

		t.Logf("encoding custom input %q, expecting %q", inString, expectString)

		result := Encode(inString)
		if result != expectString {
			t.Logf("input: %s", inString)
			t.Logf("output: %s", result)
			t.Logf("expected: %s", expectString)
			t.Fail()
		}
	}
	Encode(string(data))
}