@Test
public void testMerge2() {
MergeJSON test = new MergeJSON();
String a = "{\r\n \"@type\": \"http://dig.isi.edu/ontology/URLEntity\",\r\n \"dig:snapshot\": {\r\n \"dig:hasTitlePart\": {\r\n \"@type\": \"http://schema.org/WebPageElement\",\r\n \"@id\": \"https://karmadigstorage.blob.core.windows.net/arch/churl/20140301/losangeles.backpage.com/FemaleEscorts/undeniable-latina-hottie-1oohh-160hr-rainy-day-specials-_-24/38317518/title\"\r\n },\r\n \"dig:hasBodyPart\": {\r\n \"dig:mentionsPhoneNumber\": {\r\n \"dig:tenDigitPhoneNumber\": \"8052536469\",\r\n \"schema:location\": {\r\n \"@type\": \"http://schema.org/Place\",\r\n \"@id\": \"http://dig.isi.edu/data/exchange/805253\"\r\n },\r\n \"@type\": \"http://dig.isi.edu/ontology/PhoneNumber\",\r\n \"@id\": \"http://dig.isi.edu/data/phonenumber/8052536469\"\r\n },\r\n \"@type\": \"http://schema.org/WebPageElement\",\r\n \"@id\": \"https://karmadigstorage.blob.core.windows.net/arch/churl/20140301/losangeles.backpage.com/FemaleEscorts/undeniable-latina-hottie-1oohh-160hr-rainy-day-specials-_-24/38317518/body\"\r\n },\r\n \"@type\": \"http://schema.org/WebPage\",\r\n \"@id\": \"https://karmadigstorage.blob.core.windows.net/arch/churl/20140301/losangeles.backpage.com/FemaleEscorts/undeniable-latina-hottie-1oohh-160hr-rainy-day-specials-_-24/38317518\"\r\n },\r\n \"@id\": \"http://losangeles.backpage.com/FemaleEscorts/undeniable-latina-hottie-1oohh-160hr-rainy-day-specials-_-24/38317518\"\r\n}";
String b = "{\r\n \"@type\": \"http://schema.org/Place\",\r\n \"schema:geo\": {\r\n \"schema:longitude\": \"-119.176487\",\r\n \"@type\": \"http://schema.org/GeoCoordinates\",\r\n \"schema:latitude\": \"34.196012\",\r\n \"@id\": \"http://dig.isi.edu/data/exchange/805253/geo\"\r\n },\r\n \"@id\": \"http://dig.isi.edu/data/exchange/805253\",\r\n \"schema:address\": {\r\n \"schema:addressLocality\": \"Oxnard\",\r\n \"@type\": \"http://schema.org/PostalAddress\",\r\n \"schema:addressRegion\": \"California\",\r\n \"@id\": \"http://dig.isi.edu/data/exchange/805253/postaladdress\"\r\n }\r\n}";
Text result = test.evaluate(new Text(a), new Text(b), new Text("$.dig:snapshot[*].dig:hasBodyPart.dig:mentionsPhoneNumber.schema:location"));
String expected = "{\"@type\":\"http://dig.isi.edu/ontology/URLEntity\",\"dig:snapshot\":{\"dig:hasTitlePart\":{\"@type\":\"http://schema.org/WebPageElement\",\"@id\":\"https://karmadigstorage.blob.core.windows.net/arch/churl/20140301/losangeles.backpage.com/FemaleEscorts/undeniable-latina-hottie-1oohh-160hr-rainy-day-specials-_-24/38317518/title\"},\"dig:hasBodyPart\":{\"dig:mentionsPhoneNumber\":{\"dig:tenDigitPhoneNumber\":\"8052536469\",\"schema:location\":{\"@type\":\"http://schema.org/Place\",\"schema:geo\":{\"schema:longitude\":\"-119.176487\",\"@type\":\"http://schema.org/GeoCoordinates\",\"schema:latitude\":\"34.196012\",\"@id\":\"http://dig.isi.edu/data/exchange/805253/geo\"},\"@id\":\"http://dig.isi.edu/data/exchange/805253\",\"schema:address\":{\"schema:addressLocality\":\"Oxnard\",\"@type\":\"http://schema.org/PostalAddress\",\"schema:addressRegion\":\"California\",\"@id\":\"http://dig.isi.edu/data/exchange/805253/postaladdress\"}},\"@type\":\"http://dig.isi.edu/ontology/PhoneNumber\",\"@id\":\"http://dig.isi.edu/data/phonenumber/8052536469\"},\"@type\":\"http://schema.org/WebPageElement\",\"@id\":\"https://karmadigstorage.blob.core.windows.net/arch/churl/20140301/losangeles.backpage.com/FemaleEscorts/undeniable-latina-hottie-1oohh-160hr-rainy-day-specials-_-24/38317518/body\"},\"@type\":\"http://schema.org/WebPage\",\"@id\":\"https://karmadigstorage.blob.core.windows.net/arch/churl/20140301/losangeles.backpage.com/FemaleEscorts/undeniable-latina-hottie-1oohh-160hr-rainy-day-specials-_-24/38317518\"},\"@id\":\"http://losangeles.backpage.com/FemaleEscorts/undeniable-latina-hottie-1oohh-160hr-rainy-day-specials-_-24/38317518\"}";
Assert.assertEquals(result.toString(), expected);
}
}