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
use crate::state::oca::OCABuilder;
use std::io::Read;
pub type GenericError = Box<dyn std::error::Error + Sync + Send>;
pub type GenericResult<T> = Result<T, GenericError>;
pub fn load_oca(source: &mut dyn Read) -> GenericResult<OCABuilder> {
let oca: OCABuilder = serde_json::from_reader(source)?;
Ok(oca)
}
#[cfg(test)]
mod tests {
use super::load_oca;
use crate::state::attribute::{AttributeBuilder, AttributeType};
use maplit::hashmap;
#[test]
fn loads_json_from_str() {
let data = r#"
{
"capture_base": {
"type": "spec/capture_base/1.0",
"classification": "classification",
"attributes": { "n1": "Text", "n2": "Date", "n3": "SAI:asd" },
"flagged_attributes": [ "n1" ]
},
"overlays": [
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/character_encoding/1.0",
"default_character_encoding": "utf-8",
"attr_character_encoding": { "n2": "iso-8859-1" }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/unit/1.0",
"metric_system": "SI",
"attr_units": { "n1": "cm" }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/entry_code/1.0",
"attr_entry_codes": { "n1": [ "op1", "op2" ] }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/label/1.0",
"language": "pl_PL",
"attr_labels": { "n1": "Imię: ", "n2": "Data: ", "n3": "Referecja: " },
"attr_categories": [ "_cat-1_" ],
"cat_labels": { "_cat-1_": "Category 1" },
"cat_attributes": { "_cat-1_": [ "n1", "n2", "n3" ] }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/information/1.0",
"language": "pl_PL",
"attr_information": { "n1": "info pl" }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/entry/1.0",
"language": "pl_PL",
"attr_entries": { "n1": { "op2": "Opcja 2", "op1": "Opcja 1" } }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/label/1.0",
"language": "en_EN",
"attr_labels": { "n2": "Date: ", "n1": "Name: ", "n3": "Reference: " },
"attr_categories": [ "_cat-1_" ],
"cat_labels": { "_cat-1_": "Category 1" },
"cat_attributes": { "_cat-1_": [ "n1", "n2", "n3" ] }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/information/1.0",
"language": "en_EN",
"attr_information": { "n1": "info en" }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/entry/1.0",
"language": "en_EN",
"attr_entries": { "n1": { "op1": "Option 1", "op2": "Option 2" } }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/format/1.0",
"attr_formats": { "n2": "DD/MM/YYYY" }
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/meta/1.0",
"language": "en_EN",
"name": "Driving Licence",
"description": "DL desc"
},
{
"capture_base": "EP20A21C9EHJu8fOOrjV4ywgn6bGFQbQ3cfWFwWL57io",
"type": "spec/overlays/meta/1.0",
"language": "pl_PL",
"name": "Prawo Jazdy",
"description": "PJ desc"
}
]
}
"#;
let oca_builder = load_oca(&mut data.as_bytes()).unwrap();
let oca = oca_builder
.add_attribute(
AttributeBuilder::new("new_attr".to_string(), AttributeType::Text)
.add_label(hashmap! {
"En".to_string() => "New: ".to_string(),
"Pl".to_string() => "Nowy: ".to_string(),
})
.build(),
)
.finalize();
assert_eq!(oca.capture_base.attributes.len(), 4);
}
}