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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
import os
import pytest
from buildstream._exceptions import LoadError, LoadErrorReason
from buildstream._loader import Loader, MetaElement
from tests.testutils import cli
from . import make_loader
DATA_DIR = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'dependencies',
)
##############################################################
# Basics: Test behavior loading projects with dependencies #
##############################################################
@pytest.mark.datafiles(DATA_DIR)
def test_two_files(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
element = loader.load(['elements/target.bst'])[0]
assert(isinstance(element, MetaElement))
assert(element.kind == 'pony')
assert(len(element.dependencies) == 1)
firstdep = element.dependencies[0]
assert(isinstance(firstdep, MetaElement))
assert(firstdep.kind == 'manual')
@pytest.mark.datafiles(DATA_DIR)
def test_shared_dependency(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
element = loader.load(['elements/shareddeptarget.bst'])[0]
# Toplevel is 'pony' with 2 dependencies
#
assert(isinstance(element, MetaElement))
assert(element.kind == 'pony')
assert(len(element.dependencies) == 2)
# The first specified dependency is 'thefirstdep'
#
firstdep = element.dependencies[0]
assert(isinstance(firstdep, MetaElement))
assert(firstdep.kind == 'manual')
assert(len(firstdep.dependencies) == 0)
# The second specified dependency is 'shareddep'
#
shareddep = element.dependencies[1]
assert(isinstance(shareddep, MetaElement))
assert(shareddep.kind == 'shareddep')
assert(len(shareddep.dependencies) == 1)
# The element which shareddep depends on is
# the same element in memory as firstdep
#
shareddepdep = shareddep.dependencies[0]
assert(isinstance(shareddepdep, MetaElement))
# Assert they are in fact the same LoadElement
#
# Note we must use 'is' to test that both variables
# refer to the same object in memory, not a regular
# equality test with '==' which is one of those operator
# overridable thingies.
#
assert(shareddepdep is firstdep)
@pytest.mark.datafiles(DATA_DIR)
def test_dependency_dict(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
element = loader.load(['elements/target-depdict.bst'])[0]
assert(isinstance(element, MetaElement))
assert(element.kind == 'pony')
assert(len(element.dependencies) == 1)
firstdep = element.dependencies[0]
assert(isinstance(firstdep, MetaElement))
assert(firstdep.kind == 'manual')
@pytest.mark.datafiles(DATA_DIR)
def test_invalid_dependency_declaration(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
with pytest.raises(LoadError) as exc:
element = loader.load(['elements/invaliddep.bst'])[0]
assert (exc.value.reason == LoadErrorReason.INVALID_DATA)
@pytest.mark.datafiles(DATA_DIR)
def test_circular_dependency(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
with pytest.raises(LoadError) as exc:
element = loader.load(['elements/circulartarget.bst'])[0]
assert (exc.value.reason == LoadErrorReason.CIRCULAR_DEPENDENCY)
@pytest.mark.datafiles(DATA_DIR)
def test_invalid_dependency_type(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
with pytest.raises(LoadError) as exc:
element = loader.load(['elements/invaliddeptype.bst'])[0]
assert (exc.value.reason == LoadErrorReason.INVALID_DATA)
@pytest.mark.datafiles(DATA_DIR)
def test_invalid_strict_dependency(cli, datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
with pytest.raises(LoadError) as exc:
element = loader.load(['elements/invalidstrict.bst'])[0]
assert (exc.value.reason == LoadErrorReason.INVALID_DATA)
@pytest.mark.datafiles(DATA_DIR)
def test_invalid_non_strict_dependency(cli, datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
with pytest.raises(LoadError) as exc:
element = loader.load(['elements/invalidnonstrict.bst'])[0]
assert (exc.value.reason == LoadErrorReason.INVALID_DATA)
@pytest.mark.datafiles(DATA_DIR)
def test_build_dependency(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
element = loader.load(['elements/builddep.bst'])[0]
assert(isinstance(element, MetaElement))
assert(element.kind == 'pony')
assert(len(element.build_dependencies) == 1)
firstdep = element.build_dependencies[0]
assert(isinstance(firstdep, MetaElement))
assert(len(element.dependencies) == 0)
@pytest.mark.datafiles(DATA_DIR)
def test_runtime_dependency(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
element = loader.load(['elements/runtimedep.bst'])[0]
assert(isinstance(element, MetaElement))
assert(element.kind == 'pony')
assert(len(element.dependencies) == 1)
firstdep = element.dependencies[0]
assert(isinstance(firstdep, MetaElement))
assert(len(element.build_dependencies) == 0)
@pytest.mark.datafiles(DATA_DIR)
def test_build_runtime_dependency(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
element = loader.load(['elements/target.bst'])[0]
assert(isinstance(element, MetaElement))
assert(element.kind == 'pony')
assert(len(element.dependencies) == 1)
assert(len(element.build_dependencies) == 1)
firstdep = element.dependencies[0]
assert(isinstance(firstdep, MetaElement))
firstbuilddep = element.build_dependencies[0]
assert(firstdep == firstbuilddep)
@pytest.mark.datafiles(DATA_DIR)
def test_all_dependency(datafiles):
basedir = os.path.join(datafiles.dirname, datafiles.basename)
loader = make_loader(basedir)
element = loader.load(['elements/alldep.bst'])[0]
assert(isinstance(element, MetaElement))
assert(element.kind == 'pony')
assert(len(element.dependencies) == 1)
assert(len(element.build_dependencies) == 1)
firstdep = element.dependencies[0]
assert(isinstance(firstdep, MetaElement))
firstbuilddep = element.build_dependencies[0]
assert(firstdep == firstbuilddep)
@pytest.mark.datafiles(DATA_DIR)
def test_list_build_dependency(cli, datafiles):
project = str(datafiles)
# Check that the pipeline includes the build dependency
deps = cli.get_pipeline(project, ['elements/builddep-list.bst'], scope="build")
assert "elements/firstdep.bst" in deps
@pytest.mark.datafiles(DATA_DIR)
def test_list_runtime_dependency(cli, datafiles):
project = str(datafiles)
# Check that the pipeline includes the runtime dependency
deps = cli.get_pipeline(project, ['elements/runtimedep-list.bst'], scope="run")
assert "elements/firstdep.bst" in deps
@pytest.mark.datafiles(DATA_DIR)
def test_list_dependencies_combined(cli, datafiles):
project = str(datafiles)
# Check that runtime deps get combined
rundeps = cli.get_pipeline(project, ['elements/list-combine.bst'], scope="run")
assert "elements/firstdep.bst" not in rundeps
assert "elements/seconddep.bst" in rundeps
assert "elements/thirddep.bst" in rundeps
# Check that build deps get combined
builddeps = cli.get_pipeline(project, ['elements/list-combine.bst'], scope="build")
assert "elements/firstdep.bst" in builddeps
assert "elements/seconddep.bst" not in builddeps
assert "elements/thirddep.bst" in builddeps
@pytest.mark.datafiles(DATA_DIR)
def test_list_overlap(cli, datafiles):
project = str(datafiles)
# Check that dependencies get merged
rundeps = cli.get_pipeline(project, ['elements/list-overlap.bst'], scope="run")
assert "elements/firstdep.bst" in rundeps
builddeps = cli.get_pipeline(project, ['elements/list-overlap.bst'], scope="build")
assert "elements/firstdep.bst" in builddeps
|