-
Notifications
You must be signed in to change notification settings - Fork 31
/
config_test.go
165 lines (152 loc) · 3.43 KB
/
config_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package main
import (
"os"
"path"
"testing"
"github.com/stretchr/testify/require"
)
// test that `parseConfig()` can successfully load YAML config
func TestLoadConfig(t *testing.T) {
temp := t.TempDir()
parseConfig([]byte(`
port: 9129
cache_dir: ` + temp + `
purge_files_after: 2592000 # 3600 * 24 * 30days
download_timeout: 200 # 200 seconds
repos:
archlinux:
urls:
- http://mirror.lty.me/archlinux
- http://mirrors.kernel.org/archlinux
quarry:
url: http://pkgbuild.com/~anatolik/quarry/x86_64
sublime:
url: https://download.sublimetext.com/arch/stable/x86_64
`))
}
// test with prefetch set
func TestLoadConfigWithPrefetch(t *testing.T) {
got := parseConfig([]byte(`
cache_dir: /tmp
purge_files_after: 2592000 # 3600 * 24 * 30days
prefetch:
cron: 0 0 3 * * * *
ttl_unaccessed_in_days: 5
download_timeout: 200
port: 9139
repos:
archlinux:
url: http://mirrors.kernel.org/archlinux
`))
want := &Config{
CacheDir: `/tmp`,
Port: 9139,
Repos: map[string]*Repo{
"archlinux": {
URL: "http://mirrors.kernel.org/archlinux",
},
},
PurgeFilesAfter: 2592000,
DownloadTimeout: 200,
Prefetch: &RefreshPeriod{Cron: "0 0 3 * * * *", TTLUnaccessed: 5, TTLUnupdated: 200},
}
require.Equal(t, want, got)
}
// test that `purgeFilesAfter` is being read correctly
func TestPurgeFilesAfter(t *testing.T) {
got := parseConfig([]byte(`
cache_dir: /tmp
purge_files_after: 2592000 # 3600 * 24 * 30days
repos:
archlinux:
url: http://mirrors.kernel.org/archlinux
`))
want := &Config{
CacheDir: `/tmp`,
Port: 9129,
Repos: map[string]*Repo{
"archlinux": {
URL: "http://mirrors.kernel.org/archlinux",
},
},
PurgeFilesAfter: 2592000,
DownloadTimeout: 0,
Prefetch: nil,
}
require.Equal(t, want, got)
}
// test that config works without `purgeFilesAfter`
func TestWithoutPurgeFilesAfter(t *testing.T) {
got := parseConfig([]byte(`
cache_dir: /tmp
repos:
archlinux:
url: http://mirrors.kernel.org/archlinux
`))
want := &Config{
CacheDir: `/tmp`,
Port: 9129,
Repos: map[string]*Repo{
"archlinux": {
URL: "http://mirrors.kernel.org/archlinux",
},
},
PurgeFilesAfter: 0,
DownloadTimeout: 0,
Prefetch: nil,
}
require.Equal(t, want, got)
}
func TestLoadConfigWithMirrorlist(t *testing.T) {
temp := t.TempDir()
tmpfile := path.Join(temp, "tmpMirrorFile")
f, err := os.Create(tmpfile)
require.NoError(t, err)
f.Close()
got := parseConfig([]byte(`
cache_dir: ` + temp + `
purge_files_after: 2592000 # 3600 * 24 * 30days
prefetch:
cron: 0 0 3 * * * *
ttl_unaccessed_in_days: 5
download_timeout: 200
port: 9139
repos:
archlinux:
mirrorlist: ` + tmpfile + `
`))
want := &Config{
CacheDir: temp,
Port: 9139,
Repos: map[string]*Repo{
"archlinux": {
Mirrorlist: tmpfile,
},
},
PurgeFilesAfter: 2592000,
DownloadTimeout: 200,
Prefetch: &RefreshPeriod{Cron: "0 0 3 * * * *", TTLUnaccessed: 5, TTLUnupdated: 200},
}
require.Equal(t, want, got)
}
func TestLoadConfigWithMirrorlistTimestamps(t *testing.T) {
got := parseConfig([]byte(`
cache_dir: /tmp
repos:
archlinux:
url: http://mirrors.kernel.org/archlinux
# these fields *shouldn't* be unmarshalled
lastmirrorlistcheck: 2
lastmodificationtime: 2
`))
want := &Config{
CacheDir: "/tmp",
Port: DefaultPort,
Repos: map[string]*Repo{
"archlinux": {
URL: "http://mirrors.kernel.org/archlinux",
},
},
}
require.Equal(t, want, got)
}