<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-heatclient.git/tests, branch 0.2.1</title>
<subtitle>opendev.org: openstack/python-heatclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/'/>
<entry>
<title>Deprecate commands and add unified cli replacements.</title>
<updated>2012-12-03T23:04:56+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-12-03T22:47:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=03f9f84abfa348bed08ee39d4d0ae1bc8ace5355'/>
<id>03f9f84abfa348bed08ee39d4d0ae1bc8ace5355</id>
<content type='text'>
This is to bring into line with
http://wiki.openstack.org/UnifiedCLI/Mapping

Here is the mapping, as displayed by 'heat help'
    create              DEPRECATED! Use stack-create instead
    delete              DEPRECATED! Use stack-delete instead
    describe            DEPRECATED! Use stack-show instead
    event               DEPRECATED! Use event-show instead
    event-list          List events for a stack
    event-show          Describe the event
    gettemplate         DEPRECATED! Use template-show instead
    list                DEPRECATED! Use stack-list instead
    resource            DEPRECATED! Use resource-show instead
    resource-list       Show list of resources belonging to a stack
    resource-metadata   List resource metadata
    resource-show       Describe the resource
    stack-create        Create the stack
    stack-delete        Delete the stack
    stack-list          List the user's stacks
    stack-show          Describe the stack
    stack-update        Update the stack
    template-show       Get the template for the specified stack
    template-validate   Validate a template with parameters
    update              DEPRECATED! Use stack-update instead
    validate            DEPRECATED! Use template-validate instead
    help                Display help about this program or one of its
                        subcommands.

Change-Id: I1a296de2b935be6cc28fcc49ef8ee7ae333abf1a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is to bring into line with
http://wiki.openstack.org/UnifiedCLI/Mapping

Here is the mapping, as displayed by 'heat help'
    create              DEPRECATED! Use stack-create instead
    delete              DEPRECATED! Use stack-delete instead
    describe            DEPRECATED! Use stack-show instead
    event               DEPRECATED! Use event-show instead
    event-list          List events for a stack
    event-show          Describe the event
    gettemplate         DEPRECATED! Use template-show instead
    list                DEPRECATED! Use stack-list instead
    resource            DEPRECATED! Use resource-show instead
    resource-list       Show list of resources belonging to a stack
    resource-metadata   List resource metadata
    resource-show       Describe the resource
    stack-create        Create the stack
    stack-delete        Delete the stack
    stack-list          List the user's stacks
    stack-show          Describe the stack
    stack-update        Update the stack
    template-show       Get the template for the specified stack
    template-validate   Validate a template with parameters
    update              DEPRECATED! Use stack-update instead
    validate            DEPRECATED! Use template-validate instead
    help                Display help about this program or one of its
                        subcommands.

Change-Id: I1a296de2b935be6cc28fcc49ef8ee7ae333abf1a
</pre>
</div>
</content>
</entry>
<entry>
<title>adding test coverage for common/http, improving the redirect handling</title>
<updated>2012-11-13T23:34:22+00:00</updated>
<author>
<name>Dan Radez</name>
<email>dradez@redhat.com</email>
</author>
<published>2012-11-13T23:24:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=cfb2205a965c610abafe39ced35584be42e22717'/>
<id>cfb2205a965c610abafe39ced35584be42e22717</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support name or id for stack operations.</title>
<updated>2012-11-13T01:19:50+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-11-13T01:07:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=c14e082d785d35a702e96249773e1c5ca74d28fd'/>
<id>c14e082d785d35a702e96249773e1c5ca74d28fd</id>
<content type='text'>
Includes the followig changes:
- move format_parameters to common/utils.py
- Separate columns for ID and Name in list pretty print table
- Accept ID or Name for all operations
- Fix from radaz to correctly respond to redirects

Change-Id: Ie2d7c03f682d43454cb1348188fa56ad001e1bb1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Includes the followig changes:
- move format_parameters to common/utils.py
- Separate columns for ID and Name in list pretty print table
- Accept ID or Name for all operations
- Fix from radaz to correctly respond to redirects

Change-Id: Ie2d7c03f682d43454cb1348188fa56ad001e1bb1
</pre>
</div>
</content>
</entry>
<entry>
<title>Pass username and password as well as token.</title>
<updated>2012-11-07T03:45:22+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-11-07T03:21:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=c1dbaa986dfaed0d0b98e047632dceb98563d2f0'/>
<id>c1dbaa986dfaed0d0b98e047632dceb98563d2f0</id>
<content type='text'>
This matches the behaviour of heat-cfn.
One day Heat will support doing all operations with only a token. Today is not that day.
Also add a --token-only option to suppress sending username/password.

Change-Id: Ib439d770e90d381ffc83babf7fca85c9f1e32e64
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This matches the behaviour of heat-cfn.
One day Heat will support doing all operations with only a token. Today is not that day.
Also add a --token-only option to suppress sending username/password.

Change-Id: Ib439d770e90d381ffc83babf7fca85c9f1e32e64
</pre>
</div>
</content>
</entry>
<entry>
<title>pep8 and more tests</title>
<updated>2012-10-26T17:53:56+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-10-26T17:53:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=0d4f3565a89a042154bb8fdf9a85c7acea036f29'/>
<id>0d4f3565a89a042154bb8fdf9a85c7acea036f29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature parity with REST API</title>
<updated>2012-10-25T03:47:39+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-10-25T03:47:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=7021e3055a97bccff6062d92b539a782d7dc3561'/>
<id>7021e3055a97bccff6062d92b539a782d7dc3561</id>
<content type='text'>
- Give a nice message for 404 for non-existent stack id 
- implement delete, gettemplate, validate 
- run do_list after create, delete
- don't encode the json template as a json string</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Give a nice message for 404 for non-existent stack id 
- implement delete, gettemplate, validate 
- run do_list after create, delete
- don't encode the json template as a json string</pre>
</div>
</content>
</entry>
<entry>
<title>Shell unit tests, remove unused code, display real results from REST API</title>
<updated>2012-10-23T03:52:23+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-10-23T03:52:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=fe8fa481c6787e800ba107e4ba400ebc736a35ec'/>
<id>fe8fa481c6787e800ba107e4ba400ebc736a35ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>resolve test template file path no matter where it is run from</title>
<updated>2012-10-18T20:16:36+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-10-18T20:16:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=a66f891e1ece389ab5dab4abe63f52ce4661f346'/>
<id>a66f891e1ece389ab5dab4abe63f52ce4661f346</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Some slightly more realistic mock responses.</title>
<updated>2012-10-18T03:50:22+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-10-18T03:50:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=675b8a4f71daba780efdaf6c800fb2cbc1b0ec1b'/>
<id>675b8a4f71daba780efdaf6c800fb2cbc1b0ec1b</id>
<content type='text'>
Regexp asserts to check pretty print is printing something</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Regexp asserts to check pretty print is printing something</pre>
</div>
</content>
</entry>
<entry>
<title>Mock at the json request level instead of the http connection level. Test create.</title>
<updated>2012-10-15T20:51:23+00:00</updated>
<author>
<name>Steve Baker</name>
<email>sbaker@redhat.com</email>
</author>
<published>2012-10-15T20:51:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=317757c1646635de29b622f422432c1fc74dc6fb'/>
<id>317757c1646635de29b622f422432c1fc74dc6fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
