-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.rs
459 lines (411 loc) · 14.3 KB
/
config.rs
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
use std::fs::File;
use std::io::BufReader;
use std::io::Read;
use serde::Deserialize;
use serde::Serialize;
use super::paths::*;
pub fn from_reader(reader: &mut dyn Read) -> Result<Vec<Payload>, Box<dyn std::error::Error>> {
Ok(serde_yaml::from_reader(reader)?)
}
pub fn get_payloads() -> Result<Vec<Payload>, Box<dyn std::error::Error>> {
let config_path = get_config_path()?;
let file = File::open(config_path)?;
let mut reader = BufReader::new(file);
from_reader(&mut reader)
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct Repo {
pub repo: String,
pub provider: Option<String>,
pub from_release: Option<bool>,
pub ver: Option<String>,
pub binary_pattern: Option<String>,
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum Resource {
Location(String),
Repo(Repo),
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum AdaptiveResource {
Standard(Resource),
OSSpecific(SupportedOSSpecificResource),
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct SupportedOSSpecificResource {
pub linux: Option<OSSpecificResource>,
pub macos: Option<OSSpecificResource>,
pub windows: Option<OSSpecificResource>,
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum OSSpecificResource {
Standard(Resource),
ArchSpecific(SupportedArchSpecificResource),
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct SupportedArchSpecificResource {
pub x86_64: Option<Resource>,
pub aarch64: Option<Resource>,
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct SupportedOSSpecificCommand {
pub linux: Option<String>,
pub macos: Option<String>,
pub windows: Option<String>,
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum OSSpecificCommand {
Generic(String),
OSSpecific(SupportedOSSpecificCommand),
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct SupportedShellSpecificCommand {
pub sh: Option<OSSpecificCommand>,
pub zsh: Option<OSSpecificCommand>,
pub bash: Option<OSSpecificCommand>,
pub fish: Option<OSSpecificCommand>,
pub powershell: Option<OSSpecificCommand>,
pub wincmd: Option<OSSpecificCommand>,
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ShellSpecificCommand {
Generic(String),
ShellSpecific(SupportedShellSpecificCommand),
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum Executable {
Run(String),
Command {
run: String,
alias: Option<String>,
use_symlink: Option<bool>,
},
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct Menu {
pub menu_name: String,
pub name: Option<String>,
pub run: Option<String>,
pub icon: Option<String>,
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum SourceTarget {
Single(String),
Multiple(Vec<String>),
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct SupportedShellSpecificSourceTarget {
pub sh: Option<SourceTarget>,
pub zsh: Option<SourceTarget>,
pub bash: Option<SourceTarget>,
pub fish: Option<SourceTarget>,
pub powershell: Option<SourceTarget>,
pub wincmd: Option<SourceTarget>,
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ShellSpecificSourceTarget {
Generic(SourceTarget),
ShellSpecific(SupportedShellSpecificSourceTarget),
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct SupportedShellSpecificEvaluatable {
pub sh: Option<String>,
pub zsh: Option<String>,
pub bash: Option<String>,
pub fish: Option<String>,
pub powershell: Option<String>,
pub wincmd: Option<String>,
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ShellSpecificEvaluatable {
Generic(String),
ShellSpecific(SupportedShellSpecificEvaluatable),
}
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct Payload {
// The `string_or_struct` function delegates deserialization to a type's
// `FromStr` impl if given a string, and to the type's `Deserialize` impl if
// given a struct. The function is generic over the field type T (here T is
// `Build`) so it can be reused for any field that implements both `FromStr`
// and `Deserialize`.
pub id: Option<String>,
pub init: Option<ShellSpecificCommand>,
pub resource: AdaptiveResource,
pub extract: Option<String>, // path to the file to be extracted
pub install: Option<ShellSpecificCommand>,
pub update: Option<ShellSpecificCommand>,
pub src: Option<ShellSpecificSourceTarget>,
pub load: Option<ShellSpecificEvaluatable>,
pub exec: Option<Executable>,
pub menu: Option<Menu>,
}
#[cfg(test)]
mod parse_tests {
use super::*;
pub fn parse(config: &str) -> Result<Vec<Payload>, Box<dyn std::error::Error>> {
Ok(serde_yaml::from_str(config)?)
}
#[test]
fn it_should_parse_minimum() {
let config = r#"
- resource: https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US
exec: "**/firefox"
"#;
let actual: Vec<Payload> = parse(config).unwrap();
let expected = vec![
Payload {
id: None,
init: None,
resource: AdaptiveResource::Standard(Resource::Location("https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US".to_string())),
install: None,
update: None,
src: None,
extract: None,
load: None,
exec: Some( Executable::Run("**/firefox".to_string())),
menu: None
}
];
assert_eq!(actual, expected)
}
#[test]
fn it_should_parse_menu() {
let config = r#"
- id: ff-dev
resource: https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US
exec: "**/firefox"
install:
sh:
macos: "./GitAhead*.sh --include-subdir"
menu:
name: firefox
run: "env GDK_BACKEND=wayland $(readlink -f firefox/firefox)"
icon: firefox
menu_name: Firefox
"#;
let actual: Vec<Payload> = parse(config).unwrap();
let expected = vec![
Payload {
id: Some("ff-dev".to_string()),
init: None,
resource: AdaptiveResource::Standard(Resource::Location("https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US".to_string())),
install: Some(ShellSpecificCommand::ShellSpecific(SupportedShellSpecificCommand{
sh:Some( OSSpecificCommand::OSSpecific( SupportedOSSpecificCommand{
macos: Some("./GitAhead*.sh --include-subdir".to_string()),
linux: None, windows: None}
)),
zsh: None,
bash: None,
fish: None,
powershell: None,
wincmd: None
}),
),
update: None,
src: None,
extract: None,
load: None,
exec: Some(Executable::Run("**/firefox".to_string())),
menu: Some(Menu {
menu_name: "Firefox".to_string(),
name: Some("firefox".to_string()),
run: Some("env GDK_BACKEND=wayland $(readlink -f firefox/firefox)".to_string()),
icon: Some("firefox".to_string())
})
}
];
assert_eq!(actual, expected)
}
#[test]
fn it_should_parse_exec() {
// string value cannot start with '*', need to have them in a string
let config = r#"
- id: gitahead
resource:
repo: gitahead/gitahead
install:
sh:
macos: './GitAhead*.sh --include-subdir'
exec:
run: '**/GitAhead'
alias: gitahead
"#;
let actual: Vec<Payload> = parse(config).unwrap();
let expected = vec![Payload {
id: Some("gitahead".to_string()),
init: None,
resource: AdaptiveResource::Standard(Resource::Repo(Repo {
repo: "gitahead/gitahead".to_string(),
provider: None,
ver: None,
from_release: None,
binary_pattern: None,
})),
install: Some(ShellSpecificCommand::ShellSpecific(
SupportedShellSpecificCommand {
sh: Some(OSSpecificCommand::OSSpecific(SupportedOSSpecificCommand {
macos: Some("./GitAhead*.sh --include-subdir".to_string()),
linux: None,
windows: None,
})),
zsh: None,
bash: None,
fish: None,
powershell: None,
wincmd: None,
},
)),
update: None,
src: None,
extract: None,
load: None,
exec: Some(Executable::Command {
run: "**/GitAhead".to_string(),
alias: Some("gitahead".to_string()),
use_symlink: None,
}),
menu: None,
}];
assert_eq!(actual, expected)
}
#[test]
fn it_should_parse_repo_release() {
let config = r#"
- id: neovim
resource:
repo: neovim/neovim
binary_pattern: "*.tar.gz"
extract: "*.tar.*"
exec: "**/bin/nvim"
"#;
let actual: Vec<Payload> = parse(config).unwrap();
let expected = "*.tar.gz";
let actual_resource = &actual.first().unwrap().resource;
if let AdaptiveResource::Standard(res) = actual_resource {
if let Resource::Repo(rel) = res {
return assert_eq!(rel.binary_pattern.as_ref().unwrap(), expected);
}
}
panic!("No binary_pattern")
}
#[test]
fn it_should_parse_extract() {
let config = r#"
- id: ff-dev
resource: https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US
extract: "*.tar.gz"
exec: "**/firefox"
install:
sh: "./GitAhead*.sh --include-subdir"
menu:
name: firefox
run: "env GDK_BACKEND=wayland $(readlink -f firefox/firefox)"
icon: firefox
menu_name: Firefox
"#;
let actual: Vec<Payload> = parse(config).unwrap();
let expected = "*.tar.gz";
assert_eq!(actual.first().unwrap().extract.as_ref().unwrap(), expected)
}
#[test]
fn it_should_parse_arch() {
let config = r#"
- id: minikube
resource:
macos:
aarch64: https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-arm64
linux: https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
install:
sh: 'chmod +x ./minikube; ./minikube completion zsh > zsh_completion.zsh'
src: zsh_completion.zsh
exec: minikube
"#;
let actual: Vec<Payload> = parse(config).unwrap();
let actual_resource = &actual.first().unwrap().resource;
let expected =
"https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-arm64";
if let AdaptiveResource::OSSpecific(os_specific) = actual_resource {
if let Some(macos_os_specific_resource) = &os_specific.macos {
if let OSSpecificResource::ArchSpecific(arch_specific_resource) =
macos_os_specific_resource
{
if let Some(aarch64_arch_specific_resource) = &arch_specific_resource.aarch64 {
if let Resource::Location(location) = aarch64_arch_specific_resource {
assert_eq!(location, expected)
} else {
panic!("No location")
}
}
}
}
}
}
}
#[cfg(test)]
mod from_reader_tests {
use super::*;
use std::io::BufReader;
#[test]
fn it_should_parse_from_reader() {
// string value cannot start with '*', need to have them in a string
let config = r#"
- id: gitahead
resource:
repo: gitahead/gitahead
install:
sh:
macos: './GitAhead*.sh --include-subdir'
exec:
run: '**/GitAhead'
alias: gitahead
"#;
let streader = config.as_bytes();
let mut bufreader = BufReader::new(streader);
let actual: Vec<Payload> = from_reader(&mut bufreader).unwrap();
let expected = vec![Payload {
id: Some("gitahead".to_string()),
init: None,
resource: AdaptiveResource::Standard(Resource::Repo(Repo {
repo: "gitahead/gitahead".to_string(),
provider: None,
ver: None,
from_release: None,
binary_pattern: None,
})),
install: Some(ShellSpecificCommand::ShellSpecific(
SupportedShellSpecificCommand {
sh: Some(OSSpecificCommand::OSSpecific(SupportedOSSpecificCommand {
macos: Some("./GitAhead*.sh --include-subdir".to_string()),
linux: None,
windows: None,
})),
zsh: None,
bash: None,
fish: None,
powershell: None,
wincmd: None,
},
)),
update: None,
src: None,
extract: None,
load: None,
exec: Some(Executable::Command {
run: "**/GitAhead".to_string(),
alias: Some("gitahead".to_string()),
use_symlink: None,
}),
menu: None,
}];
assert_eq!(actual, expected)
}
}