import os import unittest from astropy.io import fits from csst_dfs_api.msc.calmerge import CalMergeApi class MSCCalMergeApiTestCase(unittest.TestCase): def setUp(self): self.api = CalMergeApi() # def test_find(self): # recs = self.api.find(detector_no='CCD01', # ref_type = "bias", # obs_time = ("2021-06-01 11:12:13","2021-06-08 11:12:13")) # print('find:', recs) # def test_get_latest_by_l0(self): # rec = self.api.get_latest_by_l0(level0_id='000001102', ref_type = "bias") # print('get_latest_by_l0:', rec) def test_get(self): rec = self.api.get(id = 2) print('get by id:', rec) rec = self.api.get(cal_id = '2') print('get by cal_id:', rec) # def test_update_proc_status(self): # rec = self.api.update_proc_status(id = 3, status = 1) # print('update_proc_status:', rec) # def test_update_qc1_status(self): # rec = self.api.update_qc1_status(id = 3, status = 2) # print('update_qc1_status:', rec) # def test_write(self): # rec = self.api.write( # cal_id = '00002', # detector_no = '01', # ref_type = "bias", # obs_time = "2021-06-04 11:12:13", # exp_time = 150, # filename = "/opt/dddasd1.params", # file_path = "/opt/dddasd1.fits", # prc_status = 3, # prc_time = '2021-06-04 11:12:13', # level0_ids = ['1','2','3','4']) # print('write:', rec)