-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencode_test.go
135 lines (111 loc) · 3.57 KB
/
encode_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
package underbyte
import (
"image/color"
"testing"
"github.com/mosegontar/underbyte/underbytetest"
)
func TestEncode(t *testing.T) {
t.Run("it correctly modifies the UnderbyteImage pixel values", func(t *testing.T) {
u := UnderbyteImage{NRGBA: underbytetest.NewImage(10, 2)}
u.Encode([]byte("hello"))
checkColors := underbytetest.PixelColorChecker(u.NRGBA, t)
// header, encodes message size (5)
checkColors([4]int{0, 0, 0, 0}, 0, 0)
checkColors([4]int{0, 0, 0, 0}, 1, 0)
checkColors([4]int{0, 0, 0, 0}, 2, 0)
checkColors([4]int{0, 0, 1, 1}, 3, 0)
// h
checkColors([4]int{1, 2, 2, 0}, 4, 0)
// e
checkColors([4]int{1, 2, 1, 1}, 5, 0)
// l
checkColors([4]int{1, 2, 3, 0}, 6, 0)
// 1
checkColors([4]int{1, 2, 3, 0}, 7, 0)
// o
checkColors([4]int{1, 2, 3, 3}, 8, 0)
})
t.Run("it correctly modifies existing pixel values", func(t *testing.T) {
u := UnderbyteImage{NRGBA: underbytetest.NewImage(10, 2)}
u.SetNRGBA(1, 0, color.NRGBA{100, 20, 19, 255})
u.SetNRGBA(5, 0, color.NRGBA{5, 4, 244, 0})
u.Encode([]byte("hello"))
checkColors := underbytetest.PixelColorChecker(u.NRGBA, t)
checkColors([4]int{100, 20, 16, 252}, 1, 0)
checkColors([4]int{5, 6, 245, 1}, 5, 0)
})
t.Run("double packs message bytes when message length is greater than available pixels", func(t *testing.T) {
u := UnderbyteImage{NRGBA: underbytetest.NewImage(4, 2)}
err := u.Encode([]byte("hello"))
if err != nil {
t.Errorf("unexpected error: %v", err)
t.FailNow()
}
checkColors := underbytetest.PixelColorChecker(u.NRGBA, t)
// header, encodes message size (5)
checkColors([4]int{0, 0, 0, 0}, 0, 0)
checkColors([4]int{0, 0, 0, 0}, 1, 0)
checkColors([4]int{0, 0, 0, 0}, 2, 0)
checkColors([4]int{0, 0, 1, 1}, 3, 0)
// h e
checkColors([4]int{6, 8, 6, 5}, 0, 1)
// l l
checkColors([4]int{6, 12, 6, 12}, 1, 1)
// o
checkColors([4]int{6, 15, 0, 0}, 2, 1)
})
t.Run("randomizing the sequence of pixels chosen for single pack encoding the message", func(t *testing.T) {
u := UnderbyteImage{
NRGBA: underbytetest.NewImage(10, 2),
options: UnderbyteOptions{
Randomize: true,
},
}
err := u.Encode([]byte("hello"))
if err != nil {
t.Errorf("unexpected error: %v", err)
t.FailNow()
}
checkColors := underbytetest.PixelColorChecker(u.NRGBA, t)
// header, encodes message size (5)
checkColors([4]int{0, 0, 0, 0}, 0, 0)
checkColors([4]int{0, 0, 0, 0}, 1, 0)
checkColors([4]int{0, 0, 0, 0}, 2, 0)
checkColors([4]int{0, 0, 1, 1}, 3, 0)
// h
checkColors([4]int{1, 2, 2, 0}, 7, 0)
// e
checkColors([4]int{1, 2, 1, 1}, 9, 1)
// l
checkColors([4]int{1, 2, 3, 0}, 5, 0)
// 1
checkColors([4]int{1, 2, 3, 0}, 8, 1)
// o
checkColors([4]int{1, 2, 3, 3}, 6, 1)
})
t.Run("randomizing the sequence of pixels chosen for double pack encoding the message", func(t *testing.T) {
u := UnderbyteImage{
NRGBA: underbytetest.NewImage(4, 2),
options: UnderbyteOptions{
Randomize: true,
},
}
err := u.Encode([]byte("hello"))
if err != nil {
t.Errorf("unexpected error: %v", err)
t.FailNow()
}
checkColors := underbytetest.PixelColorChecker(u.NRGBA, t)
// header, encodes message size (5)
checkColors([4]int{0, 0, 0, 0}, 0, 0)
checkColors([4]int{0, 0, 0, 0}, 1, 0)
checkColors([4]int{0, 0, 0, 0}, 2, 0)
checkColors([4]int{0, 0, 1, 1}, 3, 0)
// h e
checkColors([4]int{6, 8, 6, 5}, 3, 1)
// l l
checkColors([4]int{6, 12, 6, 12}, 2, 1)
// o
checkColors([4]int{6, 15, 0, 0}, 1, 1)
})
}