mailr16490 - in /branches/uf_redesign/test_suite/gui_tests: __init__.py dead_uf_pages.py


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

Header


Content

Posted by edward on May 29, 2012 - 09:14:
Author: bugman
Date: Tue May 29 09:14:46 2012
New Revision: 16490

URL: http://svn.gna.org/viewcvs/relax?rev=16490&view=rev
Log:
Created the Dead_uf_pages.test_mol_create() GUI test demonstrating a failure 
in the user functions.

This mimics a click on the 'ok' buttons, showing a problem with running a GUI 
user function twice.


Added:
    branches/uf_redesign/test_suite/gui_tests/dead_uf_pages.py
Modified:
    branches/uf_redesign/test_suite/gui_tests/__init__.py

Modified: branches/uf_redesign/test_suite/gui_tests/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/test_suite/gui_tests/__init__.py?rev=16490&r1=16489&r2=16490&view=diff
==============================================================================
--- branches/uf_redesign/test_suite/gui_tests/__init__.py (original)
+++ branches/uf_redesign/test_suite/gui_tests/__init__.py Tue May 29 09:14:46 
2012
@@ -34,6 +34,7 @@
 # relax GUI test module imports.
 from bmrb import Bmrb
 from consistency_tests import Ct
+from dead_uf_pages import Dead_uf_pages
 from frame_order import Frame_order
 from jw_mapping import Jw_mapping
 from model_free import Mf
@@ -108,6 +109,7 @@
         if not tests:
             suite_array.append(TestLoader().loadTestsFromTestCase(Bmrb))
             suite_array.append(TestLoader().loadTestsFromTestCase(Ct))
+            
suite_array.append(TestLoader().loadTestsFromTestCase(Dead_uf_pages))
             
suite_array.append(TestLoader().loadTestsFromTestCase(Frame_order))
             
suite_array.append(TestLoader().loadTestsFromTestCase(Jw_mapping))
             suite_array.append(TestLoader().loadTestsFromTestCase(Mf))

Added: branches/uf_redesign/test_suite/gui_tests/dead_uf_pages.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/test_suite/gui_tests/dead_uf_pages.py?rev=16490&view=auto
==============================================================================
--- branches/uf_redesign/test_suite/gui_tests/dead_uf_pages.py (added)
+++ branches/uf_redesign/test_suite/gui_tests/dead_uf_pages.py Tue May 29 
09:14:46 2012
@@ -1,0 +1,65 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2012 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  
 #
+#                                                                            
 #
+###############################################################################
+
+# Module docstring.
+"""GUI tests for catching dead user function pages."""
+
+# Python module imports.
+import sys
+
+# relax module imports.
+from relax_errors import RelaxNoPipeError
+from test_suite.gui_tests.base_classes import GuiTestCase
+
+# relax GUI imports.
+from gui.uf_objects import Uf_storage; uf_store = Uf_storage()
+
+
+class Dead_uf_pages(GuiTestCase):
+    """Class for testing the failure of user function pages."""
+
+    def test_mol_create(self):
+        """Test a failure detected via the molecule.create user function."""
+
+        # The user function objects.
+        mol_create = uf_store['molecule.create']
+        pipe_create = uf_store['pipe.create']
+
+        # First try to create a molecule (this will fail due to no data 
pipes being present).
+        try:
+            # Call the object, then simulate the 'ok' click.
+            mol_create(mol_name='x', mol_type='protein')
+            mol_create.wizard._ok()
+        except RelaxNoPipeError, instance:
+            sys.stderr.write(instance.__str__())
+
+        # Create a data pipe.
+        pipe_create(pipe_name='test', pipe_type='mf')
+        pipe_create.wizard._ok()
+
+        # Try to create the molecule a second time.
+        mol_create(mol_name='x', mol_type='protein')
+        mol_create.wizard._ok()
+
+        # Checks.
+        self.assertEqual(len(cdp.mol), 1)
+        self.assertEqual(cdp.mol[0].name, 'x')




Related Messages


Powered by MHonArc, Updated Tue May 29 10:00:03 2012