Example #1
0
    def testRunGetStartTimeFail(self):
        """
        Test main: failure in get_metric_start_time()
        """
        json_load = [
            'some foundation', {
                'queries': [{
                    'metric': 'foo',
                    'query': 'why not'
                }]
            }
        ]
        mock_stime = MagicMock(side_effect=influx_help.InfluxStartQueryFailed)
        with patch('get_stats.Exporter.send_results') as mock_send, \
             patch('get_stats.Exporter.load_json_file',
                   side_effect=json_load) as mock_load:
            exporter = get_stats.Exporter()
            exporter.helper.get_metric_start_time = mock_stime
            res = exporter.run()

        mock_send.assert_called_once_with(99, 'foo', 'why not',
                                          'some foundation')
        mock_load.assert_has_calls([call('found_file'), call('query_file')])
        exporter.helper.get_metric_start_time.assert_called_once_with('foo')
        self.assertEqual(res, 0)
Example #2
0
    def testSendResultsFoundationError(self):
        """
        get_foundation_object failure in send_results()
        """
        metlist = [
            {
                'scope': 'a:foundry',
                'pointlist': ['123']
            },
        ]

        def my_metrics(*args, **kwargs):
            for rtn in metlist:
                yield rtn
        with patch('time.time', return_value=1), \
             patch('get_stats.Exporter.get_foundation_object',
                   side_effect=IndexError) as mock_get:
            exporter = get_stats.Exporter()
            exporter.datadog.metrics = MagicMock(side_effect=my_metrics)
            exporter.helper.send_points = MagicMock()
            exporter.send_results(0, 'metric', 'why not', 'info')

        mock_get.assert_called_once_with('foundry', 'info')
        exporter.datadog.metrics.assert_called_once_with(0, 1, 'why not')
        exporter.helper.send_points.assert_not_called()
Example #3
0
 def testLoadJsonFail(self):
     """
     Test load_json_file (success)
     """
     with patch("builtins.open", mock_open()) as mk_open, \
          pytest.raises(Exception), \
          patch('json.load', side_effect=Exception) as mock_load:
         result = get_stats.Exporter().load_json_file("some_filename")
     mk_open.assert_called_once_with('some_filename', 'r')
Example #4
0
 def testRunBadQueries(self):
     """
     Test main: queries json/file malformed (missing 'queries' key)
     """
     with patch('get_stats.Exporter.load_json_file',
                side_effect=['some foundation', {
                    'foo': 'bar'
                }]):
         res = get_stats.Exporter().run()
     self.assertEqual(1, res)
Example #5
0
 def testLoadJsonNoFile(self):
     """
     Test load_json_file (success)
     """
     with patch("builtins.open", mock_open()) as mk_open, \
          pytest.raises(FileNotFoundError), \
          patch('json.load') as mock_load:
         mk_open.side_effect = FileNotFoundError
         result = get_stats.Exporter().load_json_file("some_filename")
     mk_open.assert_called_once_with('some_filename', 'r')
     mock_load.assert_not_called()
Example #6
0
 def testLoadJsonSuccess(self):
     """
     Test load_json_file (success)
     """
     phony_out = "loaded json stuff"
     with patch("builtins.open", mock_open()) as mk_open, \
          patch('json.load', return_value=phony_out) as mock_load:
         result = get_stats.Exporter().load_json_file("some_filename")
     self.assertEqual(result, phony_out)
     mk_open.assert_called_once_with('some_filename', 'r')
     mock_load.assert_called_once()
Example #7
0
 def testRunBadQueryBadKeys(self):
     """
     Test main: queries query malformed (with 'queries', missing key(s))
     """
     with patch('get_stats.Exporter.load_json_file',
                side_effect=[
                    'some foundation', {
                        'queries': [{
                            'q1': 1,
                            'q2': 2
                        }]
                    }
                ]):
         res = get_stats.Exporter().run()
     self.assertEqual(1, res)
Example #8
0
 def testGetFoundationObjectNotFound(self):
     """
     Test get_foundation_object, no matching foundation
     """
     fname = 'mumble1'
     good_foundry = {
         "foundry": fname,
         "more": "stuff",
         "in": "here",
     }
     source_info = {
         "foundations": [{
             **good_foundry,
         }, {
             "foundry": "mumble2",
             "some": "other",
             "stuff": "here",
         }]
     }
     foundry, info = get_stats.Exporter().get_foundation_object(
         "foobar", source_info)
     self.assertEqual(foundry, None)
     self.assertEqual(info, {})
Example #9
0
    def testRunSuccess(self):
        """
        Test main: simple success path
        """
        json_load = [
            'some foundation', {
                'queries': [{
                    'metric': 'foo',
                    'query': 'why not'
                }]
            }
        ]
        with patch('get_stats.Exporter.send_results') as mock_send, \
             patch('get_stats.Exporter.load_json_file',
                   side_effect=json_load) as mock_load:
            exporter = get_stats.Exporter()
            exporter.helper.get_metric_start_time = MagicMock(return_value=42)
            res = exporter.run()

        mock_send.assert_called_once_with(42, 'foo', 'why not',
                                          'some foundation')
        mock_load.assert_has_calls([call('found_file'), call('query_file')])
        exporter.helper.get_metric_start_time.assert_called_once_with('foo')
        self.assertEqual(res, 0)