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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
package sixel
import (
"bytes"
"image"
"image/color"
"testing"
)
func TestScanSize(t *testing.T) {
testCases := map[string]struct {
data string
expectedWidth int
expectedHeight int
}{
"two lines": {
"~~~~~~-~~~~~~-", 6, 12,
},
"two lines no newline at end": {
"~~~~~~-~~~~~~", 6, 12,
},
"no pixels": {
"", 0, 0,
},
"smaller carriage returns": {
"~$~~$~~~$~~~~$~~~~~$~~~~~~", 6, 6,
},
"transparent": {
"??????", 6, 6,
},
"RLE": {
"??!20?", 22, 6,
},
"Colors": {
"#0;2;0;0;0~~~~~$#1;2;100;100;100;~~~~~~-#0~~~~~~-#1~~~~~~", 6, 18,
},
}
for testName, testCase := range testCases {
t.Run(testName, func(t *testing.T) {
decoder := &Decoder{}
width, height := decoder.scanSize([]byte(testCase.data))
if width != testCase.expectedWidth {
t.Errorf("expected width of %d, but received width of %d", testCase.expectedWidth, width)
return
}
if height != testCase.expectedHeight {
t.Errorf("expected height of %d, but received height of %d", testCase.expectedHeight, height)
return
}
})
}
}
func TestFullImage(t *testing.T) {
testCases := map[string]struct {
imageWidth int
imageHeight int
bandCount int
// When filling the image, we'll use a map of indices to colors and change colors every
// time the current index is in the map- this will prevent dozens of lines with the same color
// in a row and make this slightly more legible
colors map[int]color.RGBA
}{
"3x12 single color filled": {
3, 12, 2,
map[int]color.RGBA{
0: {255, 0, 0, 255},
},
},
"3x12 two color filled": {
3, 12, 2,
map[int]color.RGBA{
// 3-pixel high alternating bands
0: {0, 0, 255, 255},
9: {0, 255, 0, 255},
18: {0, 0, 255, 255},
27: {0, 255, 0, 255},
},
},
"3x12 8 color with right gutter": {
3, 12, 2,
map[int]color.RGBA{
0: {255, 0, 0, 255},
2: {0, 255, 0, 255},
3: {255, 0, 0, 255},
5: {0, 255, 0, 255},
6: {255, 0, 0, 255},
8: {0, 255, 0, 255},
9: {0, 0, 255, 255},
11: {128, 128, 0, 255},
12: {0, 0, 255, 255},
14: {128, 128, 0, 255},
15: {0, 0, 255, 255},
17: {128, 128, 0, 255},
18: {0, 128, 128, 255},
20: {128, 0, 128, 255},
21: {0, 128, 128, 255},
23: {128, 0, 128, 255},
24: {0, 128, 128, 255},
26: {128, 0, 128, 255},
27: {64, 0, 0, 255},
29: {0, 64, 0, 255},
30: {64, 0, 0, 255},
32: {0, 64, 0, 255},
33: {64, 0, 0, 255},
35: {0, 64, 0, 255},
},
},
"3x12 single color with transparent band in the middle": {
3, 12, 2,
map[int]color.RGBA{
0: {255, 0, 0, 255},
15: {0, 0, 0, 0},
21: {255, 0, 0, 255},
},
},
"3x5 single color": {
3, 5, 1,
map[int]color.RGBA{
0: {255, 0, 0, 255},
},
},
"12x4 single color use RLE": {
12, 4, 1,
map[int]color.RGBA{
0: {255, 0, 0, 255},
},
},
"12x1 two color use RLE": {
12, 1, 1,
map[int]color.RGBA{
0: {255, 0, 0, 255},
6: {0, 255, 0, 255},
},
},
"12x12 single color use RLE": {
12, 12, 2,
map[int]color.RGBA{
0: {255, 0, 0, 255},
},
},
}
for testName, testCase := range testCases {
t.Run(testName, func(t *testing.T) {
img := image.NewRGBA(image.Rect(0, 0, testCase.imageWidth, testCase.imageHeight))
currentColor := color.RGBA{0, 0, 0, 0}
for y := range testCase.imageHeight {
for x := range testCase.imageWidth {
index := y*testCase.imageWidth + x
newColor, changingColor := testCase.colors[index]
if changingColor {
currentColor = newColor
}
img.Set(x, y, currentColor)
}
}
buffer := bytes.NewBuffer(nil)
encoder := Encoder{}
decoder := Decoder{}
err := encoder.Encode(buffer, img)
if err != nil {
t.Errorf("Unexpected error: %+v", err)
return
}
compareImg, err := decoder.Decode(buffer)
if err != nil {
t.Errorf("Unexpected error: %+v", err)
return
}
expectedWidth := img.Bounds().Dx()
expectedHeight := img.Bounds().Dy()
actualWidth := compareImg.Bounds().Dx()
actualHeight := compareImg.Bounds().Dy()
if actualHeight != expectedHeight {
t.Errorf("SixelImage had a height of %d, but a height of %d was expected", actualHeight, expectedHeight)
return
}
if actualWidth != expectedWidth {
t.Errorf("SixelImage had a width of %d, but a width of %d was expected", actualWidth, expectedWidth)
return
}
for y := range expectedHeight {
for x := range expectedWidth {
r, g, b, a := compareImg.At(x, y).RGBA()
expectedR, expectedG, expectedB, expectedA := img.At(x, y).RGBA()
if r != expectedR || g != expectedG || b != expectedB || a != expectedA {
t.Errorf("SixelImage had color (%d,%d,%d,%d) at coordinates (%d,%d), but color (%d,%d,%d,%d) was expected",
r, g, b, a, x, y, expectedR, expectedG, expectedB, expectedA)
return
}
}
}
})
}
}
|