File: mutation_tests.rs

package info (click to toggle)
rust-yaml-edit 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 36,676 kB
  • sloc: makefile: 2
file content (273 lines) | stat: -rw-r--r-- 7,717 bytes parent folder | download
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
//! Mutation and editing tests
//!
//! Tests verify:
//! - Simple value replacement (scalars, booleans, numbers)
//! - Nested mapping mutations
//! - Adding new keys to existing mappings
//! - Multiple root-level changes
//! - Preservation of comments and whitespace during mutations
//! - Deep nested structure mutations
//!
//! All tests verify:
//! 1. API correctness - mutations work as expected
//! 2. Lossless editing - formatting and structure preserved
//! 3. Round-trip validity - output can be re-parsed

use std::str::FromStr;
use yaml_edit::YamlFile;

#[test]
fn test_simple_value_replacement() {
    let yaml = YamlFile::from_str("key: value").unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            mapping.set("key", "new_value");
        }
    }

    assert_eq!(yaml.to_string(), "key: new_value");

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

#[test]
fn test_value_replacement_preserves_whitespace() {
    let yaml = YamlFile::from_str("key: value  # comment").unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            mapping.set("key", "new_value");
        }
    }

    assert_eq!(yaml.to_string(), "key: new_value  # comment");

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

#[test]
fn test_boolean_value_replacement() {
    let yaml = YamlFile::from_str("debug: true  # For now").unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            mapping.set("debug", false);
        }
    }

    assert_eq!(yaml.to_string(), "debug: false  # For now");

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

#[test]
fn test_nested_mapping_mutation() {
    let yaml_str = r#"database:
  name: dev_db
  user: admin"#;

    let yaml = YamlFile::from_str(yaml_str).unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            mapping.modify_mapping("database", |db| {
                db.set("name", "prod_db");
            });
        }
    }

    let expected = r#"database:
  name: prod_db
  user: admin"#;
    assert_eq!(yaml.to_string(), expected);

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

#[test]
fn test_nested_mapping_add_new_key() {
    let yaml_str = r#"database:
  name: dev_db
  user: admin"#;

    let yaml = YamlFile::from_str(yaml_str).unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            mapping.modify_mapping("database", |db| {
                db.set("password", "secret123");
            });
        }
    }

    let expected = r#"database:
  name: dev_db
  user: admin
  password: secret123
"#;
    assert_eq!(yaml.to_string(), expected);

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

#[test]
fn test_multiple_root_level_changes() {
    let yaml_str = r#"host: localhost
port: 8080
debug: true"#;

    let yaml = YamlFile::from_str(yaml_str).unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            mapping.set("host", "0.0.0.0");
            mapping.set("port", 3000);
            mapping.set("debug", false);
        }
    }

    let expected = r#"host: 0.0.0.0
port: 3000
debug: false"#;
    assert_eq!(yaml.to_string(), expected);

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

#[test]
fn test_add_new_root_key() {
    let yaml = YamlFile::from_str("existing: value").unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            mapping.set("new_key", "new_value");
        }
    }

    let expected = r#"existing: value
new_key: new_value
"#;
    assert_eq!(yaml.to_string(), expected);

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

#[test]
fn test_nested_with_comments_and_structure() {
    let yaml_str = r#"# Config
server:
  host: localhost  # Default host
  port: 8080"#;

    let yaml = YamlFile::from_str(yaml_str).unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            mapping.modify_mapping("server", |server| {
                server.set("host", "0.0.0.0");
                server.set("timeout", 30);
            });
        }
    }

    let expected = r#"# Config
server:
  host: 0.0.0.0  # Default host
  port: 8080
  timeout: 30
"#;
    assert_eq!(yaml.to_string(), expected);

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

// Tests from nested_mutation_test.rs

#[test]
fn test_nested_mapping_mutations_propagate() {
    let original = r#"database:
  name: dev_db
  user: admin
  max_connections: 10"#;

    let yaml = YamlFile::from_str(original).unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(mapping) = doc.as_mapping() {
            // Get the nested database mapping and modify it
            if let Some(db) = mapping.get_mapping("database") {
                db.set("name", "prod_db");
                db.set("password", "secret123");
                db.set("max_connections", 50);
            }
        }
    }

    let expected =
        "database:\n  name: prod_db\n  user: admin\n  max_connections: 50\n  password: secret123\n";

    assert_eq!(yaml.to_string(), expected);

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}

#[test]
fn test_deeply_nested_mutations() {
    let original = r#"server:
  database:
    primary:
      host: localhost
      port: 5432"#;

    let yaml = YamlFile::from_str(original).unwrap();

    if let Some(doc) = yaml.document() {
        if let Some(root) = doc.as_mapping() {
            if let Some(server) = root.get_mapping("server") {
                if let Some(db) = server.get_mapping("database") {
                    if let Some(primary) = db.get_mapping("primary") {
                        primary.set("host", "prod.example.com");
                        primary.set("ssl", true);
                    }
                }
            }
        }
    }

    let expected = "server:\n  database:\n    primary:\n      host: prod.example.com\n      port: 5432\n      ssl: true\n";

    assert_eq!(yaml.to_string(), expected);

    // Verify output is valid YAML
    let output = yaml.to_string();
    let reparsed = YamlFile::from_str(&output).expect("Output should be valid YAML");
    assert!(reparsed.document().is_some());
}