mailr7597 - /1.3/test_suite/unit_tests/_prompt/test_dasha.py


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

Header


Content

Posted by edward on October 11, 2008 - 18:40:
Author: bugman
Date: Sat Oct 11 18:40:20 2008
New Revision: 7597

URL: http://svn.gna.org/viewcvs/relax?rev=7597&view=rev
Log:
Created 7 arg unit tests for all fns of the dasha user function class.


Added:
    1.3/test_suite/unit_tests/_prompt/test_dasha.py

Added: 1.3/test_suite/unit_tests/_prompt/test_dasha.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_prompt/test_dasha.py?rev=7597&view=auto
==============================================================================
--- 1.3/test_suite/unit_tests/_prompt/test_dasha.py (added)
+++ 1.3/test_suite/unit_tests/_prompt/test_dasha.py Sat Oct 11 18:40:20 2008
@@ -1,0 +1,130 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2008 Edward d'Auvergne                                       
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax 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.                                        
 #
+#                                                                            
 #
+# relax 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 relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
+
+# Python module imports.
+from unittest import TestCase
+
+# relax module imports.
+from prompt.dasha import Dasha
+from relax_errors import RelaxError, RelaxBoolError, RelaxFloatError, 
RelaxIntError, RelaxNoneListstrError, RelaxNoneStrError, RelaxNumTupleError, 
RelaxStrError
+
+# Unit test imports.
+from data_types import DATA_TYPES
+import fake_relax
+
+
+class Test_dasha(TestCase):
+    """Unit tests for the functions of the 'prompt.dasha' module."""
+
+    # Instantiate the user function class.
+    dasha_fns = Dasha(fake_relax.fake_instance())
+
+
+    def test_create_argfail_algor(self):
+        """Failure of the algor arg of the dasha.create() user function."""
+
+        # Loop over the data types.
+        for data in DATA_TYPES:
+            # Catch the str argument, and skip it.
+            if data[0] == 'str':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxStrError, self.dasha_fns.create, 
algor=data[1])
+
+
+    def test_create_argfail_dir(self):
+        """Failure of the dir arg of the dasha.create() user function."""
+
+        # Loop over the data types.
+        for data in DATA_TYPES:
+            # Catch the None and str arguments, and skip them.
+            if data[0] == 'None' or data[0] == 'str':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxNoneStrError, self.dasha_fns.create, 
dir=data[1])
+
+
+    def test_create_argfail_force(self):
+        """The force arg test of the dasha.create() user function."""
+
+        # Loop over the data types.
+        for data in DATA_TYPES:
+            # Catch the bool arguments, and skip them.
+            if data[0] == 'bool':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxBoolError, self.dasha_fns.create, 
force=data[1])
+
+
+    def test_execute_argfail_dir(self):
+        """Failure of the dir arg of the dasha.execute() user function."""
+
+        # Loop over the data types.
+        for data in DATA_TYPES:
+            # Catch the None and str arguments, and skip them.
+            if data[0] == 'None' or data[0] == 'str':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxNoneStrError, self.dasha_fns.execute, 
dir=data[1])
+
+
+    def test_execute_argfail_force(self):
+        """The force arg test of the dasha.execute() user function."""
+
+        # Loop over the data types.
+        for data in DATA_TYPES:
+            # Catch the bool arguments, and skip them.
+            if data[0] == 'bool':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxBoolError, self.dasha_fns.execute, 
force=data[1])
+
+
+    def test_execute_argfail_binary(self):
+        """Failure of the binary arg of the dasha.execute() user function."""
+
+        # Loop over the data types.
+        for data in DATA_TYPES:
+            # Catch the str argument, and skip it.
+            if data[0] == 'str':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxStrError, self.dasha_fns.execute, 
binary=data[1])
+
+
+    def test_extract_argfail_dir(self):
+        """Failure of the dir arg of the dasha.extract() user function."""
+
+        # Loop over the data types.
+        for data in DATA_TYPES:
+            # Catch the None and str arguments, and skip them.
+            if data[0] == 'None' or data[0] == 'str':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxNoneStrError, self.dasha_fns.extract, 
dir=data[1])




Related Messages


Powered by MHonArc, Updated Sat Oct 11 19:00:05 2008