forked from intenthq/anon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
186 lines (158 loc) · 6.33 KB
/
main_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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package main
import (
"bufio"
"bytes"
"encoding/csv"
"io/ioutil"
"log"
"os"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func TestInitReader(t *testing.T) {
t.Run("with an empty filename", func(t *testing.T) {
tmpfile := tmpFile("content")
defer os.Remove(tmpfile.Name()) // clean up
oldStdin := os.Stdin
defer func() { os.Stdin = oldStdin }() // Restore original Stdin
os.Stdin = tmpfile
r := initReader("", defaultCsvConfig)
record, err := r.Read()
assert.NoError(t, err, "should return no error")
assert.Equal(t, []string{"content"}, record, "should return a csv reader that reads from stdin")
})
t.Run("with a valid filename", func(t *testing.T) {
tmpfile := tmpFile("content")
defer os.Remove(tmpfile.Name()) // clean up
r := initReader(tmpfile.Name(), defaultCsvConfig)
record, err := r.Read()
assert.NoError(t, err, "should return no error")
assert.Equal(t, []string{"content"}, record, "should return a csv reader that reads from the file")
})
}
func tmpFile(content string) *os.File {
tmpfile, err := ioutil.TempFile("", "anon-test")
if err != nil {
log.Fatal(err)
}
ioutil.WriteFile(tmpfile.Name(), []byte("content"), os.ModePerm)
return tmpfile
}
func TestInitWriter(t *testing.T) {
t.Run("with an empty filename", func(t *testing.T) {
tmpfile := tmpFile("")
defer os.Remove(tmpfile.Name()) // clean up
oldStdout := os.Stdout
defer func() { os.Stdout = oldStdout }() // Restore original Stdout
os.Stdout = tmpfile
w := initWriter("", defaultCsvConfig)
err := w.Write([]string{"csv", "content"})
w.Flush()
content, _ := ioutil.ReadFile(tmpfile.Name())
assert.NoError(t, err, "should return no error")
assert.Equal(t, "csv,content\n", string(content), "should return a csv writer that writes to stdout")
})
t.Run("with a valid filename", func(t *testing.T) {
tmpfile := tmpFile("")
defer os.Remove(tmpfile.Name()) // clean up
w := initWriter(tmpfile.Name(), defaultCsvConfig)
err := w.Write([]string{"csv", "content"})
w.Flush()
content, _ := ioutil.ReadFile(tmpfile.Name())
assert.NoError(t, err, "should return no error")
assert.Equal(t, "csv,content\n", string(content), "should return a csv writer that writes to stdout")
})
}
func TestFileOr(t *testing.T) {
assert.Equal(t, fileOr("", os.Stdin, stdOutOk), os.Stdin, "with an empty filename returns the default value")
assert.Equal(t, fileOr("something", os.Stdin, stdOutOk), os.Stdout, "with non empty filename returns the value returned by the action")
}
func stdOutOk(s string) (*os.File, error) {
return os.Stdout, nil
}
func TestAnonymise(t *testing.T) {
record := []string{"a", "b", "c"}
actions := []Anonymisation{identity, hash(""), identity}
output := []string{"a", "e9d71f5ee7c92d6dc9e92ffdad17b8bd49418f98", "c"}
res, err := anonymise(record, actions)
assert.NoError(t, err)
assert.Equal(t, output, res, "should apply anonymisation functions to each column in the record")
}
func TestSample(t *testing.T) {
conf := SamplingConfig{
Mod: 2,
}
assert.True(t, sample("a", conf))
assert.False(t, sample("b", conf))
}
func TestProcess(t *testing.T) {
config := func(mod uint32, idColumn uint32) *Config {
return &Config{Sampling: SamplingConfig{Mod: mod, IDColumn: idColumn}}
}
anons := &[]Anonymisation{identity, outcode}
createReaderAndWriter := func(in string) (*csv.Reader, *csv.Writer, *bytes.Buffer) {
var out bytes.Buffer
r := csv.NewReader(strings.NewReader(in))
w := csv.NewWriter(&out)
return r, w, &out
}
t.Run("when the id column is out of range", func(t *testing.T) {
r, w, out := createReaderAndWriter("a,b c\nd,e f\n")
err := process(r, w, config(1, 100), anons)
assert.Error(t, err, "should return an error")
assert.Equal(t, "", out.String(), "shouldn't write any output")
})
t.Run("when there is an error writing the output", func(t *testing.T) {
var out bytes.Buffer
f, _ := os.Open("non existing file")
r := csv.NewReader(f)
w := csv.NewWriter(&out)
err := process(r, w, config(1, 0), anons)
assert.Error(t, err, "should return an error")
})
t.Run("when there is an error processing one of the rows", func(t *testing.T) {
r, w, out := createReaderAndWriter("20020202\nfail\n10010101")
y, _ := year("20060102")
err := process(r, w, config(1, 0), &[]Anonymisation{y})
assert.NoError(t, err, "should not return an error")
assert.Equal(t, "2002\n1001\n", out.String(), "should skip that row")
})
t.Run("when sampling is defined", func(t *testing.T) {
r, w, out := createReaderAndWriter("a,b c\nd,e f\ng,h i\nj,k l\n")
err := process(r, w, config(2, 0), anons)
assert.NoError(t, err, "should return no error")
assert.Equal(t, "a,b\ng,h\n", out.String(), "should process some rows")
})
t.Run("when all the rows are valid", func(t *testing.T) {
r, w, out := createReaderAndWriter("a,b c\nd,e f\n")
err := process(r, w, config(1, 0), anons)
assert.NoError(t, err, "should return no error")
assert.Equal(t, "a,b\nd,e\n", out.String(), "should process all rows")
})
}
func TestCustomProcess(t *testing.T) {
config := func(mod uint32, idColumn uint32) *Config {
return &Config{Sampling: SamplingConfig{Mod: mod, IDColumn: idColumn}}
}
createReaderAndWriter := func(in string) (*bufio.Scanner, *bufio.Writer, *bytes.Buffer) {
var out bytes.Buffer
r := bufio.NewScanner(strings.NewReader(in))
w := bufio.NewWriter(&out)
return r, w, &out
}
voc.reset()
t.Run("custom parsing", func(t *testing.T) {
src := "amSMSLdap:02/26/2020 04:19:29:518 PM EST: Thread[localhost-startStop-2,5,main]: user: Иван Козлов phone 791212312312\n" +
"amSMSLdap:02/26/2020 04:19:29:518 PM EST: Thread[localhost-startStop-2,5,main]: user: Иван Петров phone 79110987655\n"
res := "amSMSLdap:02/26/2020 04:19:29:518 PM EST: Thread[localhost-startStop-2,5,main]: user: NTest0 NTest1 phone 7912********\n" +
"amSMSLdap:02/26/2020 04:19:29:518 PM EST: Thread[localhost-startStop-2,5,main]: user: NTest0 NTest2 phone 7911*******\n"
conf := config(1, 0)
r, w, out := createReaderAndWriter(src)
custom, _ := custom([]CustomConfig{CustomConfig{Name: "name", Regexp: "([А-Я][а-яА-Я\\-]{1,})"}, CustomConfig{Name: "phone", Regexp: "\\b[7,8]9[0-9]{9,11}\\b"}})
customAnons := &[]Anonymisation{custom}
err := processText(r, w, conf, customAnons)
assert.NoError(t, err, "should return no error")
assert.Equal(t, res, out.String(), "should process all rows")
})
}