Search in sources :

Example 1 with WarningModel

use of org.iobserve.service.privacy.violation.data.WarningModel in project iobserve-analysis by research-iobserve.

the class ModelProbeControllerTest method testEmptyWarningList.

@Test
public void testEmptyWarningList() {
    final WarningModel warnings = new WarningModel();
    warnings.setWarningEdges(null);
    final List<WarningModel> input1 = new LinkedList<>();
    input1.add(warnings);
    final List<ProbeManagementData> output = new LinkedList<>();
    this.modelProbeController = new ModelProbeController();
    StageTester.test(this.modelProbeController).and().send(input1).to(this.modelProbeController.getInputPort()).receive(output).from(this.modelProbeController.getOutputPort()).start();
    Assert.assertTrue(output.isEmpty());
}
Also used : ModelProbeController(org.iobserve.service.privacy.violation.filter.ModelProbeController) ProbeManagementData(org.iobserve.service.privacy.violation.data.ProbeManagementData) WarningModel(org.iobserve.service.privacy.violation.data.WarningModel) LinkedList(java.util.LinkedList) Test(org.junit.Test)

Example 2 with WarningModel

use of org.iobserve.service.privacy.violation.data.WarningModel in project iobserve-analysis by research-iobserve.

the class ModelProbeControllerTest method testNullWarningList.

@Test
public void testNullWarningList() {
    final WarningModel warnings = new WarningModel();
    warnings.setWarningEdges(null);
    final List<WarningModel> input1 = new LinkedList<>();
    input1.add(warnings);
    final List<ProbeManagementData> output = new LinkedList<>();
    this.modelProbeController = new ModelProbeController();
    StageTester.test(this.modelProbeController).and().send(input1).to(this.modelProbeController.getInputPort()).receive(output).from(this.modelProbeController.getOutputPort()).start();
    Assert.assertTrue(output.isEmpty());
}
Also used : ModelProbeController(org.iobserve.service.privacy.violation.filter.ModelProbeController) ProbeManagementData(org.iobserve.service.privacy.violation.data.ProbeManagementData) WarningModel(org.iobserve.service.privacy.violation.data.WarningModel) LinkedList(java.util.LinkedList) Test(org.junit.Test)

Example 3 with WarningModel

use of org.iobserve.service.privacy.violation.data.WarningModel in project iobserve-analysis by research-iobserve.

the class DataProtectionWarner method performPrivacyEvaluation.

private void performPrivacyEvaluation(final IPCMDeploymentEvent triggerEvent) throws FileNotFoundException, InstantiationException, IllegalAccessException, ClassNotFoundException, IOException, InvocationException, DBException {
    final PrivacyGraph graph = this.createAnalysisGraph();
    // debug code this.print(graph);
    final WarningModel warnings = this.checkGraph(graph);
    warnings.setEvent(triggerEvent);
    this.probesOutputPort.send(warnings);
    this.warningsOutputPort.send(warnings);
}
Also used : WarningModel(org.iobserve.service.privacy.violation.data.WarningModel) PrivacyGraph(org.iobserve.service.privacy.violation.transformation.analysisgraph.PrivacyGraph)

Example 4 with WarningModel

use of org.iobserve.service.privacy.violation.data.WarningModel in project iobserve-analysis by research-iobserve.

the class DataProtectionWarner method checkGraph.

private WarningModel checkGraph(final PrivacyGraph graph) throws FileNotFoundException, InstantiationException, IllegalAccessException, ClassNotFoundException, IOException {
    final WarningModel warnings = new WarningModel();
    final PrivacyChecker privacyChecker = new PrivacyChecker(this.policyList, this.policyPackage);
    final List<Edge> edges = privacyChecker.check(graph);
    for (final Edge edge : edges) {
        warnings.addMessage(edge.getPrint() + "");
        warnings.addWarningEdge(edge);
    }
    warnings.setDate(new Date());
    return warnings;
}
Also used : PrivacyChecker(org.iobserve.service.privacy.violation.transformation.privacycheck.PrivacyChecker) WarningModel(org.iobserve.service.privacy.violation.data.WarningModel) Edge(org.iobserve.service.privacy.violation.transformation.analysisgraph.Edge) Date(java.util.Date)

Example 5 with WarningModel

use of org.iobserve.service.privacy.violation.data.WarningModel in project iobserve-analysis by research-iobserve.

the class ModelProbeControllerTest method testComputedMethodsToActivateAndToDeactivate.

@Test
public void testComputedMethodsToActivateAndToDeactivate() {
    this.modelProbeController = new ModelProbeController();
    final OperationSignature operationSignature1 = Mockito.mock(OperationSignature.class);
    final OperationSignature operationSignature2 = Mockito.mock(OperationSignature.class);
    final AllocationContext allocationContext1 = Mockito.mock(AllocationContext.class);
    final AllocationContext allocationContext2 = Mockito.mock(AllocationContext.class);
    final WarningModel warnings1 = new WarningModel();
    final Edge edge1 = new Edge(new Vertex("test vertex 1", EStereoType.DATASOURCE), new Vertex("test vertex 2", EStereoType.DATASOURCE));
    edge1.setOperationSignature(operationSignature1);
    edge1.getSource().setAllocationContext(allocationContext1);
    final Edge edge2 = new Edge(new Vertex("test vertex 3", EStereoType.DATASOURCE), new Vertex("test vertex 4", EStereoType.DATASOURCE));
    edge2.setOperationSignature(operationSignature2);
    edge2.getSource().setAllocationContext(allocationContext2);
    warnings1.addWarningEdge(edge1);
    warnings1.addWarningEdge(edge2);
    final Map<AllocationContext, Set<OperationSignature>> methodsToActivate1 = new HashMap<>();
    final Set<OperationSignature> methodsSet1 = new HashSet<>();
    methodsSet1.add(operationSignature1);
    methodsToActivate1.put(allocationContext1, methodsSet1);
    final Set<OperationSignature> methodsSet2 = new HashSet<>();
    methodsSet2.add(operationSignature2);
    methodsToActivate1.put(allocationContext2, methodsSet2);
    final ProbeManagementData expectedOutcome1 = new ProbeManagementData(methodsToActivate1, new HashMap<AllocationContext, Set<OperationSignature>>());
    // deactivate 1, keep 1, add 1 to existing and add double set / allocation to output port
    final OperationSignature operationSignature3 = Mockito.mock(OperationSignature.class);
    final OperationSignature operationSignature4 = Mockito.mock(OperationSignature.class);
    final OperationSignature operationSignature5 = Mockito.mock(OperationSignature.class);
    final AllocationContext allocationContext3 = Mockito.mock(AllocationContext.class);
    final Edge edge3 = new Edge(new Vertex("test vertex 5", EStereoType.DATASOURCE), new Vertex("test vertex 6", EStereoType.DATASOURCE));
    edge3.setOperationSignature(operationSignature3);
    edge3.getSource().setAllocationContext(allocationContext2);
    final Edge edge4 = new Edge(new Vertex("test vertex 7", EStereoType.DATASOURCE), new Vertex("test vertex 8", EStereoType.DATASOURCE));
    edge4.setOperationSignature(operationSignature4);
    edge4.getSource().setAllocationContext(allocationContext3);
    final Edge edge5 = new Edge(new Vertex("test vertex 9", EStereoType.DATASOURCE), new Vertex("test vertex 10", EStereoType.DATASOURCE));
    edge5.setOperationSignature(operationSignature5);
    edge5.getSource().setAllocationContext(allocationContext3);
    final WarningModel warnings2 = new WarningModel();
    warnings2.addWarningEdge(edge2);
    warnings2.addWarningEdge(edge3);
    warnings2.addWarningEdge(edge4);
    warnings2.addWarningEdge(edge5);
    final Map<AllocationContext, Set<OperationSignature>> methodsToActivate2 = new HashMap<>();
    final Set<OperationSignature> methodsSet3 = new HashSet<>();
    methodsSet3.add(operationSignature3);
    methodsToActivate2.put(allocationContext2, methodsSet3);
    final Set<OperationSignature> methodsSet4 = new HashSet<>();
    methodsSet4.add(operationSignature4);
    methodsSet4.add(operationSignature5);
    methodsToActivate2.put(allocationContext3, methodsSet4);
    final Map<AllocationContext, Set<OperationSignature>> methodsToDeactivate2 = new HashMap<>();
    methodsToDeactivate2.put(allocationContext1, methodsSet1);
    final ProbeManagementData expectedOutcome2 = new ProbeManagementData(methodsToActivate2, methodsToDeactivate2);
    final List<WarningModel> input = new LinkedList<>();
    input.add(warnings1);
    input.add(warnings2);
    final List<ProbeManagementData> output = new LinkedList<>();
    StageTester.test(this.modelProbeController).and().send(input).to(this.modelProbeController.getInputPort()).receive(output).from(this.modelProbeController.getOutputPort()).start();
    Assert.assertTrue(output.get(0).getMethodsToActivate().equals(expectedOutcome1.getMethodsToActivate()));
    Assert.assertTrue(output.get(0).getMethodsToDeactivate().equals(expectedOutcome1.getMethodsToDeactivate()));
    Assert.assertTrue(output.get(1).getMethodsToActivate().equals(expectedOutcome2.getMethodsToActivate()));
    Assert.assertTrue(output.get(1).getMethodsToDeactivate().equals(expectedOutcome2.getMethodsToDeactivate()));
}
Also used : Vertex(org.iobserve.service.privacy.violation.transformation.analysisgraph.Vertex) Set(java.util.Set) HashSet(java.util.HashSet) HashMap(java.util.HashMap) ModelProbeController(org.iobserve.service.privacy.violation.filter.ModelProbeController) ProbeManagementData(org.iobserve.service.privacy.violation.data.ProbeManagementData) WarningModel(org.iobserve.service.privacy.violation.data.WarningModel) LinkedList(java.util.LinkedList) AllocationContext(org.palladiosimulator.pcm.allocation.AllocationContext) OperationSignature(org.palladiosimulator.pcm.repository.OperationSignature) Edge(org.iobserve.service.privacy.violation.transformation.analysisgraph.Edge) HashSet(java.util.HashSet) Test(org.junit.Test)

Aggregations

WarningModel (org.iobserve.service.privacy.violation.data.WarningModel)5 LinkedList (java.util.LinkedList)3 ProbeManagementData (org.iobserve.service.privacy.violation.data.ProbeManagementData)3 ModelProbeController (org.iobserve.service.privacy.violation.filter.ModelProbeController)3 Test (org.junit.Test)3 Edge (org.iobserve.service.privacy.violation.transformation.analysisgraph.Edge)2 Date (java.util.Date)1 HashMap (java.util.HashMap)1 HashSet (java.util.HashSet)1 Set (java.util.Set)1 PrivacyGraph (org.iobserve.service.privacy.violation.transformation.analysisgraph.PrivacyGraph)1 Vertex (org.iobserve.service.privacy.violation.transformation.analysisgraph.Vertex)1 PrivacyChecker (org.iobserve.service.privacy.violation.transformation.privacycheck.PrivacyChecker)1 AllocationContext (org.palladiosimulator.pcm.allocation.AllocationContext)1 OperationSignature (org.palladiosimulator.pcm.repository.OperationSignature)1