mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 00:22:14 +01:00
155 lines
3.0 KiB
Go
155 lines
3.0 KiB
Go
package unoconv
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/gotenberg/gotenberg/v7/pkg/gotenberg"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func TestUnoconv_Descriptor(t *testing.T) {
|
|
descriptor := Unoconv{}.Descriptor()
|
|
|
|
actual := reflect.TypeOf(descriptor.New())
|
|
expect := reflect.TypeOf(new(Unoconv))
|
|
|
|
if actual != expect {
|
|
t.Errorf("expected '%'s' but got '%s'", expect, actual)
|
|
}
|
|
}
|
|
|
|
func TestUnoconv_Provision(t *testing.T) {
|
|
mod := new(Unoconv)
|
|
ctx := gotenberg.NewContext(gotenberg.ParsedFlags{}, nil)
|
|
|
|
err := mod.Provision(ctx)
|
|
if err != nil {
|
|
t.Errorf("expected no error but got: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestUnoconv_Validate(t *testing.T) {
|
|
for i, tc := range []struct {
|
|
binPath string
|
|
expectErr bool
|
|
}{
|
|
{
|
|
expectErr: true,
|
|
},
|
|
{
|
|
binPath: "/foo",
|
|
expectErr: true,
|
|
},
|
|
{
|
|
binPath: os.Getenv("UNOCONV_BIN_PATH"),
|
|
},
|
|
} {
|
|
mod := new(Unoconv)
|
|
mod.binPath = tc.binPath
|
|
err := mod.Validate()
|
|
|
|
if tc.expectErr && err == nil {
|
|
t.Errorf("test %d: expected error but got: %v", i, err)
|
|
}
|
|
|
|
if !tc.expectErr && err != nil {
|
|
t.Errorf("test %d: expected no error but got: %v", i, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestUnoconv_Unoconv(t *testing.T) {
|
|
mod := new(Unoconv)
|
|
|
|
_, err := mod.Unoconv()
|
|
if err != nil {
|
|
t.Errorf("expected no error but got: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestUnoconv_PDF(t *testing.T) {
|
|
for i, tc := range []struct {
|
|
ctx context.Context
|
|
inputPath string
|
|
options Options
|
|
expectErr bool
|
|
}{
|
|
{
|
|
expectErr: true,
|
|
},
|
|
{
|
|
ctx: context.Background(),
|
|
inputPath: "/tests/test/testdata/libreoffice/sample1.docx",
|
|
options: Options{
|
|
Landscape: true,
|
|
PageRanges: "1-2",
|
|
PDFArchive: true,
|
|
},
|
|
},
|
|
{
|
|
ctx: context.Background(),
|
|
inputPath: "/tests/test/testdata/libreoffice/sample1.docx",
|
|
options: Options{
|
|
PageRanges: "foo",
|
|
},
|
|
expectErr: true,
|
|
},
|
|
{
|
|
ctx: func() context.Context {
|
|
ctx, cancel := context.WithCancel(context.TODO())
|
|
defer cancel()
|
|
|
|
return ctx
|
|
}(),
|
|
inputPath: "/tests/test/testdata/libreoffice/sample1.docx",
|
|
expectErr: true,
|
|
},
|
|
} {
|
|
func() {
|
|
mod := new(Unoconv)
|
|
|
|
err := mod.Provision(nil)
|
|
if err != nil {
|
|
t.Fatalf("test %d: expected error but got: %v", i, err)
|
|
}
|
|
|
|
outputDir, err := gotenberg.MkdirAll()
|
|
if err != nil {
|
|
t.Fatalf("test %d: expected error but got: %v", i, err)
|
|
}
|
|
|
|
defer func() {
|
|
err := os.RemoveAll(outputDir)
|
|
if err != nil {
|
|
t.Fatalf("test %d: expected no error but got: %v", i, err)
|
|
}
|
|
}()
|
|
|
|
err = mod.PDF(tc.ctx, zap.NewNop(), tc.inputPath, outputDir+"/foo.pdf", tc.options)
|
|
|
|
if tc.expectErr && err == nil {
|
|
t.Errorf("test %d: expected error but got: %v", i, err)
|
|
}
|
|
|
|
if !tc.expectErr && err != nil {
|
|
t.Errorf("test %d: expected no error but got: %v", i, err)
|
|
}
|
|
}()
|
|
}
|
|
}
|
|
|
|
func TestUnoconv_Extensions(t *testing.T) {
|
|
mod := new(Unoconv)
|
|
extensions := mod.Extensions()
|
|
|
|
actual := len(extensions)
|
|
expect := 73
|
|
|
|
if actual != expect {
|
|
t.Errorf("expected %d extentions but got %d", expect, actual)
|
|
}
|
|
}
|