< prev index next >

test/javax/smartcardio/TestCommandAPDU.java

Print this page




   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 6293767
  27  * @summary Test for the CommandAPDU class
  28  * @author Andreas Sterbenz

  29  */
  30 
  31 import java.util.*;
  32 
  33 import javax.smartcardio.*;
  34 
  35 public class TestCommandAPDU {
  36 
  37     private static final Random random = new Random();
  38 
  39     private static void test(int nc, int ne) throws Exception {
  40         System.out.println("nc = " + nc + ", ne = " + ne);
  41         byte[] data = new byte[nc];
  42         random.nextBytes(data);
  43         CommandAPDU apdu = new CommandAPDU((byte)0, (byte)0, (byte)0, (byte)0, data, ne);
  44         //System.out.println(apdu);
  45         if (apdu.getNc() != nc) {
  46             throw new Exception("dataLength does not match");
  47         }
  48         if (Arrays.equals(data, apdu.getData()) == false) {




   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 6293767
  27  * @summary Test for the CommandAPDU class
  28  * @author Andreas Sterbenz
  29  * @key randomness
  30  */
  31 
  32 import java.util.*;
  33 
  34 import javax.smartcardio.*;
  35 
  36 public class TestCommandAPDU {
  37 
  38     private static final Random random = new Random();
  39 
  40     private static void test(int nc, int ne) throws Exception {
  41         System.out.println("nc = " + nc + ", ne = " + ne);
  42         byte[] data = new byte[nc];
  43         random.nextBytes(data);
  44         CommandAPDU apdu = new CommandAPDU((byte)0, (byte)0, (byte)0, (byte)0, data, ne);
  45         //System.out.println(apdu);
  46         if (apdu.getNc() != nc) {
  47             throw new Exception("dataLength does not match");
  48         }
  49         if (Arrays.equals(data, apdu.getData()) == false) {


< prev index next >