SERVER-29560 Split testcases.py module into separate files.
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
"""
|
||||
unittest.TestCase for C++ integration tests.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
from . import interface
|
||||
from ... import core
|
||||
from ... import utils
|
||||
|
||||
|
||||
class CPPIntegrationTestCase(interface.TestCase):
|
||||
"""
|
||||
A C++ integration test to execute.
|
||||
"""
|
||||
|
||||
REGISTERED_NAME = "cpp_integration_test"
|
||||
|
||||
def __init__(self,
|
||||
logger,
|
||||
program_executable,
|
||||
program_options=None):
|
||||
"""
|
||||
Initializes the CPPIntegrationTestCase with the executable to run.
|
||||
"""
|
||||
|
||||
interface.TestCase.__init__(self, logger, "Program", program_executable)
|
||||
|
||||
self.program_executable = program_executable
|
||||
self.program_options = utils.default_if_none(program_options, {}).copy()
|
||||
|
||||
def configure(self, fixture, *args, **kwargs):
|
||||
interface.TestCase.configure(self, fixture, *args, **kwargs)
|
||||
|
||||
self.program_options["connectionString"] = self.fixture.get_connection_string()
|
||||
|
||||
def run_test(self):
|
||||
try:
|
||||
program = self._make_process()
|
||||
self._execute(program)
|
||||
except self.failureException:
|
||||
raise
|
||||
except:
|
||||
self.logger.exception("Encountered an error running C++ integration test %s.",
|
||||
self.basename())
|
||||
raise
|
||||
|
||||
def _make_process(self):
|
||||
return core.programs.generic_program(self.logger,
|
||||
[self.program_executable],
|
||||
**self.program_options)
|
||||
Reference in New Issue
Block a user