< prev index next >

test/sun/security/smartcardio/TestMultiplePresent.java

Print this page
rev 13550 : imported patch 8059212-Modify-smartcardio-manual-regression-tests-so-that-they-do-not-just-fail-if-no-cardreader-found
   1 /*
   2  * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  24 /**
  25  * @test
  26  * @bug 6239117 6445367
  27  * @summary test that CardTerminals.waitForCard() works
  28  * @author Andreas Sterbenz
  29  * @run main/manual TestMultiplePresent
  30  */
  31 
  32 // This test requires special hardware.
  33 
  34 import java.util.List;
  35 import javax.smartcardio.CardTerminal;
  36 import javax.smartcardio.CardTerminals;
  37 import javax.smartcardio.TerminalFactory;
  38 import static javax.smartcardio.CardTerminals.State.*;
  39 
  40 public class TestMultiplePresent {
  41 
  42     public static void main(String[] args) throws Exception {
  43         Utils.setLibrary(args);
  44         TerminalFactory factory = TerminalFactory.getInstance("PC/SC", null);





  45         System.out.println(factory);
  46 
  47         CardTerminals terminals = factory.terminals();
  48         List<CardTerminal> list = terminals.list();
  49         System.out.println("Terminals: " + list);
  50         boolean multipleReaders = true;
  51         if (list.size() < 2) {
  52             if (list.isEmpty()) {
  53                 throw new Exception("no terminals");


  54             }
  55             System.out.println("Only one reader present, using simplified test");
  56             multipleReaders = false;
  57         }
  58 
  59         while (true) {
  60             boolean present = false;
  61             for (CardTerminal terminal : list) {
  62                 present |= terminal.isCardPresent();
  63             }
  64             if (present == false) {
  65                 break;
  66             }
  67             System.out.println("*** Remove all cards!");
  68             Thread.sleep(1000);
  69         }
  70         System.out.println("OK");
  71 
  72         List<CardTerminal> result;
  73 


   1 /*
   2  * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  24 /**
  25  * @test
  26  * @bug 6239117 6445367
  27  * @summary test that CardTerminals.waitForCard() works
  28  * @author Andreas Sterbenz
  29  * @run main/manual TestMultiplePresent
  30  */
  31 
  32 // This test requires special hardware.
  33 
  34 import java.util.List;
  35 import javax.smartcardio.CardTerminal;
  36 import javax.smartcardio.CardTerminals;
  37 import javax.smartcardio.TerminalFactory;
  38 import static javax.smartcardio.CardTerminals.State.*;
  39 
  40 public class TestMultiplePresent {
  41 
  42     public static void main(String[] args) throws Exception {
  43         Utils.setLibrary(args);
  44         TerminalFactory factory = Utils.getTerminalFactory(null);
  45         if (factory == null) {
  46             System.out.println("Skipping the test: " +
  47                     "no card terminals available");
  48             return;
  49         }
  50         System.out.println(factory);
  51 
  52         CardTerminals terminals = factory.terminals();
  53         List<CardTerminal> list = terminals.list();
  54         System.out.println("Terminals: " + list);
  55         boolean multipleReaders = true;
  56         if (list.size() < 2) {
  57             if (list.isEmpty()) {
  58                 System.out.println("Skipping the test: " +
  59                         "no card terminals available");
  60                 return;
  61             }
  62             System.out.println("Only one reader present, using simplified test");
  63             multipleReaders = false;
  64         }
  65 
  66         while (true) {
  67             boolean present = false;
  68             for (CardTerminal terminal : list) {
  69                 present |= terminal.isCardPresent();
  70             }
  71             if (present == false) {
  72                 break;
  73             }
  74             System.out.println("*** Remove all cards!");
  75             Thread.sleep(1000);
  76         }
  77         System.out.println("OK");
  78 
  79         List<CardTerminal> result;
  80 


< prev index next >