Example #1
0
class TestKSMCollector(CollectorTestCase):
    def setUp(self):
        config = get_collector_config(
            'KSMCollector', {
                'interval': 10,
                'ksm_path': os.path.dirname(__file__) + '/fixtures/'
            })

        self.collector = KSMCollector(config, None)

    @patch('os.access', Mock(return_value=True))
    @patch.object(Collector, 'publish')
    def test_should_work_with_synthetic_data(self, publish_mock):
        self.collector.collect()

        metrics = {
            'full_scans': 123.0,
            'pages_shared': 124.0,
            'pages_sharing': 125.0,
            'pages_to_scan': 100.0,
            'pages_unshared': 126.0,
            'pages_volatile': 127.0,
            'run': 1.0,
            'sleep_millisecs': 20.0,
        }

        self.setDocExample(
            collector=self.collector.__class__.__name__,
            metrics=metrics,
            defaultpath=self.collector.config['path'])
        self.assertPublishedMany(publish_mock, metrics)
class TestKSMCollector(CollectorTestCase):
    def setUp(self):
        config = get_collector_config(
            'KSMCollector', {
                'interval': 10,
                'ksm_path': os.path.dirname(__file__) + '/fixtures/'
            })

        self.collector = KSMCollector(config, None)

    def test_import(self):
        self.assertTrue(KSMCollector)

    @patch('os.access', Mock(return_value=True))
    @patch.object(Collector, 'publish')
    def test_should_work_with_synthetic_data(self, publish_mock):
        self.collector.collect()

        metrics = {
            'full_scans': 123.0,
            'pages_shared': 124.0,
            'pages_sharing': 125.0,
            'pages_to_scan': 100.0,
            'pages_unshared': 126.0,
            'pages_volatile': 127.0,
            'run': 1.0,
            'sleep_millisecs': 20.0,
        }

        self.setDocExample(collector=self.collector.__class__.__name__,
                           metrics=metrics,
                           defaultpath=self.collector.config['path'])
        self.assertPublishedMany(publish_mock, metrics)
Example #3
0
    def setUp(self):
        config = get_collector_config('KSMCollector', {
            'interval': 10,
            'ksm_path': os.path.dirname(__file__) + '/fixtures/'
        })

        self.collector = KSMCollector(config, None)
Example #4
0
    def setUp(self):
        config = get_collector_config('KSMCollector', {
            'interval': 10,
            'ksm_path': os.path.dirname(__file__) + '/fixtures/'
        })

        self.collector = KSMCollector(config, None)