| Jamie Hannaford | e8ab7b4 | 2014-09-09 16:40:06 +0200 | [diff] [blame] | 1 | # Gophercloud Acceptance tests |
| 2 | |
| 3 | The purpose of these acceptance tests is to validate that SDK features meet |
| 4 | the requirements of a contract - to consumers, other parts of the library, and |
| 5 | to a remote API. |
| 6 | |
| 7 | > **Note:** Because every test will be run against a real API endpoint, you |
| Jamie Hannaford | 2a2a146 | 2014-09-10 14:05:45 +0200 | [diff] [blame] | 8 | > may incur bandwidth and service charges for all the resource usage. These |
| 9 | > tests *should* remove their remote products automatically. However, there may |
| 10 | > be certain cases where this does not happen; always double-check to make sure |
| 11 | > you have no stragglers left behind. |
| Jamie Hannaford | e8ab7b4 | 2014-09-09 16:40:06 +0200 | [diff] [blame] | 12 | |
| 13 | ### Step 1. Set environment variables |
| 14 | |
| Ash Wilson | 9d0abb2 | 2014-10-20 15:15:58 -0400 | [diff] [blame] | 15 | A lot of tests rely on environment variables for configuration - so you will need |
| Jamie Hannaford | 0fd6752 | 2014-09-09 17:00:22 +0200 | [diff] [blame] | 16 | to set them before running the suite. If you're testing against pure OpenStack APIs, |
| Ash Wilson | 9d0abb2 | 2014-10-20 15:15:58 -0400 | [diff] [blame] | 17 | you can download a file that contains all of these variables for you: just visit |
| 18 | the `project/access_and_security` page in your control panel and click the "Download |
| 19 | OpenStack RC File" button at the top right. For all other providers, you will need |
| Jamie Hannaford | 0fd6752 | 2014-09-09 17:00:22 +0200 | [diff] [blame] | 20 | to set them manually. |
| 21 | |
| Jamie Hannaford | e8ab7b4 | 2014-09-09 16:40:06 +0200 | [diff] [blame] | 22 | #### Authentication |
| 23 | |
| 24 | |Name|Description| |
| 25 | |---|---| |
| 26 | |`OS_USERNAME`|Your API username| |
| 27 | |`OS_PASSWORD`|Your API password| |
| 28 | |`OS_AUTH_URL`|The identity URL you need to authenticate| |
| 29 | |`OS_TENANT_NAME`|Your API tenant name| |
| 30 | |`OS_TENANT_ID`|Your API tenant ID| |
| 31 | |
| 32 | #### General |
| 33 | |
| 34 | |Name|Description| |
| 35 | |---|---| |
| 36 | |`OS_REGION_NAME`|The region you want your resources to reside in| |
| 37 | |
| 38 | #### Compute |
| 39 | |
| 40 | |Name|Description| |
| 41 | |---|---| |
| 42 | |`OS_IMAGE_ID`|The ID of the image your want your server to be based on| |
| 43 | |`OS_FLAVOR_ID`|The ID of the flavor you want your server to be based on| |
| 44 | |`OS_FLAVOR_ID_RESIZE`|The ID of the flavor you want your server to be resized to| |
| Joe Topjian | 0dd4487 | 2016-07-26 02:06:38 +0000 | [diff] [blame^] | 45 | |`OS_POOL_NAME`|The Pool from where to obtain Floating IPs| |
| 46 | |`OS_NETWORK_NAME`|The network to launch instances on| |
| Jamie Hannaford | e8ab7b4 | 2014-09-09 16:40:06 +0200 | [diff] [blame] | 47 | |
| 48 | ### 2. Run the test suite |
| 49 | |
| Jamie Hannaford | 1c5f553 | 2014-10-22 11:44:55 +0200 | [diff] [blame] | 50 | From the root directory, run: |
| Jamie Hannaford | e8ab7b4 | 2014-09-09 16:40:06 +0200 | [diff] [blame] | 51 | |
| 52 | ``` |
| Jamie Hannaford | 1c5f553 | 2014-10-22 11:44:55 +0200 | [diff] [blame] | 53 | ./script/acceptancetest |
| Ash Wilson | 9d0abb2 | 2014-10-20 15:15:58 -0400 | [diff] [blame] | 54 | ``` |
| Joe Topjian | 0dd4487 | 2016-07-26 02:06:38 +0000 | [diff] [blame^] | 55 | |
| 56 | Alternatively, add the following to your `.bashrc`: |
| 57 | |
| 58 | ```bash |
| 59 | gophercloudtest() { |
| 60 | if [[ -n $1 ]] && [[ -n $2 ]]; then |
| 61 | pushd ~/go/src/github.com/gophercloud/gophercloud |
| 62 | go test -v -tags "fixtures acceptance" -run "$1" github.com/gophercloud/gophercloud/acceptance/openstack/$2 | tee ~/gophercloud.log |
| 63 | popd |
| 64 | fi |
| 65 | } |
| 66 | ``` |
| 67 | |
| 68 | Then run either groups or individual tests by doing: |
| 69 | |
| 70 | ```shell |
| 71 | $ gophercloudtest TestFlavorsList compute/v2 |
| 72 | $ gophercloudtest TestFlavors compute/v2 |
| 73 | $ gophercloudtest Test compute/v2 |
| 74 | ``` |
| 75 | |
| 76 | ### 3. Notes |
| 77 | |
| 78 | #### Compute Tests |
| 79 | |
| 80 | * In order to run the `TestBootFromVolumeMultiEphemeral` test, a flavor with ephemeral disk space must be used. |
| 81 | * The `TestDefSecRules` tests require a compatible network driver and admin privileges. |