use of org.nhindirect.policy.impl.machine.StackMachineEntry in project nhin-d by DirectProject.
the class StackMachine_evaluateTest method testEvaluate_finalNonBoolEntry_assertException.
public void testEvaluate_finalNonBoolEntry_assertException() throws Exception {
final Vector<Opcode> stuffToProcess = new Vector<Opcode>();
stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance("12345")));
boolean exceptionOccured = false;
final StackMachine stMachine = new StackMachine();
try {
stMachine.evaluate(stuffToProcess);
} catch (IllegalStateException e) {
exceptionOccured = true;
}
assertTrue(exceptionOccured);
}
use of org.nhindirect.policy.impl.machine.StackMachineEntry in project nhin-d by DirectProject.
the class StackMachine_evaluateTest method testEvaluate_equalsDifferentStringValues_assertFalse.
public void testEvaluate_equalsDifferentStringValues_assertFalse() throws Exception {
final Vector<Opcode> stuffToProcess = new Vector<Opcode>();
stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance("12345")));
stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance("22345")));
stuffToProcess.add(new StackMachineEntry(PolicyOperator.EQUALS));
final StackMachine stMachine = new StackMachine();
assertFalse(stMachine.evaluate(stuffToProcess));
}
use of org.nhindirect.policy.impl.machine.StackMachineEntry in project nhin-d by DirectProject.
the class StackMachine_evaluateTest method testEvaluate_notEqualsDifferentTypeValues_assertFalse.
public void testEvaluate_notEqualsDifferentTypeValues_assertFalse() throws Exception {
final Vector<Opcode> stuffToProcess = new Vector<Opcode>();
stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance("12345")));
stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance(12345)));
stuffToProcess.add(new StackMachineEntry(PolicyOperator.NOT_EQUALS));
final StackMachine stMachine = new StackMachine();
assertFalse(stMachine.evaluate(stuffToProcess));
}
use of org.nhindirect.policy.impl.machine.StackMachineEntry in project nhin-d by DirectProject.
the class StackMachine_evaluateTest method testEvaluate_logicalOrBothTrue_assertTrue.
public void testEvaluate_logicalOrBothTrue_assertTrue() throws Exception {
final Vector<Opcode> stuffToProcess = new Vector<Opcode>();
stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance(true)));
stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance(true)));
stuffToProcess.add(new StackMachineEntry(PolicyOperator.LOGICAL_OR));
final StackMachine stMachine = new StackMachine();
assertTrue(stMachine.evaluate(stuffToProcess));
}
use of org.nhindirect.policy.impl.machine.StackMachineEntry in project nhin-d by DirectProject.
the class StackMachine_evaluateTest method testEvaluate_uriValidate_noHostURI_assertFalse.
public void testEvaluate_uriValidate_noHostURI_assertFalse() throws Exception {
final Vector<Opcode> stuffToProcess = new Vector<Opcode>();
stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance("http://bogus.unit.test.ccc")));
stuffToProcess.add(new StackMachineEntry(PolicyOperator.URI_VALIDATE));
final StackMachine stMachine = new StackMachine();
assertFalse(stMachine.evaluate(stuffToProcess));
}
Aggregations