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
|
use snapbox::assert_eq;
use toml_edit::{Document, Item, Value};
#[test]
fn table_into_inline() {
let toml = r#"
[table]
string = "value"
array = [1, 2, 3]
inline = { "1" = 1, "2" = 2 }
[table.child]
other = "world"
"#;
let mut doc = toml.parse::<Document>().unwrap();
doc.get_mut("table").unwrap().make_value();
let actual = doc.to_string();
// `table=` is because we didn't re-format the table key, only the value
let expected = r#"table= { string = "value", array = [1, 2, 3], inline = { "1" = 1, "2" = 2 }, child = { other = "world" } }
"#;
assert_eq(expected, actual);
}
#[test]
fn inline_table_to_table() {
let toml = r#"table = { string = "value", array = [1, 2, 3], inline = { "1" = 1, "2" = 2 }, child = { other = "world" } }
"#;
let mut doc = toml.parse::<Document>().unwrap();
let t = doc.remove("table").unwrap();
let t = match t {
Item::Value(Value::InlineTable(t)) => t,
_ => unreachable!("Unexpected {:?}", t),
};
let t = t.into_table();
doc.insert("table", Item::Table(t));
let actual = doc.to_string();
let expected = r#"[table]
string = "value"
array = [1, 2, 3]
inline = { "1" = 1, "2" = 2 }
child = { other = "world" }
"#;
assert_eq(expected, actual);
}
#[test]
fn array_of_tables_to_array() {
let toml = r#"
[[table]]
string = "value"
array = [1, 2, 3]
inline = { "1" = 1, "2" = 2 }
[table.child]
other = "world"
[[table]]
string = "value"
array = [1, 2, 3]
inline = { "1" = 1, "2" = 2 }
[table.child]
other = "world"
"#;
let mut doc = toml.parse::<Document>().unwrap();
doc.get_mut("table").unwrap().make_value();
let actual = doc.to_string();
// `table=` is because we didn't re-format the table key, only the value
let expected = r#"table= [{ string = "value", array = [1, 2, 3], inline = { "1" = 1, "2" = 2 }, child = { other = "world" } }, { string = "value", array = [1, 2, 3], inline = { "1" = 1, "2" = 2 }, child = { other = "world" } }]
"#;
assert_eq(expected, actual);
}
|