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
use GooseResponse;
use *;
use Regex;
/// Define one or more items to be validated in a web page response.
///
/// This structure is passed to [`validate_and_load_static_assets`].
///
/// # Example
/// ```rust
/// use goose_eggs::Validate;
///
/// fn example() {
/// let _validate = Validate {
/// // Don't do any extra validation of the status code.
/// status: None,
/// // Be sure the expected title is on the page.
/// title: Some("my page"),
/// // Be sure both of the following strings are found on the page.
/// texts: vec!["foo", r#"<a href="bar">"#],
/// };
/// }
/// Returns a [`bool`] indicating whether or not the title (case insensitive) is
/// found within the html.
///
/// A valid title starts with `<title>foo` where `foo` is the expected title text.
/// Returns [`true`] if the expected title is found, otherwise returns [`false`].
///
/// This function is case insensitive, if a title of "foo" is specified it will
/// match "foo" or "Foo" or "FOO".
///
/// It is generally preferred to use [`validate_and_load_static_assets`] which uses
/// this function.
///
/// # Example
/// ```rust
/// use goose::prelude::*;
/// use goose_eggs::valid_title;
///
/// task!(validate_title).set_on_start();
///
/// async fn validate_title(user: &GooseUser) -> GooseTaskResult {
/// let mut goose = user.get("/").await?;
///
/// match goose.response {
/// Ok(response) => {
/// // Copy the headers so we have them for logging if there are errors.
/// let headers = &response.headers().clone();
/// match response.text().await {
/// Ok(html) => {
/// let title = "example";
/// if !valid_title(&html, title) {
/// return user.set_failure(
/// &format!("{}: title not found: {}", goose.request.url, title),
/// &mut goose.request,
/// Some(&headers),
/// Some(&html),
/// );
/// }
/// }
/// Err(e) => {
/// return user.set_failure(
/// &format!("{}: failed to parse page: {}", goose.request.url, e),
/// &mut goose.request,
/// Some(&headers),
/// None,
/// );
/// }
/// }
/// }
/// Err(e) => {
/// return user.set_failure(
/// &format!("{}: no response from server: {}", goose.request.url, e),
/// &mut goose.request,
/// None,
/// None,
/// );
/// }
/// }
///
/// Ok(())
/// }
/// ```
/// Returns a [`bool`] indicating whether or not an arbitrary str (case sensitive) is found
/// within the html.
///
/// Returns [`true`] if the expected str is found, otherwise returns [`false`].
///
/// This function is case sensitive, if the text "foo" is specified it will only match "foo",
/// not "Foo" or "FOO".
///
/// It is generally preferred to use [`validate_and_load_static_assets`] which uses
/// this function.
///
/// # Example
/// ```rust
/// use goose::prelude::*;
/// use goose_eggs::valid_text;
///
/// task!(validate_text).set_on_start();
///
/// async fn validate_text(user: &GooseUser) -> GooseTaskResult {
/// let mut goose = user.get("/").await?;
///
/// match goose.response {
/// Ok(response) => {
/// // Copy the headers so we have them for logging if there are errors.
/// let headers = &response.headers().clone();
/// match response.text().await {
/// Ok(html) => {
/// let text = r#"<code class="language-console">$ cargo new hello_world --bin"#;
/// if !valid_text(&html, text) {
/// return user.set_failure(
/// &format!("{}: text not found: {}", goose.request.url, text),
/// &mut goose.request,
/// Some(&headers),
/// Some(&html),
/// );
/// }
/// }
/// Err(e) => {
/// return user.set_failure(
/// &format!("{}: failed to parse page: {}", goose.request.url, e),
/// &mut goose.request,
/// Some(&headers),
/// None,
/// );
/// }
/// }
/// }
/// Err(e) => {
/// return user.set_failure(
/// &format!("{}: no response from server: {}", goose.request.url, e),
/// &mut goose.request,
/// None,
/// None,
/// );
/// }
/// }
///
/// Ok(())
/// }
/// ```
/// Extract and load all local static elements from the the provided html.
///
/// It is generally preferred to use [`validate_and_load_static_assets`] which uses
/// this function.
///
/// # Example
/// ```rust
/// use goose::prelude::*;
/// use goose_eggs::load_static_elements;
///
/// task!(load_page_and_static_elements).set_on_start();
///
/// async fn load_page_and_static_elements(user: &GooseUser) -> GooseTaskResult {
/// let mut goose = user.get("/").await?;
///
/// match goose.response {
/// Ok(response) => {
/// // Copy the headers so we have them for logging if there are errors.
/// let headers = &response.headers().clone();
/// match response.text().await {
/// Ok(html) => {
/// // Load all static elements on page.
/// load_static_elements(user, &html);
/// }
/// Err(e) => {
/// return user.set_failure(
/// &format!("{}: failed to parse page: {}", goose.request.url, e),
/// &mut goose.request,
/// Some(&headers),
/// None,
/// );
/// }
/// }
/// }
/// Err(e) => {
/// return user.set_failure(
/// &format!("{}: no response from server: {}", goose.request.url, e),
/// &mut goose.request,
/// None,
/// None,
/// );
/// }
/// }
///
/// Ok(())
/// }
/// ```
pub async
/// Validate the HTML response then extract and load all static elements on the page.
///
/// What is validated is defined with the [`Validate`] structure.
///
/// # Example
/// ```rust
/// use goose::prelude::*;
/// use goose_eggs::{validate_and_load_static_assets, Validate};
///
/// task!(load_page).set_on_start();
///
/// async fn load_page(user: &GooseUser) -> GooseTaskResult {
/// let mut goose = user.get("/").await?;
/// validate_and_load_static_assets(
/// user,
/// goose,
/// Some(&Validate {
/// // Don't do any extra validation of the status code.
/// status: None,
/// // Be sure the expected title is on the page.
/// title: Some("my page"),
/// // Be sure both of the following strings are found on the page.
/// texts: vec!["foo", r#"<a href="bar">"#],
/// }),
/// ).await?;
///
/// Ok(())
/// }
/// ```
pub async