This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
markdown_test.go
108 lines (102 loc) · 4.2 KB
/
markdown_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package gotenberg
import (
"fmt"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/thecodingmachine/gotenberg-go-client/v7/test"
)
func TestMarkdown(t *testing.T) {
c := &Client{Hostname: "http://localhost:3000"}
index, err := NewDocumentFromPath("index.html", test.MarkdownTestFilePath(t, "index.html"))
require.Nil(t, err)
markdown1, err := NewDocumentFromPath("paragraph1.md", test.MarkdownTestFilePath(t, "paragraph1.md"))
require.Nil(t, err)
markdown2, err := NewDocumentFromPath("paragraph2.md", test.MarkdownTestFilePath(t, "paragraph2.md"))
require.Nil(t, err)
markdown3, err := NewDocumentFromPath("paragraph3.md", test.MarkdownTestFilePath(t, "paragraph3.md"))
require.Nil(t, err)
req := NewMarkdownRequest(index, markdown1, markdown2, markdown3)
dirPath, err := test.Rand()
require.Nil(t, err)
dest := fmt.Sprintf("%s/foo.pdf", dirPath)
err = c.Store(req, dest)
assert.Nil(t, err)
assert.FileExists(t, dest)
err = os.RemoveAll(dirPath)
assert.Nil(t, err)
}
func TestMarkdownComplete(t *testing.T) {
c := &Client{Hostname: "http://localhost:3000"}
index, err := NewDocumentFromPath("index.html", test.MarkdownTestFilePath(t, "index.html"))
require.Nil(t, err)
markdown1, err := NewDocumentFromPath("paragraph1.md", test.MarkdownTestFilePath(t, "paragraph1.md"))
require.Nil(t, err)
markdown2, err := NewDocumentFromPath("paragraph2.md", test.MarkdownTestFilePath(t, "paragraph2.md"))
require.Nil(t, err)
markdown3, err := NewDocumentFromPath("paragraph3.md", test.MarkdownTestFilePath(t, "paragraph3.md"))
require.Nil(t, err)
req := NewMarkdownRequest(index, markdown1, markdown2, markdown3)
header, err := NewDocumentFromPath("header.html", test.MarkdownTestFilePath(t, "header.html"))
require.Nil(t, err)
req.Header(header)
footer, err := NewDocumentFromPath("footer.html", test.MarkdownTestFilePath(t, "footer.html"))
require.Nil(t, err)
req.Footer(footer)
font, err := NewDocumentFromPath("font.woff", test.MarkdownTestFilePath(t, "font.woff"))
require.Nil(t, err)
img, err := NewDocumentFromPath("img.gif", test.MarkdownTestFilePath(t, "img.gif"))
require.Nil(t, err)
style, err := NewDocumentFromPath("style.css", test.MarkdownTestFilePath(t, "style.css"))
req.Assets(font, img, style)
req.ResultFilename("foo.pdf")
req.WaitTimeout(5)
req.WaitDelay(1)
req.PaperSize(A4)
req.Margins(NormalMargins)
req.Landscape(false)
req.GoogleChromeRpccBufferSize(1048576)
dirPath, err := test.Rand()
require.Nil(t, err)
dest := fmt.Sprintf("%s/foo.pdf", dirPath)
err = c.Store(req, dest)
assert.Nil(t, err)
assert.FileExists(t, dest)
err = os.RemoveAll(dirPath)
assert.Nil(t, err)
}
func TestMarkdownPageRanges(t *testing.T) {
c := &Client{Hostname: "http://localhost:3000"}
index, err := NewDocumentFromPath("index.html", test.MarkdownTestFilePath(t, "index.html"))
require.Nil(t, err)
markdown1, err := NewDocumentFromPath("paragraph1.md", test.MarkdownTestFilePath(t, "paragraph1.md"))
require.Nil(t, err)
markdown2, err := NewDocumentFromPath("paragraph2.md", test.MarkdownTestFilePath(t, "paragraph2.md"))
require.Nil(t, err)
markdown3, err := NewDocumentFromPath("paragraph3.md", test.MarkdownTestFilePath(t, "paragraph3.md"))
require.Nil(t, err)
req := NewMarkdownRequest(index, markdown1, markdown2, markdown3)
req.PageRanges("1-1")
resp, err := c.Post(req)
assert.Nil(t, err)
assert.Equal(t, 200, resp.StatusCode)
}
func TestMarkdownWebhook(t *testing.T) {
c := &Client{Hostname: "http://localhost:3000"}
index, err := NewDocumentFromPath("index.html", test.MarkdownTestFilePath(t, "index.html"))
require.Nil(t, err)
markdown1, err := NewDocumentFromPath("paragraph1.md", test.MarkdownTestFilePath(t, "paragraph1.md"))
require.Nil(t, err)
markdown2, err := NewDocumentFromPath("paragraph2.md", test.MarkdownTestFilePath(t, "paragraph2.md"))
require.Nil(t, err)
markdown3, err := NewDocumentFromPath("paragraph3.md", test.MarkdownTestFilePath(t, "paragraph3.md"))
require.Nil(t, err)
req := NewMarkdownRequest(index, markdown1, markdown2, markdown3)
req.WebhookURL("https://google.com")
req.WebhookURLTimeout(5.0)
req.AddWebhookURLHTTPHeader("A-Header", "Foo")
resp, err := c.Post(req)
assert.Nil(t, err)
assert.Equal(t, 200, resp.StatusCode)
}