use of org.apache.directory.api.ldap.model.schema.normalizers.DeepTrimNormalizer in project directory-ldap-api by apache.
the class DeepTrimNormalizerTest method testInsignifiantSpacesStringOneCombining.
@Test
public void testInsignifiantSpacesStringOneCombining() throws LdapException {
Normalizer normalizer = new DeepTrimNormalizer("1.1.1");
char[] chars = new char[] { ' ', 0x0310 };
char[] expected = new char[] { ' ', 0x0310, ' ' };
// assertEquals( new String( expected ), normalizer.normalize( new String( chars ) ) );
String expectedStr = new String(expected);
String charsStr = new String(chars);
assertEquals(expectedStr, normalizer.normalize(charsStr));
}
use of org.apache.directory.api.ldap.model.schema.normalizers.DeepTrimNormalizer in project directory-ldap-api by apache.
the class DeepTrimNormalizerTest method testDeepTrimNormalizerEmpty.
@Test
public void testDeepTrimNormalizerEmpty() throws LdapException {
Normalizer normalizer = new DeepTrimNormalizer("1.1.1");
assertEquals(" ", normalizer.normalize(""));
}
use of org.apache.directory.api.ldap.model.schema.normalizers.DeepTrimNormalizer in project directory-ldap-api by apache.
the class DeepTrimNormalizerTest method testDeepTrimNormalizerNSpaces.
@Test
public void testDeepTrimNormalizerNSpaces() throws LdapException {
Normalizer normalizer = new DeepTrimNormalizer("1.1.1");
assertEquals(" ", normalizer.normalize(" "));
}
use of org.apache.directory.api.ldap.model.schema.normalizers.DeepTrimNormalizer in project directory-ldap-api by apache.
the class DeepTrimNormalizerTest method testInsignifiantSpacesStringNCombining.
@Test
public void testInsignifiantSpacesStringNCombining() throws LdapException {
Normalizer normalizer = new DeepTrimNormalizer("1.1.1");
char[] chars = new char[] { ' ', 0x0310, ' ', 0x0311, ' ', 0x0312 };
char[] expected = new char[] { ' ', 0x0310, ' ', ' ', 0x0311, ' ', ' ', 0x0312, ' ' };
assertEquals(new String(expected), normalizer.normalize(new String(chars)));
}
Aggregations