1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# ----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE" (Revision 42):
# Daniel Kratzert <dkratzert@gmx.de> wrote this file. As long as you retain
# this notice you can do whatever you want with this stuff. If we meet some day,
# and you think this stuff is worth it, you can buy me a beer in return.
# ----------------------------------------------------------------------------
import unittest
from finalcif.datafiles.p4p_reader import P4PFile
from pathlib import Path
test_data = Path('./test-data')
class TestBrukerFrame(unittest.TestCase):
def test_str(self):
p4p = P4PFile(basename='DK_Zucker2', searchpath=test_data)
self.assertEqual(100, p4p.temperature)
def test_radiation_type(self):
p4p = P4PFile(basename='DK_Zucker2', searchpath=test_data)
self.assertEqual('Mo', p4p.radiation_type)
def test_measure_date(self):
p4p = P4PFile(basename='DK_Zucker2', searchpath=test_data)
self.assertEqual('DK_Zucker2_0m.p4p', p4p.filename.name)
def test_program(self):
p4p = P4PFile(basename='DK_Zucker2', searchpath=test_data)
self.assertEqual('C12H22O11', p4p.chem)
def test_kilovolts_milliamps(self):
p4p = P4PFile(basename='DK_Zucker2', searchpath=test_data)
self.assertEqual([7.7133, 8.6559, 10.8082, 90.0, 102.9627, 90.0], p4p.cell)
self.assertEqual([0.0011, 0.002, 0.0024, 0.0, 0.0089, 0.0, 0.228], p4p.cellsd)
def test_radiation_type_temperature(self):
p4p = P4PFile(basename='DK_Zucker2', searchpath=test_data)
self.assertEqual('colourless', p4p.crystal_color)
def test_detector_type(self):
p4p = P4PFile(basename='DK_Zucker2', searchpath=test_data)
self.assertEqual(['0.126', '0.202', '0.303'], p4p.crystal_size)
|