mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
03.45.2016 9d924864595c8e9bcbdcef629f41f4efbbca29fa
OPENDJ-3054: Add unit test for soft hyphen matching rule normalization

Demonstrates compliance with RFC 4518 section 2.2 treatment of Unicode
SOFT HYPHEN characters.
1 files modified
1 ■■■■ changed files
opendj-core/src/test/java/org/forgerock/opendj/ldap/schema/CaseIgnoreEqualityMatchingRuleTest.java 1 ●●●● patch | view | raw | blame | history
opendj-core/src/test/java/org/forgerock/opendj/ldap/schema/CaseIgnoreEqualityMatchingRuleTest.java
@@ -49,6 +49,7 @@
            { "foo\u0149bar", "foo\u02BC\u006Ebar", ConditionResult.TRUE },
            { "foo\u017Bbar", "foo\u017Cbar", ConditionResult.TRUE },
            { "foo\u017BBAR", "foo\u017Cbar", ConditionResult.TRUE },
            { "Sofia", "Sofi\u00ADa", ConditionResult.TRUE }, // OPENDJ-3054: map soft hypen to nothing.
        };
    }