blob: 7c3749175d2cd8c427c94f601ec0744b85022404 [file] [log] [blame]
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Pylint doesn't play well with fixtures and dependency injection from pytest
# pylint: disable=redefined-outer-name
import os
import pytest
from buildstream._context import Context
from buildstream import _yaml, utils
from buildstream._exceptions import LoadError
from buildstream.exceptions import LoadErrorReason
DATA_DIR = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
"context",
)
# Simple fixture to create a Context object.
@pytest.fixture()
def context_fixture():
if os.environ.get("XDG_CACHE_HOME"):
cache_home = os.environ["XDG_CACHE_HOME"]
else:
cache_home = os.path.expanduser("~/.cache")
with Context() as context:
yield {"xdg-cache": cache_home, "context": context}
#######################################
# Test instantiation #
#######################################
def test_context_create(context_fixture):
context = context_fixture["context"]
assert isinstance(context, Context)
#######################################
# Test configuration loading #
#######################################
def test_context_load(context_fixture):
context = context_fixture["context"]
cache_home = os.path.normpath(context_fixture["xdg-cache"])
assert isinstance(context, Context)
context.load(config=os.devnull)
assert context.sourcedir == os.path.join(cache_home, "buildstream", "sources")
assert context.builddir == os.path.join(cache_home, "buildstream", "build")
assert context.cachedir == os.path.join(cache_home, "buildstream")
assert context.logdir == os.path.join(cache_home, "buildstream", "logs")
# Assert that a changed XDG_CACHE_HOME doesn't cause issues
def test_context_load_envvar(context_fixture):
os.environ["XDG_CACHE_HOME"] = "/some/path/"
context = context_fixture["context"]
assert isinstance(context, Context)
context.load(config=os.devnull)
assert context.sourcedir == os.path.join("/", "some", "path", "buildstream", "sources")
assert context.builddir == os.path.join("/", "some", "path", "buildstream", "build")
assert context.cachedir == os.path.join("/", "some", "path", "buildstream")
assert context.logdir == os.path.join("/", "some", "path", "buildstream", "logs")
# Reset the environment variable
del os.environ["XDG_CACHE_HOME"]
# Test that values in a user specified config file
# override the defaults
@pytest.mark.datafiles(os.path.join(DATA_DIR))
def test_context_load_user_config(context_fixture, datafiles):
context = context_fixture["context"]
cache_home = context_fixture["xdg-cache"]
assert isinstance(context, Context)
conf_file = os.path.join(datafiles, "userconf.yaml")
context.load(conf_file)
assert context.sourcedir == os.path.expanduser("~/pony")
assert context.builddir == os.path.join(cache_home, "buildstream", "build")
assert context.cachedir == os.path.join(cache_home, "buildstream")
assert context.logdir == os.path.join(cache_home, "buildstream", "logs")
@pytest.mark.datafiles(os.path.join(DATA_DIR))
def test_context_priority(datafiles):
confdir = os.path.join(str(datafiles), "config")
os.makedirs(confdir)
# The fallback (usual) config file
bst_conf_path = os.path.join(confdir, "buildstream.conf")
bst_conf = {"sourcedir": "/sources"}
_yaml.roundtrip_dump(bst_conf, bst_conf_path)
# The version specific config file
major_version, _ = utils._get_bst_api_version()
bst_conf_path = os.path.join(confdir, "buildstream{}.conf".format(major_version))
bst_conf = {"sourcedir": "/other_sources"}
_yaml.roundtrip_dump(bst_conf, bst_conf_path)
# Load the Context() object and assert that we've chosen
# the version specific one.
#
os.environ["XDG_CONFIG_HOME"] = confdir
with Context() as context:
context.load()
assert context.sourcedir == "/other_sources"
del os.environ["XDG_CONFIG_HOME"]
#######################################
# Test failure modes #
#######################################
@pytest.mark.datafiles(os.path.join(DATA_DIR))
def test_context_load_missing_config(context_fixture, datafiles):
context = context_fixture["context"]
assert isinstance(context, Context)
conf_file = os.path.join(datafiles, "nonexistant.yaml")
with pytest.raises(LoadError) as exc:
context.load(conf_file)
assert exc.value.reason == LoadErrorReason.MISSING_FILE
@pytest.mark.datafiles(os.path.join(DATA_DIR))
def test_context_load_malformed_config(context_fixture, datafiles):
context = context_fixture["context"]
assert isinstance(context, Context)
conf_file = os.path.join(datafiles, "malformed.yaml")
with pytest.raises(LoadError) as exc:
context.load(conf_file)
assert exc.value.reason == LoadErrorReason.INVALID_YAML
@pytest.mark.datafiles(os.path.join(DATA_DIR))
def test_context_load_notdict_config(context_fixture, datafiles):
context = context_fixture["context"]
assert isinstance(context, Context)
conf_file = os.path.join(datafiles, "notdict.yaml")
with pytest.raises(LoadError) as exc:
context.load(conf_file)
# XXX Should this be a different LoadErrorReason ?
assert exc.value.reason == LoadErrorReason.INVALID_YAML