-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathdownloadable_interface_test.go
126 lines (114 loc) · 2.76 KB
/
downloadable_interface_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
package notionapi
import (
"testing"
"time"
)
func TestPdfBlockImplementsDownloadableFileBlock(t *testing.T) {
// Test setup
now := time.Now()
pdfBlock := &PdfBlock{
Pdf: Pdf{
File: &FileObject{
URL: "https://example.com/file.pdf",
ExpiryTime: &now,
},
},
}
// Test GetURL
if url := pdfBlock.GetURL(); url != "https://example.com/file.pdf" {
t.Errorf("Expected URL to be 'https://example.com/file.pdf', got %s", url)
}
// Test GetExpiryTime
if expiry := pdfBlock.GetExpiryTime(); expiry != &now {
t.Errorf("Expected expiry time to be %v, got %v", now, expiry)
}
}
func TestFileBlockImplementsDownloadableFileBlock(t *testing.T) {
// Test setup
now := time.Now()
fileBlock := &FileBlock{
File: BlockFile{
File: &FileObject{
URL: "https://example.com/file.txt",
ExpiryTime: &now,
},
},
}
// Test GetURL
if url := fileBlock.GetURL(); url != "https://example.com/file.txt" {
t.Errorf("Expected URL to be 'https://example.com/file.txt', got %s", url)
}
// Test GetExpiryTime
if expiry := fileBlock.GetExpiryTime(); expiry != &now {
t.Errorf("Expected expiry time to be %v, got %v", now, expiry)
}
}
func TestImageBlockImplementsDownloadableFileBlock(t *testing.T) {
// Test setup
now := time.Now()
imageBlock := &ImageBlock{
Image: Image{
File: &FileObject{
URL: "https://example.com/image.jpg",
ExpiryTime: &now,
},
},
}
// Test GetURL
if url := imageBlock.GetURL(); url != "https://example.com/image.jpg" {
t.Errorf("Expected URL to be 'https://example.com/image.jpg', got %s", url)
}
// Test GetExpiryTime
if expiry := imageBlock.GetExpiryTime(); expiry != &now {
t.Errorf("Expected expiry time to be %v, got %v", now, expiry)
}
}
func TestExternalURLCases(t *testing.T) {
// Test External URLs for each block type
testCases := []struct {
name string
block DownloadableFileBlock
expected string
}{
{
name: "PDF with external URL",
block: &PdfBlock{
Pdf: Pdf{
External: &FileObject{
URL: "https://external.com/file.pdf",
},
},
},
expected: "https://external.com/file.pdf",
},
{
name: "File with external URL",
block: &FileBlock{
File: BlockFile{
External: &FileObject{
URL: "https://external.com/file.txt",
},
},
},
expected: "https://external.com/file.txt",
},
{
name: "Image with external URL",
block: &ImageBlock{
Image: Image{
External: &FileObject{
URL: "https://external.com/image.jpg",
},
},
},
expected: "https://external.com/image.jpg",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
if url := tc.block.GetURL(); url != tc.expected {
t.Errorf("Expected URL to be '%s', got '%s'", tc.expected, url)
}
})
}
}