Search in sources :

Example 11 with Opcode

use of org.nhindirect.policy.Opcode in project nhin-d by DirectProject.

the class DefaultPolicyFilter_isCompliantTest method testIsCompliant_engineReturnsCompliant_assertTrue.

@SuppressWarnings("unchecked")
public void testIsCompliant_engineReturnsCompliant_assertTrue() throws Exception {
    final Compiler compiler = mock(Compiler.class);
    final ExecutionEngine engine = mock(ExecutionEngine.class);
    final PolicyExpression expression = mock(PolicyExpression.class);
    final X509Certificate cert = mock(X509Certificate.class);
    when(engine.evaluate((Vector<Opcode>) any())).thenReturn(true);
    final DefaultPolicyFilter filter = new DefaultPolicyFilter();
    filter.setCompiler(compiler);
    filter.setExecutionEngine(engine);
    assertTrue(filter.isCompliant(cert, expression));
}
Also used : Compiler(org.nhindirect.policy.Compiler) ExecutionEngine(org.nhindirect.policy.ExecutionEngine) Opcode(org.nhindirect.policy.Opcode) PolicyExpression(org.nhindirect.policy.PolicyExpression) X509Certificate(java.security.cert.X509Certificate)

Example 12 with Opcode

use of org.nhindirect.policy.Opcode in project nhin-d by DirectProject.

the class DefaultPolicyFilter_isCompliantTest method testIsCompliant_parse_engineReturnsCompliant_assertTrue.

@SuppressWarnings("unchecked")
public void testIsCompliant_parse_engineReturnsCompliant_assertTrue() throws Exception {
    final InputStream inStream = FileUtils.openInputStream(new File("./src/test/resources/policies/dataEnciphermentOnlyRequired.xml"));
    final Compiler compiler = mock(Compiler.class);
    final ExecutionEngine engine = mock(ExecutionEngine.class);
    final X509Certificate cert = mock(X509Certificate.class);
    when(engine.evaluate((Vector<Opcode>) any())).thenReturn(true);
    final DefaultPolicyFilter filter = new DefaultPolicyFilter();
    filter.setCompiler(compiler);
    filter.setExecutionEngine(engine);
    assertTrue(filter.isCompliant(cert, inStream, PolicyLexicon.XML));
}
Also used : Compiler(org.nhindirect.policy.Compiler) ExecutionEngine(org.nhindirect.policy.ExecutionEngine) InputStream(java.io.InputStream) Opcode(org.nhindirect.policy.Opcode) File(java.io.File) X509Certificate(java.security.cert.X509Certificate)

Example 13 with Opcode

use of org.nhindirect.policy.Opcode in project nhin-d by DirectProject.

the class DefaultPolicyFilter_isCompliantTest method testIsCompliant_engineReturnsNotCompliant_assertFalse.

@SuppressWarnings("unchecked")
public void testIsCompliant_engineReturnsNotCompliant_assertFalse() throws Exception {
    final Compiler compiler = mock(Compiler.class);
    final ExecutionEngine engine = mock(ExecutionEngine.class);
    final PolicyExpression expression = mock(PolicyExpression.class);
    final X509Certificate cert = mock(X509Certificate.class);
    when(engine.evaluate((Vector<Opcode>) any())).thenReturn(false);
    final DefaultPolicyFilter filter = new DefaultPolicyFilter();
    filter.setCompiler(compiler);
    filter.setExecutionEngine(engine);
    assertFalse(filter.isCompliant(cert, expression));
}
Also used : Compiler(org.nhindirect.policy.Compiler) ExecutionEngine(org.nhindirect.policy.ExecutionEngine) Opcode(org.nhindirect.policy.Opcode) PolicyExpression(org.nhindirect.policy.PolicyExpression) X509Certificate(java.security.cert.X509Certificate)

Example 14 with Opcode

use of org.nhindirect.policy.Opcode in project nhin-d by DirectProject.

the class StackMachineCompiler_compileTest method testCompile_multipleEmbeddedOperations_extendedKeyUsage_keyUsage_assertEntriesAndEvaluation.

public void testCompile_multipleEmbeddedOperations_extendedKeyUsage_keyUsage_assertEntriesAndEvaluation() throws Exception {
    final X509Certificate cert = TestUtils.loadCertificate("mshost.der");
    // build the expression
    final Integer keyUsage = KeyUsage.nonRepudiation;
    final PolicyValue<Integer> op1 = PolicyValueFactory.getInstance(keyUsage);
    final LiteralPolicyExpression<Integer> expr1 = LiteralPolicyExpressionFactory.getInstance(op1);
    final KeyUsageExtensionField expr2 = new KeyUsageExtensionField(true);
    final Vector<PolicyExpression> operands1 = new Vector<PolicyExpression>();
    operands1.add(expr1);
    operands1.add(expr2);
    final OperationPolicyExpression oper1 = OperationPolicyExpressionFactory.getInstance(PolicyOperator.BITWISE_AND, operands1);
    // build outer expression embedding the first operation as a parameter
    final PolicyValue<Integer> op3 = PolicyValueFactory.getInstance(0);
    final LiteralPolicyExpression<Integer> expr3 = LiteralPolicyExpressionFactory.getInstance(op3);
    final Vector<PolicyExpression> operands2 = new Vector<PolicyExpression>();
    operands2.add(oper1);
    operands2.add(expr3);
    final OperationPolicyExpression oper2 = OperationPolicyExpressionFactory.getInstance(PolicyOperator.GREATER, operands2);
    final StackMachineCompiler compiler = new StackMachineCompiler();
    // build a separate expression for extended key usage
    final ExtendedKeyUsageExtensionField expr4 = new ExtendedKeyUsageExtensionField(true);
    final PolicyValue<String> op5 = PolicyValueFactory.getInstance(ExtendedKeyUsageIdentifier.ID_KP_EMAIL_PROTECTION.getId());
    final LiteralPolicyExpression<String> expr5 = LiteralPolicyExpressionFactory.getInstance(op5);
    final Vector<PolicyExpression> operands3 = new Vector<PolicyExpression>();
    operands3.add(expr4);
    operands3.add(expr5);
    final OperationPolicyExpression oper3 = OperationPolicyExpressionFactory.getInstance(PolicyOperator.CONTAINS, operands3);
    // build an and operator and make sure the cert has all policies met
    final Vector<PolicyExpression> operands4 = new Vector<PolicyExpression>();
    operands4.add(oper2);
    operands4.add(oper3);
    final OperationPolicyExpression oper4 = OperationPolicyExpressionFactory.getInstance(PolicyOperator.LOGICAL_AND, operands4);
    final Vector<Opcode> entries = compiler.compile(cert, oper4);
    assertEquals(9, entries.size());
    assertEquals(op1, ((StackMachineEntry) entries.get(0)).getValue());
    assertEquals(expr2.getPolicyValue().getPolicyValue(), ((StackMachineEntry) entries.get(1)).getValue().getPolicyValue());
    assertEquals(PolicyOperator.BITWISE_AND, ((StackMachineEntry) entries.get(2)).getOperator());
    assertEquals(op3, ((StackMachineEntry) entries.get(3)).getValue());
    assertEquals(PolicyOperator.GREATER, ((StackMachineEntry) entries.get(4)).getOperator());
    assertEquals(expr4.getPolicyValue(), ((StackMachineEntry) entries.get(5)).getValue());
    assertEquals(op5, ((StackMachineEntry) entries.get(6)).getValue());
    assertEquals(PolicyOperator.CONTAINS, ((StackMachineEntry) entries.get(7)).getOperator());
    assertEquals(PolicyOperator.LOGICAL_AND, ((StackMachineEntry) entries.get(8)).getOperator());
    // execute the compiled expression in the stack machine
    final StackMachine machine = new StackMachine();
    final Boolean evalVal = machine.evaluate(entries);
    assertTrue(evalVal);
}
Also used : ExtendedKeyUsageExtensionField(org.nhindirect.policy.x509.ExtendedKeyUsageExtensionField) Opcode(org.nhindirect.policy.Opcode) LiteralPolicyExpression(org.nhindirect.policy.LiteralPolicyExpression) PolicyExpression(org.nhindirect.policy.PolicyExpression) OperationPolicyExpression(org.nhindirect.policy.OperationPolicyExpression) StackMachineCompiler(org.nhindirect.policy.impl.machine.StackMachineCompiler) X509Certificate(java.security.cert.X509Certificate) OperationPolicyExpression(org.nhindirect.policy.OperationPolicyExpression) StackMachine(org.nhindirect.policy.impl.machine.StackMachine) StackMachineEntry(org.nhindirect.policy.impl.machine.StackMachineEntry) KeyUsageExtensionField(org.nhindirect.policy.x509.KeyUsageExtensionField) ExtendedKeyUsageExtensionField(org.nhindirect.policy.x509.ExtendedKeyUsageExtensionField) Vector(java.util.Vector)

Example 15 with Opcode

use of org.nhindirect.policy.Opcode in project nhin-d by DirectProject.

the class StackMachine_evaluateTest method testEvaluate_logicalNotFalseValue_assertTrue.

public void testEvaluate_logicalNotFalseValue_assertTrue() throws Exception {
    final Vector<Opcode> stuffToProcess = new Vector<Opcode>();
    stuffToProcess.add(new StackMachineEntry(PolicyValueFactory.getInstance(false)));
    stuffToProcess.add(new StackMachineEntry(PolicyOperator.LOGICAL_NOT));
    final StackMachine stMachine = new StackMachine();
    assertTrue(stMachine.evaluate(stuffToProcess));
}
Also used : StackMachine(org.nhindirect.policy.impl.machine.StackMachine) StackMachineEntry(org.nhindirect.policy.impl.machine.StackMachineEntry) Opcode(org.nhindirect.policy.Opcode) Vector(java.util.Vector)

Aggregations

Opcode (org.nhindirect.policy.Opcode)47 Vector (java.util.Vector)43 StackMachine (org.nhindirect.policy.impl.machine.StackMachine)43 StackMachineEntry (org.nhindirect.policy.impl.machine.StackMachineEntry)40 PolicyExpression (org.nhindirect.policy.PolicyExpression)7 X509Certificate (java.security.cert.X509Certificate)6 LiteralPolicyExpression (org.nhindirect.policy.LiteralPolicyExpression)5 OperationPolicyExpression (org.nhindirect.policy.OperationPolicyExpression)5 StackMachineCompiler (org.nhindirect.policy.impl.machine.StackMachineCompiler)5 Compiler (org.nhindirect.policy.Compiler)3 ExecutionEngine (org.nhindirect.policy.ExecutionEngine)3 ExtendedKeyUsageExtensionField (org.nhindirect.policy.x509.ExtendedKeyUsageExtensionField)3 KeyUsageExtensionField (org.nhindirect.policy.x509.KeyUsageExtensionField)3 File (java.io.File)1 InputStream (java.io.InputStream)1 PolicyOperatorExecutor (org.nhindirect.policy.PolicyOperatorExecutor)1