2020-11-17 14:51:53 +01:00
|
|
|
# kas - setup tool for bitbake based projects
|
|
|
|
#
|
|
|
|
# Copyright (c) Konsulko Group, 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 glob
|
|
|
|
import os
|
|
|
|
import shutil
|
2022-12-11 08:30:28 +01:00
|
|
|
import json
|
|
|
|
import yaml
|
2020-11-17 14:51:53 +01:00
|
|
|
from kas import kas
|
|
|
|
|
|
|
|
|
|
|
|
def test_for_all_repos(changedir, tmpdir):
|
|
|
|
tdir = str(tmpdir.mkdir('test_commands'))
|
|
|
|
shutil.rmtree(tdir, ignore_errors=True)
|
|
|
|
shutil.copytree('tests/test_commands', tdir)
|
|
|
|
os.chdir(tdir)
|
|
|
|
kas.kas(['for-all-repos', 'test.yml',
|
2021-10-15 11:30:50 +02:00
|
|
|
'''if [ -n "${KAS_REPO_URL}" ]; then git rev-parse HEAD \
|
2021-08-26 14:18:16 +02:00
|
|
|
>> %s/ref_${KAS_REPO_NAME}; fi''' % (tdir)])
|
2020-11-17 14:51:53 +01:00
|
|
|
|
|
|
|
with open('ref_kas_1.0', 'r') as f:
|
2022-08-04 19:04:48 +02:00
|
|
|
assert f.readline().strip() \
|
|
|
|
== '907816a5c4094b59a36aec12226e71c461c05b77'
|
2020-11-17 14:51:53 +01:00
|
|
|
with open('ref_kas_1.1', 'r') as f:
|
2022-08-04 19:04:48 +02:00
|
|
|
assert f.readline().strip() \
|
|
|
|
== 'e9ca55a239caa1a2098e1d48773a29ea53c6cab2'
|
2020-11-17 14:51:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_checkout(changedir, tmpdir):
|
|
|
|
tdir = str(tmpdir.mkdir('test_commands'))
|
|
|
|
shutil.rmtree(tdir, ignore_errors=True)
|
|
|
|
shutil.copytree('tests/test_commands', tdir)
|
|
|
|
os.chdir(tdir)
|
|
|
|
kas.kas(['checkout', 'test.yml'])
|
|
|
|
|
|
|
|
# Ensure that local.conf and bblayers.conf are populated, check that no
|
|
|
|
# build has been executed by ensuring that no tmp, sstate-cache or
|
|
|
|
# downloads directories are present.
|
2022-08-04 19:04:48 +02:00
|
|
|
assert os.path.exists('build/conf/local.conf')
|
|
|
|
assert os.path.exists('build/conf/bblayers.conf')
|
|
|
|
assert not glob.glob('build/tmp*')
|
|
|
|
assert not os.path.exists('build/downloads')
|
|
|
|
assert not os.path.exists('build/sstate-cache')
|
2022-07-08 16:45:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_repo_includes(changedir, tmpdir):
|
|
|
|
tdir = str(tmpdir.mkdir('test_commands'))
|
|
|
|
shutil.rmtree(tdir, ignore_errors=True)
|
|
|
|
shutil.copytree('tests/test_repo_includes', tdir)
|
|
|
|
os.chdir(tdir)
|
|
|
|
kas.kas(['checkout', 'test.yml'])
|
2022-12-11 08:30:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_dump(changedir, tmpdir, capsys):
|
|
|
|
tdir = str(tmpdir.mkdir('test_commands'))
|
|
|
|
shutil.rmtree(tdir, ignore_errors=True)
|
|
|
|
shutil.copytree('tests/test_repo_includes', tdir)
|
|
|
|
os.chdir(tdir)
|
|
|
|
|
|
|
|
formats = ['json', 'yaml']
|
2022-12-11 08:30:34 +01:00
|
|
|
resolve = ['', '--resolve-refs', '--resolve-env']
|
2022-12-11 08:30:32 +01:00
|
|
|
# test cross-product of these options (formats x resolve)
|
|
|
|
for f, r in ((f, r) for f in formats for r in resolve):
|
2022-12-11 08:30:28 +01:00
|
|
|
outfile = 'test_flat.%s' % f
|
2022-12-11 08:30:34 +01:00
|
|
|
if r == '--resolve-env':
|
|
|
|
os.environ['TESTVAR_FOO'] = 'KAS'
|
|
|
|
|
2022-12-11 08:30:32 +01:00
|
|
|
kas.kas(('dump --format %s %s test.yml' % (f, r)).split())
|
2022-12-11 08:30:34 +01:00
|
|
|
|
|
|
|
if r == '--resolve-env':
|
|
|
|
del os.environ['TESTVAR_FOO']
|
|
|
|
|
2022-12-11 08:30:28 +01:00
|
|
|
with open(outfile, 'w') as f:
|
|
|
|
f.write(capsys.readouterr().out)
|
|
|
|
|
|
|
|
with open(outfile, 'r') as cf:
|
|
|
|
flatconf = json.load(cf) if f == 'json' else yaml.safe_load(cf)
|
2022-12-11 08:30:32 +01:00
|
|
|
refspec = flatconf['repos']['kas3']['refspec']
|
2022-12-11 08:30:34 +01:00
|
|
|
envvar = flatconf['env']['TESTVAR_FOO']
|
2022-12-11 08:30:32 +01:00
|
|
|
if r == '--resolve-refs':
|
|
|
|
assert refspec != 'master'
|
|
|
|
else:
|
|
|
|
assert refspec == 'master'
|
2022-12-11 08:30:34 +01:00
|
|
|
if r == '--resolve-env':
|
|
|
|
assert envvar == 'KAS'
|
|
|
|
else:
|
|
|
|
assert envvar == 'BAR'
|
2022-12-11 08:30:32 +01:00
|
|
|
|
2022-12-11 08:30:28 +01:00
|
|
|
assert 'includes' not in flatconf['header']
|
2022-12-11 08:30:32 +01:00
|
|
|
# check if kas can read the generated file
|
|
|
|
if f == 'yaml':
|
|
|
|
shutil.rmtree('%s/build' % tdir, ignore_errors=True)
|
|
|
|
kas.kas(('checkout %s' % outfile).split())
|
|
|
|
assert os.path.exists('build/conf/local.conf')
|