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
use std::{
collections::{btree_map::IntoIter, BTreeMap, HashSet},
convert::TryFrom,
};
use thiserror::Error;
use crate::mit::lib::author::Author;
#[derive(Debug, Eq, PartialEq, Clone, Default)]
pub struct Authors {
pub authors: BTreeMap<String, Author>,
}
impl Authors {
#[must_use]
pub fn missing_initials<'a>(&'a self, authors_initials: Vec<&'a str>) -> Vec<&'a str> {
let configured: HashSet<_> = self
.authors
.keys()
.map(std::string::String::as_str)
.collect();
let from_cli: HashSet<_> = authors_initials.into_iter().collect();
from_cli
.difference(&configured)
.into_iter()
.copied()
.collect()
}
#[must_use]
pub fn new(authors: BTreeMap<String, Author>) -> Authors {
Authors { authors }
}
#[must_use]
pub fn get(&self, author_initials: &[&str]) -> Vec<&Author> {
author_initials
.iter()
.filter_map(|initial| self.authors.get(*initial))
.collect()
}
#[must_use]
pub fn merge(&self, authors: &Authors) -> Authors {
Authors {
authors: authors
.authors
.iter()
.fold(self.authors.clone(), |mut acc, (key, value)| {
acc.insert(key.clone(), value.clone());
acc
}),
}
}
#[must_use]
pub fn example() -> Authors {
let mut store = BTreeMap::new();
store.insert(
"ae".into(),
Author::new("Anyone Else", "anyone@example.com", None),
);
store.insert(
"se".into(),
Author::new("Someone Else", "someone@example.com", None),
);
store.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", Some("0A46826A")),
);
Authors::new(store)
}
}
impl IntoIterator for Authors {
type IntoIter = IntoIter<String, Author>;
type Item = (String, Author);
fn into_iter(self) -> Self::IntoIter {
self.authors.into_iter()
}
}
impl TryFrom<&str> for Authors {
type Error = ConfigParseError;
fn try_from(input: &str) -> Result<Self, Self::Error> {
serde_yaml::from_str(input)
.or_else(|yaml_error| {
toml::from_str(input)
.map_err(|toml_error| ConfigParseError::Parse(yaml_error, toml_error))
})
.map_err(ConfigParseError::from)
.map(Authors::new)
}
}
#[derive(Error, Debug)]
pub enum ConfigParseError {
#[error("failed to parse authors as toml {0} or as yaml {1}")]
Parse(serde_yaml::Error, toml::de::Error),
#[error("failed to serialise toml {0}")]
SerialiseYaml(#[from] toml::ser::Error),
}
impl TryFrom<Authors> for String {
type Error = ConfigParseError;
fn try_from(value: Authors) -> Result<Self, Self::Error> {
toml::to_string(&value.authors).map_err(ConfigParseError::from)
}
}
#[cfg(test)]
mod tests_authors {
#![allow(clippy::wildcard_imports)]
use std::convert::TryInto;
use indoc::indoc;
use crate::mit::lib::author::Author;
#[test]
fn is_is_iterable() {
let mut store = BTreeMap::new();
store.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", None),
);
let actual = Authors::new(store);
assert_eq!(
actual.into_iter().collect::<Vec<_>>(),
vec![(
"bt".to_string(),
Author::new("Billie Thompson", "billie@example.com", None,)
)]
);
}
#[test]
fn it_can_get_an_author_in_it() {
let mut store = BTreeMap::new();
store.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", None),
);
let actual = Authors::new(store);
assert_eq!(
actual.get(&["bt"]),
vec![&Author::new("Billie Thompson", "billie@example.com", None,)]
);
}
#[test]
fn i_can_get_multiple_authors_out_at_the_same_time() {
let mut store: BTreeMap<String, Author> = BTreeMap::new();
store.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", None),
);
store.insert(
"se".into(),
Author::new("Somebody Else", "somebody@example.com", None),
);
let actual = Authors::new(store);
assert_eq!(
actual.get(&["bt"]),
vec![&Author::new("Billie Thompson", "billie@example.com", None,)]
);
assert_eq!(
actual.get(&["se"]),
vec![&Author::new("Somebody Else", "somebody@example.com", None,)]
);
}
#[test]
fn there_is_an_example_constructor() {
let mut store = BTreeMap::new();
store.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", Some("0A46826A")),
);
store.insert(
"se".into(),
Author::new("Someone Else", "someone@example.com", None),
);
store.insert(
"ae".into(),
Author::new("Anyone Else", "anyone@example.com", None),
);
let expected = Authors::new(store);
assert_eq!(Authors::example(), expected,);
}
#[test]
fn merge_multiple_authors_together() {
let mut map1: BTreeMap<String, Author> = BTreeMap::new();
map1.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", None),
);
map1.insert(
"se".into(),
Author::new("Someone Else", "someone@example.com", None),
);
let input1: Authors = Authors::new(map1);
let mut map2: BTreeMap<String, Author> = BTreeMap::new();
map2.insert(
"bt".into(),
Author::new("Billie Thompson", "bt@example.com", None),
);
map2.insert(
"ae".into(),
Author::new("Anyone Else", "anyone@example.com", None),
);
let input2: Authors = Authors::new(map2);
let mut expected_map: BTreeMap<String, Author> = BTreeMap::new();
expected_map.insert(
"bt".into(),
Author::new("Billie Thompson", "bt@example.com", None),
);
expected_map.insert(
"se".into(),
Author::new("Someone Else", "someone@example.com", None),
);
expected_map.insert(
"ae".into(),
Author::new("Anyone Else", "anyone@example.com", None),
);
let expected: Authors = Authors::new(expected_map);
assert_eq!(expected, input1.merge(&input2));
}
#[test]
fn it_can_tell_me_if_initials_are_not_in() {
let mut store = BTreeMap::new();
store.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", None),
);
let actual = Authors::new(store);
assert_eq!(actual.missing_initials(vec!["bt", "an"]), vec!["an"]);
}
#[test]
fn must_be_valid_yaml() {
let actual: Result<_, _> = Authors::try_from("Hello I am invalid yaml : : :");
assert!(actual.is_err());
}
#[test]
fn it_can_parse_a_standard_toml_file() {
let actual = Authors::try_from(indoc!(
"
[bt]
name = \"Billie Thompson\"
email = \"billie@example.com\"
"
))
.expect("Failed to parse yaml");
let mut input: BTreeMap<String, Author> = BTreeMap::new();
input.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", None),
);
let expected = Authors::new(input);
assert_eq!(expected, actual);
}
#[test]
fn an_empty_file_is_a_default_authors() {
let actual = Authors::try_from("").expect("Failed to parse yaml");
let expected = Authors::default();
assert_eq!(expected, actual);
}
#[test]
fn it_can_parse_a_standard_yaml_file() {
let actual = Authors::try_from(indoc!(
"
---
bt:
name: Billie Thompson
email: billie@example.com
"
))
.expect("Failed to parse yaml");
let mut input: BTreeMap<String, Author> = BTreeMap::new();
input.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", None),
);
let expected = Authors::new(input);
assert_eq!(expected, actual);
}
#[test]
fn yaml_files_can_contain_signing_keys() {
let actual = Authors::try_from(indoc!(
"
---
bt:
name: Billie Thompson
email: billie@example.com
signingkey: 0A46826A
"
))
.expect("Failed to parse yaml");
let mut expected_authors: BTreeMap<String, Author> = BTreeMap::new();
expected_authors.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", Some("0A46826A")),
);
let expected = Authors::new(expected_authors);
assert_eq!(expected, actual);
}
#[test]
fn it_converts_to_standard_toml() {
let mut map: BTreeMap<String, Author> = BTreeMap::new();
map.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", None),
);
let actual: String = Authors::new(map).try_into().unwrap();
let expected = indoc!(
"
[bt]
name = \"Billie Thompson\"
email = \"billie@example.com\"
"
)
.to_string();
assert_eq!(expected, actual);
}
#[test]
fn it_includes_the_signing_key_if_set() {
let mut map: BTreeMap<String, Author> = BTreeMap::new();
map.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", Some("0A46826A")),
);
let actual: String = Authors::new(map).try_into().unwrap();
let expected = indoc!(
"
[bt]
name = \"Billie Thompson\"
email = \"billie@example.com\"
signingkey = \"0A46826A\"
"
)
.to_string();
assert_eq!(expected, actual);
}
use std::{collections::BTreeMap, convert::TryFrom};
use crate::{external::InMemory, mit::Authors};
#[test]
fn it_can_give_me_an_author() {
let mut strings: BTreeMap<String, String> = BTreeMap::new();
strings.insert("mit.author.config.zy.email".into(), "zy@example.com".into());
strings.insert("mit.author.config.zy.name".into(), "Z Y".into());
let vcs = InMemory::new(&mut strings);
let actual = Authors::try_from(&vcs).expect("Failed to read VCS config");
let expected_author = Author::new("Z Y", "zy@example.com", None);
let mut store = BTreeMap::new();
store.insert("zy".into(), expected_author);
let expected = Authors::new(store);
assert_eq!(
expected, actual,
"Expected the mit config to be {:?}, instead got {:?}",
expected, actual
);
}
#[test]
fn it_can_give_me_multiple_authors() {
let mut strings: BTreeMap<String, String> = BTreeMap::new();
strings.insert("mit.author.config.zy.email".into(), "zy@example.com".into());
strings.insert("mit.author.config.zy.name".into(), "Z Y".into());
strings.insert(
"mit.author.config.bt.email".into(),
"billie@example.com".into(),
);
strings.insert("mit.author.config.bt.name".into(), "Billie Thompson".into());
strings.insert("mit.author.config.bt.signingkey".into(), "ABC".into());
let vcs = InMemory::new(&mut strings);
let actual = Authors::try_from(&vcs).expect("Failed to read VCS config");
let mut store = BTreeMap::new();
store.insert("zy".into(), Author::new("Z Y", "zy@example.com", None));
store.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", Some("ABC")),
);
let expected = Authors::new(store);
assert_eq!(
expected, actual,
"Expected the mit config to be {:?}, instead got {:?}",
expected, actual
);
}
#[test]
fn broken_authors_are_skipped() {
let mut strings: BTreeMap<String, String> = BTreeMap::new();
strings.insert("mit.author.config.zy.name".into(), "Z Y".into());
strings.insert(
"mit.author.config.bt.email".into(),
"billie@example.com".into(),
);
strings.insert("mit.author.config.bt.name".into(), "Billie Thompson".into());
strings.insert("mit.author.config.bt.signingkey".into(), "ABC".into());
let vcs = InMemory::new(&mut strings);
let actual = Authors::try_from(&vcs).expect("Failed to read VCS config");
let mut store = BTreeMap::new();
store.insert(
"bt".into(),
Author::new("Billie Thompson", "billie@example.com", Some("ABC")),
);
let expected = Authors::new(store);
assert_eq!(
expected, actual,
"Expected the mit config to be {:?}, instead got {:?}",
expected, actual
);
}
}