Package test_suite :: Package unit_tests :: Package _prompt :: Module test_residue
[hide private]
[frames] | no frames]

Source Code for Module test_suite.unit_tests._prompt.test_residue

  1  ############################################################################### 
  2  #                                                                             # 
  3  # Copyright (C) 2007-2012 Edward d'Auvergne                                   # 
  4  #                                                                             # 
  5  # This file is part of the program relax.                                     # 
  6  #                                                                             # 
  7  # relax is free software; you can redistribute it and/or modify               # 
  8  # it under the terms of the GNU General Public License as published by        # 
  9  # the Free Software Foundation; either version 2 of the License, or           # 
 10  # (at your option) any later version.                                         # 
 11  #                                                                             # 
 12  # relax is distributed in the hope that it will be useful,                    # 
 13  # but WITHOUT ANY WARRANTY; without even the implied warranty of              # 
 14  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               # 
 15  # GNU General Public License for more details.                                # 
 16  #                                                                             # 
 17  # You should have received a copy of the GNU General Public License           # 
 18  # along with relax; if not, write to the Free Software                        # 
 19  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA   # 
 20  #                                                                             # 
 21  ############################################################################### 
 22   
 23  # Python module imports. 
 24  from unittest import TestCase 
 25   
 26  # relax module imports. 
 27  from prompt.interpreter import Interpreter 
 28  from relax_errors import RelaxIntError, RelaxNoneIntError, RelaxNoneStrError, RelaxStrError 
 29  from test_suite.unit_tests.residue_testing_base import Residue_base_class 
 30   
 31  # Unit test imports. 
 32  from data_types import DATA_TYPES 
 33   
 34   
35 -class Test_residue(Residue_base_class, TestCase):
36 """Unit tests for the functions of the 'prompt.residue' module.""" 37
38 - def __init__(self, methodName=None):
39 """Set up the test case class for the system tests.""" 40 41 # Execute the base __init__ methods. 42 super(Test_residue, self).__init__(methodName) 43 44 # Load the interpreter. 45 self.interpreter = Interpreter(show_script=False, quit=False, raise_relax_error=True) 46 self.interpreter.populate_self() 47 self.interpreter.on(verbose=False) 48 49 # Alias the user function class. 50 self.residue_fns = self.interpreter.residue
51 52
54 """Test the proper failure of the residue.copy() user function for the pipe_from argument.""" 55 56 # Loop over the data types. 57 for data in DATA_TYPES: 58 # Catch the None and str arguments, and skip them. 59 if data[0] == 'None' or data[0] == 'str': 60 continue 61 62 # The argument test. 63 self.assertRaises(RelaxNoneStrError, self.residue_fns.copy, pipe_from=data[1], res_from='#Old mol:1', res_to='#Old mol:2')
64 65
67 """Test the proper failure of the residue.copy() user function for the res_from argument.""" 68 69 # Loop over the data types. 70 for data in DATA_TYPES: 71 # Catch the str argument, and skip it. 72 if data[0] == 'str': 73 continue 74 75 # The argument test. 76 self.assertRaises(RelaxStrError, self.residue_fns.copy, res_from=data[1], res_to='#Old mol:2')
77 78
80 """Test the proper failure of the residue.copy() user function for the pipe_to argument.""" 81 82 # Loop over the data types. 83 for data in DATA_TYPES: 84 # Catch the None and str arguments, and skip them. 85 if data[0] == 'None' or data[0] == 'str': 86 continue 87 88 # The argument test. 89 self.assertRaises(RelaxNoneStrError, self.residue_fns.copy, pipe_to=data[1], res_from='#Old mol:1', res_to='#Old mol:2')
90 91
92 - def test_copy_argfail_res_to(self):
93 """Test the proper failure of the residue.copy() user function for the res_to argument.""" 94 95 # Loop over the data types. 96 for data in DATA_TYPES: 97 # Catch the None and str arguments, and skip them. 98 if data[0] == 'None' or data[0] == 'str': 99 continue 100 101 # The argument test. 102 self.assertRaises(RelaxNoneStrError, self.residue_fns.copy, res_from='#Old mol:1@111', res_to=data[1])
103 104
106 """Test the proper failure of the residue.create() user function for the res_num argument.""" 107 108 # Loop over the data types. 109 for data in DATA_TYPES: 110 # Catch the None, int and bin arguments, and skip them. 111 if data[0] == 'None' or data[0] == 'int' or data[0] == 'bin': 112 continue 113 114 # The argument test. 115 self.assertRaises(RelaxNoneIntError, self.residue_fns.create, res_num=data[1], res_name='NH')
116 117
119 """Test the proper failure of the residue.create() user function for the res_name argument.""" 120 121 # Loop over the data types. 122 for data in DATA_TYPES: 123 # Catch the None and str arguments, and skip them. 124 if data[0] == 'None' or data[0] == 'str': 125 continue 126 127 # The argument test. 128 self.assertRaises(RelaxNoneStrError, self.residue_fns.create, res_name=data[1], res_num=1)
129 130
132 """Test the proper failure of the residue.create() user function for the mol_name argument.""" 133 134 # Loop over the data types. 135 for data in DATA_TYPES: 136 # Catch the None and str arguments, and skip them. 137 if data[0] == 'None' or data[0] == 'str': 138 continue 139 140 # The argument test. 141 self.assertRaises(RelaxNoneStrError, self.residue_fns.create, mol_name=data[1], res_num=1, res_name='NH')
142 143
145 """Test the proper failure of the residue.delete() user function for the res_id argument.""" 146 147 # Loop over the data types. 148 for data in DATA_TYPES: 149 # Catch the str arguments, and skip them. 150 if data[0] == 'str': 151 continue 152 153 # The argument test. 154 self.assertRaises(RelaxStrError, self.residue_fns.delete, res_id=data[1])
155 156
158 """Test the proper failure of the residue.display() user function for the res_id argument.""" 159 160 # Loop over the data types. 161 for data in DATA_TYPES: 162 # Catch the None and str arguments, and skip them. 163 if data[0] == 'None' or data[0] == 'str': 164 continue 165 166 # The argument test. 167 self.assertRaises(RelaxNoneStrError, self.residue_fns.display, res_id=data[1])
168 169
170 - def test_name_argfail_res_id(self):
171 """Test the proper failure of the residue.name() user function for the res_id argument.""" 172 173 # Loop over the data types. 174 for data in DATA_TYPES: 175 # Catch the str arguments, and skip them. 176 if data[0] == 'str': 177 continue 178 179 # The argument test. 180 self.assertRaises(RelaxStrError, self.residue_fns.name, res_id=data[1])
181 182
183 - def test_name_argfail_name(self):
184 """Test the proper failure of the residue.name() user function for the name argument.""" 185 186 # Loop over the data types. 187 for data in DATA_TYPES: 188 # Catch the str arguments, and skip them. 189 if data[0] == 'str': 190 continue 191 192 # The argument test. 193 self.assertRaises(RelaxStrError, self.residue_fns.name, name=data[1])
194 195
197 """Test the proper failure of the residue.number() user function for the res_id argument.""" 198 199 # Loop over the data types. 200 for data in DATA_TYPES: 201 # Catch the str arguments, and skip them. 202 if data[0] == 'str': 203 continue 204 205 # The argument test. 206 self.assertRaises(RelaxStrError, self.residue_fns.number, res_id=data[1])
207 208
210 """Test the proper failure of the residue.number() user function for the number argument.""" 211 212 # Loop over the data types. 213 for data in DATA_TYPES: 214 # Catch the int and bin arguments, and skip them. 215 if data[0] == 'int' or data[0] == 'bin': 216 continue 217 218 # The argument test. 219 self.assertRaises(RelaxIntError, self.residue_fns.number, res_id=':1', number=data[1])
220