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
|
# kas - setup tool for bitbake based projects
#
# Copyright (c) Siemens AG, 2020
#
# 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 shutil
from kas import kas
import pytest
LAYERBASE = '${TOPDIR}/..'
@pytest.fixture
def dokas(monkeykas, tmpdir):
tdir = str(tmpdir / 'test_layers')
shutil.copytree('tests/test_layers', tdir)
monkeykas.chdir(tdir)
monkeykas.setenv('KAS_CLONE_DEPTH', '1')
kas.kas(['shell', 'test.yml', '-c', 'true'])
@pytest.mark.online
def test_layers_default(dokas, monkeykas):
match = 0
with open(monkeykas.get_kbd() / 'conf/bblayers.conf', 'r') as f:
for line in f:
if f'{LAYERBASE}/kas ' in line:
match += 1
assert match == 1
@pytest.mark.online
def test_layers_include(dokas, monkeykas):
match = 0
with open(monkeykas.get_kbd() / 'conf/bblayers.conf', 'r') as f:
for line in f:
if f'{LAYERBASE}/kas1/meta-' in line:
match += 1
assert match == 2
@pytest.mark.online
def test_layers_exclude(dokas, monkeykas):
with open(monkeykas.get_kbd() / 'conf/bblayers.conf', 'r') as f:
for line in f:
assert f'{LAYERBASE}/kas2' not in line
@pytest.mark.online
def test_layers_strip_dot(dokas, monkeykas):
with open(monkeykas.get_kbd() / 'conf/bblayers.conf', 'r') as f:
lines = f.readlines()
assert any(f'{LAYERBASE}/kas3 ' in x for x in lines)
assert any(f'{LAYERBASE}/kas3/meta-bar' in x for x in lines)
@pytest.mark.online
def test_layers_order(dokas, monkeykas):
with open(monkeykas.get_kbd() / 'conf/bblayers.conf', 'r') as f:
layers = [x.strip(' \\"\n').replace(LAYERBASE, '')
for x in f.readlines() if x.lstrip().startswith(LAYERBASE)]
# layers of a repo are sorted alphabetically
assert layers[1] == '/kas1/meta-bar'
assert layers[2] == '/kas1/meta-foo'
# repos are sorted alphabetically (aa-kas from kas4 is last)
assert layers[-1] == '/aa-kas/meta'
|