Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com> GitOrigin-RevId: ed84084a285fbfdb493480f5a5a6b633c703017f
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
"""The unittest.TestCase for pretty printer tests."""
|
|
|
|
from typing import Optional
|
|
|
|
from buildscripts.resmokelib import core, logging, utils
|
|
from buildscripts.resmokelib.testing.testcases import interface
|
|
|
|
|
|
class PrettyPrinterTestCase(interface.ProcessTestCase):
|
|
"""A pretty printer test to execute."""
|
|
|
|
REGISTERED_NAME = "pretty_printer_test"
|
|
|
|
def __init__(
|
|
self,
|
|
logger: logging.Logger,
|
|
program_executables: list[str],
|
|
program_options: Optional[dict] = None,
|
|
**kwargs,
|
|
):
|
|
"""Initialize the PrettyPrinterTestCase with the executable to run."""
|
|
|
|
assert len(program_executables) == 1
|
|
interface.ProcessTestCase.__init__(
|
|
self, logger, "pretty printer test", program_executables[0], **kwargs
|
|
)
|
|
|
|
self.program_executable = program_executables[0]
|
|
self.program_options = utils.default_if_none(program_options, {}).copy()
|
|
|
|
interface.append_process_tracking_options(self.program_options, self._id)
|
|
|
|
def _make_process(self):
|
|
# Merge test and fixture environment variables into program_options
|
|
program_options = self.program_options.copy()
|
|
self._merge_environment_variables(program_options)
|
|
|
|
return core.programs.make_process(self.logger, [self.program_executable], **program_options)
|