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
use std::{
fmt::{self, Debug},
time::Duration,
};
use crate::http_client::DEFAULT_REQUEST_TIMEOUT;
#[derive(Copy, Clone)]
pub struct RequestConfig {
pub(crate) timeout: Duration,
pub(crate) retry_limit: Option<u64>,
pub(crate) retry_timeout: Option<Duration>,
pub(crate) force_auth: bool,
pub(crate) assert_identity: bool,
}
#[cfg(not(tarpaulin_include))]
impl Debug for RequestConfig {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut res = fmt.debug_struct("RequestConfig");
res.field("timeout", &self.timeout)
.field("retry_limit", &self.retry_limit)
.field("retry_timeout", &self.retry_timeout)
.finish()
}
}
impl Default for RequestConfig {
fn default() -> Self {
Self {
timeout: DEFAULT_REQUEST_TIMEOUT,
retry_limit: Default::default(),
retry_timeout: Default::default(),
force_auth: false,
assert_identity: false,
}
}
}
impl RequestConfig {
#[must_use]
pub fn new() -> Self {
Default::default()
}
#[must_use]
pub fn short_retry() -> Self {
Self::default().retry_limit(3)
}
#[must_use]
pub fn disable_retry(mut self) -> Self {
self.retry_limit = Some(0);
self
}
#[must_use]
pub fn retry_limit(mut self, retry_limit: u64) -> Self {
self.retry_limit = Some(retry_limit);
self
}
#[must_use]
pub fn timeout(mut self, timeout: Duration) -> Self {
self.timeout = timeout;
self
}
#[must_use]
pub fn retry_timeout(mut self, retry_timeout: Duration) -> Self {
self.retry_timeout = Some(retry_timeout);
self
}
#[must_use]
pub fn force_auth(mut self) -> Self {
self.force_auth = true;
self
}
}
#[cfg(test)]
mod tests {
use std::time::Duration;
use super::RequestConfig;
#[test]
fn smoketest() {
let cfg = RequestConfig::new()
.force_auth()
.retry_timeout(Duration::from_secs(32))
.retry_limit(4)
.timeout(Duration::from_secs(600));
assert!(cfg.force_auth);
assert_eq!(cfg.retry_limit, Some(4));
assert_eq!(cfg.retry_timeout, Some(Duration::from_secs(32)));
assert_eq!(cfg.timeout, Duration::from_secs(600));
}
#[test]
fn testing_retry_settings() {
let mut cfg = RequestConfig::new();
assert_eq!(cfg.retry_limit, None);
cfg = cfg.retry_limit(10);
assert_eq!(cfg.retry_limit, Some(10));
cfg = cfg.disable_retry();
assert_eq!(cfg.retry_limit, Some(0));
let cfg = RequestConfig::short_retry();
assert_eq!(cfg.retry_limit, Some(3));
}
}