Skip to content

Commit

Permalink
MID-8842 ninja - task policy rule processor + test
Browse files Browse the repository at this point in the history
(cherry picked from commit ce06fbb)
  • Loading branch information
1azyman committed Jul 26, 2023
1 parent c5dcce5 commit 17a8080
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* Copyright (C) 2010-2023 Evolveum and contributors
*
* This work is dual-licensed under the Apache License 2.0
* and European Union Public License. See LICENSE file for details.
*/

package com.evolveum.midpoint.schema.validator.processor;

import com.evolveum.midpoint.prism.PrismObject;
import com.evolveum.midpoint.prism.path.ItemPath;
import com.evolveum.midpoint.schema.validator.UpgradeObjectProcessor;
import com.evolveum.midpoint.schema.validator.UpgradePhase;
import com.evolveum.midpoint.schema.validator.UpgradePriority;
import com.evolveum.midpoint.schema.validator.UpgradeType;
import com.evolveum.midpoint.xml.ns._public.common.common_3.TaskType;

@SuppressWarnings("unused")
public class TaskPolicyProcessor implements UpgradeObjectProcessor<TaskType> {

@Override
public UpgradePhase getPhase() {
return UpgradePhase.BEFORE;
}

@Override
public UpgradePriority getPriority() {
return UpgradePriority.NECESSARY;
}

@Override
public UpgradeType getType() {
return UpgradeType.MANUAL;
}

@Override
public boolean isApplicable(PrismObject<?> object, ItemPath path) {
return matchParentTypeAndItemName(object, path, TaskType.class, TaskType.F_POLICY_RULE);
}

@Override
public boolean process(PrismObject<TaskType> object, ItemPath path) throws Exception {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public void test70Archetype() throws Exception {
public void test80TaskRecomputation() throws Exception {
testUpgradeValidator("task-recomputation.xml", result -> {
Assertions.assertThat(result.getItems())
.hasSize(4);
.hasSize(5);

Assertions.assertThat(result.hasChanges()).isTrue();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,10 @@
</tracing>
</reporting>
</activity>

<policyRule>
<policyConstraints>
<name>sample</name>
</policyConstraints>
</policyRule>
</task>
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,10 @@
<modelOperationContext>
<state>execution</state>
</modelOperationContext>

<policyRule>
<policyConstraints>
<name>sample</name>
</policyConstraints>
</policyRule>
</task>

0 comments on commit 17a8080

Please sign in to comment.