From 4169878ccfd1b963c9fa28a3aee3d67c5a4c0990 Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Mon, 19 Dec 2016 11:14:40 +0800 Subject: Add skeletons of drivers, collector and reporter Change-Id: I22a021800bbc813d7c5309d075fcbb8a19946e3f Signed-off-by: Yujun Zhang --- qtip/agent/__init__.py | 0 qtip/agent/collector.py | 13 +++++++++++++ qtip/agent/reporter.py | 13 +++++++++++++ qtip/drivers/__init__.py | 0 qtip/drivers/ansible.py | 14 ++++++++++++++ qtip/drivers/base.py | 12 ++++++++++++ qtip/drivers/yardstick.py | 14 ++++++++++++++ 7 files changed, 66 insertions(+) create mode 100644 qtip/agent/__init__.py create mode 100644 qtip/agent/collector.py create mode 100644 qtip/agent/reporter.py create mode 100644 qtip/drivers/__init__.py create mode 100644 qtip/drivers/ansible.py create mode 100644 qtip/drivers/base.py create mode 100644 qtip/drivers/yardstick.py (limited to 'qtip') diff --git a/qtip/agent/__init__.py b/qtip/agent/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/qtip/agent/collector.py b/qtip/agent/collector.py new file mode 100644 index 00000000..3df21379 --- /dev/null +++ b/qtip/agent/collector.py @@ -0,0 +1,13 @@ +############################################################################## +# Copyright (c) 2016 ZTE Corp and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + +class Collector(object): + """collect test result and test condition""" + pass diff --git a/qtip/agent/reporter.py b/qtip/agent/reporter.py new file mode 100644 index 00000000..b5c4acfa --- /dev/null +++ b/qtip/agent/reporter.py @@ -0,0 +1,13 @@ +############################################################################## +# Copyright (c) 2016 ZTE Corp and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + +class Reporter(object): + """generate test report and push test data to database""" + pass diff --git a/qtip/drivers/__init__.py b/qtip/drivers/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/qtip/drivers/ansible.py b/qtip/drivers/ansible.py new file mode 100644 index 00000000..04e9f9bd --- /dev/null +++ b/qtip/drivers/ansible.py @@ -0,0 +1,14 @@ +############################################################################## +# Copyright (c) 2016 ZTE Corp and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +from base import BaseDriver + + +class AnsibleDriver(BaseDriver): + """driver for running performance tests with Ansible""" diff --git a/qtip/drivers/base.py b/qtip/drivers/base.py new file mode 100644 index 00000000..1aa8d8ad --- /dev/null +++ b/qtip/drivers/base.py @@ -0,0 +1,12 @@ +############################################################################## +# Copyright (c) 2016 ZTE Corp and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + +class BaseDriver(object): + """performance testing tool driver""" diff --git a/qtip/drivers/yardstick.py b/qtip/drivers/yardstick.py new file mode 100644 index 00000000..83f1b3d8 --- /dev/null +++ b/qtip/drivers/yardstick.py @@ -0,0 +1,14 @@ +############################################################################## +# Copyright (c) 2016 ZTE Corp and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +from base import BaseDriver + + +class YardstickDriver(BaseDriver): + """driver for running performance test with yardstick""" -- cgit 1.2.3-korg