-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntests.jl
41 lines (38 loc) · 1.16 KB
/
runtests.jl
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
using Test
include("utils.jl")
@testset "dbread" begin
secret = ENV["NOTIONDATABASE"]
# read the test database
ks, vs = dbread("d07aa4ffee0c49db996cb25cfea6a56b"; download_files=true, overwrite=false, secret)
@show ks
@show vs
d1 = Dict(zip(ks, vs[1]))
d2 = Dict(zip(ks, vs[2]))
@test d1 == Dict("Files & media" => String[],
"Date" => "",
"Checkbox" => false,
"Text" => "",
"Person" => "",
"Tags" => String[],
"Phone" => "",
"Status" => "",
"Email" => "",
"URL" => "",
"Number" => nothing,
"Select" => "",
"Name" => "Empty")
@test isfile(d2["Files & media"][1])
@test d2 == Dict("Files & media" => String["_assets/databases/d07aa4ffee0c49db996cb25cfea6a56b/Jinguo Liu.png"],
"Date" => "2022-09-27",
"Checkbox" => true,
"Text" => "asdf",
"Person" => "",
"Tags" => String["test", "haha"],
"Phone" => "1234566",
"Status" => "In progress",
"Email" => "[email protected]",
"URL" => "www.google.com",
"Number" => 2,
"Select" => "sf",
"Name" => "Jinguo")
end