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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
# This file is part of Buildbot. Buildbot is free software: you can
# redistribute it and/or modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation, version 2.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright Buildbot Team Members
from __future__ import annotations
import os
import shutil
from typing import TYPE_CHECKING
from typing import cast
from twisted.trial.unittest import TestCase
import buildbot_worker.runprocess
from buildbot_worker.commands import utils
from buildbot_worker.test.fake import runprocess
from buildbot_worker.test.fake.protocolcommand import FakeProtocolCommand
if TYPE_CHECKING:
from typing import Any
from typing import Sequence
from typing import TypeVar
from twisted.internet.defer import Deferred
from buildbot_worker.commands.base import Command
CommandType = TypeVar("CommandType", bound=Command)
class CommandTestMixin:
"""
Support for testing Command subclasses.
"""
runprocess_patched: bool = False
def setUpCommand(self) -> None:
"""
Get things ready to test a Command
Sets:
self.basedir -- the basedir (an abs path)
self.basedir_workdir -- os.path.join(self.basedir, 'workdir')
self.basedir_source -- os.path.join(self.basedir, 'source')
"""
assert isinstance(self, TestCase)
self.basedir = os.path.abspath('basedir')
self.basedir_workdir = os.path.join(self.basedir, 'workdir')
self.basedir_source = os.path.join(self.basedir, 'source')
# clean up the basedir unconditionally
if os.path.exists(self.basedir):
shutil.rmtree(self.basedir)
def cleanup() -> None:
"""
Call this from the tearDown method to clean up any leftover workdirs and do
any additional cleanup required.
"""
# clean up the basedir unconditionally
if os.path.exists(self.basedir):
shutil.rmtree(self.basedir)
# finish up the runprocess
if hasattr(self, 'runprocess_patched') and self.runprocess_patched:
runprocess.FakeRunProcess.test_done()
self.addCleanup(cleanup)
def make_command(
self,
cmdclass: type[CommandType],
args: dict[str, Any],
makedirs: bool = False,
) -> CommandType:
"""
Create a new command object, creating the necessary arguments. The
cmdclass argument is the Command class, and args is the args dict
to pass to its constructor.
This always creates the FakeProtocolCommand with a basedir (self.basedir).
If makedirs is true, it will create the basedir and a workdir directory
inside (named 'workdir').
The resulting command is returned, but as a side-effect, the following
attributes are set:
self.cmd -- the command
"""
# set up the workdir and basedir
if makedirs:
basedir_abs = os.path.abspath(os.path.join(self.basedir))
workdir_abs = os.path.abspath(os.path.join(self.basedir, 'workdir'))
if os.path.exists(basedir_abs):
shutil.rmtree(basedir_abs)
os.makedirs(workdir_abs)
self.protocol_command = FakeProtocolCommand(basedir=self.basedir)
self.cmd = cmdclass(self.protocol_command, 'fake-stepid', args)
return self.cmd
def run_command(self) -> Deferred[int]:
"""
Run the command created by make_command. Returns a deferred that will fire
on success or failure.
"""
return self.cmd.doStart()
def get_updates(self) -> Sequence[tuple[str, Any] | str]:
"""
Return the updates made so far
"""
return self.protocol_command.updates
def assertUpdates(self, updates: list[tuple[str, Any] | str], msg: str | None = None) -> None:
"""
Asserts that self.get_updates() matches updates, ignoring elapsed time data
"""
assert isinstance(self, TestCase)
my_updates: list[tuple[str, Any] | str] = []
for update in self.get_updates():
try:
if "elapsed" in update:
continue
except Exception:
pass
my_updates.append(update)
self.assertEqual(my_updates, updates, msg)
def add_update(self, upd: tuple[str, Any] | str) -> None:
self.protocol_command.updates.append(upd)
def patch_runprocess(self, *expectations: runprocess.Expect) -> None:
"""
Patch a fake RunProcess class in, and set the given expectations.
"""
assert isinstance(self, TestCase)
self.patch(buildbot_worker.runprocess, 'RunProcess', runprocess.FakeRunProcess)
cast(
"runprocess.FakeRunProcess",
buildbot_worker.runprocess.RunProcess,
).expect(*expectations)
self.runprocess_patched = True
def patch_getCommand(self, name: str, result: str) -> None:
"""
Patch utils.getCommand to return RESULT for NAME
"""
assert isinstance(self, TestCase)
old_getCommand = utils.getCommand
def new_getCommand(n: str) -> str:
if n == name:
return result
return old_getCommand(n)
self.patch(utils, 'getCommand', new_getCommand)
def clean_environ(self) -> None:
"""
Temporarily clean out os.environ to { 'PWD' : '.' }
"""
assert isinstance(self, TestCase)
self.patch(os, 'environ', {'PWD': '.'})
|