mirror of
https://github.com/Dadido3/go-typst.git
synced 2025-04-04 09:13:17 +00:00
63 lines
1.4 KiB
Go
63 lines
1.4 KiB
Go
// Copyright (c) 2024 David Vogel
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
package typst_test
|
|
|
|
import (
|
|
"bytes"
|
|
"image"
|
|
_ "image/png"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/Dadido3/go-typst"
|
|
)
|
|
|
|
func TestCLI_VersionString(t *testing.T) {
|
|
cli := typst.CLI{}
|
|
|
|
_, err := cli.VersionString()
|
|
if err != nil {
|
|
t.Fatalf("Failed to get typst version: %v.", err)
|
|
}
|
|
}
|
|
|
|
// Test basic compile functionality.
|
|
func TestCLI_Compile(t *testing.T) {
|
|
const inches = 1
|
|
const ppi = 144
|
|
|
|
cli := typst.CLI{}
|
|
|
|
r := bytes.NewBufferString(`#set page(width: ` + strconv.FormatInt(inches, 10) + `in, height: ` + strconv.FormatInt(inches, 10) + `in, margin: (x: 1mm, y: 1mm))
|
|
= Test
|
|
|
|
#lorem(5)`)
|
|
|
|
opts := typst.CLIOptions{
|
|
Format: typst.OutputFormatPNG,
|
|
PPI: ppi,
|
|
}
|
|
|
|
var w bytes.Buffer
|
|
if err := cli.Compile(r, &w, &opts); err != nil {
|
|
t.Fatalf("Failed to compile document: %v.", err)
|
|
}
|
|
|
|
imgConf, imgType, err := image.DecodeConfig(&w)
|
|
if err != nil {
|
|
t.Fatalf("Failed to decode image: %v.", err)
|
|
}
|
|
if imgType != "png" {
|
|
t.Fatalf("Resulting image is of type %q, expected %q.", imgType, "png")
|
|
}
|
|
if imgConf.Width != inches*ppi {
|
|
t.Fatalf("Resulting image width is %d, expected %d.", imgConf.Width, inches*ppi)
|
|
}
|
|
if imgConf.Height != inches*ppi {
|
|
t.Fatalf("Resulting image height is %d, expected %d.", imgConf.Height, inches*ppi)
|
|
}
|
|
}
|