Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069 import shutil
00070 import casac
00071 from tasks import *
00072 from taskinit import *
00073 from __main__ import *
00074 import unittest
00075
00076 good_list = "list1.txt"
00077 bad_list = "list2.txt"
00078
00079 def run_sttmethod(list, table):
00080 mysl = sltool()
00081 restool = mysl.splattotable(filenames=list, table=table)
00082 mysl.close()
00083 return restool
00084
00085 def run_stttask(list, table):
00086 default(splattotable)
00087 return splattotable(filenames=list, table=table)
00088
00089
00090 class splattotable_test(unittest.TestCase):
00091
00092 def setUp(self):
00093 datapath=os.environ.get('CASAPATH').split()[0]+'/data/regression/unittest/splattotable/'
00094 shutil.copy(datapath + good_list, good_list)
00095 shutil.copy(datapath + bad_list, bad_list)
00096
00097
00098 def tearDown(self):
00099 os.remove(good_list)
00100 os.remove(bad_list)
00101
00102 def test_exceptions(self):
00103 """splattotable: Test various exception cases"""
00104
00105 def testit(filenames, table):
00106 for i in [0,1]:
00107 if (i==0):
00108 self.assertRaises(Exception, run_sttmethod, filenames, table)
00109 else:
00110 self.assertEqual(run_stttask(filenames, table), None)
00111
00112
00113 testit("list1.txt", "")
00114
00115
00116 testit("list2.txt", "myout");
00117
00118
00119 testit("list1.txt", "/myout");
00120
00121
00122 def test_good_list(self):
00123 """splattotable: Test converting a good list"""
00124 def testit(filenames, table):
00125 mytb = tbtool()
00126 for i in [0,1]:
00127 table = table + str(i)
00128 if (i==0):
00129 newsl = run_sttmethod(filenames, table)
00130 else:
00131 newsl = run_stttask(filenames, table)
00132 self.assertTrue(mytb.open(table))
00133 tb.done()
00134
00135 testit("list1.txt", "good_table")
00136
00137
00138 def suite():
00139 return [splattotable_test]