Lines Matching defs:sn

87             {"(sn=test)", "(sn=test)"},
88 {"(sn=*)", "(sn=*)"},
89 {"(sn=)", "(sn=)"},
90 {"(sn=*test*)", "(sn=*test*)"},
92 {"(!(sn=test))", "(!(sn=test))"},
93 {"(|(sn=test)(sn=test2))", "(|(sn=test)(sn=test2))"},
95 {"(&(sn=test))", "(&(sn=test))"},
96 {"(|(sn=test))", "(|(sn=test))"},
139 String inputFilter = "(sn=" + inputChar + ")";
140 String outputFilter = "(sn=" + outputChar + ")";
144 inputFilter = "(sn=" + inputChar + "*" + inputChar + "*" + inputChar + ")";
145 outputFilter = "(sn=" + outputChar + "*" + outputChar + "*" + outputChar + ")";
149 inputFilter = "(sn<=" + inputChar + ")";
150 outputFilter = "(sn<=" + outputChar + ")";
154 inputFilter = "(sn>=" + inputChar + ")";
155 outputFilter = "(sn>=" + outputChar + ")";
159 inputFilter = "(sn>=" + inputChar + ")";
160 outputFilter = "(sn>=" + outputChar + ")";
164 inputFilter = "(sn:caseExactMatch:=" + inputChar + ")";
165 outputFilter = "(sn:caseExactMatch:=" + outputChar + ")";
200 allParameters.add(new String[]{"(sn=" + invalidEscape + ")"});
201 allParameters.add(new String[]{"(sn=" + invalidEscape});
204 allParameters.add(new String[]{"(sn=" + invalidEscape + "*" + invalidEscape + "*" + invalidEscape + ")"});
205 allParameters.add(new String[]{"(sn=" + invalidEscape + "*" + invalidEscape + "*" + invalidEscape});
208 allParameters.add(new String[]{"(sn<=" + invalidEscape + ")"});
209 allParameters.add(new String[]{"(sn<=" + invalidEscape});
212 allParameters.add(new String[]{"(sn>=" + invalidEscape + ")"});
213 allParameters.add(new String[]{"(sn>=" + invalidEscape});
216 allParameters.add(new String[]{"(sn>=" + invalidEscape + ")"});
217 allParameters.add(new String[]{"(sn>=" + invalidEscape});
220 allParameters.add(new String[]{"(sn:caseExactMatch:=" + invalidEscape + ")"});
221 allParameters.add(new String[]{"(sn:caseExactMatch:=" + invalidEscape});
277 {"(&(sn=test)"},
278 {"(|(sn=test)"},
279 {"(!(sn=test)"},
280 {"(&(sn=test)))"},
281 {"(|(sn=test)))"},
282 {"(!(sn=test)))"},
283 {"(sn=\\A)"},
284 {"(sn=\\1H)"},
285 {"(sn=\\H1)"},
286 {"(!(sn=test)(cn=test))"},
310 {"( sn = test )"},
312 {"(!(sn=test)(sn=test2))"},
340 "sn: Smith",
409 {JOHN_SMITH_LDIF, "(sn:caseExactMatch:=Smith)", true},
410 {JOHN_SMITH_LDIF, "(sn:caseExactMatch:=smith)", false},
455 private static String makeSimpleLdif(String givenname, String sn) {
456 String cn = givenname + " " + sn;
461 "sn: " + sn,
756 equalityFilterDescription("sn", "Smith", JANE_SMITH_LDIF, JOE_SMITH_LDIF),
762 return asList(approximateFilterDescription("sn", "Smythe", JANE_SMITH_LDIF, JOE_SMITH_LDIF));
768 "sn",
776 lessEqualFilterDescription("sn", "Aus"),
777 greaterEqualFilterDescription("sn", "Aus",
779 lessEqualFilterDescription("sn", "Smi",
781 greaterEqualFilterDescription("sn", "Smi",
783 lessEqualFilterDescription("sn", "Smith",
785 greaterEqualFilterDescription("sn", "Smith",
875 {"(&(sn=Smith))", "(&(sn=Smith)(sn=Smith))", true, true},
876 {"(|(sn=Smith))", "(|(sn=Smith)(sn=Smith))", true, true},
879 {"(&(sn=Smith)(sn<=Aus))", "(&(sn<=Aus)(sn=Smith))", true, false},
880 {"(|(sn=Smith)(sn<=Aus))", "(|(sn<=Aus)(sn=Smith))", true, false},
883 {"(SN=Smith)", "(sn=Smith)", true, true},
884 {"(SN=S*th)", "(sn=S*th)", true, true},
888 {"(sn=smith)", "(sn=Smith)", false, false},
890 {"(sn:caseExactMatch:=Smith)", "(sn:caseExactMatch:=Smith)", true, true},
893 {"(sn:caseExactMatch:=Smith)", "(sn:caseExactMatch:=smith)", false, false},
898 // 2.5.4.4 is 'sn'
900 {"(2.5.4.4=Smith)", "(sn=Smith)", true, true},
902 {"(sn;lang-en=Smith)", "(sn;lang-en=Smith)", true, true},
905 {"(sn;lang-en=Smith)", "(sn=Smith)", false, false},
911 {"(sn=s*t*h)", "(sn=S*T*H)", false, false},
918 {"(sn=*)", "(sn=*)", true, true},
919 {"(sn=S*)", "(sn=S*th)", false, false},
920 {"(sn=*S)", "(sn=S*th)", false, false},
921 {"(sn=S*t)", "(sn=S*th)", false, false},
922 {"(sn=*i*t*)", "(sn=*i*t*)", true, true},
923 {"(sn=*t*i*)", "(sn=*i*t*)", false, false}, // Test case for 695
924 {"(sn=S*i*t)", "(sn=S*th)", false, false},
925 {"(sn=Smith)", "(sn=Smith)", true, true},
926 {"(sn=Smith)", "(sn<=Aus)", false, false},
927 {"(sn=Smith)", "(sn>=Aus)", false, false},
928 {"(sn=Smith)", "(sn=S*i*th)", false, false},
929 {"(sn=Smith)", "(!(sn=Smith))", false, false},
930 {"(sn=Smith)", "(&(sn=Smith)(sn<=Aus))", false, false},
931 {"(sn=Smith)", "(|(sn=Smith)(sn<=Aus))", false, false},
932 {"(sn<=Aus)", "(sn<=Aus)", true, true},
933 {"(sn<=Aus)", "(sn>=Aus)", false, false},
934 {"(sn<=Aus)", "(sn=S*i*th)", false, false},
935 {"(sn<=Aus)", "(!(sn=Smith))", false, false},
936 {"(sn<=Aus)", "(&(sn=Smith)(sn=Smith))", false, false},
937 {"(sn<=Aus)", "(&(sn=Smith)(sn<=Aus))", false, false},
938 {"(sn<=Aus)", "(|(sn=Smith)(sn=Smith))", false, false},
939 {"(sn<=Aus)", "(|(sn=Smith)(sn<=Aus))", false, false},
940 {"(sn>=Aus)", "(sn>=Aus)", true, true},
941 {"(sn>=Aus)", "(sn=S*i*th)", false, false},
942 {"(sn>=Aus)", "(!(sn=Smith))", false, false},
943 {"(sn>=Aus)", "(&(sn=Smith)(sn=Smith))", false, false},
944 {"(sn>=Aus)", "(&(sn=Smith)(sn<=Aus))", false, false},
945 {"(sn>=Aus)", "(|(sn=Smith)(sn=Smith))", false, false},
946 {"(sn>=Aus)", "(|(sn=Smith)(sn<=Aus))", false, false},
947 {"(sn=S*i*th)", "(sn=S*i*th)", true, true},
948 {"(sn=S*i*th)", "(!(sn=Smith))", false, false},
949 {"(sn=S*i*th)", "(&(sn=Smith)(sn=Smith))", false, false},
950 {"(sn=S*i*th)", "(&(sn=Smith)(sn<=Aus))", false, false},
951 {"(sn=S*i*th)", "(|(sn=Smith)(sn=Smith))", false, false},
952 {"(sn=S*i*th)", "(|(sn=Smith)(sn<=Aus))", false, false},
953 {"(!(sn=Smith))", "(!(sn=Smith))", true, true},
954 {"(!(sn=Smith))", "(&(sn=Smith)(sn=Smith))", false, false},
955 {"(!(sn=Smith))", "(&(sn=Smith)(sn<=Aus))", false, false},
956 {"(!(sn=Smith))", "(|(sn=Smith)(sn=Smith))", false, false},
957 {"(!(sn=Smith))", "(|(sn=Smith)(sn<=Aus))", false, false},
958 {"(&(sn=Smith)(sn=Smith))", "(&(sn=Smith)(sn=Smith))", true, true},
959 {"(&(sn=Smith)(sn=Smith))", "(&(sn=Smith)(sn<=Aus))", false, false},
960 {"(&(sn=Smith)(sn=Smith))", "(|(sn=Smith)(sn=Smith))", false, false},
961 {"(&(sn=Smith)(sn=Smith))", "(|(sn=Smith)(sn<=Aus))", false, false},
962 {"(&(sn=Smith)(sn<=Aus))", "(&(sn=Smith)(sn<=Aus))", true, true},
963 {"(&(sn=Smith)(sn<=Aus))", "(|(sn=Smith)(sn=Smith))", false, false},
964 {"(&(sn=Smith)(sn<=Aus))", "(|(sn=Smith)(sn<=Aus))", false, false},
965 {"(|(sn=Smith)(sn=Smith))", "(|(sn=Smith)(sn=Smith))", true, true},
966 {"(|(sn=Smith)(sn=Smith))", "(|(sn=Smith)(sn<=Aus))", false, false},
967 {"(|(sn=Smith)(sn<=Aus))", "(|(sn=Smith)(sn<=Aus))", true, true},
968 {"(&(sn=Smith)(sn<=Aus))", "(&(sn=Smith)(sn>=Aus))", false, false},
969 {"(|(sn=Smith)(sn<=Aus))", "(|(sn=Smith)(sn>=Aus))", false, false},
974 {"(cn=*bowen*)", "(sn=*bowen*)", false, false}
1039 "sn: Smith",