I work with XML using XmlSlurper. It works fine until I update it. The appendNode doesn't reflect the size.
How to worked with XmlSlurper after structure update?
XML definition:
def CAR_RECORDS = '''
<records>
<car name='HSV Maloo' make='Holden' year='2006'>
<country>Australia</country>
<record type='speed'>Production Pickup Truck with speed of 271kph</record>
</car>
<car name='P50' make='Peel' year='1962'>
<country>Isle of Man</country>
<record type='size'>Smallest Street-Legal Car at 99cm wide and 59 kg in weight</record>
</car>
<car name='Royale' make='Bugatti' year='1931'>
<country>France</country>
<record type='price'>Most Valuable Car at $15 million</record>
</car>
</records>
'''
Code witch fails:
def records = new XmlSlurper().parseText(CAR_RECORDS)
records.appendNode( { car(make:'BMW') } )
assert 4 == records.car.size() //fails!!! size == 3
Print out XML including BMW car
def xmlOut = new groovy.xml.StreamingMarkupBuilder()
def temp = xmlOut.bind{
mkp.yield records
}
println temp