1
/*
2
 * Hurl (https://hurl.dev)
3
 * Copyright (C) 2026 Orange
4
 *
5
 * Licensed under the Apache License, Version 2.0 (the "License");
6
 * you may not use this file except in compliance with the License.
7
 * You may obtain a copy of the License at
8
 *
9
 *          http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 *
17
 */
18
use base64::Engine;
19
use base64::engine::general_purpose;
20
use hurl_core::ast::{
21
    Assert, Base64, Body, BooleanOption, Bytes, Capture, CertificateAttributeName, Comment, Cookie,
22
    CountOption, Duration, DurationOption, Entry, EntryOption, File, FilenameParam, Filter,
23
    FilterValue, Hex, HurlFile, JsonListElement, JsonValue, KeyValue, MultilineString,
24
    MultilineStringKind, MultipartParam, NaturalOption, OptionKind, Placeholder, Predicate,
25
    PredicateFuncValue, PredicateValue, Query, QueryValue, Regex, RegexValue, Request, Response,
26
    StatusValue, VersionValue,
27
};
28
use hurl_core::types::{Count, ToSource};
29

            
30
use crate::format::serialize_json::JValue;
31

            
32
57
pub fn format(hurl_file: &HurlFile) -> String {
33
57
    hurl_file.to_json().format()
34
}
35

            
36
pub trait ToJson {
37
    fn to_json(&self) -> JValue;
38
}
39

            
40
impl ToJson for HurlFile {
41
57
    fn to_json(&self) -> JValue {
42
57
        JValue::Object(vec![(
43
57
            "entries".to_string(),
44
211
            JValue::List(self.entries.iter().map(|e| e.to_json()).collect()),
45
        )])
46
    }
47
}
48

            
49
impl ToJson for Entry {
50
192
    fn to_json(&self) -> JValue {
51
192
        let mut attributes = vec![("request".to_string(), self.request.to_json())];
52
192
        if let Some(response) = &self.response {
53
87
            attributes.push(("response".to_string(), response.to_json()));
54
        }
55
192
        JValue::Object(attributes)
56
    }
57
}
58

            
59
impl ToJson for Request {
60
192
    fn to_json(&self) -> JValue {
61
192
        let mut attributes = vec![
62
192
            (
63
192
                "method".to_string(),
64
192
                JValue::String(self.method.to_string()),
65
192
            ),
66
192
            ("url".to_string(), JValue::String(self.url.to_string())),
67
        ];
68
192
        add_headers(&mut attributes, &self.headers);
69

            
70
192
        if !self.querystring_params().is_empty() {
71
6
            let params = self
72
6
                .querystring_params()
73
6
                .iter()
74
17
                .map(|p| p.to_json())
75
6
                .collect();
76
6
            attributes.push(("query_string_params".to_string(), JValue::List(params)));
77
        }
78
192
        if !self.form_params().is_empty() {
79
13
            let params = self.form_params().iter().map(|p| p.to_json()).collect();
80
3
            attributes.push(("form_params".to_string(), JValue::List(params)));
81
        }
82
192
        if !self.multipart_form_data().is_empty() {
83
3
            let params = self
84
3
                .multipart_form_data()
85
3
                .iter()
86
10
                .map(|p| p.to_json())
87
3
                .collect();
88
3
            attributes.push(("multipart_form_data".to_string(), JValue::List(params)));
89
        }
90
192
        if !self.cookies().is_empty() {
91
7
            let cookies = self.cookies().iter().map(|c| c.to_json()).collect();
92
3
            attributes.push(("cookies".to_string(), JValue::List(cookies)));
93
        }
94
192
        if !self.options().is_empty() {
95
334
            let options = self.options().iter().map(|c| c.to_json()).collect();
96
12
            attributes.push(("options".to_string(), JValue::List(options)));
97
        }
98
192
        if let Some(body) = &self.body {
99
48
            attributes.push(("body".to_string(), body.to_json()));
100
        }
101

            
102
        // Request comments (can be used to check custom commands)
103
192
        let comments: Vec<_> = self
104
192
            .line_terminators
105
192
            .iter()
106
233
            .filter_map(|l| l.comment.as_ref())
107
192
            .collect();
108
192
        if !comments.is_empty() {
109
26
            let comments = comments.iter().map(|c| c.to_json()).collect();
110
15
            attributes.push(("comments".to_string(), JValue::List(comments)));
111
        }
112

            
113
192
        JValue::Object(attributes)
114
    }
115
}
116

            
117
impl ToJson for Response {
118
    /// Transforms this response to a JSON object.
119
87
    fn to_json(&self) -> JValue {
120
87
        let mut attributes = vec![];
121
87
        if let Some(v) = get_json_version(&self.version.value) {
122
12
            attributes.push(("version".to_string(), JValue::String(v)));
123
        }
124
87
        if let StatusValue::Specific(n) = self.status.value {
125
87
            attributes.push(("status".to_string(), JValue::Number(n.to_string())));
126
        }
127
87
        add_headers(&mut attributes, &self.headers);
128
87
        if !self.captures().is_empty() {
129
21
            let captures = self.captures().iter().map(|c| c.to_json()).collect();
130
9
            attributes.push(("captures".to_string(), JValue::List(captures)));
131
        }
132
87
        if !self.asserts().is_empty() {
133
387
            let asserts = self.asserts().iter().map(|a| a.to_json()).collect();
134
36
            attributes.push(("asserts".to_string(), JValue::List(asserts)));
135
        }
136
87
        if let Some(body) = &self.body {
137
24
            attributes.push(("body".to_string(), body.to_json()));
138
        }
139
87
        JValue::Object(attributes)
140
    }
141
}
142

            
143
279
fn add_headers(attributes: &mut Vec<(String, JValue)>, headers: &[KeyValue]) {
144
279
    if !headers.is_empty() {
145
62
        let headers = JValue::List(headers.iter().map(|h| h.to_json()).collect());
146
24
        attributes.push(("headers".to_string(), headers));
147
    }
148
}
149

            
150
impl ToJson for Body {
151
72
    fn to_json(&self) -> JValue {
152
72
        self.value.to_json()
153
    }
154
}
155

            
156
impl ToJson for Bytes {
157
72
    fn to_json(&self) -> JValue {
158
72
        match self {
159
6
            Bytes::Base64(value) => value.to_json(),
160
3
            Bytes::Hex(value) => value.to_json(),
161
3
            Bytes::File(value) => value.to_json(),
162
6
            Bytes::Json(value) => JValue::Object(vec![
163
6
                ("type".to_string(), JValue::String("json".to_string())),
164
6
                ("value".to_string(), value.to_json()),
165
6
            ]),
166
3
            Bytes::Xml(value) => JValue::Object(vec![
167
3
                ("type".to_string(), JValue::String("xml".to_string())),
168
3
                ("value".to_string(), JValue::String(value.clone())),
169
3
            ]),
170
9
            Bytes::OnelineString(value) => JValue::Object(vec![
171
9
                ("type".to_string(), JValue::String("text".to_string())),
172
9
                ("value".to_string(), JValue::String(value.to_string())),
173
9
            ]),
174
42
            Bytes::MultilineString(multi) => {
175
                // TODO: check these values. Maybe we want to have the same
176
                // export when using:
177
                //
178
                // ~~~
179
                // GET https://foo.com
180
                // ```base64
181
                // SGVsbG8gd29ybGQ=
182
                // ```
183
                //
184
                // or
185
                //
186
                // ~~~
187
                // GET https://foo.com
188
                // base64,SGVsbG8gd29ybGQ=;
189
                // ~~~
190
42
                let lang = match multi {
191
                    MultilineString {
192
                        kind: MultilineStringKind::Text(_),
193
                        ..
194
9
                    } => "text",
195
                    MultilineString {
196
                        kind: MultilineStringKind::Raw(_),
197
                        ..
198
9
                    } => "raw",
199
                    MultilineString {
200
                        kind: MultilineStringKind::Json(_),
201
                        ..
202
9
                    } => "json",
203
                    MultilineString {
204
                        kind: MultilineStringKind::Xml(_),
205
                        ..
206
6
                    } => "xml",
207
                    MultilineString {
208
                        kind: MultilineStringKind::GraphQl(_),
209
                        ..
210
9
                    } => "graphql",
211
                };
212
42
                JValue::Object(vec![
213
42
                    ("type".to_string(), JValue::String(lang.to_string())),
214
42
                    ("value".to_string(), JValue::String(multi.to_string())),
215
42
                ])
216
            }
217
        }
218
    }
219
}
220

            
221
impl ToJson for Base64 {
222
6
    fn to_json(&self) -> JValue {
223
6
        let value = general_purpose::STANDARD.encode(&self.value);
224
6
        JValue::Object(vec![
225
6
            ("encoding".to_string(), JValue::String("base64".to_string())),
226
6
            ("value".to_string(), JValue::String(value)),
227
6
        ])
228
    }
229
}
230

            
231
impl ToJson for Hex {
232
3
    fn to_json(&self) -> JValue {
233
3
        let value = general_purpose::STANDARD.encode(&self.value);
234
3
        JValue::Object(vec![
235
3
            ("encoding".to_string(), JValue::String("base64".to_string())),
236
3
            ("value".to_string(), JValue::String(value)),
237
3
        ])
238
    }
239
}
240

            
241
impl ToJson for File {
242
6
    fn to_json(&self) -> JValue {
243
6
        JValue::Object(vec![
244
6
            ("type".to_string(), JValue::String("file".to_string())),
245
6
            (
246
6
                "filename".to_string(),
247
6
                JValue::String(self.filename.to_string()),
248
6
            ),
249
6
        ])
250
    }
251
}
252

            
253
87
fn get_json_version(version_value: &VersionValue) -> Option<String> {
254
87
    match version_value {
255
3
        VersionValue::Version1 => Some("HTTP/1.0".to_string()),
256
3
        VersionValue::Version11 => Some("HTTP/1.1".to_string()),
257
3
        VersionValue::Version2 => Some("HTTP/2".to_string()),
258
3
        VersionValue::Version3 => Some("HTTP/3".to_string()),
259
75
        VersionValue::VersionAny => None,
260
    }
261
}
262

            
263
impl ToJson for KeyValue {
264
84
    fn to_json(&self) -> JValue {
265
84
        let attributes = vec![
266
84
            ("name".to_string(), JValue::String(self.key.to_string())),
267
84
            ("value".to_string(), JValue::String(self.value.to_string())),
268
        ];
269
84
        JValue::Object(attributes)
270
    }
271
}
272

            
273
impl ToJson for MultipartParam {
274
9
    fn to_json(&self) -> JValue {
275
9
        match self {
276
3
            MultipartParam::Param(param) => param.to_json(),
277
6
            MultipartParam::FilenameParam(param) => param.to_json(),
278
        }
279
    }
280
}
281

            
282
impl ToJson for FilenameParam {
283
6
    fn to_json(&self) -> JValue {
284
6
        let mut attributes = vec![
285
6
            ("name".to_string(), JValue::String(self.key.to_string())),
286
6
            (
287
6
                "filename".to_string(),
288
6
                JValue::String(self.value.filename.to_string()),
289
6
            ),
290
        ];
291
6
        if let Some(content_type) = &self.value.content_type {
292
3
            attributes.push((
293
3
                "content_type".to_string(),
294
3
                JValue::String(content_type.to_string()),
295
3
            ));
296
        }
297
6
        JValue::Object(attributes)
298
    }
299
}
300

            
301
impl ToJson for Cookie {
302
6
    fn to_json(&self) -> JValue {
303
6
        let attributes = vec![
304
6
            ("name".to_string(), JValue::String(self.name.to_string())),
305
6
            ("value".to_string(), JValue::String(self.value.to_string())),
306
        ];
307
6
        JValue::Object(attributes)
308
    }
309
}
310

            
311
impl ToJson for EntryOption {
312
330
    fn to_json(&self) -> JValue {
313
330
        let value = match &self.kind {
314
6
            OptionKind::AwsSigV4(value) => JValue::String(value.to_string()),
315
6
            OptionKind::CaCertificate(filename) => JValue::String(filename.to_string()),
316
9
            OptionKind::ClientCert(filename) => JValue::String(filename.to_string()),
317
6
            OptionKind::ClientKey(filename) => JValue::String(filename.to_string()),
318
6
            OptionKind::Compressed(value) => value.to_json(),
319
6
            OptionKind::ConnectTo(value) => JValue::String(value.to_string()),
320
6
            OptionKind::ConnectTimeout(value) => value.to_json(),
321
18
            OptionKind::Delay(value) => value.to_json(),
322
6
            OptionKind::Digest(value) => value.to_json(),
323
6
            OptionKind::FailWithBody(value) => value.to_json(),
324
6
            OptionKind::FollowLocation(value) => value.to_json(),
325
6
            OptionKind::FollowLocationTrusted(value) => value.to_json(),
326
6
            OptionKind::Header(value) => JValue::String(value.to_string()),
327
6
            OptionKind::Http10(value) => value.to_json(),
328
6
            OptionKind::Http11(value) => value.to_json(),
329
6
            OptionKind::Http2(value) => value.to_json(),
330
3
            OptionKind::Http2PriorKnowledge(value) => value.to_json(),
331
6
            OptionKind::Http3(value) => value.to_json(),
332
6
            OptionKind::Insecure(value) => value.to_json(),
333
6
            OptionKind::IpV4(value) => value.to_json(),
334
6
            OptionKind::IpV6(value) => value.to_json(),
335
6
            OptionKind::LimitRate(value) => value.to_json(),
336
6
            OptionKind::MaxRedirect(value) => value.to_json(),
337
6
            OptionKind::MaxTime(value) => value.to_json(),
338
6
            OptionKind::Negotiate(value) => value.to_json(),
339
6
            OptionKind::NetRc(value) => value.to_json(),
340
6
            OptionKind::NetRcFile(filename) => JValue::String(filename.to_string()),
341
6
            OptionKind::NetRcOptional(value) => value.to_json(),
342
6
            OptionKind::NoHeader(value) => JValue::String(value.to_string()),
343
3
            OptionKind::NoJsonpathCoercion(value) => value.to_json(),
344
6
            OptionKind::Ntlm(value) => value.to_json(),
345
6
            OptionKind::Output(filename) => JValue::String(filename.to_string()),
346
6
            OptionKind::PathAsIs(value) => value.to_json(),
347
6
            OptionKind::PinnedPublicKey(value) => JValue::String(value.to_string()),
348
6
            OptionKind::Proxy(value) => JValue::String(value.to_string()),
349
9
            OptionKind::Repeat(value) => value.to_json(),
350
6
            OptionKind::Resolve(value) => JValue::String(value.to_string()),
351
12
            OptionKind::Retry(value) => value.to_json(),
352
12
            OptionKind::RetryInterval(value) => value.to_json(),
353
6
            OptionKind::Skip(value) => value.to_json(),
354
6
            OptionKind::UnixSocket(value) => JValue::String(value.to_string()),
355
6
            OptionKind::User(value) => JValue::String(value.to_string()),
356
27
            OptionKind::Variable(value) => {
357
27
                JValue::String(format!("{}={}", value.name, value.value.to_source()))
358
            }
359
6
            OptionKind::VariablesFile(filename) => JValue::String(filename.to_string()),
360
9
            OptionKind::Verbose(value) => value.to_json(),
361
6
            OptionKind::Verbosity(value) => JValue::String(value.to_string()),
362
6
            OptionKind::VeryVerbose(value) => value.to_json(),
363
        };
364

            
365
        // If the value contains the unit such as `{ "value": 10, "unit": "second" }`
366
        // The JSON for this option should still have one level
367
        // for example: { "name": "delay", "value": 10, "unit", "second" }
368
330
        let attributes = if let JValue::Object(mut attributes) = value {
369
24
            attributes.push((
370
24
                "name".to_string(),
371
24
                JValue::String(self.kind.identifier().to_string()),
372
24
            ));
373
24
            attributes
374
        } else {
375
306
            vec![
376
306
                (
377
306
                    "name".to_string(),
378
306
                    JValue::String(self.kind.identifier().to_string()),
379
306
                ),
380
306
                ("value".to_string(), value),
381
            ]
382
        };
383
330
        JValue::Object(attributes)
384
    }
385
}
386

            
387
impl ToJson for BooleanOption {
388
129
    fn to_json(&self) -> JValue {
389
129
        match self {
390
69
            BooleanOption::Literal(value) => JValue::Boolean(*value),
391
60
            BooleanOption::Placeholder(placeholder) => placeholder.to_json(),
392
        }
393
    }
394
}
395

            
396
impl ToJson for CountOption {
397
27
    fn to_json(&self) -> JValue {
398
27
        match self {
399
18
            CountOption::Literal(value) => value.to_json(),
400
9
            CountOption::Placeholder(placeholder) => placeholder.to_json(),
401
        }
402
    }
403
}
404

            
405
impl ToJson for Count {
406
18
    fn to_json(&self) -> JValue {
407
18
        match self {
408
12
            Count::Finite(n) => JValue::Number(n.to_string()),
409
6
            Count::Infinite => JValue::Number("-1".to_string()),
410
        }
411
    }
412
}
413

            
414
impl ToJson for DurationOption {
415
42
    fn to_json(&self) -> JValue {
416
42
        match self {
417
30
            DurationOption::Literal(value) => value.to_json(),
418
12
            DurationOption::Placeholder(placeholder) => placeholder.to_json(),
419
        }
420
    }
421
}
422

            
423
impl ToJson for Duration {
424
30
    fn to_json(&self) -> JValue {
425
30
        if let Some(unit) = self.unit {
426
24
            let mut attributes =
427
24
                vec![("value".to_string(), JValue::Number(self.value.to_string()))];
428
24
            attributes.push(("unit".to_string(), JValue::String(unit.to_string())));
429
24
            JValue::Object(attributes)
430
        } else {
431
6
            JValue::Number(self.value.to_string())
432
        }
433
    }
434
}
435

            
436
impl ToJson for Capture {
437
18
    fn to_json(&self) -> JValue {
438
18
        let mut attributes = vec![
439
18
            ("name".to_string(), JValue::String(self.name.to_string())),
440
18
            ("query".to_string(), self.query.to_json()),
441
        ];
442
18
        if !self.filters.is_empty() {
443
4
            let filters = JValue::List(self.filters.iter().map(|(_, f)| f.to_json()).collect());
444
3
            attributes.push(("filters".to_string(), filters));
445
        }
446
18
        if self.redacted {
447
6
            attributes.push(("redact".to_string(), JValue::Boolean(true)));
448
        }
449
18
        JValue::Object(attributes)
450
    }
451
}
452

            
453
impl ToJson for Assert {
454
375
    fn to_json(&self) -> JValue {
455
375
        let mut attributes = vec![("query".to_string(), self.query.to_json())];
456
375
        if !self.filters.is_empty() {
457
183
            let filters = JValue::List(self.filters.iter().map(|(_, f)| f.to_json()).collect());
458
117
            attributes.push(("filters".to_string(), filters));
459
        }
460
375
        attributes.push(("predicate".to_string(), self.predicate.to_json()));
461
375
        JValue::Object(attributes)
462
    }
463
}
464

            
465
impl ToJson for Query {
466
393
    fn to_json(&self) -> JValue {
467
393
        let attributes = query_value_attributes(&self.value);
468
393
        JValue::Object(attributes)
469
    }
470
}
471

            
472
393
fn query_value_attributes(query_value: &QueryValue) -> Vec<(String, JValue)> {
473
393
    let mut attributes = vec![];
474
393
    let att_type = JValue::String(query_value.identifier().to_string());
475
393
    attributes.push(("type".to_string(), att_type));
476

            
477
393
    match query_value {
478
243
        QueryValue::Jsonpath { expr, .. } => {
479
243
            attributes.push(("expr".to_string(), JValue::String(expr.to_string())));
480
        }
481
6
        QueryValue::Header { name, .. } => {
482
6
            attributes.push(("name".to_string(), JValue::String(name.to_string())));
483
        }
484
9
        QueryValue::Cookie { expr, .. } => {
485
9
            attributes.push(("expr".to_string(), JValue::String(expr.to_string())));
486
        }
487
3
        QueryValue::Xpath { expr, .. } => {
488
3
            attributes.push(("expr".to_string(), JValue::String(expr.to_string())));
489
        }
490
3
        QueryValue::Regex { value, .. } => {
491
3
            attributes.push(("expr".to_string(), value.to_json()));
492
        }
493
9
        QueryValue::Variable { name, .. } => {
494
9
            attributes.push(("name".to_string(), JValue::String(name.to_string())));
495
        }
496
        QueryValue::Certificate {
497
33
            attribute_name: field,
498
            ..
499
33
        } => {
500
33
            attributes.push(("expr".to_string(), field.to_json()));
501
        }
502
87
        _ => {}
503
    };
504
393
    attributes
505
}
506

            
507
impl ToJson for RegexValue {
508
9
    fn to_json(&self) -> JValue {
509
9
        match self {
510
3
            RegexValue::Template(template) => JValue::String(template.to_string()),
511
6
            RegexValue::Regex(regex) => regex.to_json(),
512
        }
513
    }
514
}
515

            
516
impl ToJson for Regex {
517
6
    fn to_json(&self) -> JValue {
518
6
        let attributes = vec![
519
6
            ("type".to_string(), JValue::String("regex".to_string())),
520
6
            ("value".to_string(), JValue::String(self.to_string())),
521
        ];
522
6
        JValue::Object(attributes)
523
    }
524
}
525

            
526
impl ToJson for CertificateAttributeName {
527
33
    fn to_json(&self) -> JValue {
528
33
        JValue::String(self.identifier().to_string())
529
    }
530
}
531

            
532
impl ToJson for Predicate {
533
375
    fn to_json(&self) -> JValue {
534
375
        let mut attributes = vec![];
535
375
        if self.not {
536
3
            attributes.push(("not".to_string(), JValue::Boolean(true)));
537
        }
538
375
        let identifier = self.predicate_func.value.identifier();
539
375
        attributes.push(("type".to_string(), JValue::String(identifier.to_string())));
540

            
541
375
        match &self.predicate_func.value {
542
252
            PredicateFuncValue::Equal { value, .. } => add_predicate_value(&mut attributes, value),
543
9
            PredicateFuncValue::NotEqual { value, .. } => {
544
9
                add_predicate_value(&mut attributes, value);
545
            }
546
9
            PredicateFuncValue::GreaterThan { value, .. } => {
547
9
                add_predicate_value(&mut attributes, value);
548
            }
549
3
            PredicateFuncValue::GreaterThanOrEqual { value, .. } => {
550
3
                add_predicate_value(&mut attributes, value);
551
            }
552
9
            PredicateFuncValue::LessThan { value, .. } => {
553
9
                add_predicate_value(&mut attributes, value);
554
            }
555
3
            PredicateFuncValue::LessThanOrEqual { value, .. } => {
556
3
                add_predicate_value(&mut attributes, value);
557
            }
558
9
            PredicateFuncValue::StartWith { value, .. } => {
559
9
                add_predicate_value(&mut attributes, value);
560
            }
561
6
            PredicateFuncValue::EndWith { value, .. } => {
562
6
                add_predicate_value(&mut attributes, value);
563
            }
564
9
            PredicateFuncValue::Contain { value, .. } => {
565
9
                add_predicate_value(&mut attributes, value);
566
            }
567
3
            PredicateFuncValue::Include { value, .. } => {
568
3
                add_predicate_value(&mut attributes, value);
569
            }
570
9
            PredicateFuncValue::Match { value, .. } => {
571
9
                add_predicate_value(&mut attributes, value);
572
            }
573
            PredicateFuncValue::Exist
574
            | PredicateFuncValue::IsBoolean
575
            | PredicateFuncValue::IsCollection
576
            | PredicateFuncValue::IsDate
577
            | PredicateFuncValue::IsEmpty
578
            | PredicateFuncValue::IsFloat
579
            | PredicateFuncValue::IsInteger
580
            | PredicateFuncValue::IsIpv4
581
            | PredicateFuncValue::IsIpv6
582
            | PredicateFuncValue::IsIsoDate
583
            | PredicateFuncValue::IsList
584
            | PredicateFuncValue::IsNumber
585
            | PredicateFuncValue::IsObject
586
            | PredicateFuncValue::IsString
587
54
            | PredicateFuncValue::IsUuid => {}
588
        }
589
375
        JValue::Object(attributes)
590
    }
591
}
592

            
593
321
fn add_predicate_value(attributes: &mut Vec<(String, JValue)>, predicate_value: &PredicateValue) {
594
321
    let (value, encoding) = json_predicate_value(predicate_value);
595
321
    attributes.push(("value".to_string(), value));
596
321
    if let Some(encoding) = encoding {
597
36
        attributes.push(("encoding".to_string(), JValue::String(encoding)));
598
    }
599
}
600

            
601
321
fn json_predicate_value(predicate_value: &PredicateValue) -> (JValue, Option<String>) {
602
321
    match predicate_value {
603
150
        PredicateValue::String(value) => (JValue::String(value.to_string()), None),
604
18
        PredicateValue::MultilineString(value) => (JValue::String(value.value().to_string()), None),
605
3
        PredicateValue::Bool(value) => (JValue::Boolean(*value), None),
606
3
        PredicateValue::Null => (JValue::Null, None),
607
105
        PredicateValue::Number(value) => (JValue::Number(value.to_string()), None),
608
3
        PredicateValue::File(value) => (value.to_json(), None),
609
27
        PredicateValue::Hex(value) => {
610
27
            let base64_string = general_purpose::STANDARD.encode(value.value.clone());
611
27
            (JValue::String(base64_string), Some("base64".to_string()))
612
        }
613
3
        PredicateValue::Base64(value) => {
614
3
            let base64_string = general_purpose::STANDARD.encode(value.value.clone());
615
3
            (JValue::String(base64_string), Some("base64".to_string()))
616
        }
617
3
        PredicateValue::Placeholder(value) => (JValue::String(value.to_string()), None),
618
6
        PredicateValue::Regex(value) => {
619
6
            (JValue::String(value.to_string()), Some("regex".to_string()))
620
        }
621
    }
622
}
623

            
624
impl ToJson for JsonValue {
625
102
    fn to_json(&self) -> JValue {
626
102
        match self {
627
3
            JsonValue::Null => JValue::Null,
628
45
            JsonValue::Number(s) => JValue::Number(s.to_string()),
629
18
            JsonValue::String(s) => JValue::String(s.to_string()),
630
3
            JsonValue::Boolean(v) => JValue::Boolean(*v),
631
15
            JsonValue::List { elements, .. } => {
632
56
                JValue::List(elements.iter().map(|e| e.to_json()).collect())
633
            }
634
15
            JsonValue::Object { elements, .. } => JValue::Object(
635
15
                elements
636
15
                    .iter()
637
50
                    .map(|elem| (elem.name.to_string(), elem.value.to_json()))
638
15
                    .collect(),
639
            ),
640
3
            JsonValue::Placeholder(exp) => JValue::String(format!("{{{{{exp}}}}}")),
641
        }
642
    }
643
}
644

            
645
impl ToJson for JsonListElement {
646
51
    fn to_json(&self) -> JValue {
647
51
        self.value.to_json()
648
    }
649
}
650

            
651
impl ToJson for Filter {
652
147
    fn to_json(&self) -> JValue {
653
147
        self.value.to_json()
654
    }
655
}
656

            
657
impl ToJson for FilterValue {
658
147
    fn to_json(&self) -> JValue {
659
147
        let mut attributes = vec![];
660
147
        let att_name = "type".to_string();
661
147
        let att_value = JValue::String(self.identifier().to_string());
662
147
        attributes.push((att_name, att_value));
663

            
664
147
        match self {
665
3
            FilterValue::Decode { encoding, .. } => {
666
3
                attributes.push(("encoding".to_string(), JValue::String(encoding.to_string())));
667
            }
668
6
            FilterValue::Format { fmt, .. } => {
669
6
                attributes.push(("fmt".to_string(), JValue::String(fmt.to_string())));
670
            }
671
9
            FilterValue::DateFormat { fmt, .. } => {
672
9
                attributes.push(("fmt".to_string(), JValue::String(fmt.to_string())));
673
            }
674
9
            FilterValue::JsonPath { expr, .. } => {
675
9
                attributes.push(("expr".to_string(), JValue::String(expr.to_string())));
676
            }
677
3
            FilterValue::Nth { n, .. } => {
678
3
                attributes.push(("n".to_string(), JValue::Number(n.to_string())));
679
            }
680
3
            FilterValue::Regex { value, .. } => {
681
3
                attributes.push(("expr".to_string(), value.to_json()));
682
            }
683
            FilterValue::Replace {
684
15
                old_value,
685
15
                new_value,
686
                ..
687
15
            } => {
688
15
                attributes.push((
689
15
                    "old_value".to_string(),
690
15
                    JValue::String(old_value.to_string()),
691
15
                ));
692
15
                attributes.push((
693
15
                    "new_value".to_string(),
694
15
                    JValue::String(new_value.to_string()),
695
15
                ));
696
            }
697
            FilterValue::ReplaceRegex {
698
3
                pattern, new_value, ..
699
3
            } => {
700
3
                attributes.push(("pattern".to_string(), pattern.to_json()));
701
3
                attributes.push((
702
3
                    "new_value".to_string(),
703
3
                    JValue::String(new_value.to_string()),
704
3
                ));
705
            }
706
3
            FilterValue::Split { sep, .. } => {
707
3
                attributes.push(("sep".to_string(), JValue::String(sep.to_string())));
708
            }
709
3
            FilterValue::ToDate { fmt, .. } => {
710
3
                attributes.push(("fmt".to_string(), JValue::String(fmt.to_string())));
711
            }
712
3
            FilterValue::UrlQueryParam { param, .. } => {
713
3
                attributes.push(("param".to_string(), JValue::String(param.to_string())));
714
            }
715
3
            FilterValue::XPath { expr, .. } => {
716
3
                attributes.push(("expr".to_string(), JValue::String(expr.to_string())));
717
            }
718
84
            _ => {}
719
        }
720
147
        JValue::Object(attributes)
721
    }
722
}
723

            
724
impl ToJson for Placeholder {
725
84
    fn to_json(&self) -> JValue {
726
84
        JValue::String(format!("{{{{{self}}}}}"))
727
    }
728
}
729

            
730
impl ToJson for Comment {
731
21
    fn to_json(&self) -> JValue {
732
21
        JValue::String(self.value.to_string())
733
    }
734
}
735

            
736
impl ToJson for NaturalOption {
737
6
    fn to_json(&self) -> JValue {
738
6
        match self {
739
3
            NaturalOption::Literal(value) => JValue::Number(value.to_string()),
740
3
            NaturalOption::Placeholder(placeholder) => placeholder.to_json(),
741
        }
742
    }
743
}
744
#[cfg(test)]
745
pub mod tests {
746
    use hurl_core::ast::{
747
        I64, LineTerminator, Method, Number, PredicateFunc, SourceInfo, Status, Template,
748
        TemplateElement, Version, Whitespace,
749
    };
750
    use hurl_core::reader::Pos;
751
    use hurl_core::types::ToSource;
752

            
753
    use super::*;
754

            
755
    fn whitespace() -> Whitespace {
756
        Whitespace {
757
            value: String::new(),
758
            source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
759
        }
760
    }
761

            
762
    fn line_terminator() -> LineTerminator {
763
        LineTerminator {
764
            space0: whitespace(),
765
            comment: None,
766
            newline: whitespace(),
767
        }
768
    }
769

            
770
    #[test]
771
    pub fn test_request() {
772
        assert_eq!(
773
            Request {
774
                line_terminators: vec![],
775
                space0: whitespace(),
776
                method: Method::new("GET"),
777
                space1: whitespace(),
778
                url: Template::new(
779
                    None,
780
                    vec![TemplateElement::String {
781
                        value: "http://example.com".to_string(),
782
                        source: "not_used".to_source(),
783
                    }],
784
                    SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
785
                ),
786
                line_terminator0: line_terminator(),
787
                headers: vec![KeyValue {
788
                    line_terminators: vec![],
789
                    space0: whitespace(),
790
                    key: Template::new(
791
                        None,
792
                        vec![TemplateElement::String {
793
                            value: "Foo".to_string(),
794
                            source: "unused".to_source(),
795
                        }],
796
                        SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0))
797
                    ),
798
                    space1: whitespace(),
799
                    space2: whitespace(),
800
                    value: Template::new(
801
                        None,
802
                        vec![TemplateElement::String {
803
                            value: "Bar".to_string(),
804
                            source: "unused".to_source(),
805
                        }],
806
                        SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0))
807
                    ),
808
                    line_terminator0: line_terminator(),
809
                }],
810
                sections: vec![],
811
                body: None,
812
                source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
813
            }
814
            .to_json(),
815
            JValue::Object(vec![
816
                ("method".to_string(), JValue::String("GET".to_string())),
817
                (
818
                    "url".to_string(),
819
                    JValue::String("http://example.com".to_string())
820
                ),
821
                (
822
                    "headers".to_string(),
823
                    JValue::List(vec![JValue::Object(vec![
824
                        ("name".to_string(), JValue::String("Foo".to_string())),
825
                        ("value".to_string(), JValue::String("Bar".to_string()))
826
                    ])])
827
                )
828
            ])
829
        );
830
    }
831

            
832
    #[test]
833
    pub fn test_response() {
834
        assert_eq!(
835
            Response {
836
                line_terminators: vec![],
837
                version: Version {
838
                    value: VersionValue::Version11,
839
                    source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
840
                },
841
                space0: whitespace(),
842
                status: Status {
843
                    value: StatusValue::Specific(200),
844
                    source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
845
                },
846
                space1: whitespace(),
847
                line_terminator0: line_terminator(),
848
                headers: vec![],
849
                sections: vec![],
850
                body: None,
851
                source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
852
            }
853
            .to_json(),
854
            JValue::Object(vec![
855
                (
856
                    "version".to_string(),
857
                    JValue::String("HTTP/1.1".to_string())
858
                ),
859
                ("status".to_string(), JValue::Number("200".to_string()))
860
            ])
861
        );
862
        assert_eq!(
863
            Response {
864
                line_terminators: vec![],
865
                version: Version {
866
                    value: VersionValue::VersionAny,
867
                    source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
868
                },
869
                space0: whitespace(),
870
                status: Status {
871
                    value: StatusValue::Any,
872
                    source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
873
                },
874
                space1: whitespace(),
875
                line_terminator0: line_terminator(),
876
                headers: vec![],
877
                sections: vec![],
878
                body: None,
879
                source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
880
            }
881
            .to_json(),
882
            JValue::Object(vec![])
883
        );
884
    }
885

            
886
    fn header_query() -> Query {
887
        Query {
888
            source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
889
            value: QueryValue::Header {
890
                space0: whitespace(),
891
                name: Template::new(
892
                    None,
893
                    vec![TemplateElement::String {
894
                        value: "Content-Length".to_string(),
895
                        source: "Content-Length".to_source(),
896
                    }],
897
                    SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
898
                ),
899
            },
900
        }
901
    }
902

            
903
    fn header_capture() -> Capture {
904
        Capture {
905
            line_terminators: vec![],
906
            space0: whitespace(),
907
            name: Template::new(
908
                None,
909
                vec![TemplateElement::String {
910
                    value: "size".to_string(),
911
                    source: "unused".to_source(),
912
                }],
913
                SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
914
            ),
915
            space1: whitespace(),
916
            space2: whitespace(),
917
            query: header_query(),
918
            filters: vec![],
919
            space3: whitespace(),
920
            redacted: false,
921
            line_terminator0: line_terminator(),
922
        }
923
    }
924

            
925
    fn header_assert() -> Assert {
926
        Assert {
927
            line_terminators: vec![],
928
            space0: whitespace(),
929
            query: header_query(),
930
            filters: vec![],
931
            space1: whitespace(),
932
            predicate: equal_int_predicate(10),
933
            line_terminator0: line_terminator(),
934
        }
935
    }
936

            
937
    fn equal_int_predicate(value: i64) -> Predicate {
938
        Predicate {
939
            not: false,
940
            space0: whitespace(),
941
            predicate_func: PredicateFunc {
942
                source_info: SourceInfo::new(Pos::new(0, 0), Pos::new(0, 0)),
943
                value: PredicateFuncValue::Equal {
944
                    space0: whitespace(),
945
                    value: PredicateValue::Number(Number::Integer(I64::new(
946
                        value,
947
                        value.to_string().to_source(),
948
                    ))),
949
                },
950
            },
951
        }
952
    }
953

            
954
    #[test]
955
    pub fn test_query() {
956
        assert_eq!(
957
            header_query().to_json(),
958
            JValue::Object(vec![
959
                ("type".to_string(), JValue::String("header".to_string())),
960
                (
961
                    "name".to_string(),
962
                    JValue::String("Content-Length".to_string())
963
                ),
964
            ])
965
        );
966
    }
967

            
968
    #[test]
969
    pub fn test_capture() {
970
        assert_eq!(
971
            header_capture().to_json(),
972
            JValue::Object(vec![
973
                ("name".to_string(), JValue::String("size".to_string())),
974
                (
975
                    "query".to_string(),
976
                    JValue::Object(vec![
977
                        ("type".to_string(), JValue::String("header".to_string())),
978
                        (
979
                            "name".to_string(),
980
                            JValue::String("Content-Length".to_string())
981
                        ),
982
                    ])
983
                ),
984
            ])
985
        );
986
    }
987

            
988
    #[test]
989
    pub fn test_predicate() {
990
        assert_eq!(
991
            equal_int_predicate(10).to_json(),
992
            JValue::Object(vec![
993
                ("type".to_string(), JValue::String("==".to_string())),
994
                ("value".to_string(), JValue::Number("10".to_string()))
995
            ]),
996
        );
997
    }
998

            
999
    #[test]
    pub fn test_assert() {
        assert_eq!(
            header_assert().to_json(),
            JValue::Object(vec![
                (
                    "query".to_string(),
                    JValue::Object(vec![
                        ("type".to_string(), JValue::String("header".to_string())),
                        (
                            "name".to_string(),
                            JValue::String("Content-Length".to_string())
                        ),
                    ])
                ),
                (
                    "predicate".to_string(),
                    JValue::Object(vec![
                        ("type".to_string(), JValue::String("==".to_string())),
                        ("value".to_string(), JValue::Number("10".to_string()))
                    ])
                )
            ]),
        );
    }
}