Files
platformio-core/platformio/test/runners/base.py
T

216 lines
7.5 KiB
Python
Raw Normal View History

# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
#
# 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.
import click
from platformio.exception import ReturnErrorCode
from platformio.platform.factory import PlatformFactory
2022-04-26 15:09:51 +03:00
from platformio.test.exception import UnitTestSuiteError
2022-05-09 18:58:43 +03:00
from platformio.test.result import TestCase, TestStatus
from platformio.test.runners.readers.native import NativeTestOutputReader
from platformio.test.runners.readers.serial import SerialTestOutputReader
CTX_META_TEST_IS_RUNNING = __name__ + ".test_running"
CTX_META_TEST_RUNNING_NAME = __name__ + ".test_running_name"
class TestRunnerOptions: # pylint: disable=too-many-instance-attributes
def __init__( # pylint: disable=too-many-arguments
self,
verbose=0,
without_building=False,
without_uploading=False,
without_testing=False,
without_debugging=True,
upload_port=None,
test_port=None,
no_reset=False,
monitor_rts=None,
monitor_dtr=None,
program_args=None,
):
self.verbose = verbose
self.without_building = without_building
self.without_uploading = without_uploading
self.without_testing = without_testing
self.without_debugging = without_debugging
self.upload_port = upload_port
self.test_port = test_port
self.no_reset = no_reset
self.monitor_rts = monitor_rts
self.monitor_dtr = monitor_dtr
self.program_args = program_args
class TestRunnerBase:
NAME = None
EXTRA_LIB_DEPS = None
TESTCASE_PARSE_RE = None
def __init__(self, test_suite, project_config, options=None):
self.test_suite = test_suite
self.options = options
self.project_config = project_config
self.platform = PlatformFactory.new(
self.project_config.get(f"env:{self.test_suite.env_name}", "platform"),
autoinstall=True,
)
self.cmd_ctx = None
2022-05-05 13:02:27 +03:00
self._testing_output_buffer = ""
@property
def name(self):
return self.__class__.__name__.replace("TestRunner", "").lower()
def get_test_speed(self):
return int(
self.project_config.get(f"env:{self.test_suite.env_name}", "test_speed")
)
def get_test_port(self):
return self.options.test_port or self.project_config.get(
f"env:{self.test_suite.env_name}", "test_port"
)
def start(self, cmd_ctx):
# setup command context
self.cmd_ctx = cmd_ctx
self.cmd_ctx.meta[CTX_META_TEST_IS_RUNNING] = True
if self.test_suite.test_name != "*":
self.cmd_ctx.meta[CTX_META_TEST_RUNNING_NAME] = self.test_suite.test_name
self.test_suite.on_start()
try:
self.setup()
for stage in ("building", "uploading", "testing"):
getattr(self, f"stage_{stage}")()
if self.options.verbose:
click.echo()
except Exception as exc: # pylint: disable=broad-except
click.secho(str(exc), fg="red", err=True)
self.test_suite.add_case(
TestCase(
name=f"{self.test_suite.env_name}:{self.test_suite.test_name}",
status=TestStatus.ERRORED,
exception=exc,
)
)
finally:
self.test_suite.on_finish()
self.teardown()
def setup(self):
pass
def stage_building(self):
if self.options.without_building:
return None
# run "building" once at the "uploading" stage for the embedded target
if not self.options.without_uploading and self.platform.is_embedded():
return None
click.secho("Building...", bold=True)
targets = ["__test"]
if not self.options.without_debugging:
targets.append("__debug")
if self.platform.is_embedded():
targets.append("checkprogsize")
try:
return self.run_project_targets(targets)
2022-07-02 18:37:57 +03:00
except ReturnErrorCode as exc:
2022-05-09 18:40:46 +03:00
raise UnitTestSuiteError(
"Building stage has failed, see errors above. "
"Use `pio test -vvv` option to enable verbose output."
2022-07-02 18:37:57 +03:00
) from exc
def stage_uploading(self):
is_embedded = self.platform.is_embedded()
if self.options.without_uploading or not is_embedded:
return None
click.secho(
"Building & Uploading..." if is_embedded else "Uploading...", bold=True
)
targets = ["upload"]
if self.options.without_building:
targets.append("nobuild")
else:
targets.append("__test")
if not self.options.without_debugging:
targets.append("__debug")
try:
return self.run_project_targets(targets)
2022-07-02 18:37:57 +03:00
except ReturnErrorCode as exc:
2022-05-09 18:40:46 +03:00
raise UnitTestSuiteError(
"Uploading stage has failed, see errors above. "
"Use `pio test -vvv` option to enable verbose output."
2022-07-02 18:37:57 +03:00
) from exc
def stage_testing(self):
if self.options.without_testing:
return None
click.secho("Testing...", bold=True)
test_port = self.get_test_port()
native_conds = [
not self.platform.is_embedded()
and (not test_port or "://" not in test_port),
self.project_config.get(
f"env:{self.test_suite.env_name}", "test_testing_command"
),
]
reader = (
NativeTestOutputReader(self)
if any(native_conds)
else SerialTestOutputReader(self)
)
return reader.begin()
def teardown(self):
pass
def run_project_targets(self, targets):
# pylint: disable=import-outside-toplevel
2022-05-31 17:20:56 +03:00
from platformio.run.cli import cli as run_cmd
assert self.cmd_ctx
return self.cmd_ctx.invoke(
run_cmd,
project_conf=self.project_config.path,
upload_port=self.options.upload_port,
verbose=self.options.verbose > 2,
silent=self.options.verbose < 2,
environment=[self.test_suite.env_name],
disable_auto_clean="nobuild" in targets,
target=targets,
)
2022-07-02 19:19:48 +03:00
def configure_build_env(self, env):
"""
Configure SCons build environment
Called in "builder/tools/piotest" tool
"""
return env
2022-05-05 13:02:27 +03:00
def on_testing_data_output(self, data):
if isinstance(data, bytes):
data = data.decode("utf8", "ignore")
self._testing_output_buffer += data
self._testing_output_buffer = self._testing_output_buffer.replace("\r", "")
while "\n" in self._testing_output_buffer:
nl_pos = self._testing_output_buffer.index("\n")
line = self._testing_output_buffer[: nl_pos + 1]
self._testing_output_buffer = self._testing_output_buffer[nl_pos + 1 :]
self.on_testing_line_output(line)
2022-07-02 19:19:48 +03:00
def on_testing_line_output(self, line):
2022-05-05 13:02:27 +03:00
click.echo(line, nl=False)