forked from thecodingmachine/gotenberg-go-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
url_test.go
91 lines (80 loc) · 2.45 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
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 TestURL(t *testing.T) {
c, err := NewClient("http://localhost:3000", &http.Client{})
require.NoError(t, err)
req := NewURLRequest("http://example.com")
req.Trace("testURL")
req.UseBasicAuth("foo", "bar")
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 TestURLComplete(t *testing.T) {
c, err := NewClient("http://localhost:3000", &http.Client{})
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, 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 TestURLPageRanges(t *testing.T) {
c, err := NewClient("http://localhost:3000", &http.Client{})
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.Client{})
require.NoError(t, err)
req := NewURLRequest("https://example.com")
req.Trace("testURLScreenshot")
req.UseBasicAuth("foo", "bar")
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)
}