-
Notifications
You must be signed in to change notification settings - Fork 3
/
catbox_test.go
57 lines (47 loc) · 1.14 KB
/
catbox_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
// Copyright 2021 Wayback Archiver. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.
package catbox // import "github.com/wabarc/go-catbox"
import (
"io/ioutil"
"os"
"testing"
)
func TestFileUpload(t *testing.T) {
content := make([]byte, 5000)
tmpfile, err := ioutil.TempFile("", "go-catbox-")
if err != nil {
t.Fatal(err)
}
defer os.Remove(tmpfile.Name())
if _, err := tmpfile.Write(content); err != nil {
t.Fatal(err)
}
if _, err := New(nil).Upload(tmpfile.Name()); err != nil {
t.Fatal(err)
}
}
func TestRawUpload(t *testing.T) {
content := make([]byte, 5000)
tmpfile, err := ioutil.TempFile("", "go-catbox-")
if err != nil {
t.Fatal(err)
}
defer os.Remove(tmpfile.Name())
b, err := ioutil.ReadFile(tmpfile.Name())
if err != nil {
t.Fatal(err)
}
if _, err := tmpfile.Write(content); err != nil {
t.Fatal(err)
}
if _, err := New(nil).Upload(b, "test"); err != nil {
t.Fatal(err)
}
}
func TestURLUpload(t *testing.T) {
url := "https://www.gstatic.com/webp/gallery/1.webp"
if _, err := New(nil).Upload(url); err != nil {
t.Fatal(err)
}
}