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
|
# kas - setup tool for bitbake based projects
#
# Copyright (c) Siemens AG, 2021
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import os
import shutil
import snack
import pytest
from kas import kas
@pytest.fixture(autouse=True)
def patch_kas(monkeykas):
INPUTS = iter([' ', None, ' ', None])
ACTIONS = iter([None, 'build', None, 'build'])
SELECTIONS = iter([0, 3])
def mock_runOnce(unused1):
return next(INPUTS)
def mock_buttonPressed(unused1, unused2):
return next(ACTIONS)
def mock_current(unused1):
return next(SELECTIONS)
monkeykas.setattr(snack.GridFormHelp, 'runOnce', mock_runOnce)
monkeykas.setattr(snack.ButtonBar, 'buttonPressed', mock_buttonPressed)
monkeykas.setattr(snack.Listbox, 'current', mock_current)
def file_contains(filename, expected):
with open(filename) as file:
for line in file.readlines():
if line == expected:
return True
return False
def check_bitbake_options(expected, build_dir):
with open(build_dir / 'bitbake.options') as file:
return file.readline() == expected
def test_menu(monkeykas, tmpdir):
tdir = str(tmpdir / 'test_menu')
shutil.copytree('tests/test_menu', tdir)
monkeykas.chdir(tdir)
kas_wd = monkeykas.get_kwd()
kas_bd = monkeykas.get_kbd()
local_conf = kas_bd / 'conf/local.conf'
# select opt1 & build
kas.kas(['menu'])
assert file_contains(local_conf, 'OPT1 = "1"\n')
assert file_contains(kas_wd / '.config.yaml',
'build_system: openembedded\n')
assert check_bitbake_options('-c build target1\n', kas_bd)
# rebuild test
kas.kas(['build'])
assert file_contains(local_conf, 'OPT1 = "1"\n')
assert check_bitbake_options('-c build target1\n', kas_bd)
# select alternative target & build
kas.kas(['menu'])
assert file_contains(local_conf, 'OPT1 = "1"\n')
assert check_bitbake_options('-c build target2\n', kas_bd)
@pytest.mark.dirsfromenv
def test_menu_inc_workdir(monkeykas, tmpdir):
tdir = str(tmpdir / 'test_menu_inc')
kas_workdir = str(tmpdir / 'test_menu_inc' / 'out')
shutil.copytree('tests/test_menu', tdir)
monkeykas.chdir(tdir)
os.mkdir(kas_workdir)
monkeykas.setenv('KAS_WORK_DIR', kas_workdir)
kas.kas(['menu'])
default_config = os.path.join(kas_workdir, '.config.yaml')
assert os.path.exists(default_config)
# check if purge removes all files (including the generated .config.yml)
kas.kas(['purge'])
assert not os.path.exists(default_config)
@pytest.mark.dirsfromenv
def test_menu_implicit_workdir(monkeykas, tmpdir):
tdir = str(tmpdir / 'test_menu_iwd')
kas_workdir = str(tmpdir / 'test_menu_iwd_out')
shutil.copytree('tests/test_menu', tdir)
os.mkdir(kas_workdir)
monkeykas.chdir(kas_workdir)
kas.kas(['menu', tdir + '/Kconfig'])
|