forked from opensearch-project/opensearch-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Karthik Subramanian <[email protected]>
- Loading branch information
Karthik Subramanian
committed
Oct 22, 2023
1 parent
978a021
commit 386565c
Showing
2 changed files
with
52 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
...client/src/test/java/org/opensearch/client/opensearch/json/JsonpDeserializerBaseTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package org.opensearch.client.opensearch.json; | ||
|
||
import jakarta.json.stream.JsonParser; | ||
import org.junit.Test; | ||
import org.opensearch.client.json.JsonpDeserializer; | ||
import org.opensearch.client.opensearch._types.FieldValue; | ||
import org.opensearch.client.opensearch.model.ModelTestCase; | ||
|
||
import java.io.StringReader; | ||
import java.util.List; | ||
|
||
|
||
public class JsonpDeserializerBaseTest extends ModelTestCase { | ||
|
||
@Test | ||
public void testNullArrayItem() { | ||
|
||
String json = "[\"a\", null, \"c\"]"; | ||
|
||
// Types that don't accept null events should end up as null values in the list | ||
{ | ||
JsonpDeserializer<String> stringDeser = JsonpDeserializer.stringDeserializer(); | ||
assertFalse(stringDeser.accepts(JsonParser.Event.VALUE_NULL)); | ||
|
||
JsonParser parser = mapper.jsonProvider().createParser(new StringReader(json)); | ||
|
||
List<String> stringList = JsonpDeserializer.arrayDeserializer(stringDeser).deserialize(parser, mapper); | ||
assertEquals("a", stringList.get(0)); | ||
assertNull(stringList.get(1)); | ||
assertEquals("c", stringList.get(2)); | ||
} | ||
|
||
// Types that do accept null events should end up as their null representation | ||
{ | ||
assertTrue(FieldValue._DESERIALIZER.accepts(JsonParser.Event.VALUE_NULL)); | ||
|
||
JsonParser parser = mapper.jsonProvider().createParser(new StringReader(json)); | ||
List<FieldValue> valueList = JsonpDeserializer.arrayDeserializer(FieldValue._DESERIALIZER).deserialize(parser, mapper); | ||
|
||
assertEquals("a", valueList.get(0)._get()); | ||
assertTrue(valueList.get(1).isNull()); | ||
assertEquals("c", valueList.get(2)._get()); | ||
} | ||
} | ||
} |