-
Notifications
You must be signed in to change notification settings - Fork 9
/
notion_test.go
95 lines (75 loc) · 1.94 KB
/
notion_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
package main
import (
"fmt"
"os"
"testing"
)
func TestQueryNotionDB(t *testing.T) {
token := os.Getenv("NOTION_INTEGRATION_TOKEN")
pageid := os.Getenv("NOTION_DB_PAGEID")
// If not set token and pageid , skip this test
if token == "" || pageid == "" {
t.Skip("NOTION_INTEGRATION_TOKEN or NOTION_DB_PAGEID not set")
}
db := &NotionDB{
DatabaseID: pageid,
Token: token,
UID: "uid",
}
entries, err := db.QueryDatabaseByName("name")
if err != nil {
t.Fatal(err)
}
fmt.Printf("%+v\n", entries)
entries, err = db.QueryDatabaseByEmail("email@email.com")
if err != nil {
t.Fatal(err)
}
fmt.Printf("%+v\n", entries)
}
func TestAddNotionDB(t *testing.T) {
token := os.Getenv("NOTION_INTEGRATION_TOKEN")
pageid := os.Getenv("NOTION_DB_PAGEID")
// If not set token and pageid , skip this test
if token == "" || pageid == "" {
t.Skip("NOTION_INTEGRATION_TOKEN or NOTION_DB_PAGEID not set")
}
db := &NotionDB{
DatabaseID: pageid,
Token: token,
UID: "uid",
}
err := db.AddPageToDatabase(Person{Name: "test", Title: "test", Address: "test", Email: "test", Phone: "test", Company: "test"})
if err != nil {
t.Fatal(err)
}
}
func TestQueryContainNotionDB(t *testing.T) {
token := os.Getenv("NOTION_INTEGRATION_TOKEN")
pageid := os.Getenv("NOTION_DB_PAGEID")
// If not set token and pageid , skip this test
if token == "" || pageid == "" {
t.Skip("NOTION_INTEGRATION_TOKEN or NOTION_DB_PAGEID not set")
}
db := &NotionDB{
DatabaseID: pageid,
Token: token,
UID: "uid",
}
entries, err := db.QueryDatabaseContainsByName("name")
if err != nil {
t.Fatal(err)
}
fmt.Printf("%+v\n", entries)
entries, err = db.QueryDatabaseContainsByEmail("email")
if err != nil {
t.Fatal(err)
}
fmt.Printf("%+v\n", entries)
//test contains all columns (name, title, email)
entries, err = db.QueryDatabaseContains("keyword")
if err != nil {
t.Fatal(err)
}
fmt.Printf("%+v\n", entries)
}