blob: 408813a647e666cdff6f2120d1301e4fbf7cf881 [file] [log] [blame]
from contextlib import contextmanager
import os
import pytest
from buildstream.exceptions import LoadErrorReason
from buildstream._exceptions import LoadError
from buildstream._project import Project
from buildstream._loader import MetaElement
from tests.testutils import dummy_context
DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "loader",)
@contextmanager
def make_loader(basedir):
with dummy_context() as context:
project = Project(basedir, context)
yield project.loader
##############################################################
# Basics: Test behavior loading the simplest of projects #
##############################################################
@pytest.mark.datafiles(os.path.join(DATA_DIR, "onefile"))
def test_one_file(datafiles):
basedir = str(datafiles)
with make_loader(basedir) as loader:
element = loader.load(["elements/onefile.bst"], None)[0]
assert isinstance(element, MetaElement)
assert element.kind == "pony"
@pytest.mark.datafiles(os.path.join(DATA_DIR, "onefile"))
def test_missing_file(datafiles):
basedir = str(datafiles)
with make_loader(basedir) as loader, pytest.raises(LoadError) as exc:
loader.load(["elements/missing.bst"], None)
assert exc.value.reason == LoadErrorReason.MISSING_FILE
@pytest.mark.datafiles(os.path.join(DATA_DIR, "onefile"))
def test_invalid_reference(datafiles):
basedir = str(datafiles)
with make_loader(basedir) as loader, pytest.raises(LoadError) as exc:
loader.load(["elements/badreference.bst"], None)
assert exc.value.reason == LoadErrorReason.INVALID_YAML
@pytest.mark.datafiles(os.path.join(DATA_DIR, "onefile"))
def test_invalid_yaml(datafiles):
basedir = str(datafiles)
with make_loader(basedir) as loader, pytest.raises(LoadError) as exc:
loader.load(["elements/badfile.bst"], None)
assert exc.value.reason == LoadErrorReason.INVALID_YAML
@pytest.mark.datafiles(os.path.join(DATA_DIR, "onefile"))
def test_fail_fullpath_target(datafiles):
basedir = str(datafiles)
fullpath = os.path.join(basedir, "elements", "onefile.bst")
with make_loader(basedir) as loader, pytest.raises(LoadError) as exc:
loader.load([fullpath], None)
assert exc.value.reason == LoadErrorReason.INVALID_DATA
@pytest.mark.datafiles(os.path.join(DATA_DIR, "onefile"))
def test_invalid_key(datafiles):
basedir = str(datafiles)
with make_loader(basedir) as loader, pytest.raises(LoadError) as exc:
loader.load(["elements/invalidkey.bst"], None)
assert exc.value.reason == LoadErrorReason.INVALID_DATA
@pytest.mark.datafiles(os.path.join(DATA_DIR, "onefile"))
def test_invalid_directory_load(datafiles):
basedir = str(datafiles)
with make_loader(basedir) as loader, pytest.raises(LoadError) as exc:
loader.load(["elements/"], None)
assert exc.value.reason == LoadErrorReason.LOADING_DIRECTORY