diff options
author | Fredrik Aslund <fredrik.aslund@umu.se> | 2016-05-09 16:03:28 +0200 |
---|---|---|
committer | Fredrik Aslund <fredrik.aslund@umu.se> | 2016-05-09 16:03:28 +0200 |
commit | d610783308f19d3b2ad802461091abf41ed76ce7 (patch) | |
tree | cc7e624841e0082f56691654f42854b9fcc16128 /Makefile | |
parent | 1f6efee58844a6d6fd12c248832365928a2bb860 (diff) |
al1 added to al2 IdP:s
swamid-2.0/login.idp.eduid.se-idp.xml.xml renamed to swamid-2.0/login.idp.eduid.se-idp.xml
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -156,6 +156,8 @@ committest: test @for x in `find $(SRCDIRS) -name \*.xml`; do if cat $$x | sed -n 's;.*<[a-z0-9:]*GeolocationHint>\(.*\)</[a-z0-9:]*GeolocationHint>;\1;p' | grep -q -vE '^$$|^geo:[0-9][0-9][0-9.]*,[0-9][0-9][0-9.]*$$' ; then echo " $$x" ; fi ; done | grep . && exit 1 || true @echo "Check for new SP:s with SimpleSign (breaks ADFS IdP:s with Shib SP 2.5+)" @for x in `find $(SRCDIRS) -name \*.xml`; do if ! grep -qx `basename $$x` sp-with-simplesign && grep -q HTTP-POST-SimpleSign $$x ; then echo " $$x" ; fi ; done | grep . && exit 1 || true + @echo "Check for IdP:s with AL2 without AL1" + @for x in `find $(SRCDIRS) -name \*.xml`; do if grep -q http://www.swamid.se/policy/assurance/al2 $$x && ! grep -q http://www.swamid.se/policy/assurance/al1 $$x ; then echo " $$x" ; fi ; done | grep . && exit 1 || true commit: tidy committest @git diff --color || true |