Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Provide a way to test new checking rulesets on eduGAIN data
Browse files Browse the repository at this point in the history
See ukf/ukf-meta#20.
  • Loading branch information
iay committed Jan 31, 2017
1 parent 3e223e8 commit 2231c4e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2247,6 +2247,9 @@
<target name="flow.verifyEdugain.output">
<CHANNEL.do verb="verify" channel="int_edugain"/>
</target>
<target name="flow.verifyEdugain.output.new">
<CHANNEL.do verb="verify.new" channel="int_edugain"/>
</target>
<target name="flow.verifyEdugain.output.all">
<CHANNEL.do verb="verify.all" channel="int_edugain"/>
</target>
Expand Down
20 changes: 20 additions & 0 deletions mdx/int_edugain/verbs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,26 @@
</property>
</bean>

<!--
verify.new
Live verify, but adding "new" checks that we don't impose on the live import.
-->
<bean id="verify.new" parent="SimplePipeline">
<property name="stages">
<list>
<ref bean="int_edugain_productionEntities"/>
<bean id="removeBlacklistedEntities" parent="EntityFilterStage"
p:whitelistingEntities="false"
p:designatedEntities-ref="int_edugain_verify_blacklist"/>

<ref bean="check_rands"/>
<ref bean="standardImportActions"/>
<ref bean="errorTerminatingFilter"/>
</list>
</property>
</bean>

<!--
verify.recovered
Expand Down

0 comments on commit 2231c4e

Please sign in to comment.