summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Do not always init compute_client when doint port list3.11.0Vasyl Saienko2017-05-042-1/+7
| | | | | | | | | This patch ensures that compute client is initialized only when needed (--server arg is passed) to openstack port list command. Otherwise it leads to failures on installations without Nova. Change-Id: I102683461daa2f7d05dd9d7a3ec72de551c65ca9 Closes-Bug: #1688194
* Skip floating ip attach functional test on nova-netDean Troyer2017-05-031-9/+9
| | | | | | | | | As of Ocata release Nova forces nova-network to run in a cells v1 configuration. Floating IP and network functions currently do not work in the gate jobs so we have to skip this. It is known to work tested against a Mitaka nova-net DevStack without cells. Change-Id: I74f67ac8eb12c7a649ddcbd7979cf745fb35cc0c
* Updated from global requirementsOpenStack Proposal Bot2017-05-031-1/+1
| | | | Change-Id: I9a60f1b0db78ed188966287939dbd8a6f82c1682
* Merge "Explicitly set 'builders' option"3.10.0Jenkins2017-05-031-0/+1
|\
| * Explicitly set 'builders' optionStephen Finucane2017-04-191-0/+1
| | | | | | | | | | | | | | | | | | An upcoming release of pbr will require explicitly stating which builders are requested, rather than defaulting to html and man. Head off any potential impact this may cause by explicitly setting this configuration now. Change-Id: I243ca33f5459009f9a9670ec5e0ad67b04760f35
* | Funcional tests: quota listDean Troyer2017-05-022-270/+490
| | | | | | | | | | | | | | | | | | | | | | | | The quota list tests have a race in them where occasionally a project is deleted in another test between the time that quota list gets a list of all projects and it gets the quota for the projects from the service; the get quota call fails on the non-existant project. The quota list functional tests have been substantially re-written to properly test the exception handling. Change-Id: I71e6bbb5d46fcea4718a5a870f9a66a2c20fff0f
* | Nova-net functional tests: aggregatesDean Troyer2017-05-021-21/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | Nova-net requires a cells v1 configuration to run as of Ocata, but aggregates and cells v1 are not golfing buddies, so don't let them meet on the back nine. Skip the aggregate add/remove host commands in the cells v1 config, leave the others because they should work, just not be very useful. And format things consistently. Change-Id: I131d9f883cb7aca53ad82fb7d5fc6ee1c1e7d923
* | Functional tests: Identity v2 and DevStackDean Troyer2017-05-021-6/+17
| | | | | | | | | | | | | | | | DevStack master (as of 01May2017) no longer sets up an Identity v2 admin endpoint, so we need to skip those tests going forward and cover them via a specific leagacy job. This does the detect-and-skip. Change-Id: Ib9ab32b6bc84ec7d13508094ad6f83995d8d7bc1
* | Updated from global requirementsOpenStack Proposal Bot2017-05-012-3/+3
| | | | | | | | Change-Id: I5215bae5234dcef448c6c5b824c506f80dd1c5a8
* | Merge "Nova net functional tests round 3"Jenkins2017-04-2916-173/+387
|\ \
| * | Nova net functional tests round 3Dean Troyer2017-04-2816-173/+387
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * network segment * network service * port * router * security group * security group rule * subnet * subnet pool * extension The extension tests were duplicated to have both compute and network extensions tests so the nova-net case will still exercise the extension commands. Also clean up formatting from previous reviews to make the Network functional tests look and act consistently. Change-Id: I286c40572faa31ddcef595cec740da933b2defc1
* | | Merge "Fix volume qos spec list"Jenkins2017-04-295-28/+106
|\ \ \ | |/ / |/| |
| * | Fix volume qos spec listDean Troyer2017-04-285-28/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This has been sporadically failing in functional tests due to the way the volume qos spec list command calls get_associations() for each spec. When tests run in parallel occasionally a spec from another test is present in the list returned and is deleted before the get_associations() call is made, causing a NotFound exception. We should just keep going when this occurs. * make v1 match v2 * add tests to ensure the exception is being caught and handled Closes-Bug: #1687083 Change-Id: If2d17c1deb53d293fc2c7f0c527a4e4ef6f69976
* | | Merge "Fix Nova-net netowrk commands"Jenkins2017-04-287-143/+299
|\ \ \ | |/ / |/| |
| * | Fix Nova-net netowrk commandsDean Troyer2017-04-277-143/+299
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In cleaning up functional tests for nova-net, I discovered some problems in network create: * --subnet option is required in network create command * Switch API to use /os-networks rather than /os-tenant-networks as this is what we were actually using via novaclient * Fix functional tests for nova-net * Normalize some private function names in network/v2/network.py Change-Id: I426b864406756d58d140575a3a45ee9aee67ce84
* | | Nova net functional tests round 2Dean Troyer2017-04-286-106/+180
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * floating ip * ip availability * network qos policy * network qos rule * network qos rule type * network rbac Change-Id: Id3946bdff43bfef3a1d879c058bde4792bd299c6
* | | Nova net functional tests round 1Dean Troyer2017-04-287-136/+286
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * address scope * network agent * network flavor * network flavor profile * network meter * network meter rule Also create a new common network functional test class NetworkTests to house the setting of haz_network in a single place. The individual test skipping stays in the final classes to re-enforce the idea that some tests work with both Nova-net and Neutron. Change-Id: Ie3910231c6fc9e2031438c599afa904f43c874a7
* | Merge "Fix server create with nova-net"Jenkins2017-04-272-5/+12
|\ \
| * | Fix server create with nova-netDean Troyer2017-04-262-5/+12
| | | | | | | | | | | | | | | | | | A Neutron-ism slipped by in server create. Change-Id: Id590d7f93df2a41d7bd7617459a2af159a6f8071
* | | Merge "Fix quota functional tests for nova-net"Jenkins2017-04-273-53/+119
|\ \ \
| * | | Fix quota functional tests for nova-netDean Troyer2017-04-263-53/+119
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | We need to skip some functional tests when testing against a nova-net cloud so add the bits to detect that. Also JSON-ify the quota functional tests and add the skips for nova-net. Change-Id: Ibfeeb3f967f34c98e80271a8214cf95dc50407f1
* | | Merge "Updated from global requirements"Jenkins2017-04-261-1/+1
|\ \ \
| * | | Updated from global requirementsOpenStack Proposal Bot2017-04-261-1/+1
| |/ / | | | | | | | | | Change-Id: Ib3ea4225636bfa815f7cf60481d2adc07077123c
* | | Merge "Functional test for subnet_pool"Jenkins2017-04-261-37/+268
|\ \ \ | |/ / |/| |
| * | Functional test for subnet_pooljiahui.qiang2017-04-261-37/+268
| | | | | | | | | | | | | | | | | | Refactor functional tests for testing more command options. Change-Id: I0c9c3b04dd2b79766a8fe82cbc5315c030f4784d
* | | Merge "Remove ipdb installation in tox debug section"Jenkins2017-04-261-1/+0
|\ \ \
| * | | Remove ipdb installation in tox debug sectionRui Chen2017-04-241-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The lastest ipdb depends on ipython 6.0, but ipython 6.0 only can be installed in python 3.3 and above, see http://paste.openstack.org/show/607632/ . If we try to run "tox -e debug" in python2.7, the install error is raised and block the function. Remove the ipdb installation, it's not necessary, we can use pdb to replace. Change-Id: Ib47bb5925b7a5b1d3a319b58fa219c1b57dccb93
* | | | Merge "Fix NoneType error for volume snapshot create command"Jenkins2017-04-267-38/+42
|\ \ \ \
| * | | | Fix NoneType error for volume snapshot create commandHuanxuan Ao2017-04-267-38/+42
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In volume snapshot command, <volume> is the same as <snapshot-name> when --volume is not specified, but <volume> cannot be None, so when <snapshot-name> is not specified (<snapshot-name> is None), a NoneType error appears. So make <snapshot-name> no longer optional, it should be always present. Change-Id: I3d9f10753a8ef601e70816421c160598e2cc811f Closes-bug: #1659894
* | | | Merge "SDK refactor: Set "is_admin_state_up" for network agent"Jenkins2017-04-262-4/+4
|\ \ \ \ | |/ / / |/| | |
| * | | SDK refactor: Set "is_admin_state_up" for network agentHuanxuan Ao2017-02-022-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OpenStackSDK is >=0.9.13 now in requirement, so we can update "is_admin_state_up" as well for the SDK refactor Change-Id: I02de0ebc752ce602032bbe9d73256ed376993e78
* | | | Merge "Make test_server.py more elegant and simple"Jenkins2017-04-251-14/+7
|\ \ \ \
| * | | | Make test_server.py more elegant and simpleDavid Rabel2017-04-211-14/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use only one line for mocking network resources like ports and networks in test_server.py. Change-Id: I451a504c3afdd365e64d66079516ec6308c206db Depends-On: I624b1bc557a195bdf8a7c5a32dc0e72a6fa8b075
* | | | | Merge "Add --network and --port to server create"Jenkins2017-04-254-13/+103
|\ \ \ \ \ | |/ / / /
| * | | | Add --network and --port to server createDavid Rabel2017-04-074-13/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --nic option is quite unhandy. It is better to have two seperate options --network and --port to add a network to a new server. Change-Id: I523abdc83ca2dd4c5dd3871f8f109c2bf57c2e02 Closes-Bug: #1612898
* | | | | Improve no-auth pathDean Troyer2017-04-243-2/+23
| |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The commands that do not require authentication sometimes still need to call ClientManager.is_network_endpoint_enabled() to see if Neutron is available. Optimize the paths a bit to skip auth when it is not necessary; the upshot is Neutron will be assumed in these cases now. This gets a LOT cleaner when it appears is a future osc-lib. Change-Id: Ifaddc57dfa192bde04d0482e2cdcce111313a22a
* | | | Fix network list functional testHuanxuan Ao2017-04-191-1/+1
| |_|/ |/| | | | | | | | | | | | | | | | | | | | An error in network func test broke our CI, looks like the "is_default" should be "False" by default for now. Change-Id: I021eb8abd9bdf55c7c06031152c107312f104b34
* | | Low-level Compute v2 API: floating ip poolDean Troyer2017-04-186-29/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | api.compute.APIv2 floating ip pool function. novaclient 8.0 is now released without support for the previously deprecated nova-net functions, so include a new low-level REST implementation of the removed APIs. Also includes a handful of cleanups that the previous security group and floating IP reviews missed. Change-Id: I20116ec4fc1113857d8d917bfb30fa3170d05b9f
* | | Merge "Clean up password prompt work-arounds"Jenkins2017-04-182-2/+3
|\ \ \
| * | | Clean up password prompt work-aroundsDean Troyer2017-04-052-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | osc-lib 1.2 is minimum and now handles the password prompting. Change-Id: Ie11ad64796d3a89c7396b321c34947d622d1ed39
* | | | Low-level Compute v2 API: networkDean Troyer2017-04-177-188/+430
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | api.compute.APIv2 network functions. novaclient 8.0 is now released without support for the previously deprecated nova-net functions, so include a new low-level REST implementation of the removed APIs. Change-Id: If230f128e91cda44461fe93c976cac2aecec2252
* | | | Split network testsDean Troyer2017-04-172-372/+392
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Split up the network unit tests between compute and network APIs into separate files in preparation for reworking the compute (nova-net) implementations to deal with the removal of deprecated nova-net support in novaclient 8.0.0. No code changes are intended here, just splitting two files into four. Change-Id: I2d001118af436f95025d2851341f8ca802e78830
* | | | Merge "Low-level Compute v2 API: floating ip"Jenkins2017-04-175-93/+277
|\ \ \ \
| * | | | Low-level Compute v2 API: floating ipDean Troyer2017-04-115-93/+277
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | api.compute.APIv2 floating ip functions. novaclient 8.0 is now released without support for the previously deprecated nova-net functions, so include a new low-level REST implementation of the removed APIs. Change-Id: Ic461b8d15e072e0534dcd73fff6857581d83c89b
* | | | | Merge "Low-level Compute v2 API: security group rules"Jenkins2017-04-176-118/+301
|\ \ \ \ \
| * | | | | Low-level Compute v2 API: security group rulesDean Troyer2017-04-116-118/+301
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | api.compute.APIv2 security group rule functions. novaclient 8.0 is now released without support for the previously deprecated nova-net functions, so include a new low-level REST implementation of the removed APIs. Change-Id: Ieabd61113bc6d3562738686f52bb06aa84fca765
* | | | | Merge "Update to tox.ini"Jenkins2017-04-171-1/+1
|\ \ \ \ \
| * | | | | Update to tox.iniyangweiwei2017-04-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When do the action "tox -e pep8", result is "ValueError: No closing quotation". Which is caused by the tox.ini. The min tox version is 1.6. In my environment, tox version is 2.2.1. If the tox version is more than 2.3, the error will not happen. Depends-on: Iee7b043ac7d381dadf89d26098f69e935ed81d6b Change-Id: Id10ddf6244e7e25e6f66c97773d426b0b4789479
* | | | | | Merge "Low-level Compute v2 API: security group"Jenkins2017-04-1712-265/+729
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Low-level Compute v2 API: security groupDean Troyer2017-04-1112-265/+729
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | api.compute.APIv2 starts with security group functions. novaclient 8.0 is now released without support for the previously deprecated nova-net functions, so include a new low-level REST implementation of the removed APIs. Change-Id: Id007535f0598226a8202716232313e37fe6247f9