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  */
  23 
  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 
  81         result = terminals.list(CARD_PRESENT);
  82         if (result.size() != 0) {
  83             throw new Exception("List not empty: " + result);
  84         }
  85 
  86         if (terminals.waitForChange(1000)) {
  87             throw new Exception("no timeout");
  88         }
  89         if (terminals.waitForChange(1000)) {
  90             throw new Exception("no timeout");
  91         }
  92         result = terminals.list(CARD_PRESENT);
  93         if (result.size() != 0) {
  94             throw new Exception("List not empty: " + result);
  95         }
  96 
  97         System.out.println("*** Insert card!");
  98         terminals.waitForChange();
  99 
 100         result = terminals.list(CARD_INSERTION);
 101         System.out.println(result);
 102         if (result.size() != 1) {
 103             throw new Exception("no card present");
 104         }
 105         CardTerminal t1 = result.get(0);
 106 
 107         result = terminals.list(CARD_INSERTION);
 108         System.out.println(result);
 109         if ((result.size() != 1) || (result.get(0) != t1)) {
 110             throw new Exception("no card present");
 111         }
 112 
 113         if (terminals.list(CARD_REMOVAL).size() != 0) {
 114             throw new Exception("List not empty: " + result);
 115         }
 116         if (terminals.list(CARD_REMOVAL).size() != 0) {
 117             throw new Exception("List not empty: " + result);
 118         }
 119 
 120 
 121         if (terminals.waitForChange(1000)) {
 122             throw new Exception("no timeout");
 123         }
 124 
 125         if (terminals.list(CARD_REMOVAL).size() != 0) {
 126             throw new Exception("List not empty: " + result);
 127         }
 128 
 129         if (multipleReaders) {
 130             System.out.println("*** Insert card into other reader!");
 131             terminals.waitForChange();
 132 
 133             result = terminals.list(CARD_INSERTION);
 134             System.out.println(result);
 135             if (result.size() != 1) {
 136                 throw new Exception("no card present");
 137             }
 138             CardTerminal t2 = result.get(0);
 139             if (t1.getName().equals(t2.getName())) {
 140                 throw new Exception("same terminal");
 141             }
 142 
 143             System.out.println("*** Remove card from 2nd reader!");
 144             terminals.waitForChange();
 145 
 146             if (terminals.list(CARD_INSERTION).size() != 0) {
 147                 throw new Exception("List not empty: " + result);
 148             }
 149             result = terminals.list(CARD_REMOVAL);
 150             if ((result.size() != 1) || (result.get(0) != t2)) {
 151                 throw new Exception("no or wrong terminal");
 152             }
 153         }
 154 
 155         System.out.println("*** Remove card from 1st reader!");
 156         terminals.waitForChange();
 157 
 158         if (terminals.list(CARD_INSERTION).size() != 0) {
 159             throw new Exception("List not empty: " + result);
 160         }
 161         result = terminals.list(CARD_REMOVAL);
 162         if ((result.size() != 1) || (result.get(0) != t1)) {
 163             throw new Exception("no or wrong terminal");
 164         }
 165 
 166         System.out.println("OK.");
 167     }
 168 
 169 }