Mercurial > hg > vampy-host
view test/test_metadata.py @ 52:b56513f872a5
Move files into subdirs
author | Chris Cannam |
---|---|
date | Wed, 14 Jan 2015 08:30:47 +0000 |
parents | test_metadata.py@36cc53aad853 |
children | 650f0697812f |
line wrap: on
line source
import vampyhost as vh testPluginKey = "vamp-test-plugin:vamp-test-plugin" ##!!! could use: plugin version def test_list(): plugins = vh.listPlugins() if testPluginKey not in plugins: print("Test plugin " + testPluginKey + " not installed or not returned by enumerate: can't run any tests without it") assert testPluginKey in plugins def test_path(): path = vh.getPluginPath() assert len(path) > 0 def test_getlibrary(): lib = vh.getLibraryFor(testPluginKey) assert lib.find("vamp-test-plugin") >= 0 try: lib = vh.getLibraryFor("not a well-formatted plugin key") assert False except TypeError: pass lib = vh.getLibraryFor("nonexistent-library:nonexistent-plugin") assert lib == ""