sergey
7 years ago
4 changed files with 55 additions and 0 deletions
@ -0,0 +1,23 @@
|
||||
package com.jayway.jsonpath.internal.function.json; |
||||
|
||||
import com.jayway.jsonpath.internal.EvaluationContext; |
||||
import com.jayway.jsonpath.internal.PathRef; |
||||
import com.jayway.jsonpath.internal.function.Parameter; |
||||
import com.jayway.jsonpath.internal.function.PathFunction; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* Author: Sergey Saiyan sergey.sova42@gmail.com |
||||
* Created at 21/02/2018. |
||||
*/ |
||||
public class KeySetFunction implements PathFunction { |
||||
|
||||
@Override |
||||
public Object invoke(String currentPath, PathRef parent, Object model, EvaluationContext ctx, List<Parameter> parameters) { |
||||
if (ctx.configuration().jsonProvider().isMap(model)) { |
||||
return ctx.configuration().jsonProvider().getPropertyKeys(model); |
||||
} |
||||
return null; |
||||
} |
||||
} |
@ -0,0 +1,24 @@
|
||||
package com.jayway.jsonpath.internal.function; |
||||
|
||||
import com.jayway.jsonpath.Configuration; |
||||
import com.jayway.jsonpath.Configurations; |
||||
import org.apache.commons.io.IOUtils; |
||||
import org.junit.Test; |
||||
|
||||
import java.util.Arrays; |
||||
import java.util.HashSet; |
||||
|
||||
/** |
||||
* Author: Sergey Saiyan sergey.sova42@gmail.com |
||||
* Created at 21/02/2018. |
||||
*/ |
||||
public class KeySetFunctionTest extends BaseFunctionTest { |
||||
|
||||
private Configuration conf = Configurations.JACKSON_CONFIGURATION; |
||||
|
||||
@Test |
||||
public void testKeySet() throws Exception { |
||||
String json = IOUtils.toString(getClass().getResourceAsStream("/keyset.json")); |
||||
verifyFunction(conf, "$.data.keys()", json, new HashSet<String>(Arrays.asList("a", "b"))); |
||||
} |
||||
} |
Loading…
Reference in new issue