OpenStack based test automation framework. Based on OpenCAFE engine
Go to file
OpenDev Sysadmins b08ada7fd0 OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:50:04 +00:00
cloudcafe Changes to fix issue with data driven method names with slashes 2018-12-05 00:45:17 +05:30
configs Small fixes in reference config: 2016-02-25 07:56:03 -06:00
metatests Replace assertEquals with assertEqual 2017-01-29 18:54:23 +00:00
.gitignore Add DS_Store to gitignore 2014-01-28 08:05:59 -06:00
.gitreview OpenDev Migration Patch 2019-04-19 19:50:04 +00:00
HISTORY.rst Initial Commit 2013-03-30 14:48:37 -05:00
LICENSE Initial Commit 2013-03-30 14:48:37 -05:00
MANIFEST.in Refactor to support changes made in engine config overhaul 2013-09-06 13:54:03 -05:00
README.md Change 'cloudcafe' stackforge url to openstack url 2015-10-15 15:14:16 +08:00
pip-requires Initial commit for a Networking Proxy Manager 2016-04-01 13:06:26 -05:00
run_tests.sh Added a script to run the existing unit tests. 2013-12-06 10:07:12 -06:00
setup.py Removes distutils code, old aliases, and bad url from setup.py 2014-05-22 14:05:01 -05:00
test-requirements.txt Replaced all imports of unittest2 with unitest imports 2015-03-30 10:48:08 -05:00
unittest.engine.config Refactor to support changes made in engine config overhaul 2013-09-06 13:54:03 -05:00

README.md

CloudCAFE, An Open CAFE Implementation for OpenStack

   _ _ _
  ( `   )_
 (    )   `)  _
(____(__.___`)__)

    ( (
       ) )
    .........
    |       |___
    |       |_  |
    |  :-)  |_| |
    |       |___|
    |_______|
=== CloudCAFE ===
= An Open CAFE Implementation =

CloudCAFE is an implementation of the Open CAFE Framework specifically designed to test deployed versions of OpenStack. It is built using the Open CAFE Core.

Supported Operating Systems

CloudCAFE has been developed primarily in Linux and Mac environments, however it supports installation and execution on Windows.

Installation

CloudCAFE can be installed with pip from the git repository after it is cloned to a local machine.

  • First follow the README instructions to install Open CAFE Core.
  • Clone this repository to your local machine.
  • CD to the cloned cloudcafe repository directory.
  • Run pip install . --upgrade so that pip will auto-install all other dependencies.

Configuration

CloudCAFE works in tandem with the Open CAFE Core cafe-runner. This installation of CloudCAFE includes a reference configuration for each of the CloudCAFE supported OpenStack products. Configurations will be installed to <USER_HOME>/.cloudcafe/configs/<PRODUCT>.

To use CloudCAFE you will need to create/install your own configurations based on the reference configs pointing to your deployment of OpenStack.

At this stage you will have the Open CAFE Core engine and the CloudCAFE Framework implementation. From this point you are ready to:

  1. Write entirely new tests using the CloudCAFE Framework,

    or...

  2. Install the CloudRoast Test Repository, an open source body of OpenStack automated tests written with CloudCAFE that can be executed or extended.

Logging

CloudCAFE leverages the logging capabilities of the CAFE Core engine. If tests are executed with the built-in cafe-runner, runtime logs will be output to <USER_HOME>/.cloudcafe/logs/<PRODUCT>/<CONFIGURATION>/<TIME_STAMP>. In addition, tests built from the built-in CAFE unittest driver will generate csv statistics files in <USER_HOME>/.cloudcafe/logs/<PRODUCT>/<CONFIGURATION>/statistics for each and ever execution of each and every test case that provides metrics of execution over time for elapsed time, pass/fail rates, etc.

Basic CloudCAFE Package Anatomy

Below is a short description of the top level CloudCAFE Packages.

  • cloudcafe This is the root package for all things CloudCAFE.

  • common Contains modules that extend the CAFE Core engine specific to OpenStack. This is the primary namespace for tools, data generators, common reporting classes, etc.

  • identity OpenStack Identity Service plug-in based on CAFE Core extensions.

  • compute OpenStack Compute plug-in based on CAFE Core extensions.

  • blockstorage OpenStack Block Storage plug-in based on CAFE Core extensions.

  • objectstorage OpenStack Object Storage plug-in based on CAFE Core extensions.

Join us