-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pixeldrain_test.go
104 lines (95 loc) · 2.17 KB
/
pixeldrain_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
// pixeldrain_test.go
//
// Copyright (c) 2018-2023 Junpei Kawamoto
//
// This software is released under the MIT License.
//
// http://opensource.org/licenses/mit-license.php
package pixeldrain
import (
"path"
"testing"
"github.com/jkawamoto/go-pixeldrain/client"
)
func TestDownloadURL(t *testing.T) {
id := "test-id"
expect := "https://" + path.Join(client.DefaultHost, client.DefaultBasePath, "file", id)
if res := DownloadURL(id); res != expect {
t.Errorf("expect %v, got %v", expect, res)
}
}
func TestListURL(t *testing.T) {
id := "test-id"
expect := "https://" + path.Join(client.DefaultHost, "l", id)
if res := ListURL(id); res != expect {
t.Errorf("expect %v, got %v", expect, res)
}
}
func TestIsDownloadURL(t *testing.T) {
cases := []struct {
url string
expect bool
}{
{
url: "https://" + path.Join(client.DefaultHost, client.DefaultBasePath, "file", "123"),
expect: true,
},
{
url: "https://" + path.Join(client.DefaultHost, client.DefaultBasePath, "l", "123"),
expect: false,
},
{
url: "https://" + path.Join(client.DefaultHost, "file", "123"),
expect: false,
},
{
url: "https://" + path.Join(client.DefaultHost, "l", "123"),
expect: false,
},
}
for _, c := range cases {
t.Run(c.url, func(t *testing.T) {
res, err := IsDownloadURL(c.url)
if err != nil {
t.Fatal(err)
}
if res != c.expect {
t.Errorf("expect %v, got %v", c.expect, res)
}
})
}
}
func TestIsListURL(t *testing.T) {
cases := []struct {
url string
expect bool
}{
{
url: "https://" + path.Join(client.DefaultHost, client.DefaultBasePath, "file", "123"),
expect: false,
},
{
url: "https://" + path.Join(client.DefaultHost, client.DefaultBasePath, "l", "123"),
expect: false,
},
{
url: "https://" + path.Join(client.DefaultHost, "file", "123"),
expect: false,
},
{
url: "https://" + path.Join(client.DefaultHost, "l", "123"),
expect: true,
},
}
for _, c := range cases {
t.Run(c.url, func(t *testing.T) {
res, err := IsListURL(c.url)
if err != nil {
t.Fatal(err)
}
if res != c.expect {
t.Errorf("expect %v, got %v", c.expect, res)
}
})
}
}