Ejemplo n.º 1
0
 def test_prepare_w_flow_data(self, mock_flow_instruments, mock_instrument_not_found):
     mock_flow_instruments = [True, {}]
     mock_instrument_not_found.return_value.answer = u'ok'
     mock_instrument_not_found.return_value.value = u'inst1'
     observations = [{u'obsid': u'obs1', u'flowtype': u'atype', u'date_time': datestring_to_date(u'2016-01-01 00:00'), u'unit': u'aunit', u'value': u'123,4'}]
     test_string = create_test_string(FieldloggerImport.prepare_w_flow_data(observations))
     reference_string = u'[[obsid, instrumentid, flowtype, date_time, reading, unit, comment], [obs1, inst1, atype, 2016-01-01 00:00:00, 123.4, aunit, ]]'
     assert test_string == reference_string
Ejemplo n.º 2
0
 def test_prepare_w_flow_data(self, mock_flow_instruments, mock_instrument_not_found):
     mock_flow_instruments = [True, {}]
     mock_instrument_not_found.return_value.answer = 'ok'
     mock_instrument_not_found.return_value.value = 'inst1'
     observations = [{'sublocation': 'obs1.sub', 'obsid': 'obs1', 'flowtype': 'atype', 'date_time': datestring_to_date('2016-01-01 00:00'), 'unit': 'aunit', 'value': '123,4'}]
     test_string = create_test_string(FieldloggerImport.prepare_w_flow_data(observations))
     reference_string = '[[obsid, instrumentid, flowtype, date_time, reading, unit, comment], [obs1, inst1, atype, 2016-01-01 00:00:00, 123.4, aunit, ]]'
     assert test_string == reference_string
Ejemplo n.º 3
0
 def test_prepare_w_flow_data_assert_only_ask_instrument_once(self, mock_flow_instruments,
                              mock_instrument_not_found):
     mock_flow_instruments = [True, {}]
     mock_instrument_not_found.return_value.answer = u'ok'
     mock_instrument_not_found.return_value.value = u'inst1'
     observations = [{u'obsid': u'obs1', u'flowtype': u'atype',
                      u'date_time': datestring_to_date(u'2016-01-01 00:00'),
                      u'unit': u'aunit', u'value': u'123,4'},
                     {u'obsid': u'obs1', u'flowtype': u'atype',
                      u'date_time': datestring_to_date(u'2016-01-02 00:00'),
                      u'unit': u'aunit', u'value': u'223,4'}]
     test_string = create_test_string(FieldloggerImport.prepare_w_flow_data(observations))
     mock_instrument_not_found.assert_called_once_with(combobox_label=u'Instrument id:s in database.\nThe last used instrument id for the current obsid is prefilled:', default_value=u'', dialogtitle=u'Submit instrument id', existing_list=[u''], msg=u'Submit the instrument id for the measurement:\n obs1, 2016-01-01 00:00:00, atype, aunit')
     reference_string = u'[[obsid, instrumentid, flowtype, date_time, reading, unit, comment], [obs1, inst1, atype, 2016-01-01 00:00:00, 123.4, aunit, ], [obs1, inst1, atype, 2016-01-02 00:00:00, 223.4, aunit, ]]'
     assert test_string == reference_string
Ejemplo n.º 4
0
 def test_prepare_w_flow_data_assert_only_ask_instrument_once(self, mock_flow_instruments,
                              mock_instrument_not_found):
     mock_flow_instruments = [True, {}]
     mock_instrument_not_found.return_value.answer = 'ok'
     mock_instrument_not_found.return_value.value = 'inst1'
     observations = [{'sublocation': 'obs1.sub',
                      'obsid': 'obs1', 'flowtype': 'atype',
                      'date_time': datestring_to_date('2016-01-01 00:00'),
                      'unit': 'aunit', 'value': '123,4'},
                     {'sublocation': 'obs1.sub',
                      'obsid': 'obs1', 'flowtype': 'atype',
                      'date_time': datestring_to_date('2016-01-02 00:00'),
                      'unit': 'aunit', 'value': '223,4'}]
     test_string = create_test_string(FieldloggerImport.prepare_w_flow_data(observations))
     mock_instrument_not_found.assert_called_once_with(combobox_label='Instrument id:s in database for obsid obs1.\nThe last used instrument id for obsid obs1 is prefilled:', default_value='', dialogtitle='Submit instrument id', existing_list=[''], msg='Submit the instrument id for the measurement:\n obs1.sub, obs1, 2016-01-01 00:00:00, atype, aunit')
     reference_string = '[[obsid, instrumentid, flowtype, date_time, reading, unit, comment], [obs1, inst1, atype, 2016-01-01 00:00:00, 123.4, aunit, ], [obs1, inst1, atype, 2016-01-02 00:00:00, 223.4, aunit, ]]'
     assert test_string == reference_string
    def test_prepare_w_flow_data_assert_only_ask_instrument_twice(self, mock_flow_instruments,
                                 mock_instrument_not_found):
        mock_flow_instruments = [True, {}]
        mock_instrument_not_found.return_value.answer = 'ok'
        mock_instrument_not_found.return_value.value = 'inst1'
        observations = [{'sublocation': 'obs1.sub',
                         'obsid': 'obs1', 'flowtype': 'atype',
                         'date_time': datestring_to_date('2016-01-01 00:00'),
                         'unit': 'aunit', 'value': '123,4'},
                        {'sublocation': 'obs2.sub',
                         'obsid': 'obs2', 'flowtype': 'atype',
                         'date_time': datestring_to_date('2016-01-02 00:00'),
                         'unit': 'aunit', 'value': '223,4'},
                        {'sublocation': 'obs2.sub',
                         'obsid': 'obs2', 'flowtype': 'atype',
                         'date_time': datestring_to_date('2016-01-03 00:00'),
                         'unit': 'aunit', 'value': '223,4'}]
        test_string = create_test_string(FieldloggerImport.prepare_w_flow_data(observations))
        expected_calls = [call(combobox_label='Instrument id:s in database for obsid obs1.\nThe last used instrument id for obsid obs1 is prefilled:', default_value='', dialogtitle='Submit instrument id', existing_list=[''], msg='Submit the instrument id for the measurement:\n obs1.sub, obs1, 2016-01-01 00:00:00, atype, aunit'),
 call(combobox_label='Instrument id:s in database for obsid obs2.\nThe last used instrument id for obsid obs2 is prefilled:', default_value='', dialogtitle='Submit instrument id', existing_list=[''], msg='Submit the instrument id for the measurement:\n obs2.sub, obs2, 2016-01-02 00:00:00, atype, aunit')]
        assert mock_instrument_not_found.mock_calls == expected_calls
        reference_string = '[[obsid, instrumentid, flowtype, date_time, reading, unit, comment], [obs1, inst1, atype, 2016-01-01 00:00:00, 123.4, aunit, ], [obs2, inst1, atype, 2016-01-02 00:00:00, 223.4, aunit, ], [obs2, inst1, atype, 2016-01-03 00:00:00, 223.4, aunit, ]]'
        assert test_string == reference_string