summaryrefslogtreecommitdiff
path: root/designateclient/functionaltests/v2
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Add hacking check for line continuation backslash"Zuul2023-02-211-3/+3
|\
| * Add hacking check for line continuation backslashMichael Johnson2023-02-131-3/+3
| | | | | | | | | | | | This patch adds a hacking check for line continuation backslashes and fixes the occurences that existed in the code. Change-Id: I13cd03e16698b7f1d8036815d12a665bd1156f2f
* | Add shared zone commands5.2.0Igor Malinovskiy2023-02-132-0/+95
|/ | | | | | | Co-Authored-By: Michael Johnson <johnsomor@gmail.com> Change-Id: Iea92371176d9126205384624a18a9097acb3daef Partial-Bug: #1714088 Depends-On: https://review.opendev.org/#/c/726334/
* Stop to use the __future__ module.Hervé Beraud2021-11-231-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | The __future__ module [1] was used in this context to ensure compatibility between python 2 and python 3. We previously dropped the support of python 2.7 [2] and now we only support python 3 so we don't need to continue to use this module and the imports listed below. Imports commonly used and their related PEPs: - `division` is related to PEP 238 [3] - `print_function` is related to PEP 3105 [4] - `unicode_literals` is related to PEP 3112 [5] - `with_statement` is related to PEP 343 [6] - `absolute_import` is related to PEP 328 [7] [1] https://docs.python.org/3/library/__future__.html [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html [3] https://www.python.org/dev/peps/pep-0238 [4] https://www.python.org/dev/peps/pep-3105 [5] https://www.python.org/dev/peps/pep-3112 [6] https://www.python.org/dev/peps/pep-0343 [7] https://www.python.org/dev/peps/pep-0328 Change-Id: I3dadeaa3242d0b55ba891a8eb4abb199a8d2468b
* Fixed zone transfer accept list commandMike Durnosvystov2020-10-231-0/+5
| | | | | Change-Id: If7ba1fc9dd3f9d67a49ad3b8ae4c0e0f9733195b Closes-Bug: 1901172
* Add tsig key support to python-designateclientRudolf Vriend2017-07-072-0/+109
| | | | | | | | | | This fix adds support for the designate tsig keys api to python-designateclient. It will add tsigkey related crud commands to the openstackclient. Change-Id: I84336c3aca85ca62771fd2115481eda32ee980d2 Closes-Bug: #1702506
* Use tempest instead of Tempest-libghanshyam2016-11-226-6/+6
| | | | | | | | | | | tempest-lib has been deprecated since a year. All the interfaces available in tempest-lib are now available in tempest/lib. This patch make use of tempest/lib instead of tempest-lib. Also add tempest in test-requirements.txt Change-Id: I6cb50b68631391f0368e8a2e6133f94c1da52376
* Fix a race condition in one of the zone import testsPaul Glass2016-04-081-1/+3
| | | | | | | This test would occasionally fail if the import was still PENDING when the check asserted a COMPLETED status. Change-Id: Ia2c320d50dd061980c27b0b7ec0cb6c65c13f6e7
* Merge "Implement zone import"Jenkins2016-04-063-16/+99
|\
| * Implement zone importRahman Syed2016-03-303-16/+99
| | | | | | | | | | | | | | | | | | | | | | Zone import commands (create, list, show, delete) are missing from the python-designateclient. This change includes implementation, as well as unit tests and functionaltests. Change-Id: I635431b5ef11989247e8d185ad692e4fee9bebba Closes-Bug: #1550532
* | Show responses on zone and recordset deletesPaul Glass2016-03-302-9/+6
|/ | | | Change-Id: I1b15c64bac1bc495fe7aecbcf08c28b8ea41b5a7
* Implement zone exportRahman Syed2016-03-232-0/+119
| | | | | | | | | | | Zone export commands (create, list, show, delete, showfile) are missing from the python-designateclient. This change includes implementation, as well as unit tests and functionaltests. Change-Id: I957946d739bceea1074e2fda2ce7f841143b0611 Partial-Bug: #1550532
* Improved TestRecordsetNegativeEric Wehrmeister2016-03-041-3/+4
| | | | | | Added a parent to the class and hardcoded the zone id and name in one of the tests. Change-Id: I8f973e52561d4644821148690430be4c0c1944c0
* Log stacktraces of MultipleExceptions in functionaltestsPaul Glass2016-02-151-0/+18
| | | | Change-Id: I479bdb59d06c561c49ae63d8bcbe2e5c8f67577a
* Merge "Add functional tests for blacklists"Jenkins2015-11-092-0/+118
|\
| * Add functional tests for blacklistsPaul Glass2015-10-212-0/+118
| | | | | | | | Change-Id: If600dd567553459e54ac68e379732d3226fe90b2
* | Merge "Add functional tests for tlds"Jenkins2015-11-095-0/+109
|\ \ | |/
| * Add functional tests for tldsPaul Glass2015-10-215-0/+109
| | | | | | | | | | | | | | | | The tld tests will create/remove tlds which would cause problems when running zone tests in parallel. To solve this, a separate tld is created for each zone. Change-Id: I8957f6f294bc5624ce049e36bef4a948cef3e380
* | Merge "Fixes order of argument in assertEqual"Jenkins2015-11-041-28/+28
|\ \ | |/ |/|
| * Fixes order of argument in assertEqualsonu.kumar2015-10-131-28/+28
| | | | | | | | | | | | | | | | | | | | | | Some tests in designateclient used incorrect argument order in assertEqual(observed, expected). The correct order expected by testtools is assertEqual(expected, observed). Partial-Bug: #1259292 Change-Id: Icc53b2f21e557170a61ceb52cd6f04c31e3b8425
* | Add functional tests for recordsetsPaul Glass2015-10-122-0/+131
|/ | | | Change-Id: I7ed14924ea6d4b612e8f1c0b526211f8ba8471b6
* Flesh out zone-related test casesPaul Glass2015-10-123-13/+286
| | | | Change-Id: I387179b0c8f80e87436be0dc841a47f0b0aed598
* Layout some functional tests for the V2 CLIPaul Glass2015-09-232-0/+47
Change-Id: Ib2d1261bcb0362c586c0aae4b9c5a8a563f07c71