<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-openstackclient.git/functional/common, branch 2.4.0</title>
<subtitle>opendev.org: openstack/python-openstackclient
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/'/>
<entry>
<title>Use CommandFailed exception from tempest_lib</title>
<updated>2016-04-13T16:09:07+00:00</updated>
<author>
<name>Kyrylo Romanenko</name>
<email>kromanenko@mirantis.com</email>
</author>
<published>2016-04-13T16:09:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=573bb6b941199d32e016257f37c649ea804484a3'/>
<id>573bb6b941199d32e016257f37c649ea804484a3</id>
<content type='text'>
Remove exceptions.py from functional/common.
Import exception with the same code from the tempest_lib to tests.

Change-Id: Ifaa658209c18dd608836079f57ed18fcf10fb84e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove exceptions.py from functional/common.
Import exception with the same code from the tempest_lib to tests.

Change-Id: Ifaa658209c18dd608836079f57ed18fcf10fb84e
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused method cleanup_tmpfile</title>
<updated>2016-04-05T22:40:44+00:00</updated>
<author>
<name>Cedric Brandily</name>
<email>zzelle@gmail.com</email>
</author>
<published>2016-04-05T22:35:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=139a45bb71ca2e99b0c8947c43c8d0165dec165e'/>
<id>139a45bb71ca2e99b0c8947c43c8d0165dec165e</id>
<content type='text'>
This change removes unused cleanup_tmpfile method from functests code.

Change-Id: I5d8e7edb0e50e94a5a469ce393d411b390b4db34
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change removes unused cleanup_tmpfile method from functests code.

Change-Id: I5d8e7edb0e50e94a5a469ce393d411b390b4db34
</pre>
</div>
</content>
</entry>
<entry>
<title>Add quota functional tests</title>
<updated>2016-02-12T18:52:40+00:00</updated>
<author>
<name>Richard Theis</name>
<email>rtheis@us.ibm.com</email>
</author>
<published>2016-02-12T18:48:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=ea0b8f91627f5ef4a89f23e391a5733032bccc0e'/>
<id>ea0b8f91627f5ef4a89f23e391a5733032bccc0e</id>
<content type='text'>
Add functional tests for "os quota" commands.

Change-Id: I0f5939bf4ce553174c9b7ce55bdb3dce0506c409
Related-Bug: #1528249
Partially-Implements: blueprint neutron-client
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add functional tests for "os quota" commands.

Change-Id: I0f5939bf4ce553174c9b7ce55bdb3dce0506c409
Related-Bug: #1528249
Partially-Implements: blueprint neutron-client
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix functional tests for Python 3.4</title>
<updated>2015-10-12T11:53:06+00:00</updated>
<author>
<name>Sirushti Murugesan</name>
<email>sirushti.murugesan@hp.com</email>
</author>
<published>2015-10-12T11:53:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=b12d8502226f56421bbe90747cf1727222c6e6fa'/>
<id>b12d8502226f56421bbe90747cf1727222c6e6fa</id>
<content type='text'>
* shlex.split() expects a string. Not bytes.
* decode the bytestring result of subprocess's communicate()
  to a string.

Change-Id: I209f67a91dc609b1e30cb9e683d3d6ee63d00069
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* shlex.split() expects a string. Not bytes.
* decode the bytestring result of subprocess's communicate()
  to a string.

Change-Id: I209f67a91dc609b1e30cb9e683d3d6ee63d00069
</pre>
</div>
</content>
</entry>
<entry>
<title>add functional tests for identity v3</title>
<updated>2015-07-07T07:57:36+00:00</updated>
<author>
<name>Guojian Shao</name>
<email>guojian@unitedstack.com</email>
</author>
<published>2015-07-04T13:40:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=aa3b3c1f0f39e05c242ddfc840774d2d23f91b46'/>
<id>aa3b3c1f0f39e05c242ddfc840774d2d23f91b46</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>Add image functional tests</title>
<updated>2015-06-02T11:26:25+00:00</updated>
<author>
<name>TerryHowe</name>
<email>terrylhowe@gmail.com</email>
</author>
<published>2015-06-01T20:20:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=746f6421d0490d41b1a3b7b0e014d0a7fe457afd'/>
<id>746f6421d0490d41b1a3b7b0e014d0a7fe457afd</id>
<content type='text'>
Change-Id: I30b219bc3393fcb197bda266125dcfb5c8780a3e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I30b219bc3393fcb197bda266125dcfb5c8780a3e
</pre>
</div>
</content>
</entry>
<entry>
<title>Use format options for functional tests</title>
<updated>2015-05-17T12:33:39+00:00</updated>
<author>
<name>TerryHowe</name>
<email>terrylhowe@gmail.com</email>
</author>
<published>2015-04-29T11:11:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=29f29e44d3ed894ebac5fe26d4410bd31149145a'/>
<id>29f29e44d3ed894ebac5fe26d4410bd31149145a</id>
<content type='text'>
Use the format options for functional tests so we can have more
assertEquals and less assertIn.

Change-Id: I34e6c76b42964f7b596ea35e6b0354a242611cb4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the format options for functional tests so we can have more
assertEquals and less assertIn.

Change-Id: I34e6c76b42964f7b596ea35e6b0354a242611cb4
</pre>
</div>
</content>
</entry>
<entry>
<title>Reduce parameters to base class execute</title>
<updated>2015-04-26T12:37:36+00:00</updated>
<author>
<name>TerryHowe</name>
<email>terrylhowe@gmail.com</email>
</author>
<published>2015-04-25T15:38:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=416d840dc4cb00026bac2512b259ce88a0e4a765'/>
<id>416d840dc4cb00026bac2512b259ce88a0e4a765</id>
<content type='text'>
Simplify the parameters so we are just passing a command string
to the execute command in the base class.  The string is exactly
the command we are going to run.  This will make debugging
easier and make it clearer what we are actually running.

Change-Id: I0425007e1849f31d692420e38544c55b1acb86c4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simplify the parameters so we are just passing a command string
to the execute command in the base class.  The string is exactly
the command we are going to run.  This will make debugging
easier and make it clearer what we are actually running.

Change-Id: I0425007e1849f31d692420e38544c55b1acb86c4
</pre>
</div>
</content>
</entry>
<entry>
<title>Add an API example base and functional test base</title>
<updated>2014-11-15T22:29:08+00:00</updated>
<author>
<name>Steve Martinelli</name>
<email>stevemar@ca.ibm.com</email>
</author>
<published>2014-11-12T21:11:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=126b2c543617866e9e1ea45ef9c5770ce5f5dda9'/>
<id>126b2c543617866e9e1ea45ef9c5770ce5f5dda9</id>
<content type='text'>
Add examples/common.py, which is a basic common setup that mimics OSC's
configuration options and logging without the rest of the CLI.

Also add the functional test tooling for examples to prevent bit rot.

Co-Authored-By: Dean Troyer &lt;dtroyer@gmail.com&gt;
Change-Id: Ie92b675eafd93482ddc9a8ce0b0588e23ed50c35
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add examples/common.py, which is a basic common setup that mimics OSC's
configuration options and logging without the rest of the CLI.

Also add the functional test tooling for examples to prevent bit rot.

Co-Authored-By: Dean Troyer &lt;dtroyer@gmail.com&gt;
Change-Id: Ie92b675eafd93482ddc9a8ce0b0588e23ed50c35
</pre>
</div>
</content>
</entry>
<entry>
<title>Add functional tests to osc</title>
<updated>2014-10-01T23:46:07+00:00</updated>
<author>
<name>Steve Martinelli</name>
<email>stevemar@ca.ibm.com</email>
</author>
<published>2014-09-19T02:42:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=742982af4bb94b73a78c06688732acf1c8127f8a'/>
<id>742982af4bb94b73a78c06688732acf1c8127f8a</id>
<content type='text'>
Create a script that kicks off function tests that exercise
openstackclient commands against a cloud.

If no keystone/openstack process is detected, a devstack instance
is spun up and the tests are run against that.

There is also a hook added to tox.ini so that we can run these
tests easily from a gate job.

Change-Id: I3cc8b2b800de7ca74af506d2c7e8ee481fa985f0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Create a script that kicks off function tests that exercise
openstackclient commands against a cloud.

If no keystone/openstack process is detected, a devstack instance
is spun up and the tests are run against that.

There is also a hook added to tox.ini so that we can run these
tests easily from a gate job.

Change-Id: I3cc8b2b800de7ca74af506d2c7e8ee481fa985f0
</pre>
</div>
</content>
</entry>
</feed>
