Add some failing tests for ConfigDocument.removeValue

This commit is contained in:
Havoc Pennington 2015-03-30 16:29:35 -04:00
parent ed004d47e7
commit dcab6e7158

View File

@ -226,6 +226,30 @@ class ConfigDocumentTest extends TestUtils {
assertEquals("""{"a": "b" }""", configDoc.removeValue("c").render())
}
@Test
def configDocumentRemoveMultiple {
val origText = "a { b: 42 }, a.b = 43, a { b: { c: 44 } }"
val configDoc = ConfigDocumentFactory.parseString(origText)
val removed = configDoc.removeValue("a.b")
assertEquals("a { }, a { b: { } }", removed.render())
}
@Test
def configDocumentRemoveOverridden {
val origText = "a { b: 42 }, a.b = 43, a { b: { c: 44 }, a : 57 }"
val configDoc = ConfigDocumentFactory.parseString(origText)
val removed = configDoc.removeValue("a.b")
assertEquals("a { }, a : 57", removed.render())
}
@Test
def configDocumentRemoveNested {
val origText = "a { b: 42 }, a.b = 43, a { b: { c: 44 } }"
val configDoc = ConfigDocumentFactory.parseString(origText)
val removed = configDoc.removeValue("a.b.c")
assertEquals("a { b: 42 }, a.b = 43, a { b: { } }", removed.render())
}
@Test
def configDocumentArrayFailures {
// Attempting a replace on a ConfigDocument parsed from an array throws an error