c983708637
Added Apache 2.0 License for missed files Change-Id: I72217d3cf0089434a9bbe1e5dfd57224a803704e Signed-off-by: Jui Chandwaskar <jchandwaskar@op5.com>
68 lines
1.9 KiB
Python
68 lines
1.9 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 os
|
|
import shutil
|
|
import unittest
|
|
import uuid
|
|
|
|
from common import get_check
|
|
|
|
|
|
class TestCrash(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.crash_dir = '/tmp/crash-test-%s' % str(uuid.uuid4())
|
|
os.mkdir(self.crash_dir)
|
|
|
|
def tearDown(self):
|
|
shutil.rmtree(self.crash_dir)
|
|
|
|
def test_checks(self):
|
|
config = """
|
|
init_config:
|
|
crash_dir: %s
|
|
|
|
instances:
|
|
- name: crash_stats
|
|
""" % self.crash_dir
|
|
|
|
(check, instances) = get_check('crash', config)
|
|
|
|
# Baseline check
|
|
check.check(instances[0])
|
|
metrics = check.get_metrics()
|
|
self.assertEqual(metrics[0].value, 0)
|
|
self.assertEqual(metrics[0].value_meta['latest'], '')
|
|
|
|
# Add a crash and re-check
|
|
os.mkdir(os.path.join(self.crash_dir,'201504141011'))
|
|
|
|
check.check(instances[0])
|
|
metrics = check.get_metrics()
|
|
self.assertEqual(metrics[0].value, 1)
|
|
self.assertEqual(metrics[0].value_meta['latest'],
|
|
'2015-04-14 10:11:00')
|
|
|
|
# Add a second crash and re-check
|
|
os.mkdir(os.path.join(self.crash_dir,'201505222303'))
|
|
|
|
check.check(instances[0])
|
|
metrics = check.get_metrics()
|
|
self.assertEqual(metrics[0].value, 2)
|
|
self.assertEqual(metrics[0].value_meta['latest'],
|
|
'2015-05-22 23:03:00')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|