8760b9cde9
Add generic functionality for functional tests using tempest-lib and create related tox jobs. Run of functional tests requires: 1) Access to deployed OpenStack with running, at least, Keystone and Manila services. 2) Defined config options to be able to execute requests to Manila, Manilaclient should know auth related information like username, password, tenant_name, etc... 3) Run of functional tests searches for following optional env vars to be set: 'OS_MANILACLIENT_CONFIG_FILE' - name of conf file, default 'manilaclient.conf' 'OS_MANILACLIENT_CONFIG_DIR' - path to conf dir, default '%project_dir%/etc/manilaclient' 'OS_MANILA_EXEC_DIR' - path to dir with manilaclient executable, default '%project_dir%/.tox/functional/bin' 4) Config sample can be generated by following new tox job: $ tox -egenconfig it will create sample in "%project_dir%/etc/manilaclient/manilaclient.conf.sample" then just rename it removing ".sample" part and set option values. To run functional tests use following new tox job: $ tox -efunctional To run only some specific tests use following: $ tox -efunctional manilaclient.tests.functional.foo.bar Partially implements blueprint functional-tests Change-Id: I95a4e441d2143e51c54ec4fb47a069a91ed77dd7
19 lines
483 B
Plaintext
19 lines
483 B
Plaintext
# The order of packages is significant, because pip processes them in the order
|
|
# of appearance. Changing the order has an impact on the overall integration
|
|
# process, which may cause wedges in the gate later.
|
|
|
|
# pbr should be first
|
|
pbr>=0.6,!=0.7,<1.0
|
|
|
|
argparse
|
|
iso8601>=0.1.9
|
|
keyring>=2.1,!=3.3
|
|
oslo.config>=1.4.0 # Apache-2.0
|
|
oslo.serialization>=1.0.0 # Apache-2.0
|
|
PrettyTable>=0.7,<0.8
|
|
pycrypto>=2.6
|
|
requests>=2.2.0,!=2.4.0
|
|
simplejson>=2.2.0
|
|
Babel>=1.3
|
|
six>=1.7.0
|