forked from thecodingmachine/gotenberg-go-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
markdown_test.go
159 lines (140 loc) · 5.65 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package gotenberg
import (
"context"
"fmt"
"net/http"
"os"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/runatal/gotenberg-go-client/v8/document"
"github.com/runatal/gotenberg-go-client/v8/test"
)
func TestMarkdown(t *testing.T) {
c, err := NewClient("http://localhost:3000", &http.Client{})
require.NoError(t, err)
index, err := document.FromPath("index.html", test.MarkdownTestFilePath(t, "index.html"))
require.NoError(t, err)
markdown1, err := document.FromPath("paragraph1.md", test.MarkdownTestFilePath(t, "paragraph1.md"))
require.NoError(t, err)
markdown2, err := document.FromPath("paragraph2.md", test.MarkdownTestFilePath(t, "paragraph2.md"))
require.NoError(t, err)
markdown3, err := document.FromPath("paragraph3.md", test.MarkdownTestFilePath(t, "paragraph3.md"))
require.NoError(t, err)
req := NewMarkdownRequest(index, markdown1, markdown2, markdown3)
req.Trace("testMarkdown")
req.UseBasicAuth("foo", "bar")
err = req.ExtraHTTPHeaders(map[string]string{
"X-Header": "Value",
"X-Scoped-Header": `value;scope=https?:\\/\\/([a-zA-Z0-9-]+\\.)*domain\\.com\\/.*`,
})
require.NoError(t, err)
dirPath, err := test.Rand()
require.NoError(t, err)
dest := fmt.Sprintf("%s/foo.pdf", dirPath)
err = c.Store(context.Background(), req, dest)
require.NoError(t, err)
assert.FileExists(t, dest)
err = os.RemoveAll(dirPath)
require.NoError(t, err)
}
func TestMarkdownComplete(t *testing.T) {
c, err := NewClient("http://localhost:3000", &http.Client{})
require.NoError(t, err)
index, err := document.FromPath("index.html", test.MarkdownTestFilePath(t, "index.html"))
require.NoError(t, err)
markdown1, err := document.FromPath("paragraph1.md", test.MarkdownTestFilePath(t, "paragraph1.md"))
require.NoError(t, err)
markdown2, err := document.FromPath("paragraph2.md", test.MarkdownTestFilePath(t, "paragraph2.md"))
require.NoError(t, err)
markdown3, err := document.FromPath("paragraph3.md", test.MarkdownTestFilePath(t, "paragraph3.md"))
require.NoError(t, err)
req := NewMarkdownRequest(index, markdown1, markdown2, markdown3)
req.Trace("testMarkdownComplete")
req.UseBasicAuth("foo", "bar")
err = req.ExtraHTTPHeaders(map[string]string{
"X-Header": "Value",
"X-Scoped-Header": `value;scope=https?:\\/\\/([a-zA-Z0-9-]+\\.)*domain\\.com\\/.*`,
})
require.NoError(t, err)
header, err := document.FromPath("header.html", test.MarkdownTestFilePath(t, "header.html"))
require.NoError(t, err)
req.Header(header)
footer, err := document.FromPath("footer.html", test.MarkdownTestFilePath(t, "footer.html"))
require.NoError(t, err)
req.Footer(footer)
font, err := document.FromPath("font.woff", test.MarkdownTestFilePath(t, "font.woff"))
require.NoError(t, err)
img, err := document.FromPath("img.gif", test.MarkdownTestFilePath(t, "img.gif"))
require.NoError(t, err)
style, err := document.FromPath("style.css", test.MarkdownTestFilePath(t, "style.css"))
require.NoError(t, err)
req.Assets(font, img, style)
req.OutputFilename("foo.pdf")
req.WaitDelay(1 * time.Second)
req.PaperSize(A4)
req.Margins(NormalMargins)
dirPath, err := test.Rand()
require.NoError(t, err)
dest := fmt.Sprintf("%s/foo.pdf", dirPath)
err = c.Store(context.Background(), req, dest)
require.NoError(t, err)
assert.FileExists(t, dest)
err = os.RemoveAll(dirPath)
require.NoError(t, err)
}
func TestMarkdownPageRanges(t *testing.T) {
c, err := NewClient("http://localhost:3000", &http.Client{})
require.NoError(t, err)
index, err := document.FromPath("index.html", test.MarkdownTestFilePath(t, "index.html"))
require.NoError(t, err)
markdown1, err := document.FromPath("paragraph1.md", test.MarkdownTestFilePath(t, "paragraph1.md"))
require.NoError(t, err)
markdown2, err := document.FromPath("paragraph2.md", test.MarkdownTestFilePath(t, "paragraph2.md"))
require.NoError(t, err)
markdown3, err := document.FromPath("paragraph3.md", test.MarkdownTestFilePath(t, "paragraph3.md"))
require.NoError(t, err)
req := NewMarkdownRequest(index, markdown1, markdown2, markdown3)
req.Trace("testMarkdownPageRanges")
req.UseBasicAuth("foo", "bar")
err = req.ExtraHTTPHeaders(map[string]string{
"X-Header": "Value",
"X-Scoped-Header": `value;scope=https?:\\/\\/([a-zA-Z0-9-]+\\.)*domain\\.com\\/.*`,
})
require.NoError(t, err)
req.NativePageRanges("1-1")
resp, err := c.Send(context.Background(), req)
require.NoError(t, err)
assert.Equal(t, 200, resp.StatusCode)
}
func TestMarkdownScreenshot(t *testing.T) {
c, err := NewClient("http://localhost:3000", &http.Client{})
require.NoError(t, err)
index, err := document.FromPath("index.html", test.MarkdownTestFilePath(t, "index.html"))
require.NoError(t, err)
markdown1, err := document.FromPath("paragraph1.md", test.MarkdownTestFilePath(t, "paragraph1.md"))
require.NoError(t, err)
markdown2, err := document.FromPath("paragraph2.md", test.MarkdownTestFilePath(t, "paragraph2.md"))
require.NoError(t, err)
markdown3, err := document.FromPath("paragraph3.md", test.MarkdownTestFilePath(t, "paragraph3.md"))
require.NoError(t, err)
req := NewMarkdownRequest(index, markdown1, markdown2, markdown3)
req.Trace("testMarkdownScreenshot")
req.UseBasicAuth("foo", "bar")
err = req.ExtraHTTPHeaders(map[string]string{
"X-Header": "Value",
"X-Scoped-Header": `value;scope=https?:\\/\\/([a-zA-Z0-9-]+\\.)*domain\\.com\\/.*`,
})
require.NoError(t, err)
require.NoError(t, err)
dirPath, err := test.Rand()
require.NoError(t, err)
req.Format(JPEG)
dest := fmt.Sprintf("%s/foo.jpeg", dirPath)
err = c.StoreScreenshot(context.Background(), req, dest)
require.NoError(t, err)
assert.FileExists(t, dest)
err = os.RemoveAll(dirPath)
require.NoError(t, err)
}