[Pcsclite-cvs-commit] r4331 - /trunk/PCSC/UnitaryTests/SCardConnect_DIRECT.py

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Tue Jul 21 10:15:25 UTC 2009


Author: rousseau
Date: Tue Jul 21 10:15:22 2009
New Revision: 4331

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=4331
Log:
Unitary test for SCardConnect in DIRECT mode

Added:
    trunk/PCSC/UnitaryTests/SCardConnect_DIRECT.py   (with props)

Added: trunk/PCSC/UnitaryTests/SCardConnect_DIRECT.py
URL: http://svn.debian.org/wsvn/pcsclite/trunk/PCSC/UnitaryTests/SCardConnect_DIRECT.py?rev=4331&op=file
==============================================================================
--- trunk/PCSC/UnitaryTests/SCardConnect_DIRECT.py (added)
+++ trunk/PCSC/UnitaryTests/SCardConnect_DIRECT.py Tue Jul 21 10:15:22 2009
@@ -1,0 +1,58 @@
+#! /usr/bin/env python
+
+#   SCardConnect_DIRECT.py : Unitary test for SCardConnect in DIRECT mode
+#   Copyright (C) 2009  Ludovic Rousseau
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2 of the License, or
+#   (at your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License along
+#   with this program; if not, write to the Free Software Foundation, Inc.,
+#   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+# A bug has been corrected in revision 3467
+# The problem occurs if SCardBeginTransaction() are made without
+# corresponding SCardEndTransaction(). OpenSC "pkcs11-tool -I" exhibits
+# such a behavior.
+
+from smartcard.scard import *
+
+hresult, hcontext = SCardEstablishContext(SCARD_SCOPE_USER)
+if hresult!=SCARD_S_SUCCESS:
+	raise Exception('Failed to establish context: ' + SCardGetErrorMessage(hresult))
+
+hresult, readers = SCardListReaders(hcontext, [])
+if hresult!=SCARD_S_SUCCESS:
+	raise Exception('Failed to list readers: ' + SCardGetErrorMessage(hresult))
+print 'PC/SC Readers:', readers
+
+hresult, hcard, dwActiveProtocol = SCardConnect(hcontext, readers[0],
+        SCARD_SHARE_SHARED, SCARD_PROTOCOL_ANY)
+if hresult!=SCARD_S_SUCCESS:
+	raise Exception('Failed to SCardConnect: ' + SCardGetErrorMessage(hresult))
+
+print "dwActiveProtocol:", dwActiveProtocol
+
+hresult, dwActiveProtocol = SCardReconnect(hcard,
+        SCARD_SHARE_DIRECT, SCARD_PROTOCOL_ANY, SCARD_LEAVE_CARD)
+if hresult!=SCARD_S_SUCCESS:
+	raise Exception('Failed to SCardConnect: ' + SCardGetErrorMessage(hresult))
+
+print "dwActiveProtocol:", dwActiveProtocol
+if SCARD_PROTOCOL_UNDEFINED != dwActiveProtocol:
+    raise Exception('dwActiveProtocol should be SCARD_PROTOCOL_UNDEFINED')
+
+hresult = SCardDisconnect(hcard, SCARD_RESET_CARD)
+if hresult!=SCARD_S_SUCCESS:
+	raise Exception('Failed to SCardDisconnect: ' + SCardGetErrorMessage(hresult))
+
+hresult = SCardReleaseContext(hcontext)
+if hresult!=SCARD_S_SUCCESS:
+	raise Exception('Failed to release context: ' + SCardGetErrorMessage(hresult))

Propchange: trunk/PCSC/UnitaryTests/SCardConnect_DIRECT.py
------------------------------------------------------------------------------
    svn:executable = *




More information about the Pcsclite-cvs-commit mailing list