mirror of
https://github.com/Dadido3/go-typst.git
synced 2025-04-04 09:13:17 +00:00
- Rename MarshalVariable to MarshalValue - Rename NewVariableEncoder to NewValueEncoder - Rename VariableEncoder to ValueEncoder - Rename VariableMarshaler to ValueMarshaler - Rename MarshalTypstVariable to MarshalTypstValue There are now wrappers which ensure compatibility with code that still uses some of the old functions/types. - Improve image_test.go by adding an assertion - Rename all occurrences of Variable to Value - Remove "TODO: Handle images..." as that's already working with the image wrapper - Update README.md
59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
package typst_test
|
|
|
|
import (
|
|
"bytes"
|
|
"image"
|
|
"image/color"
|
|
"io"
|
|
"testing"
|
|
|
|
"github.com/Dadido3/go-typst"
|
|
)
|
|
|
|
type testImage struct {
|
|
Rect image.Rectangle
|
|
}
|
|
|
|
func (p *testImage) ColorModel() color.Model { return color.RGBAModel }
|
|
|
|
func (p *testImage) Bounds() image.Rectangle { return p.Rect }
|
|
|
|
func (p *testImage) At(x, y int) color.Color { return p.RGBAAt(x, y) }
|
|
|
|
func (p *testImage) RGBAAt(x, y int) color.RGBA {
|
|
if !(image.Point{x, y}.In(p.Rect)) {
|
|
return color.RGBA{}
|
|
}
|
|
return color.RGBA{uint8(x), uint8(y), uint8(x + y), 255}
|
|
}
|
|
|
|
// Opaque scans the entire image and reports whether it is fully opaque.
|
|
func (p *testImage) Opaque() bool {
|
|
return true
|
|
}
|
|
|
|
func TestImage(t *testing.T) {
|
|
img := &testImage{image.Rect(0, 0, 256, 256)}
|
|
|
|
// Wrap image.
|
|
typstImage := typst.Image{img}
|
|
|
|
cli := typst.CLI{}
|
|
|
|
var r bytes.Buffer
|
|
|
|
if err := typst.InjectValues(&r, map[string]any{"TestImage": typstImage}); err != nil {
|
|
t.Fatalf("Failed to inject values into Typst markup: %v.", err)
|
|
}
|
|
|
|
r.WriteString(`= Image test
|
|
|
|
#TestImage
|
|
|
|
#assert(type(TestImage) == content, message: "TestImage is not of expected type: got " + str(type(TestImage)) + ", want content")`) // TODO: Add another assertion for the image width and height as soon as it's possible to query that
|
|
|
|
if err := cli.Compile(&r, io.Discard, nil); err != nil {
|
|
t.Fatalf("Failed to compile document: %v.", err)
|
|
}
|
|
}
|