Home | History | Annotate | Download | only in cert

Lines Matching refs:crl

24 import java.security.cert.CRL;
85 args={java.security.cert.CRL.class}
92 CRL crl1 = new TestCRL(iss1);
93 CRL crl2 = new TestCRL(iss2);
96 assertTrue("The CRL should match the selection criteria.", selector
98 assertFalse("The CRL should not match the selection criteria.",
101 assertTrue("The CRL should match the selection criteria.", selector
129 assertTrue("The CRL should match the selection criteria.", selector
131 assertFalse("The CRL should not match the selection criteria.",
139 assertTrue("The CRL should match the selection criteria.", selector
176 assertTrue("Any CRL issuers should match in the case of null issuers.",
188 assertTrue("The CRL should match the selection criteria.", selector
191 assertFalse("The CRL should not match the selection criteria.",
220 assertTrue("Any CRL issuers should match in the case of null issuers.",
227 assertTrue("The CRL should match the selection criteria.", selector
230 assertFalse("The CRL should not match the selection criteria.",
267 assertTrue("The CRL should match the selection criteria.", selector
269 assertFalse("The CRL should not match the selection criteria.",
277 assertTrue("The CRL should match the selection criteria.", selector
283 * crl number value match the selector in the case of null crlNumber
284 * criteria, if specified minCRL value matches the selector, and if CRL with
298 CRL crl = new TestCRL(minCRL);
301 assertTrue("Any CRL should match in the case of null minCRLNumber.",
302 selector.match(crl));
304 assertTrue("The CRL should match the selection criteria.", selector
305 .match(crl));
307 assertFalse("The CRL should not match the selection criteria.",
308 selector.match(crl));
313 * crl number value match the selector in the case of null crlNumber
314 * criteria, if specified maxCRL value matches the selector, and if CRL with
328 TestCRL crl = new TestCRL(maxCRL);
331 assertTrue("Any CRL should match in the case of null minCRLNumber.",
332 selector.match(crl));
334 assertTrue("The CRL should match the selection criteria.", selector
335 .match(crl));
337 assertFalse("The CRL should not match the selection criteria.",
338 selector.match(crl));
354 TestCRL crl = new TestCRL(new Date(200), new Date(300));
356 assertTrue("Any CRL should match in the case of null dateAndTime.",
357 selector.match(crl));
359 assertTrue("The CRL should match the selection criteria.", selector
360 .match(crl));
362 assertTrue("The CRL should match the selection criteria.", selector
363 .match(crl));
365 assertTrue("The CRL should match the selection criteria.", selector
366 .match(crl));
368 assertFalse("The CRL should not match the selection criteria.",
369 selector.match(crl));
371 assertFalse("The CRL should not match the selection criteria.",
372 selector.match(crl));
393 TestCRL crl = new TestCRL();
395 assertTrue("The CRL should match the selection criteria.", selector
396 .match(crl));
400 assertTrue("The CRL should match the selection criteria.", selector
401 .match(crl));
555 * match(CRL crl) method testing. Tests if the null object matches to the
562 args = {java.security.cert.CRL.class}
572 * crl which matche to the initial selector should match to the clone and
600 TestCRL crl = new TestCRL(iss1);
601 crl.setCrlNumber(minCRL);
602 crl.setUpdateDates(new Date(200), new Date(200));
603 assertTrue("The specified CRL should match the clone selector.",
604 selector.match(crl));