-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathextension.rs
135 lines (114 loc) · 3.14 KB
/
extension.rs
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
use crate::xsd::{rust_types_mapping::RustTypesMapping, Implementation, XsdContext};
use proc_macro2::TokenStream;
use xml_schema::Extension;
impl Implementation for Extension {
fn implement(
&self,
namespace_definition: &TokenStream,
prefix: &Option<String>,
context: &XsdContext,
) -> TokenStream {
let rust_type = RustTypesMapping::get(context, &self.base);
let attributes: TokenStream = self
.attributes
.iter()
.map(|attribute| attribute.implement(namespace_definition, prefix, context))
.collect();
let inner_attribute = if format!("{rust_type}") == "String" {
quote!(#[yaserde(text)])
} else {
TokenStream::new()
};
quote!(
#inner_attribute
pub base: #rust_type,
#attributes
)
}
fn get_field_implementation(&self, prefix: &Option<String>, context: &XsdContext) -> TokenStream {
let rust_type = RustTypesMapping::get(context, &self.base);
let group_content = self
.group
.as_ref()
.map(|group| {
let group_type = group.get_type_implementation(prefix, context);
quote!(
,
#[serde(flatten)]
pub extension : #group_type
)
})
.unwrap_or_default();
quote!(
pub base : #rust_type
#group_content
)
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::str::FromStr;
#[test]
fn extension() {
let st = Extension {
base: "xs:string".to_string(),
attributes: vec![],
sequences: vec![],
group: None,
};
let context =
XsdContext::new(r#"<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"></xs:schema>"#)
.unwrap();
let implementation = st.implement(&TokenStream::new(), &None, &context);
let expected = TokenStream::from_str(
r#"
#[yaserde(text)]
pub base: String,
"#,
)
.unwrap();
assert_eq!(implementation.to_string(), expected.to_string());
}
#[test]
fn extension_with_attributes() {
use xml_schema::{Attribute, Required};
let st = Extension {
base: "xs:string".to_string(),
attributes: vec![
Attribute {
name: Some("attribute_1".to_string()),
kind: Some("xs:string".to_string()),
reference: None,
required: Required::Required,
simple_type: None,
},
Attribute {
name: Some("attribute_2".to_string()),
kind: Some("xs:boolean".to_string()),
reference: None,
required: Required::Optional,
simple_type: None,
},
],
sequences: vec![],
group: None,
};
let context =
XsdContext::new(r#"<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"></xs:schema>"#)
.unwrap();
let implementation = st.implement(&TokenStream::new(), &None, &context);
let expected = TokenStream::from_str(
r#"
#[yaserde(text)]
pub base: String,
#[yaserde(attribute)]
pub attribute_1: String,
#[yaserde(attribute)]
pub attribute_2: Option<bool> ,
"#,
)
.unwrap();
assert_eq!(implementation.to_string(), expected.to_string());
}
}