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
use derive_builder::Builder;
use http::Method;
use std::borrow::Cow;
use crate::api::issues::AssigneeEssentials;
use crate::api::projects::ProjectEssentials;
use crate::api::{Endpoint, ReturnsJsonResponse};
use serde::Serialize;
#[derive(Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub struct IssueCategoryEssentials {
pub id: u64,
pub name: String,
}
#[derive(Debug, PartialEq, Eq, Serialize, serde::Deserialize)]
pub struct IssueCategory {
pub id: u64,
pub name: String,
pub project: ProjectEssentials,
#[serde(skip_serializing_if = "Option::is_none")]
pub assigned_to: Option<AssigneeEssentials>,
}
#[derive(Debug, Builder)]
#[builder(setter(strip_option))]
pub struct ListIssueCategories<'a> {
#[builder(setter(into))]
project_id_or_name: Cow<'a, str>,
}
impl<'a> ReturnsJsonResponse for ListIssueCategories<'a> {}
impl<'a> ListIssueCategories<'a> {
pub fn builder() -> ListIssueCategoriesBuilder<'a> {
ListIssueCategoriesBuilder::default()
}
}
impl<'a> Endpoint for ListIssueCategories<'a> {
fn method(&self) -> Method {
Method::GET
}
fn endpoint(&self) -> Cow<'static, str> {
format!("projects/{}/issue_categories.json", self.project_id_or_name).into()
}
}
#[derive(Debug, Builder)]
#[builder(setter(strip_option))]
pub struct GetIssueCategory {
id: u64,
}
impl ReturnsJsonResponse for GetIssueCategory {}
impl<'a> GetIssueCategory {
pub fn builder() -> GetIssueCategoryBuilder {
GetIssueCategoryBuilder::default()
}
}
impl<'a> Endpoint for GetIssueCategory {
fn method(&self) -> Method {
Method::GET
}
fn endpoint(&self) -> Cow<'static, str> {
format!("issue_categories/{}.json", &self.id).into()
}
}
#[serde_with::skip_serializing_none]
#[derive(Debug, Clone, Builder, Serialize)]
#[builder(setter(strip_option))]
pub struct CreateIssueCategory<'a> {
#[serde(skip_serializing)]
#[builder(setter(into))]
project_id_or_name: Cow<'a, str>,
#[builder(setter(into))]
name: Cow<'a, str>,
#[builder(default)]
assigned_to_id: Option<u64>,
}
impl<'a> ReturnsJsonResponse for CreateIssueCategory<'a> {}
impl<'a> CreateIssueCategory<'a> {
pub fn builder() -> CreateIssueCategoryBuilder<'a> {
CreateIssueCategoryBuilder::default()
}
}
impl<'a> Endpoint for CreateIssueCategory<'a> {
fn method(&self) -> Method {
Method::POST
}
fn endpoint(&self) -> Cow<'static, str> {
format!("projects/{}/issue_categories.json", self.project_id_or_name).into()
}
fn body(&self) -> Result<Option<(&'static str, Vec<u8>)>, crate::Error> {
Ok(Some((
"application/json",
serde_json::to_vec(&IssueCategoryWrapper::<CreateIssueCategory> {
issue_category: (*self).to_owned(),
})?,
)))
}
}
#[serde_with::skip_serializing_none]
#[derive(Debug, Clone, Builder, Serialize)]
#[builder(setter(strip_option))]
pub struct UpdateIssueCategory<'a> {
#[serde(skip_serializing)]
id: u64,
#[builder(setter(into), default)]
name: Option<Cow<'a, str>>,
#[builder(default)]
assigned_to_id: Option<u64>,
}
impl<'a> UpdateIssueCategory<'a> {
pub fn builder() -> UpdateIssueCategoryBuilder<'a> {
UpdateIssueCategoryBuilder::default()
}
}
impl<'a> Endpoint for UpdateIssueCategory<'a> {
fn method(&self) -> Method {
Method::PUT
}
fn endpoint(&self) -> Cow<'static, str> {
format!("issue_categories/{}.json", self.id).into()
}
fn body(&self) -> Result<Option<(&'static str, Vec<u8>)>, crate::Error> {
Ok(Some((
"application/json",
serde_json::to_vec(&IssueCategoryWrapper::<UpdateIssueCategory> {
issue_category: (*self).to_owned(),
})?,
)))
}
}
#[derive(Debug, Builder)]
#[builder(setter(strip_option))]
pub struct DeleteIssueCategory {
id: u64,
}
impl DeleteIssueCategory {
pub fn builder() -> DeleteIssueCategoryBuilder {
DeleteIssueCategoryBuilder::default()
}
}
impl<'a> Endpoint for DeleteIssueCategory {
fn method(&self) -> Method {
Method::DELETE
}
fn endpoint(&self) -> Cow<'static, str> {
format!("issue_categories/{}.json", &self.id).into()
}
}
#[derive(Debug, PartialEq, Eq, Serialize, serde::Deserialize)]
pub struct IssueCategoriesWrapper<T> {
pub issue_categories: Vec<T>,
}
#[derive(Debug, PartialEq, Eq, Serialize, serde::Deserialize)]
pub struct IssueCategoryWrapper<T> {
pub issue_category: T,
}
#[cfg(test)]
mod test {
use super::*;
use crate::api::test_helpers::with_project;
use parking_lot::{const_rwlock, RwLock};
use pretty_assertions::assert_eq;
use std::error::Error;
use tracing_test::traced_test;
static ISSUE_CATEGORY_LOCK: RwLock<()> = const_rwlock(());
#[traced_test]
#[test]
fn test_list_issue_categories_no_pagination() -> Result<(), Box<dyn Error>> {
let _r_issue_category = ISSUE_CATEGORY_LOCK.read();
dotenv::dotenv()?;
let redmine = crate::api::Redmine::from_env()?;
let endpoint = ListIssueCategories::builder()
.project_id_or_name("336")
.build()?;
redmine.json_response_body::<_, IssueCategoriesWrapper<IssueCategory>>(&endpoint)?;
Ok(())
}
#[traced_test]
#[test]
fn test_get_issue_category() -> Result<(), Box<dyn Error>> {
let _r_issue_category = ISSUE_CATEGORY_LOCK.read();
dotenv::dotenv()?;
let redmine = crate::api::Redmine::from_env()?;
let endpoint = GetIssueCategory::builder().id(10).build()?;
redmine.json_response_body::<_, IssueCategoryWrapper<IssueCategory>>(&endpoint)?;
Ok(())
}
#[function_name::named]
#[traced_test]
#[test]
fn test_create_issue_category() -> Result<(), Box<dyn Error>> {
let _w_issue_category = ISSUE_CATEGORY_LOCK.write();
let name = format!("unittest_{}", function_name!());
with_project(&name, |redmine, _id, name| {
let create_endpoint = super::CreateIssueCategory::builder()
.project_id_or_name(name)
.name("Unittest Issue Category")
.build()?;
redmine.ignore_response_body::<_>(&create_endpoint)?;
Ok(())
})?;
Ok(())
}
#[function_name::named]
#[traced_test]
#[test]
fn test_update_issue_category() -> Result<(), Box<dyn Error>> {
let _w_issue_category = ISSUE_CATEGORY_LOCK.write();
let name = format!("unittest_{}", function_name!());
with_project(&name, |redmine, _id, name| {
let create_endpoint = super::CreateIssueCategory::builder()
.project_id_or_name(name)
.name("Unittest Issue Category")
.build()?;
let IssueCategoryWrapper { issue_category }: IssueCategoryWrapper<IssueCategory> =
redmine.json_response_body::<_, _>(&create_endpoint)?;
let id = issue_category.id;
let update_endpoint = super::UpdateIssueCategory::builder()
.id(id)
.name("Renamed Unit-Test name")
.build()?;
redmine.ignore_response_body::<_>(&update_endpoint)?;
Ok(())
})?;
Ok(())
}
#[function_name::named]
#[traced_test]
#[test]
fn test_delete_issue_category() -> Result<(), Box<dyn Error>> {
let _w_issue_category = ISSUE_CATEGORY_LOCK.write();
let name = format!("unittest_{}", function_name!());
with_project(&name, |redmine, _id, name| {
let create_endpoint = super::CreateIssueCategory::builder()
.project_id_or_name(name)
.name("Unittest Issue Category")
.build()?;
let IssueCategoryWrapper { issue_category }: IssueCategoryWrapper<IssueCategory> =
redmine.json_response_body::<_, _>(&create_endpoint)?;
let id = issue_category.id;
let delete_endpoint = super::DeleteIssueCategory::builder().id(id).build()?;
redmine.ignore_response_body::<_>(&delete_endpoint)?;
Ok(())
})?;
Ok(())
}
#[traced_test]
#[test]
fn test_completeness_issue_category_type() -> Result<(), Box<dyn Error>> {
let _r_issue_category = ISSUE_CATEGORY_LOCK.read();
dotenv::dotenv()?;
let redmine = crate::api::Redmine::from_env()?;
let endpoint = ListIssueCategories::builder()
.project_id_or_name("336")
.build()?;
let IssueCategoriesWrapper {
issue_categories: values,
} = redmine
.json_response_body::<_, IssueCategoriesWrapper<serde_json::Value>>(&endpoint)?;
for value in values {
let o: IssueCategory = serde_json::from_value(value.clone())?;
let reserialized = serde_json::to_value(o)?;
assert_eq!(value, reserialized);
}
Ok(())
}
}