summaryrefslogtreecommitdiff
path: root/tests/plugins/basics.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/basics.py')
-rw-r--r--tests/plugins/basics.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/plugins/basics.py b/tests/plugins/basics.py
index b1506b64f..e12dfd14f 100644
--- a/tests/plugins/basics.py
+++ b/tests/plugins/basics.py
@@ -196,6 +196,28 @@ def test_element_bad_setup(plugin_fixture, datafiles):
foo_type = factory.lookup('foo')
+# Load a factory with a plugin which requires an absurdly
+# high version of buildstream
+@pytest.mark.datafiles(os.path.join(DATA_DIR, 'badversionsource'))
+def test_source_badversion(plugin_fixture, datafiles):
+ factory = SourceFactory(plugin_fixture['base'],
+ [os.path.join(datafiles.dirname,
+ datafiles.basename)])
+ with pytest.raises(PluginError) as exc:
+ foo_type = factory.lookup('foo')
+
+
+# Load a factory with a plugin which requires an absurdly
+# high version of buildstream
+@pytest.mark.datafiles(os.path.join(DATA_DIR, 'badversionelement'))
+def test_element_badversion(plugin_fixture, datafiles):
+ factory = ElementFactory(plugin_fixture['base'],
+ [os.path.join(datafiles.dirname,
+ datafiles.basename)])
+ with pytest.raises(PluginError) as exc:
+ foo_type = factory.lookup('foo')
+
+
##############################################################
# Check we can load different contexts of plugin #
##############################################################