2019-04-19 20:33:31 +03:00
|
|
|
# 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.
|
|
|
|
|
2019-04-19 20:46:28 +03:00
|
|
|
# pylint: disable=too-many-arguments, too-many-locals, too-many-branches
|
|
|
|
|
2019-04-19 20:33:31 +03:00
|
|
|
from fnmatch import fnmatch
|
|
|
|
from os import getcwd, listdir
|
|
|
|
from os.path import isdir, join
|
|
|
|
from time import time
|
|
|
|
|
|
|
|
import click
|
|
|
|
|
|
|
|
from platformio import exception, util
|
2019-05-10 15:45:52 +03:00
|
|
|
from platformio.commands.run import print_header
|
2019-04-19 20:33:31 +03:00
|
|
|
from platformio.commands.test.embedded import EmbeddedTestProcessor
|
|
|
|
from platformio.commands.test.native import NativeTestProcessor
|
2019-05-10 15:45:52 +03:00
|
|
|
from platformio.project.config import ProjectConfig
|
2019-05-27 22:25:22 +03:00
|
|
|
from platformio.project.helpers import get_project_test_dir
|
2019-04-19 20:33:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
@click.command("test", short_help="Unit Testing")
|
|
|
|
@click.option("--environment", "-e", multiple=True, metavar="<environment>")
|
|
|
|
@click.option(
|
|
|
|
"--filter",
|
|
|
|
"-f",
|
|
|
|
multiple=True,
|
|
|
|
metavar="<pattern>",
|
|
|
|
help="Filter tests by a pattern")
|
|
|
|
@click.option(
|
|
|
|
"--ignore",
|
|
|
|
"-i",
|
|
|
|
multiple=True,
|
|
|
|
metavar="<pattern>",
|
|
|
|
help="Ignore tests by a pattern")
|
|
|
|
@click.option("--upload-port")
|
|
|
|
@click.option("--test-port")
|
|
|
|
@click.option(
|
|
|
|
"-d",
|
|
|
|
"--project-dir",
|
|
|
|
default=getcwd,
|
|
|
|
type=click.Path(
|
|
|
|
exists=True,
|
|
|
|
file_okay=False,
|
|
|
|
dir_okay=True,
|
|
|
|
writable=True,
|
|
|
|
resolve_path=True))
|
2019-05-10 13:12:41 +03:00
|
|
|
@click.option(
|
|
|
|
"-c",
|
|
|
|
"--project-conf",
|
|
|
|
type=click.Path(
|
|
|
|
exists=True,
|
|
|
|
file_okay=True,
|
|
|
|
dir_okay=False,
|
|
|
|
readable=True,
|
|
|
|
resolve_path=True))
|
2019-04-19 20:33:31 +03:00
|
|
|
@click.option("--without-building", is_flag=True)
|
|
|
|
@click.option("--without-uploading", is_flag=True)
|
|
|
|
@click.option("--without-testing", is_flag=True)
|
|
|
|
@click.option("--no-reset", is_flag=True)
|
|
|
|
@click.option(
|
|
|
|
"--monitor-rts",
|
|
|
|
default=None,
|
|
|
|
type=click.IntRange(0, 1),
|
|
|
|
help="Set initial RTS line state for Serial Monitor")
|
|
|
|
@click.option(
|
|
|
|
"--monitor-dtr",
|
|
|
|
default=None,
|
|
|
|
type=click.IntRange(0, 1),
|
|
|
|
help="Set initial DTR line state for Serial Monitor")
|
|
|
|
@click.option("--verbose", "-v", is_flag=True)
|
|
|
|
@click.pass_context
|
|
|
|
def cli( # pylint: disable=redefined-builtin
|
|
|
|
ctx, environment, ignore, filter, upload_port, test_port, project_dir,
|
2019-05-10 13:12:41 +03:00
|
|
|
project_conf, without_building, without_uploading, without_testing,
|
|
|
|
no_reset, monitor_rts, monitor_dtr, verbose):
|
2019-04-19 20:33:31 +03:00
|
|
|
with util.cd(project_dir):
|
2019-05-27 22:25:22 +03:00
|
|
|
test_dir = get_project_test_dir()
|
2019-04-19 20:33:31 +03:00
|
|
|
if not isdir(test_dir):
|
|
|
|
raise exception.TestDirNotExists(test_dir)
|
|
|
|
test_names = get_test_names(test_dir)
|
2019-05-10 15:45:52 +03:00
|
|
|
|
|
|
|
config = ProjectConfig.get_instance(
|
|
|
|
project_conf or join(project_dir, "platformio.ini"))
|
|
|
|
config.validate(envs=environment)
|
2019-04-19 20:33:31 +03:00
|
|
|
|
|
|
|
click.echo("Verbose mode can be enabled via `-v, --verbose` option")
|
|
|
|
click.echo("Collected %d items" % len(test_names))
|
|
|
|
|
|
|
|
results = []
|
2019-05-10 15:45:52 +03:00
|
|
|
start_time = time()
|
|
|
|
default_envs = config.default_envs()
|
2019-04-19 20:33:31 +03:00
|
|
|
for testname in test_names:
|
2019-05-10 15:45:52 +03:00
|
|
|
for envname in config.envs():
|
|
|
|
section = "env:%s" % envname
|
2019-04-19 20:33:31 +03:00
|
|
|
|
|
|
|
# filter and ignore patterns
|
|
|
|
patterns = dict(filter=list(filter), ignore=list(ignore))
|
|
|
|
for key in patterns:
|
2019-05-30 16:38:04 +03:00
|
|
|
patterns[key].extend(
|
|
|
|
config.get(section, "test_%s" % key, []))
|
2019-04-19 20:33:31 +03:00
|
|
|
|
|
|
|
skip_conditions = [
|
|
|
|
environment and envname not in environment,
|
2019-05-10 15:45:52 +03:00
|
|
|
not environment and default_envs
|
|
|
|
and envname not in default_envs,
|
2019-04-19 20:33:31 +03:00
|
|
|
testname != "*" and patterns['filter'] and
|
|
|
|
not any([fnmatch(testname, p)
|
|
|
|
for p in patterns['filter']]),
|
|
|
|
testname != "*"
|
|
|
|
and any([fnmatch(testname, p)
|
|
|
|
for p in patterns['ignore']]),
|
|
|
|
]
|
|
|
|
if any(skip_conditions):
|
|
|
|
results.append((None, testname, envname))
|
|
|
|
continue
|
|
|
|
|
2019-05-10 15:45:52 +03:00
|
|
|
cls = (NativeTestProcessor
|
|
|
|
if config.get(section, "platform") == "native" else
|
2019-04-19 20:33:31 +03:00
|
|
|
EmbeddedTestProcessor)
|
|
|
|
tp = cls(
|
|
|
|
ctx, testname, envname,
|
|
|
|
dict(
|
2019-05-10 15:45:52 +03:00
|
|
|
project_config=config,
|
2019-04-19 20:33:31 +03:00
|
|
|
project_dir=project_dir,
|
|
|
|
upload_port=upload_port,
|
|
|
|
test_port=test_port,
|
|
|
|
without_building=without_building,
|
|
|
|
without_uploading=without_uploading,
|
|
|
|
without_testing=without_testing,
|
|
|
|
no_reset=no_reset,
|
|
|
|
monitor_rts=monitor_rts,
|
|
|
|
monitor_dtr=monitor_dtr,
|
|
|
|
verbose=verbose))
|
|
|
|
results.append((tp.process(), testname, envname))
|
|
|
|
|
|
|
|
if without_testing:
|
|
|
|
return
|
|
|
|
|
2019-05-27 22:25:48 +03:00
|
|
|
passed_nums = 0
|
|
|
|
failed_nums = 0
|
2019-05-27 22:25:22 +03:00
|
|
|
testname_max_len = max([len(r[1]) for r in results])
|
|
|
|
envname_max_len = max([len(click.style(r[2], fg="cyan")) for r in results])
|
|
|
|
|
2019-04-19 20:33:31 +03:00
|
|
|
print_header("[%s]" % click.style("TEST SUMMARY"))
|
2019-05-27 22:25:22 +03:00
|
|
|
click.echo()
|
2019-04-19 20:33:31 +03:00
|
|
|
|
|
|
|
for result in results:
|
|
|
|
status, testname, envname = result
|
|
|
|
if status is False:
|
2019-05-27 22:25:48 +03:00
|
|
|
failed_nums += 1
|
2019-04-19 20:33:31 +03:00
|
|
|
status_str = click.style("FAILED", fg="red")
|
|
|
|
elif status is None:
|
|
|
|
status_str = click.style("IGNORED", fg="yellow")
|
2019-05-27 22:25:48 +03:00
|
|
|
else:
|
|
|
|
passed_nums += 1
|
|
|
|
status_str = click.style("PASSED", fg="green")
|
2019-04-19 20:33:31 +03:00
|
|
|
|
|
|
|
click.echo(
|
2019-05-27 22:25:22 +03:00
|
|
|
("test/{:<%d} > {:<%d}\t[{}]" %
|
|
|
|
(testname_max_len, envname_max_len)).format(
|
|
|
|
testname, click.style(envname, fg="cyan"), status_str),
|
2019-04-19 20:33:31 +03:00
|
|
|
err=status is False)
|
|
|
|
|
|
|
|
print_header(
|
2019-05-27 22:25:48 +03:00
|
|
|
"%s%d passed in %.2f seconds"
|
|
|
|
% ("%d failed, " % failed_nums if failed_nums else "", passed_nums,
|
|
|
|
time() - start_time),
|
|
|
|
is_error=failed_nums,
|
|
|
|
fg="red" if failed_nums else "green")
|
2019-04-19 20:33:31 +03:00
|
|
|
|
2019-05-27 22:25:48 +03:00
|
|
|
if failed_nums:
|
2019-04-19 20:33:31 +03:00
|
|
|
raise exception.ReturnErrorCode(1)
|
|
|
|
|
|
|
|
|
|
|
|
def get_test_names(test_dir):
|
|
|
|
names = []
|
|
|
|
for item in sorted(listdir(test_dir)):
|
|
|
|
if isdir(join(test_dir, item)):
|
|
|
|
names.append(item)
|
|
|
|
if not names:
|
|
|
|
names = ["*"]
|
|
|
|
return names
|