c983708637
Added Apache 2.0 License for missed files Change-Id: I72217d3cf0089434a9bbe1e5dfd57224a803704e Signed-off-by: Jui Chandwaskar <jchandwaskar@op5.com>
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import unittest
|
|
from tests.common import load_check
|
|
import time
|
|
|
|
|
|
class TestMySql(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
# This should run on pre-2.7 python so no skiptest
|
|
self.skip = False
|
|
try:
|
|
import pymysql
|
|
except ImportError:
|
|
self.skip = True
|
|
|
|
def testChecks(self):
|
|
if not self.skip:
|
|
agent_config = {'mysql_server': 'localhost',
|
|
'mysql_user': "datadog",
|
|
'mysql_pass': "phQOrbaXem0kP8JHri1qSMRS",
|
|
'version': '0.1',
|
|
'api_key': 'toto'}
|
|
|
|
# Initialize the check from checks_d
|
|
c = load_check('mysql', {'init_config': {}, 'instances': {}}, agent_config)
|
|
conf = c.parse_agent_config(agent_config)
|
|
self.check = load_check('mysql', conf, agent_config)
|
|
|
|
self.check.run()
|
|
metrics = self.check.get_metrics()
|
|
self.assertTrue(len(metrics) >= 8, metrics)
|
|
time.sleep(1)
|
|
self.check.run()
|
|
metrics = self.check.get_metrics()
|
|
self.assertTrue(len(metrics) >= 16, metrics)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|