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
use std::slice::Iter;
use crate::{comment::Comment, fragment::Fragment};
#[derive(Debug, PartialEq, Clone, Default)]
pub struct Comments {
comments: Vec<Comment>,
}
impl Comments {
#[must_use]
pub fn iter(&self) -> Iter<'_, Comment> {
self.comments.iter()
}
}
impl IntoIterator for Comments {
type IntoIter = std::vec::IntoIter<Comment>;
type Item = Comment;
fn into_iter(self) -> Self::IntoIter {
self.comments.into_iter()
}
}
impl From<Vec<Comment>> for Comments {
fn from(comments: Vec<Comment>) -> Self {
Self { comments }
}
}
impl From<Comments> for String {
fn from(comments: Comments) -> Self {
comments
.comments
.into_iter()
.map(Self::from)
.collect::<Vec<_>>()
.join("\n\n")
}
}
impl From<Vec<Fragment>> for Comments {
fn from(ast: Vec<Fragment>) -> Self {
ast.iter()
.filter_map(|values| {
if let Fragment::Comment(comment) = values {
Some(comment.clone())
} else {
None
}
})
.collect::<Vec<Comment>>()
.into()
}
}
#[cfg(test)]
mod tests {
use indoc::indoc;
use super::Comments;
use crate::{body::Body, comment::Comment, fragment::Fragment};
#[test]
fn implements_iterator() {
use crate::{Comment, Comments};
let trailers = Comments::from(vec![
Comment::from("# Comment 1"),
Comment::from("# Comment 2"),
Comment::from("# Comment 3"),
]);
let mut iterator = trailers.iter();
assert_eq!(iterator.next(), Some(&Comment::from("# Comment 1")));
assert_eq!(iterator.next(), Some(&Comment::from("# Comment 2")));
assert_eq!(iterator.next(), Some(&Comment::from("# Comment 3")));
assert_eq!(iterator.next(), None);
}
#[test]
fn it_can_give_me_it_as_a_string() {
let comments = Comments::from(vec![
Comment::from("# Message Body"),
Comment::from("# Another Message Body"),
]);
assert_eq!(
String::from(comments),
String::from(indoc!(
"
# Message Body
# Another Message Body"
))
);
}
#[test]
fn it_can_create_itself_from_an_ast() {
let comments = Comments::from(vec![
Fragment::Comment(Comment::from("# Message Body")),
Fragment::Body(Body::from("Some body content")),
Fragment::Comment(Comment::from("# Another Message Body")),
]);
assert_eq!(
comments,
Comments::from(vec![
Comment::from("# Message Body"),
Comment::from("# Another Message Body"),
])
);
}
}