diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-02-22 01:52:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-22 01:52:31 +0000 |
commit | 46dc6015888db0218330000613abf2249b6829dc (patch) | |
tree | b83cb849bdd40f0d18a6063fdcad7706b3ea5743 /functest/opnfv_tests | |
parent | ec22ca7704e42c7f002944de3a7c72e656eac024 (diff) | |
parent | e9334da17298cfeff4ccfb079bb3e3908e85c0e2 (diff) |
Merge "Integrate BAROMETER feature test case"
Diffstat (limited to 'functest/opnfv_tests')
-rw-r--r-- | functest/opnfv_tests/features/barometer.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/functest/opnfv_tests/features/barometer.py b/functest/opnfv_tests/features/barometer.py new file mode 100644 index 00000000..aec2bce5 --- /dev/null +++ b/functest/opnfv_tests/features/barometer.py @@ -0,0 +1,28 @@ +#!/usr/bin/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 + + +import functest.core.feature_base as base +import functest.utils.functest_logger as ft_logger + +from baro_tests import collectd + + +class BarometerCollectd(base.FeatureBase): + ''' + Class for executing barometercollectd testcase. + ''' + + def __init__(self): + super(BarometerCollectd, self).__init__(project='barometer', + case='barometercollectd', + repo='dir_repo_barometer') + self.logger = ft_logger.Logger("BarometerCollectd").getLogger() + + def execute(self): + return collectd.main(self.logger) |