[Pcsclite-cvs-commit] r4611 - /trunk/PCSC/UnitaryTests/SCard_fork.py

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Mon Dec 14 13:39:20 UTC 2009


Author: rousseau
Date: Mon Dec 14 13:39:20 2009
New Revision: 4611

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=4611
Log:
Unitary Test for fork() detection

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

Added: trunk/PCSC/UnitaryTests/SCard_fork.py
URL: http://svn.debian.org/wsvn/pcsclite/trunk/PCSC/UnitaryTests/SCard_fork.py?rev=4611&op=file
==============================================================================
--- trunk/PCSC/UnitaryTests/SCard_fork.py (added)
+++ trunk/PCSC/UnitaryTests/SCard_fork.py Mon Dec 14 13:39:20 2009
@@ -1,0 +1,56 @@
+#! /usr/bin/env python
+
+#   SCardCancel.py : Unitary test for SCardCancel()
+#   Copyright (C) 2008-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.
+
+
+from smartcard.scard import *
+import time
+import os
+
+
+hresult, hcontext = SCardEstablishContext(SCARD_SCOPE_USER)
+if hresult != SCARD_S_SUCCESS:
+    raise Exception('Failed to establish context: ' +
+        SCardGetErrorMessage(hresult))
+
+pid = os.fork()
+if pid == 0:
+    # son
+
+    # the handle should be invalid after a fork
+    hresult, readers = SCardListReaders(hcontext, [])
+
+    # expected value
+    if hresult == SCARD_E_INVALID_HANDLE:
+        print "test passed"
+    elif hresult != SCARD_S_SUCCESS:
+        raise Exception('Failed to list readers: ' +
+            SCardGetErrorMessage(hresult))
+    else:
+        print "test failed"
+else:
+    # father
+
+    # give some time to the son
+    time.sleep(1)
+
+    hresult = SCardReleaseContext(hcontext)
+    print "SCardReleaseContext()", SCardGetErrorMessage(hresult)
+    if hresult != SCARD_S_SUCCESS:
+        raise Exception('Failed to release context: ' +
+            SCardGetErrorMessage(hresult))

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




More information about the Pcsclite-cvs-commit mailing list