
- Since we supports plugin bases now, lets use shorter name and rename "file-exporter" to just "file". - this patch updates the help message and docstring for connection string for "file-exporter"/"file" plugin - TaskExporter located in the task module, so it is no need to store word "Task" in the class name Change-Id: Ic8a9a765e7365ff108c88a67995b9bf26736e54e
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
from rally.task import exporter
|
|
from tests.unit import test
|
|
|
|
|
|
@exporter.configure(name="test-exporter")
|
|
class TestExporter(exporter.Exporter):
|
|
|
|
def validate(self):
|
|
pass
|
|
|
|
def export(self, task, connection_string):
|
|
pass
|
|
|
|
|
|
class ExporterTestCase(test.TestCase):
|
|
|
|
def test_task_export(self):
|
|
self.assertRaises(TypeError, exporter.Exporter, "fake_connection")
|
|
|
|
def test_task_export_instantiate(self):
|
|
TestExporter("fake_connection") |