|
27 | 27 | import org.junit.Test;
|
28 | 28 |
|
29 | 29 | import java.io.StringReader;
|
| 30 | +import java.util.ArrayList; |
30 | 31 | import java.util.Arrays;
|
| 32 | +import java.util.Collection; |
31 | 33 | import java.util.Date;
|
32 | 34 | import java.util.List;
|
33 | 35 | import java.util.Map;
|
@@ -151,10 +153,97 @@ public void testChild() throws Exception {
|
151 | 153 | assertEquals(arrIn.child[1].name, arrOut.child[1].name);
|
152 | 154 |
|
153 | 155 | }
|
| 156 | + public void testMappedChild() throws Exception { |
| 157 | + DocumentObjectBinder binder = new DocumentObjectBinder(); |
| 158 | + |
| 159 | + |
| 160 | + SingleValueNestedChild nestedNullChildIn = new SingleValueNestedChild(); |
| 161 | + nestedNullChildIn.id = "1-null-child"; |
| 162 | + nestedNullChildIn.child = null; |
| 163 | + SolrInputDocument nestedNullSolrInputDoc = binder.toSolrInputDocument(nestedNullChildIn); |
| 164 | + SolrDocument nestedNullSolrDoc = toSolrDocument(nestedNullSolrInputDoc); |
| 165 | + assertNull(nestedNullSolrInputDoc.getChildDocuments()); |
| 166 | + assertNull(nestedNullSolrDoc.getChildDocuments()); |
| 167 | + SingleValueNestedChild nestedNullChildOut = binder.getBean(SingleValueNestedChild.class, nestedNullSolrDoc); |
| 168 | + assertEquals(nestedNullChildIn.id, nestedNullChildOut.id); |
| 169 | + assertNull(nestedNullChildIn.child); |
| 170 | + assertNull(nestedNullChildOut.child); |
| 171 | + |
| 172 | + SingleValueNestedChild singleNestedIn = new SingleValueNestedChild(); |
| 173 | + singleNestedIn.id = "1"; |
| 174 | + singleNestedIn.child = new Child(); |
| 175 | + singleNestedIn.child.id = "1.1"; |
| 176 | + singleNestedIn.child.name = "Name One"; |
| 177 | + SolrInputDocument singleNestedSolrInputDoc = binder.toSolrInputDocument(singleNestedIn); |
| 178 | + SolrDocument singleNestedSolrDoc = toSolrDocument(singleNestedSolrInputDoc); |
| 179 | + assertNull(singleNestedSolrInputDoc.getChildDocuments()); |
| 180 | + assertNull(singleNestedSolrDoc.getChildDocuments()); |
| 181 | + SingleValueNestedChild singleNestedOut = binder.getBean(SingleValueNestedChild.class, singleNestedSolrDoc); |
| 182 | + assertEquals(singleNestedIn.id, singleNestedOut.id); |
| 183 | + assertEquals(singleNestedIn.child.id, singleNestedOut.child.id); |
| 184 | + assertEquals(singleNestedIn.child.name, singleNestedOut.child.name); |
| 185 | + |
| 186 | + ListNestedChild listNestedIn = new ListNestedChild(); |
| 187 | + listNestedIn.id = "2"; |
| 188 | + Child child = new Child(); |
| 189 | + child.id = "1.2"; |
| 190 | + child.name = "Name Two"; |
| 191 | + listNestedIn.child = Arrays.asList(singleNestedIn.child, child); |
| 192 | + SolrInputDocument listNestedSolrInputDoc = binder.toSolrInputDocument(listNestedIn); |
| 193 | + SolrDocument listNestedSolrDoc = toSolrDocument(listNestedSolrInputDoc); |
| 194 | + assertNull(listNestedSolrInputDoc.getChildDocuments()); |
| 195 | + assertNull(listNestedSolrDoc.getChildDocuments()); |
| 196 | + ListNestedChild listNestedOut = binder.getBean(ListNestedChild.class, listNestedSolrDoc); |
| 197 | + assertEquals(listNestedIn.id, listNestedOut.id); |
| 198 | + assertEquals(listNestedIn.child.get(0).id, listNestedOut.child.get(0).id); |
| 199 | + assertEquals(listNestedIn.child.get(0).name, listNestedOut.child.get(0).name); |
| 200 | + assertEquals(listNestedIn.child.get(1).id, listNestedOut.child.get(1).id); |
| 201 | + assertEquals(listNestedIn.child.get(1).name, listNestedOut.child.get(1).name); |
| 202 | + |
| 203 | + ArrayNestedChild arrayNestedIn = new ArrayNestedChild(); |
| 204 | + arrayNestedIn.id = "3"; |
| 205 | + arrayNestedIn.child = new Child[]{singleNestedIn.child, child}; |
| 206 | + SolrInputDocument arrayNestedSolrInputDoc = binder.toSolrInputDocument(arrayNestedIn); |
| 207 | + SolrDocument arrayNestedSolrDoc = toSolrDocument(arrayNestedSolrInputDoc); |
| 208 | + assertNull(arrayNestedSolrInputDoc.getChildDocuments()); |
| 209 | + assertNull(arrayNestedSolrDoc.getChildDocuments()); |
| 210 | + ArrayNestedChild arrayNestedOut = binder.getBean(ArrayNestedChild.class, arrayNestedSolrDoc); |
| 211 | + assertEquals(arrayNestedIn.id, arrayNestedOut.id); |
| 212 | + assertEquals(arrayNestedIn.child[0].id, arrayNestedOut.child[0].id); |
| 213 | + assertEquals(arrayNestedIn.child[0].name, arrayNestedOut.child[0].name); |
| 214 | + assertEquals(arrayNestedIn.child[1].id, arrayNestedOut.child[1].id); |
| 215 | + assertEquals(arrayNestedIn.child[1].name, arrayNestedOut.child[1].name); |
| 216 | + } |
154 | 217 |
|
155 | 218 | private static SolrDocument toSolrDocument(SolrInputDocument d) {
|
156 | 219 | SolrDocument doc = new SolrDocument();
|
157 | 220 | for (SolrInputField field : d) {
|
| 221 | + if (field.getValue() != null) { |
| 222 | + if (field.getValue() instanceof Collection) { |
| 223 | + Collection<?> values = (Collection<?>) field.getValue(); |
| 224 | + if (!values.isEmpty() && values.iterator().next() instanceof SolrInputDocument) { |
| 225 | + List<SolrDocument> docs = new ArrayList<>(values.size()); |
| 226 | + for (Object value : values) { |
| 227 | + docs.add(toSolrDocument((SolrInputDocument) value)); |
| 228 | + } |
| 229 | + doc.setField(field.getName(), docs); |
| 230 | + continue; |
| 231 | + } |
| 232 | + } else if (field.getValue().getClass().isArray()) { |
| 233 | + Object[] values = (Object[]) field.getValue(); |
| 234 | + if (values.length > 0 && values[0] instanceof SolrInputDocument) { |
| 235 | + SolrDocument[] docs = new SolrDocument[values.length]; |
| 236 | + for (int i = 0; i < values.length; i++) { |
| 237 | + docs[i] = toSolrDocument((SolrInputDocument) values[i]); |
| 238 | + } |
| 239 | + doc.setField(field.getName(), docs); |
| 240 | + continue; |
| 241 | + } |
| 242 | + } else if (field.getValue() instanceof SolrInputDocument) { |
| 243 | + doc.setField(field.getName(), toSolrDocument((SolrInputDocument) field.getValue())); |
| 244 | + continue; |
| 245 | + } |
| 246 | + } |
158 | 247 | doc.setField(field.getName(), field.getValue());
|
159 | 248 | }
|
160 | 249 | if (d.getChildDocuments() != null) {
|
@@ -245,7 +334,32 @@ public static class ArrayChild {
|
245 | 334 | @Field(child = true)
|
246 | 335 | Child[] child;
|
247 | 336 | }
|
248 |
| - |
| 337 | + |
| 338 | + public static class SingleValueNestedChild { |
| 339 | + @Field |
| 340 | + String id; |
| 341 | + |
| 342 | + @Field(child = true, anonymizeChild = false) |
| 343 | + Child child; |
| 344 | + } |
| 345 | + |
| 346 | + public static class ListNestedChild { |
| 347 | + |
| 348 | + @Field |
| 349 | + String id; |
| 350 | + |
| 351 | + @Field(child = true, anonymizeChild = false) |
| 352 | + List<Child> child; |
| 353 | + } |
| 354 | + |
| 355 | + public static class ArrayNestedChild { |
| 356 | + |
| 357 | + @Field |
| 358 | + String id; |
| 359 | + |
| 360 | + @Field(child = true, anonymizeChild = false) |
| 361 | + Child[] child; |
| 362 | + } |
249 | 363 |
|
250 | 364 | public static class NotGettableItem {
|
251 | 365 | @Field
|
|
0 commit comments