mailr16381 - /branches/uf_redesign/test_suite/system_tests/__init__.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on May 22, 2012 - 13:17:
Author: bugman
Date: Tue May 22 13:17:49 2012
New Revision: 16381

URL: http://svn.gna.org/viewcvs/relax?rev=16381&view=rev
Log:
Entire classes of system tests can now executed.

Rather than running the entire system test suite or individual tests, the 
system tests can now be
run by class.  For example to execute all of the N-state model system tests, 
just type:

$ relax -s N_state_model


Modified:
    branches/uf_redesign/test_suite/system_tests/__init__.py

Modified: branches/uf_redesign/test_suite/system_tests/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/test_suite/system_tests/__init__.py?rev=16381&r1=16380&r2=16381&view=diff
==============================================================================
--- branches/uf_redesign/test_suite/system_tests/__init__.py (original)
+++ branches/uf_redesign/test_suite/system_tests/__init__.py Tue May 22 
13:17:49 2012
@@ -24,9 +24,12 @@
 """The relax system/functional tests."""
 
 # Python module imports.
-from relax_errors import RelaxError
+from re import search
 from string import split
 from unittest import TestSuite
+
+# relax module imports.
+from relax_errors import RelaxError
 
 # relax system/functional test module imports.
 from align_tensor import Align_tensor
@@ -113,21 +116,31 @@
 
         # Specific tests.
         for test in tests:
-            # Split.
-            row = split(test, '.')
+            # The entire test class.
+            if not search('\.', test):
+                # The uninstantiated class object.
+                obj = globals()[test]
 
-            # Check.
-            if len(row) != 2:
-                raise RelaxError("The test '%s' is not in the correct 
format.  It should consist of the test case class, a dot, and the specific 
test." % test)
+                # Add the tests.
+                suite_array.append(TestLoader().loadTestsFromTestCase(obj))
 
-            # Unpack.
-            class_name, test_name = row
+            # Single system test.
+            else:
+                # Split.
+                row = split(test, '.')
 
-            # Get the class object.
-            obj = globals()[class_name]
+                # Check.
+                if len(row) != 2:
+                    raise RelaxError("The test '%s' is not in the correct 
format.  It should consist of the test case class, a dot, and the specific 
test." % test)
 
-            # Add the test.
-            suite_array.append(TestLoader().loadTestsFromNames([test_name], 
obj))
+                # Unpack.
+                class_name, test_name = row
+
+                # Get the class object.
+                obj = globals()[class_name]
+
+                # Add the test.
+                
suite_array.append(TestLoader().loadTestsFromNames([test_name], obj))
 
         # All tests.
         if not tests:




Related Messages


Powered by MHonArc, Updated Tue May 22 13:40:02 2012