mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
66 lines
2.4 KiB
Markdown
66 lines
2.4 KiB
Markdown
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
|
|
# PowerFlex/ScaleIO storage plugin
|
|
|
|
This directory contains the basic VM, Volume life cycle tests for PowerFlex/ScaleIO storage pool (in KVM hypervisor).
|
|
|
|
## Running tests
|
|
|
|
To run the basic volume tests, first update the below test data of the CloudStack environment
|
|
|
|
```
|
|
TestData.zoneId: <id of zone>
|
|
TestData.clusterId: <id of cluster>
|
|
TestData.domainId: <id of domain>
|
|
TestData.url: <management server IP>
|
|
TestData.primaryStorage "url": <PowerFlex/ScaleIO storage pool url (see the format below) to use as primary storage>
|
|
```
|
|
|
|
and to enable and run volume migration tests, update the below test data
|
|
|
|
```
|
|
TestData.migrationTests: True
|
|
TestData.primaryStorageSameInstance "url": <PowerFlex/ScaleIO storage pool url (see the format below) of the pool on same storage cluster as TestData.primaryStorage>
|
|
TestData.primaryStorageDistinctInstance "url": <PowerFlex/ScaleIO storage pool url (see the format below) of the pool not on the same storage cluster as TestData.primaryStorage>
|
|
```
|
|
|
|
PowerFlex/ScaleIO storage pool url format:
|
|
|
|
```
|
|
powerflex://<api_user>:<api_password>@<gateway>/<storagepool>
|
|
|
|
where,
|
|
- <api_user> : user name for API access
|
|
- <api_password> : url-encoded password for API access
|
|
- <gateway> : scaleio gateway host
|
|
- <storagepool> : storage pool name (case sensitive)
|
|
|
|
|
|
For example: "powerflex://admin:P%40ssword123@10.10.2.130/cspool"
|
|
```
|
|
|
|
Then run the tests using python unittest runner: nosetests
|
|
|
|
```
|
|
nosetests --with-marvin --marvin-config=<marvin-cfg-file> <cloudstack-dir>/test/integration/plugins/scaleio/test_scaleio_volumes.py --zone=<zone> --hypervisor=kvm
|
|
```
|
|
|
|
You can also run these tests out of the box with PyDev or PyCharm or whatever.
|