summaryrefslogtreecommitdiff
path: root/functional/tests/identity
Commit message (Collapse)AuthorAgeFilesLines
* Defaults are ignored with flake8Tom Cocozzello2016-02-231-1/+1
| | | | | | | | | | | | If “ignore” is not set under flake8 in the tox.ini file there there are defaults set to be ignored. The depended patch fixes many of the problems. Change-Id: Ieed2fe1c4654e201d3fe6d40ef93e247ee736f8b Doc: http://flake8.readthedocs.org/en/latest/config.html#default Depends-On: I935ab48e7c5bac5f88ecdb3a05f73fb44fc9f41d Closes-Bug: #1548910
* Fix identity test_role functional testsRichard Theis2016-02-112-2/+2
| | | | | | | | | | A recent keystone change [1] resulted in the domain_id field being included when showing a role. [1] https://github.com/openstack/keystone/commit/407eabde417e85bb35bc7cbf1995857f4b20aeca Change-Id: I344f4d727f2a16217c075ad8b8393c1e0a233c2e Closes-Bug: #1544547
* Revert "Skip identity v2 functional tests"Richard Theis2016-02-019-24/+9
| | | | | | | | This reverts commit 5032dbc8074d5133c6b71610cd57d3c8da07c9b9 based on [1]. [1] https://review.openstack.org/#/c/274703/ Change-Id: Ic10ef7c37d71e452fbc4bd36e28be79d669b4e3f
* Skip identity v2 functional testsRichard Theis2016-01-299-9/+24
| | | | | | | | | | | DevStack now uses identity v3 by default thus causing OSC to only load openstack.identity.v3 commands. This prevents running functional tests on openstack.identity.v2 commands. As a result, this patch set skips all identity v2 functional tests to unblock the gate. Change-Id: I066187318be71792a966fa21226fab0d406c3758 Partial-Bug: #1539780
* Implementation for project unset cmd for python-openstackclient.Jude Job2016-01-041-3/+5
| | | | | | | | | This patch introduces a unit test class TestProjectUnset for testing unset cmd. Co-Authored-By: Steve Martinelli <stevemar@ca.ibm.com> Change-Id: Ib4a414d2313e3d37e48d1cb3639f064231aec508 Closes-Bug: #1486597
* remove url from v3 regionsSteve Martinelli2015-10-211-6/+2
| | | | | | | | | | | the parameter "url" was removed from Keystone, it was only added for one release as part of an experimental support for adding service providers. BackwardsIncompatibleImpact Closes-Bug: 1506841 Change-Id: I7a62fbf1d9bfa8e6dd8d619e98c32b9860348d2e
* Merge "additional functional tests for identity providers"Jenkins2015-08-222-0/+35
|\
| * additional functional tests for identity providersKelvin Lui2015-08-212-0/+35
| | | | | | | | | | | | | | | | | | | | | | add tests for: * delete * set * list * show Change-Id: Ibe34f28d7ae77d139a6e0edf4fe04215c371c9a8
* | unwedge the osc gateSteve Martinelli2015-08-211-1/+1
|/ | | | | | | | | keystone added a new property to projects, called is_domain. our functional tests fail because we are not expecting that in the project's 'show' command. Change-Id: Idf05118155847e3a6002818c44b99825801ea9f4 Related-Bug: #1487600
* Introduce functional test for Identity ProviderKelvin Lui2015-08-012-0/+39
| | | | | | Identity Provider currently doesn't have test coverage. Change-Id: Iea2e705f9d2303f58516f08a7526135988032025
* Merge "enhance tests for user v3"Jenkins2015-07-182-3/+39
|\
| * enhance tests for user v3Guojian Shao2015-07-172-3/+39
| | | | | | | | | | Change-Id: Ib17ba0cd71068ba8d7e7665160daf3ae0735971b Related-Bug: #1475357
* | Merge "add functional tests for identity v2"Jenkins2015-07-173-0/+125
|\ \ | |/ |/|
| * add functional tests for identity v2Guojian Shao2015-07-173-0/+125
| | | | | | | | | | | | | | add tests for endpoint and service. Change-Id: Iec80106d6e4c310cea1c5af262d145ac1f56525e Implements: blueprint identity-functional-tests
* | add functional tests for identity v3Guojian Shao2015-07-175-11/+279
|/ | | | | | | add functional tests for endpoint, region and service. Change-Id: I504878811dc8f9fcb2295cbf7419885959d9c1f6 Implements: blueprint identity-functional-tests
* Merge "add functional tests for identity v2"Jenkins2015-07-137-88/+462
|\
| * add functional tests for identity v2Guojian Shao2015-07-107-88/+462
| | | | | | | | | | | | | | | | | | split test_identity.py into test_user.py, test_project, etc. To make functional tests run repeatedly without raising duplicated error, clean up resources before exiting each test case. Change-Id: I8f31ccbd70f1cccdab8b3720aac179e2e399486d Implements: blueprint identity-functional-tests
* | Fix wrong mock method calllin-hua-cheng2015-07-111-2/+1
|/ | | | | | | | | | | | | | | | | | | | There is no assert_called() method in mock, replace it with assert_called_with() method. The old method used to work with mock 1.0.1 because it was a noop in magicmock. Needs https://review.openstack.org/#/c/200583 to pass the requirements check. https://review.openstack.org/#/c/193935/ changed the OS_* vars we source by forcing v2password as the auth method. change our identity v3 test setup by setting v3password Co-Authored-By: Steve Martinelli <stevemar@ca.ibm.com> Closes-Bug: 1473454 Depends-on: I0cfab6d13e5d9e744cb302c86a2c21269923e75d Change-Id: Id22765c7e044797e03d19ad1b103fadec2726aa2
* add functional tests for identity v3Guojian Shao2015-07-078-60/+764
| | | | | | | | | | | To make test cases more clearly, split test_identity.py into test_user.py, test_role, etc. Add more test cases for user, role, etc. Furthermore, to make functional tests run repeatedly without raising duplicated error, clean up resources before exiting each test case. Change-Id: I1541943ad0b8d4d8d1e72822c159fda243b3d1d7 Implements: blueprint identity-functional-tests
* Remove unique class names because they are scopedTerryHowe2015-04-272-5/+5
| | | | | | | Remove unique class names because they are module scoped. Also, add cleanup of the tmp file in the object test. Change-Id: I8107a02b13ff87793ba1e56e0f0ad26890f24369
* Re-organize functional testsSteve Martinelli2015-04-175-0/+209
The tests should be further divded by project version, similar to the structure of the unit tests. Change-Id: Ied3a4204983cdd253c5602a60968c066038d88f2