Example #1
0
    def test01(self):
        """dao.Oracle.FileParent.List: Basic"""
	conn = self.dbi.connection()
        dao = FileParentList(self.logger, self.dbi, self.dbowner)
        result = dao.execute(conn, logical_file_name='*')
        self.assertTrue(type(result) == list)
        self.assertEqual(len(result), 0)
	conn.close()
Example #2
0
class List_t(unittest.TestCase):
    @DaoConfig("DBSReader")
    def __init__(self, methodName='runTest'):
        super(List_t, self).__init__(methodName)
        data_location = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'test_data.pkl')
        self.data_provider = create_dbs_data_provider(data_type='transient', data_location=data_location)
        self.data = self.data_provider.get_file_parentage_data()

    def setUp(self):
        """setup all necessary parameters"""
        self.conn = self.dbi.connection()
        self.dao = FileParentList(self.logger, self.dbi, self.dbowner)

    def tearDown(self):
        """Clean-up all necessary parameters"""
        self.conn.close()
                    
    def test01(self):
        """dao.Oracle.FileParent.List: Basic"""
        result = self.dao.execute(self.conn, logical_file_name=self.data[0]['this_logical_file_name'])
        self.assertTrue(type(result) == GeneratorType)
	l = []
	for item in result:
	    l.append(item)
        self.assertEqual(strip_volatile_fields(l), self.data)
Example #3
0
 def setUp(self):
     """setup all necessary parameters"""
     self.conn = self.dbi.connection()
     self.dao = FileParentList(self.logger, self.dbi, self.dbowner)