Package test_suite :: Package system_tests :: Module pipes
[hide private]
[frames] | no frames]

Source Code for Module test_suite.system_tests.pipes

 1  ############################################################################### 
 2  #                                                                             # 
 3  # Copyright (C) 2006-2012 Edward d'Auvergne                                   # 
 4  #                                                                             # 
 5  # This file is part of the program relax (http://www.nmr-relax.com).          # 
 6  #                                                                             # 
 7  # This program 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 3 of the License, or           # 
10  # (at your option) any later version.                                         # 
11  #                                                                             # 
12  # This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.       # 
19  #                                                                             # 
20  ############################################################################### 
21   
22  # Python module imports. 
23  from os import sep 
24   
25  # relax module imports. 
26  from data import Relax_data_store; ds = Relax_data_store() 
27  from generic_fns import pipes 
28  from status import Status; status = Status() 
29  from test_suite.system_tests.base_classes import SystemTestCase 
30   
31   
32 -class Pipes(SystemTestCase):
33 """TestCase class for the functional tests of relax data pipes.""" 34
35 - def test_pipe_bundle(self):
36 """Test the pipe bundle concepts.""" 37 38 # Execute the script. 39 self.script_exec(status.install_path + sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'pipe_bundle.py') 40 41 # Checks. 42 self.assertEqual(pipes.cdp_name(), None) 43 self.assertEqual(pipes.has_bundle('test bundle 1'), True) 44 self.assertEqual(pipes.has_bundle('test bundle 2'), True) 45 self.assertEqual(pipes.has_bundle('test bundle 3'), False) 46 bundles = pipes.bundle_names() 47 bundles.sort() 48 self.assertEqual(bundles, ['test bundle 1', 'test bundle 2']) 49 for pipe, name in pipes.pipe_loop(name=True): 50 self.assert_(name in ['test pipe 1', 'test pipe 2', 'test pipe 3', 'test pipe 4', 'test pipe 5', 'test pipe 6']) 51 self.assert_(pipes.get_bundle(name) in ['test bundle 1', 'test bundle 2'])
52 53
54 - def test_pipe_create(self):
55 """Create a data pipe.""" 56 57 # Create the data pipe. 58 self.interpreter.pipe.create('test', 'mf')
59