mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-15 10:25:55 -07:00
commit
66447e14d4
2 changed files with 30 additions and 2 deletions
27
vips_test.go
27
vips_test.go
|
|
@ -219,6 +219,33 @@ func TestVipsMemory(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
func TestVipsExifShort(t *testing.T) {
|
||||
tt := []struct {
|
||||
input string
|
||||
expected string
|
||||
}{
|
||||
{
|
||||
input: `( ()`,
|
||||
expected: `(`,
|
||||
},
|
||||
{
|
||||
input: ` ()`,
|
||||
expected: ` ()`,
|
||||
},
|
||||
{
|
||||
input: `sRGB`,
|
||||
expected: `sRGB`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tc := range tt {
|
||||
got := vipsExifShort(tc.input)
|
||||
if got != tc.expected {
|
||||
t.Fatalf("expected: %s; got: %s", tc.expected, got)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func readImage(file string) []byte {
|
||||
img, _ := os.Open(path.Join("testdata", file))
|
||||
buf, _ := ioutil.ReadAll(img)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue