mailr19129 - /trunk/test_suite/unit_tests/_pipe_control/_structure/test_api_base.py


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

Header


Content

Posted by edward on March 24, 2013 - 17:51:
Author: bugman
Date: Sun Mar 24 17:50:59 2013
New Revision: 19129

URL: http://svn.gna.org/viewcvs/relax?rev=19129&view=rev
Log:
Deleted the unit tests of the structural API base class.


Removed:
    trunk/test_suite/unit_tests/_pipe_control/_structure/test_api_base.py

Removed: trunk/test_suite/unit_tests/_pipe_control/_structure/test_api_base.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/test_suite/unit_tests/_pipe_control/_structure/test_api_base.py?rev=19128&view=auto
==============================================================================
--- trunk/test_suite/unit_tests/_pipe_control/_structure/test_api_base.py 
(original)
+++ trunk/test_suite/unit_tests/_pipe_control/_structure/test_api_base.py 
(removed)
@@ -1,131 +1,0 @@
-###############################################################################
-#                                                                            
 #
-# Copyright (C) 2008-2013 Edward d'Auvergne                                  
 #
-#                                                                            
 #
-# This file is part of the program relax (http://www.nmr-relax.com).         
 #
-#                                                                            
 #
-# 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 3 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, see <http://www.gnu.org/licenses/>.      
 #
-#                                                                            
 #
-###############################################################################
-
-# Python module imports.
-from inspect import getargspec
-from re import search
-import types
-from unittest import TestCase
-
-# relax module imports.
-import dep_check
-from pipe_control.structure.api_base import Base_struct_API
-from pipe_control.structure.internal import Internal
-from status import Status; status = Status()
-
-
-class Test_api_base(TestCase):
-    """Unit tests for the structural API base class."""
-
-    def format_method(self, name, args, varargs, varkw, defaults):
-        """Method for formatting the method."""
-
-        # Method start.
-        text = name + '('
-
-        # No keywords.
-        if defaults == None:
-            defaults = ()
-
-        # Args.
-        for i in range(len(args) - len(defaults)):
-            # Separator.
-            if i != 0:
-                text = text + ', '
-
-            # The arg.
-            text = text + args[i]
-
-        # Shifted index.
-        index = i+1
-
-        # Keyword args.
-        for i in range(index, len(defaults)+1):
-            # Separator.
-            if i != 0:
-                text = text + ', '
-
-            # The keyword.
-            text = text + args[i] + '=' + repr(defaults[i-index])
-
-        # End.
-        text = text + ')'
-        return text
-
-
-    def test_Internal_method_args(self):
-        """The args of the public methods of the Internal structural object 
must be the same as the API base class."""
-
-        # The base and internal objects.
-        base = Base_struct_API()
-        intern = Internal()
-
-        # Loop over the objects in the internal object.
-        for name in dir(intern):
-            # Skip anything starting with '_'.
-            if search('^_', name):
-                continue
-
-            # Get the object in the two classes.
-            obj_base = getattr(base, name)
-            obj_intern = getattr(intern, name)
-
-            # Skip non-method objects.
-            if not isinstance(obj_base, types.MethodType):
-                continue
-
-            # Get the args and their default values.
-            args_base, varargs_base, varkw_base, defaults_base = 
getargspec(obj_base)
-            args_intern, varargs_intern, varkw_intern, defaults_intern = 
getargspec(obj_intern)
-
-            # Check the args.
-            if args_base != args_intern or varargs_base != varargs_intern or 
varkw_base != varkw_intern or defaults_base != defaults_intern:
-                # Get string representations of the methods.
-                doc_base = self.format_method(name, args_base, varargs_base, 
varkw_base, defaults_base)
-                doc_intern = self.format_method(name, args_intern, 
varargs_intern, varkw_intern, defaults_intern)
-                print(doc_base)
-
-                # Fail.
-                self.fail('The args of the method\n\t' + doc_intern + '\ndo 
not match those of the API method\n\t' + doc_base)
-
-
-    def test_Internal_objects(self):
-        """Are the initial public objects of the Internal structural object 
all within the API base class?"""
-
-        # The base and internal objects.
-        base = Base_struct_API()
-        internal = Internal()
-
-        # The objects in the base class.
-        base_names = dir(base)
-
-        # Loop over the objects in the internal object.
-        for name in dir(internal):
-            # Skip anything starting with '_'.
-            if search('^_', name):
-                continue
-
-            # Get the object in the derived class.
-            obj = getattr(internal, name)
-
-            # Not present.
-            if name not in base_names:
-                self.fail('The object ' + repr(name) + ' ' + repr(type(obj)) 
+ ' cannot be found in the structural API base class.')




Related Messages


Powered by MHonArc, Updated Sun Mar 24 18:00:02 2013