mailr11893 - in /1.3/test_suite/system_tests: peak_lists.py scripts/peak_lists/ccpn_analysis.py


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

Header


Content

Posted by edward on December 17, 2010 - 21:11:
Author: bugman
Date: Fri Dec 17 21:11:13 2010
New Revision: 11893

URL: http://svn.gna.org/viewcvs/relax?rev=11893&view=rev
Log:
Implemented and activated the CCPN Analysis 2.1 peak list reading system test.

This is to catch bug #17341 (https://gna.org/bugs/index.php?17341).


Modified:
    1.3/test_suite/system_tests/peak_lists.py
    1.3/test_suite/system_tests/scripts/peak_lists/ccpn_analysis.py

Modified: 1.3/test_suite/system_tests/peak_lists.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/system_tests/peak_lists.py?rev=11893&r1=11892&r2=11893&view=diff
==============================================================================
--- 1.3/test_suite/system_tests/peak_lists.py (original)
+++ 1.3/test_suite/system_tests/peak_lists.py Fri Dec 17 21:11:13 2010
@@ -52,6 +52,54 @@
 
         # Execute the script.
         self.interpreter.run(script_file=__main__.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'bug_17276_peak_lists.py')
+
+
+    def test_ccpn_analysis(self):
+        """Test bug #17341 (https://gna.org/bugs/index.php?17341), the CCPN 
Analysis 2.1 peak list reading submitted by Madeleine Strickland."""
+
+        # Execute the script.
+        self.interpreter.run(script_file=__main__.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'peak_lists'+sep+'ccpn_analysis.py')
+
+        # Spectrum names.
+        names = ['T1A_0010', 'T1A_0020', 'T1A_0030', 'T1A_0050', 'T1A_0070', 
'T1A_0100', 'T1A_0150', 'T1A_0200', 'T1A_0300', 'T1A_0400', 'T1A_0600', 
'T1A_0800', 'T1A_1000', 'T1A_1200']
+
+        # Relaxation times (in seconds).
+        times = [0.01, 0.02, 0.03, 0.05, 0.07, 0.1, 0.15, 0.2, 0.3, 0.4, 
0.6, 0.8, 1.0, 1.2]
+
+        # Check the spectrum IDs and relaxation times.
+        for i in range(len(times)):
+            self.assertEqual(cdp.spectrum_ids[i], names[i])
+            self.assertEqual(cdp.relax_times[names[i]], times[i])
+
+        # The peak heights.
+        heights = [
+                [1.41e06, 1.33e06, 1.31e06, 1.31e06, 1.28e06, 1.20e06, 
1.18e06, 1.07e06, 9.70e05, 8.47e05, 7.00e05, 5.25e05, 4.23e05, 3.10e05],
+                [1.79e06, 1.76e06, 1.71e06, 1.70e06, 1.66e06, 1.56e06, 
1.51e06, 1.41e06, 1.24e06, 1.11e06, 8.43e05, 6.79e05, 5.04e05, 4.18e05]
+        ]
+
+        # Check the heights.
+        for spin, mol_name, res_num, res_name in spin_loop(full_info=True):
+            print spin
+            # The data.
+            if res_num == 1501:
+                index = 0
+            elif res_num == 1504:
+                index = 1
+
+            # No data.
+            else:
+                # There should be no intensity data.
+                self.assert_(not hasattr(spin, 'intensities'))
+
+                # Do not perform the height checks.
+                continue
+
+            # Check the data.
+            self.assert_(hasattr(spin, 'intensities'))
+
+            # Check the values.
+            for i in range(len(times)):
+                self.assertEqual(spin.intensities[name[i]], 
heights[index][i])
 
 
     def test_read_peak_list_generic(self):

Modified: 1.3/test_suite/system_tests/scripts/peak_lists/ccpn_analysis.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/system_tests/scripts/peak_lists/ccpn_analysis.py?rev=11893&r1=11892&r2=11893&view=diff
==============================================================================
--- 1.3/test_suite/system_tests/scripts/peak_lists/ccpn_analysis.py (original)
+++ 1.3/test_suite/system_tests/scripts/peak_lists/ccpn_analysis.py Fri Dec 
17 21:11:13 2010
@@ -132,7 +132,7 @@
 grace.write(y_data_type='rx', file='devnull', force=True)    # Relaxation 
rate.
 
 # Display the Grace plots.
-grace.view(file='rx.agr', grace_exe='')
+#grace.view(file='rx.agr', grace_exe='')
 
 # Save the program state.
 state.save('devnull', force=True)




Related Messages


Powered by MHonArc, Updated Fri Dec 17 23:00:02 2010