Home | History | Annotate | Download | only in cert

Lines Matching defs:crl

20 import java.security.cert.CRL;
69 CRL crl1 = new TestCRL(iss1);
70 CRL crl2 = new TestCRL(iss2);
73 assertTrue("The CRL should match the selection criteria.", selector
75 assertFalse("The CRL should not match the selection criteria.",
78 assertTrue("The CRL should match the selection criteria.", selector
100 assertTrue("The CRL should match the selection criteria.", selector
102 assertFalse("The CRL should not match the selection criteria.",
110 assertTrue("The CRL should match the selection criteria.", selector
141 assertTrue("Any CRL issuers should match in the case of null issuers.",
153 assertTrue("The CRL should match the selection criteria.", selector
156 assertFalse("The CRL should not match the selection criteria.",
179 assertTrue("Any CRL issuers should match in the case of null issuers.",
186 assertTrue("The CRL should match the selection criteria.", selector
189 assertFalse("The CRL should not match the selection criteria.",
220 assertTrue("The CRL should match the selection criteria.", selector
222 assertFalse("The CRL should not match the selection criteria.",
230 assertTrue("The CRL should match the selection criteria.", selector
236 * crl number value match the selector in the case of null crlNumber
237 * criteria, if specified minCRL value matches the selector, and if CRL with
245 CRL crl = new TestCRL(minCRL);
248 assertTrue("Any CRL should match in the case of null minCRLNumber.",
249 selector.match(crl));
251 assertTrue("The CRL should match the selection criteria.", selector
252 .match(crl));
254 assertFalse("The CRL should not match the selection criteria.",
255 selector.match(crl));
260 * crl number value match the selector in the case of null crlNumber
261 * criteria, if specified maxCRL value matches the selector, and if CRL with
269 TestCRL crl = new TestCRL(maxCRL);
272 assertTrue("Any CRL should match in the case of null minCRLNumber.",
273 selector.match(crl));
275 assertTrue("The CRL should match the selection criteria.", selector
276 .match(crl));
278 assertFalse("The CRL should not match the selection criteria.",
279 selector.match(crl));
289 TestCRL crl = new TestCRL(new Date(200), new Date(300));
291 assertTrue("Any CRL should match in the case of null dateAndTime.",
292 selector.match(crl));
294 assertTrue("The CRL should match the selection criteria.", selector
295 .match(crl));
297 assertTrue("The CRL should match the selection criteria.", selector
298 .match(crl));
300 assertTrue("The CRL should match the selection criteria.", selector
301 .match(crl));
303 assertFalse("The CRL should not match the selection criteria.",
304 selector.match(crl));
306 assertFalse("The CRL should not match the selection criteria.",
307 selector.match(crl));
322 TestCRL crl = new TestCRL();
324 assertTrue("The CRL should match the selection criteria.", selector
325 .match(crl));
329 assertTrue("The CRL should match the selection criteria.", selector
330 .match(crl));
448 * match(CRL crl) method testing. Tests if the null object matches to the
459 * crl which matche to the initial selector should match to the clone and
481 TestCRL crl = new TestCRL(iss1);
482 crl.setCrlNumber(minCRL);
483 crl.setUpdateDates(new Date(200), new Date(200));
484 assertTrue("The specified CRL should match the clone selector.",
485 selector.match(crl));