0N/A/*
2362N/A * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/**
0N/A * @test
0N/A * @bug 6239117
0N/A * @summary test logical channels work
0N/A * @author Andreas Sterbenz
0N/A * @ignore requires special hardware
0N/A * @run main/manual TestExclusive
0N/A */
0N/A
0N/Aimport java.io.*;
0N/Aimport java.util.*;
0N/A
0N/Aimport javax.smartcardio.*;
0N/A
0N/Apublic class TestChannel extends Utils {
0N/A
0N/A static final byte[] c1 = parse("00 A4 04 00 07 A0 00 00 00 62 81 01 00");
0N/A static final byte[] r1 = parse("07:a0:00:00:00:62:81:01:04:01:00:00:24:05:00:0b:04:b0:55:90:00");
0N/A// static final byte[] r1 = parse("07 A0 00 00 00 62 81 01 04 01 00 00 24 05 00 0B 04 B0 25 90 00");
0N/A
0N/A static final byte[] openChannel = parse("00 70 00 00 01");
0N/A static final byte[] closeChannel = new byte[] {0x01, 0x70, (byte)0x80, 0};
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A CardTerminal terminal = getTerminal(args);
0N/A
0N/A // establish a connection with the card
0N/A Card card = terminal.connect("T=0");
0N/A System.out.println("card: " + card);
0N/A
0N/A CardChannel basicChannel = card.getBasicChannel();
0N/A
0N/A try {
0N/A basicChannel.transmit(new CommandAPDU(openChannel));
0N/A } catch (IllegalArgumentException e) {
0N/A System.out.println("OK: " + e);
0N/A }
0N/A
0N/A try {
0N/A basicChannel.transmit(new CommandAPDU(closeChannel));
0N/A } catch (IllegalArgumentException e) {
0N/A System.out.println("OK: " + e);
0N/A }
0N/A
0N/A byte[] atr = card.getATR().getBytes();
0N/A System.out.println("atr: " + toString(atr));
0N/A
0N/A // semi-accurate test to see if the card appears to support logical channels
0N/A boolean supportsChannels = false;
0N/A for (int i = 0; i < atr.length; i++) {
0N/A if (atr[i] == 0x73) {
0N/A supportsChannels = true;
0N/A break;
0N/A }
0N/A }
0N/A
0N/A if (supportsChannels == false) {
0N/A System.out.println("Card does not support logical channels, skipping...");
0N/A } else {
0N/A CardChannel channel = card.openLogicalChannel();
0N/A System.out.println("channel: " + channel);
0N/A
0N/A/*
0N/A // XXX bug in Oberthur card??
0N/A System.out.println("Transmitting...");
0N/A transmitTestCommand(channel);
0N/A System.out.println("OK");
0N/A/**/
0N/A
0N/A channel.close();
0N/A }
0N/A
0N/A // disconnect
0N/A card.disconnect(false);
0N/A
0N/A System.out.println("OK.");
0N/A }
0N/A
0N/A}