Use examples from dev/platforms for test

This commit is contained in:
Ivan Kravets
2018-02-03 22:59:41 +02:00
parent 718d1f2de1
commit 4360ff7463
4 changed files with 61 additions and 7 deletions

View File

@ -0,0 +1,30 @@
# 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 json
import subprocess
import sys
def main():
platforms = json.loads(
subprocess.check_output(
["platformio", "platform", "search", "--json-output"]))
for platform in platforms:
subprocess.check_call(
["platformio", "platform", "install", platform['repository']])
if __name__ == "__main__":
sys.exit(main())

View File

@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import random
from glob import glob from glob import glob
from os import listdir, walk from os import listdir, walk
from os.path import dirname, getsize, isdir, isfile, join, normpath from os.path import dirname, getsize, isdir, isfile, join, normpath
@ -19,17 +20,32 @@ from os.path import dirname, getsize, isdir, isfile, join, normpath
import pytest import pytest
from platformio import util from platformio import util
from platformio.managers.platform import PlatformFactory, PlatformManager
def pytest_generate_tests(metafunc): def pytest_generate_tests(metafunc):
if "pioproject_dir" not in metafunc.fixturenames: if "pioproject_dir" not in metafunc.fixturenames:
return return
example_dirs = normpath(join(dirname(__file__), "..", "examples")) examples_dirs = []
project_dirs = []
for root, _, files in walk(example_dirs): # repo examples
if "platformio.ini" not in files or ".skiptest" in files: examples_dirs.append(normpath(join(dirname(__file__), "..", "examples")))
# dev/platforms
for manifest in PlatformManager().get_installed():
p = PlatformFactory.newPlatform(manifest['__pkg_dir'])
if not p.is_embedded():
continue continue
project_dirs.append(root) examples_dir = join(p.get_dir(), "examples")
assert isdir(examples_dir)
examples_dirs.append(examples_dir)
project_dirs = []
for examples_dir in examples_dirs:
for root, _, files in walk(examples_dir):
if "platformio.ini" not in files or ".skiptest" in files:
continue
project_dirs.append(root)
project_dirs.sort() project_dirs.sort()
metafunc.parametrize("pioproject_dir", project_dirs) metafunc.parametrize("pioproject_dir", project_dirs)
@ -41,7 +57,14 @@ def test_run(pioproject_dir):
if isdir(build_dir): if isdir(build_dir):
util.rmtree_(build_dir) util.rmtree_(build_dir)
result = util.exec_command(["platformio", "--force", "run"]) env_names = []
for section in util.load_project_config().sections():
if section.startswith("env:"):
env_names.append(section[4:])
result = util.exec_command(
["platformio", "run", "-e",
random.choice(env_names)])
if result['returncode'] != 0: if result['returncode'] != 0:
pytest.fail(result) pytest.fail(result)

View File

@ -58,6 +58,7 @@ deps =
pytest pytest
commands = commands =
{envpython} --version {envpython} --version
{envpython} scripts/install_devplatforms.py
py.test -v --basetemp="{envtmpdir}" tests py.test -v --basetemp="{envtmpdir}" tests
[testenv:skipexamples] [testenv:skipexamples]