use of org.evosuite.symbolic.expr.str.StringVariable in project evosuite by EvoSuite.
the class StringAVMTests method testInsertRight.
@Test
public void testInsertRight() throws SolverTimeoutException {
String name = "foo";
String start = "abc";
StringVariable var = new StringVariable(name, start);
String format = start + "\\d\\d\\d";
List<Constraint<?>> constraints = getPatternConstraint(var, format);
long start_time = System.currentTimeMillis();
long timeout = Properties.DSE_CONSTRAINT_SOLVER_TIMEOUT_MILLIS;
StringAVM avm = new StringAVM(var, constraints, start_time, timeout);
boolean succeded = avm.applyAVM();
assertTrue(succeded);
String result = var.getConcreteValue();
assertTrue("Length=" + result.length(), result.length() == 6);
assertTrue(result, result.startsWith(start));
}
use of org.evosuite.symbolic.expr.str.StringVariable in project evosuite by EvoSuite.
the class TestConstraintSolver2 method buildConstraintSystem.
private static Collection<Constraint<?>> buildConstraintSystem() {
StringVariable var0 = new StringVariable("var0", INIT_STRING);
StringConstant const0 = new StringConstant(EXPECTED_STRING);
StringBinaryComparison strEqual = new StringBinaryComparison(var0, Operator.EQUALS, const0, (long) 0);
IntegerConstant const_zero = new IntegerConstant(0);
StringConstraint constr1 = new StringConstraint(strEqual, Comparator.NE, const_zero);
return Arrays.<Constraint<?>>asList(constr1);
}
use of org.evosuite.symbolic.expr.str.StringVariable in project evosuite by EvoSuite.
the class TestSolverStringFunctions method testNegativeLength.
public static Map<String, Object> testNegativeLength(Solver solver) throws SecurityException, NoSuchMethodException, SolverTimeoutException {
IntegerConstraint newIntegerConstraint = new IntegerConstraint(new StringUnaryToIntegerExpression(new StringVariable("var0", "01234"), Operator.LENGTH, (long) 5), Comparator.LT, new IntegerConstant(0));
Collection<Constraint<?>> constraints = Collections.<Constraint<?>>singleton(newIntegerConstraint);
Map<String, Object> solution = solve(solver, constraints);
return solution;
}
use of org.evosuite.symbolic.expr.str.StringVariable in project evosuite by EvoSuite.
the class TestStringDistance method createConstraints.
private Collection<Constraint<?>> createConstraints(final String str1, final String str2) {
StringVariable var1 = new StringVariable("var0", str1);
StringConstant const1 = new StringConstant(str2);
StringBinaryComparison comp = new StringBinaryComparison(var1, Operator.EQUALS, const1, 0L);
IntegerConstant zero = new IntegerConstant(0);
StringConstraint stringConstraint = new StringConstraint(comp, Comparator.NE, zero);
Collection<Constraint<?>> cnstr = Collections.<Constraint<?>>singletonList(stringConstraint);
return cnstr;
}
use of org.evosuite.symbolic.expr.str.StringVariable in project evosuite by EvoSuite.
the class TestStringSearch method testEqualsTrueConstant.
@Test
public void testEqualsTrueConstant() {
List<Constraint<?>> constraints = new ArrayList<Constraint<?>>();
String var1 = "foo";
String const2 = "test";
StringVariable strVar = new StringVariable("test1", var1);
StringConstant strConst = new StringConstant(const2);
StringBinaryComparison strComp = new StringBinaryComparison(strVar, Operator.EQUALS, strConst, 0L);
constraints.add(new StringConstraint(strComp, Comparator.NE, new IntegerConstant(0)));
EvoSuiteSolver skr = new EvoSuiteSolver();
Map<String, Object> result;
try {
result = solve(skr, constraints);
assertNotNull(result);
assertNotNull(result.get("test1"));
assertTrue(const2.equals(result.get("test1").toString()));
} catch (SolverTimeoutException e) {
fail();
}
}
Aggregations