forked from thecodingmachine/gotenberg-go-client
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathurl_test.go
93 lines (79 loc) · 2.47 KB
/
url_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
package gotenberg
import (
"context"
"fmt"
"net/http"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/starwalkn/gotenberg-go-client/v8/document"
"github.com/starwalkn/gotenberg-go-client/v8/test"
)
func TestURL(t *testing.T) {
c, err := NewClient("http://localhost:3000", http.DefaultClient)
require.NoError(t, err)
req := NewURLRequest("http://example.com")
req.Trace("testURL")
req.UseBasicAuth("foo", "bar")
dirPath := t.TempDir()
dest := fmt.Sprintf("%s/foo.pdf", dirPath)
err = c.Store(context.Background(), req, dest)
require.NoError(t, err)
assert.FileExists(t, dest)
isPDF, err := test.IsPDF(dest)
require.NoError(t, err)
assert.True(t, isPDF)
}
func TestURLComplete(t *testing.T) {
c, err := NewClient("http://localhost:3000", http.DefaultClient)
require.NoError(t, err)
req := NewURLRequest("http://example.com")
req.Trace("testURLComplete")
req.UseBasicAuth("foo", "bar")
header, err := document.FromPath("header.html", test.HTMLTestFilePath(t, "header.html"))
require.NoError(t, err)
req.Header(header)
footer, err := document.FromPath("footer.html", test.HTMLTestFilePath(t, "footer.html"))
require.NoError(t, err)
req.Footer(footer)
req.OutputFilename("foo.pdf")
req.WaitDelay(1 * time.Second)
req.PaperSize(A4)
req.Margins(NormalMargins)
dirPath := t.TempDir()
dest := fmt.Sprintf("%s/foo.pdf", dirPath)
err = c.Store(context.Background(), req, dest)
require.NoError(t, err)
assert.FileExists(t, dest)
isPDF, err := test.IsPDF(dest)
require.NoError(t, err)
assert.True(t, isPDF)
}
func TestURLPageRanges(t *testing.T) {
c, err := NewClient("http://localhost:3000", http.DefaultClient)
require.NoError(t, err)
req := NewURLRequest("http://example.com")
req.Trace("testURLPageRanges")
req.UseBasicAuth("foo", "bar")
req.NativePageRanges("1-1")
resp, err := c.Send(context.Background(), req)
require.NoError(t, err)
assert.Equal(t, 200, resp.StatusCode)
}
func TestURLScreenshot(t *testing.T) {
c, err := NewClient("http://localhost:3000", http.DefaultClient)
require.NoError(t, err)
req := NewURLRequest("https://example.com")
req.Trace("testURLScreenshot")
req.UseBasicAuth("foo", "bar")
dirPath := t.TempDir()
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)
isValidJPEG, err := test.IsValidJPEG(dest)
require.NoError(t, err)
assert.True(t, isValidJPEG)
}