summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/testing/testcases/cpp_integration_test.py
blob: df6d7c9fa416bfcde00c3e6524a33e97d304f0b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""The unittest.TestCase for C++ integration tests."""

from __future__ import absolute_import

from . import interface
from ... import core
from ... import utils


class CPPIntegrationTestCase(interface.ProcessTestCase):
    """A C++ integration test to execute."""

    REGISTERED_NAME = "cpp_integration_test"

    def __init__(self, logger, program_executable, program_options=None):
        """Initialize the CPPIntegrationTestCase with the executable to run."""

        interface.ProcessTestCase.__init__(self, logger, "C++ integration test", program_executable)

        self.program_executable = program_executable
        self.program_options = utils.default_if_none(program_options, {}).copy()

    def configure(self, fixture, *args, **kwargs):
        """Configure the test case."""
        interface.ProcessTestCase.configure(self, fixture, *args, **kwargs)

        self.program_options["connectionString"] = self.fixture.get_internal_connection_string()

    def _make_process(self):
        return core.programs.generic_program(self.logger, [self.program_executable],
                                             **self.program_options)