# This file is part of MAUS: http://micewww.pp.rl.ac.uk:8080/projects/maus # # MAUS 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 3 of the License, or # (at your option) any later version. # # MAUS 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 MAUS. If not, see . """Tests for MapCppGlobalReconImport""" # pylint: disable = C0103 import os import json import unittest from Configuration import Configuration import MAUS class MapCppGlobalReconImport(unittest.TestCase): # pylint: disable = R0904 """Tests for MapCppGlobalReconImport""" @classmethod def setUpClass(cls): # pylint: disable = C0103 """Sets a mapper and configuration""" cls.mapper = MAUS.MapCppGlobalReconImport() cls.c = Configuration() def test_empty(self): """Check can handle empty configuration""" result = self.mapper.birth("") self.assertFalse(result) result = self.mapper.process("") doc = json.loads(result) self.assertTrue("errors" in doc) self.assertTrue("bad_json_document" in doc["errors"]) def test_init(self): """Check birth with default configuration""" success = self.mapper.birth(self. c.getConfigJSON()) self.assertTrue(success) def test_no_data(self): """Check that nothing happens in absence of data""" test1 = ('%s/src/map/MapCppGlobalReconImport/noDataTest.txt' % os.environ.get("MAUS_ROOT_DIR")) fin = open(test1,'r') data = fin.read() # test with no data. result = self.mapper.process(data) spill_out = json.loads(result) self.assertFalse('global_event' in spill_out) def test_invalid_json_birth(self): """Check birth with an invalid json input""" test2 = ('%s/src/map/MapCppGlobalReconImport/invalid.json' % os.environ.get("MAUS_ROOT_DIR")) fin1 = open(test2,'r') data = fin1.read() # test with no data. result = self.mapper.birth(data) self.assertFalse(result) test3 = ('%s/src/map/MapCppGlobalReconImport/Global_Import_test.json' % os.environ.get("MAUS_ROOT_DIR")) fin2 = open(test3,'r') fin2.readline() fin2.readline() fin2.readline() line = fin2.readline() result = self.mapper.process(line) doc = json.loads(result) self.assertTrue("errors" in doc) self.assertTrue("bad_json_document" in doc["errors"]) def test_invalid_json_process(self): """Check process with an invalid json input""" birthresult = self.mapper.birth(self. c.getConfigJSON()) self.assertTrue(birthresult) test4 = ('%s/src/map/MapCppGlobalReconImport/invalid.json' % os.environ.get("MAUS_ROOT_DIR")) fin = open(test4,'r') data = fin.read() result = self.mapper.process(data) doc = json.loads(result) self.assertTrue("errors" in doc) self.assertTrue("bad_json_document" in doc["errors"]) def test_fill_Global_Event(self): """Check that process fills global events from TOF data""" test5 = ('%s/src/map/MapCppGlobalReconImport/global_import_test.json' % os.environ.get("MAUS_ROOT_DIR")) birthresult = self.mapper.birth(self. c.getConfigJSON()) self.assertTrue(birthresult) fin = open(test5,'r') line = fin.read() result = self.mapper.process(line) spill_out = json.loads(result) self.assertTrue('recon_events' in spill_out) revtarray = spill_out['recon_events'] self.assertEqual(1, len(revtarray)) revt = revtarray[0] self.assertTrue('global_event' in revt) self.assertTrue('track_points' in revt['global_event']) self.assertEqual(30, len(revt['global_event']['track_points'])) for i in revt['global_event']['track_points']: self.assertTrue('mapper_name' in i) self.assertEqual(i['mapper_name'],'MapCppGlobalReconImport') self.assertTrue('tracks' in revt['global_event']) self.assertEqual(2, len(revt['global_event']['tracks'])) for i in revt['global_event']['tracks']: self.assertTrue('mapper_name' in i) self.assertEqual(i['mapper_name'],'MapCppGlobalReconImport') self.assertTrue('space_points' in revt['global_event']) self.assertEqual(33, len(revt['global_event']['space_points'])) self.assertTrue('primary_chains' in revt['global_event']) self.assertEqual(0, len(revt['global_event']['primary_chains'])) @classmethod def tearDownClass(cls): # pylint: disable = C0103 """Check that we can death() MapCppGlobalReconImport""" success = cls.mapper.death() if not success: raise Exception('InitializeFail', 'Could not start worker') cls.mapper = None if __name__ == '__main__': unittest.main()