use of com.googlecode.aviator.runtime.type.AviatorJavaType in project aviatorscript by killme2008.
the class SeqFilterFunctionUnitTest method testFilter_String.
@Test
public void testFilter_String() {
SeqFilterFunction fun = new SeqFilterFunction();
SeqPredicateFunction predicate = new SeqPredicateFunction("eq_temp_1", OperatorType.EQ, new AviatorString("l"));
Map<String, Object> env = new HashMap<String, Object>();
env.putAll(AviatorEvaluator.FUNC_MAP);
env.put("eq_temp_1", predicate);
AviatorObject result = fun.call(env, AviatorRuntimeJavaType.valueOf("hello"), new AviatorJavaType("eq_temp_1"));
List list = (List) result.getValue(null);
assertEquals(2, list.size());
for (Object i : list) {
assertEquals("l", i);
}
}
use of com.googlecode.aviator.runtime.type.AviatorJavaType in project aviatorscript by killme2008.
the class SeqFilterFunctionUnitTest method testFilter_Collection.
@Test
public void testFilter_Collection() {
final List<String> strs = new LinkedList<String>();
for (int i = 0; i < 10; i++) {
strs.add("hello" + i);
}
SeqPredicateFunction predicate = new SeqPredicateFunction("eq_temp_1", OperatorType.EQ, new AviatorString("hello1"));
Map<String, Object> env = new HashMap<String, Object>();
env.putAll(AviatorEvaluator.FUNC_MAP);
env.put("eq_temp_1", predicate);
SeqFilterFunction fun = new SeqFilterFunction();
AviatorObject result = fun.call(env, AviatorRuntimeJavaType.valueOf(strs), new AviatorJavaType("eq_temp_1"));
LinkedList list = (LinkedList) result.getValue(null);
assertEquals(1, list.size());
for (Object i : list) {
assertEquals("hello1", i);
}
}
use of com.googlecode.aviator.runtime.type.AviatorJavaType in project aviatorscript by killme2008.
the class SeqFilterFunctionUnitTest method testFilter_Array.
@Test
public void testFilter_Array() {
final String[] strs = new String[10];
for (int i = 0; i < strs.length; i++) {
strs[i] = "hello" + i;
}
SeqPredicateFunction predicate = new SeqPredicateFunction("eq_temp_1", OperatorType.EQ, new AviatorString("hello1"));
Map<String, Object> env = new HashMap<String, Object>();
env.putAll(AviatorEvaluator.FUNC_MAP);
env.put("eq_temp_1", predicate);
SeqFilterFunction fun = new SeqFilterFunction();
AviatorObject result = fun.call(env, AviatorRuntimeJavaType.valueOf(strs), new AviatorJavaType("eq_temp_1"));
Object[] array = (Object[]) result.getValue(null);
assertEquals(1, array.length);
for (Object i : array) {
assertEquals("hello1", i);
}
}
use of com.googlecode.aviator.runtime.type.AviatorJavaType in project aviatorscript by killme2008.
the class SeqMapFunctionUnitTest method testMap_Array.
@Test
public void testMap_Array() {
final String[] strs = new String[10];
for (int i = 0; i < strs.length; i++) {
strs[i] = "hello";
}
SeqMapFunction fun = new SeqMapFunction();
AviatorObject result = fun.call(AviatorEvaluator.FUNC_MAP, AviatorRuntimeJavaType.valueOf(strs), new AviatorJavaType("string.length"));
Object[] array = (Object[]) result.getValue(null);
for (Object i : array) {
assertEquals(5, i);
}
}
use of com.googlecode.aviator.runtime.type.AviatorJavaType in project aviatorscript by killme2008.
the class SeqMapFunctionUnitTest method testCount_Collection.
@Test
public void testCount_Collection() {
final List<String> strs = new LinkedList<String>();
for (int i = 0; i < 10; i++) {
strs.add("hello");
}
SeqMapFunction fun = new SeqMapFunction();
Env env = TestUtils.getTestEnv();
AviatorObject result = fun.call(env, AviatorRuntimeJavaType.valueOf(strs), new AviatorJavaType("string.length"));
LinkedList array = (LinkedList) result.getValue(env);
for (Object i : array) {
assertEquals(5, i);
}
}
Aggregations