76 lines
2.3 KiB
Go
76 lines
2.3 KiB
Go
package control
|
|
|
|
import (
|
|
"bytes"
|
|
"image"
|
|
"image/color"
|
|
"image/jpeg"
|
|
"image/png"
|
|
"testing"
|
|
)
|
|
|
|
func makeTestPNG(t *testing.T, w, h int) []byte {
|
|
t.Helper()
|
|
img := image.NewRGBA(image.Rect(0, 0, w, h))
|
|
for y := 0; y < h; y++ {
|
|
for x := 0; x < w; x++ {
|
|
img.Set(x, y, color.RGBA{R: uint8(x), G: uint8(y), B: uint8(x ^ y), A: 255})
|
|
}
|
|
}
|
|
var buf bytes.Buffer
|
|
if err := png.Encode(&buf, img); err != nil {
|
|
t.Fatalf("encode png: %v", err)
|
|
}
|
|
return buf.Bytes()
|
|
}
|
|
|
|
func TestCompressForVisionDownscalesOversizedPNG(t *testing.T) {
|
|
raw := makeTestPNG(t, 3000, 1500)
|
|
out, mime := compressForVision(raw, "image/png")
|
|
if mime != "image/png" {
|
|
t.Errorf("mime = %q, want image/png", mime)
|
|
}
|
|
cfg, _, err := image.DecodeConfig(bytes.NewReader(out))
|
|
if err != nil {
|
|
t.Fatalf("decode out: %v", err)
|
|
}
|
|
// Pixel count is what governs vision token cost; assert the reduction there
|
|
// (byte size isn't a robust invariant for synthetic, highly-compressible input).
|
|
if cfg.Width != maxVisionDim || cfg.Height != 1500*maxVisionDim/3000 {
|
|
t.Errorf("dims = %dx%d, want %dx%d", cfg.Width, cfg.Height, maxVisionDim, 1500*maxVisionDim/3000)
|
|
}
|
|
if cfg.Width*cfg.Height >= 3000*1500 {
|
|
t.Errorf("pixel count %d not reduced from %d", cfg.Width*cfg.Height, 3000*1500)
|
|
}
|
|
}
|
|
|
|
func TestCompressForVisionKeepsSmallImageVerbatim(t *testing.T) {
|
|
raw := makeTestPNG(t, 100, 80)
|
|
out, mime := compressForVision(raw, "image/png")
|
|
if mime != "image/png" || !bytes.Equal(out, raw) {
|
|
t.Errorf("an in-budget image must pass through unchanged (got %d bytes, mime %q)", len(out), mime)
|
|
}
|
|
}
|
|
|
|
func TestCompressForVisionJPEGStaysJPEG(t *testing.T) {
|
|
var buf bytes.Buffer
|
|
if err := jpeg.Encode(&buf, image.NewRGBA(image.Rect(0, 0, 2400, 1200)), nil); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
out, mime := compressForVision(buf.Bytes(), "image/jpeg")
|
|
if mime != "image/jpeg" {
|
|
t.Fatalf("mime = %q, want image/jpeg", mime)
|
|
}
|
|
if cfg, _, _ := image.DecodeConfig(bytes.NewReader(out)); cfg.Width != maxVisionDim {
|
|
t.Errorf("width = %d, want %d", cfg.Width, maxVisionDim)
|
|
}
|
|
}
|
|
|
|
func TestCompressForVisionPassesThroughUndecodable(t *testing.T) {
|
|
raw := []byte("<svg xmlns='...'></svg>")
|
|
out, mime := compressForVision(raw, "image/svg+xml")
|
|
if mime != "image/svg+xml" || !bytes.Equal(out, raw) {
|
|
t.Error("an undecodable mime must pass through unchanged")
|
|
}
|
|
}
|