lp:~jaypipes/glance/bug704854

Created by Jay Pipes and last modified
Get this branch:
bzr branch lp:~jaypipes/glance/bug704854
Only Jay Pipes can upload to this branch. If you are Jay Pipes please log in for upload directions.

Branch merges

Related bugs

Related blueprints

Branch information

Owner:
Jay Pipes
Project:
Glance
Status:
Merged

Recent revisions

82. By Jay Pipes

Add debugging output to assert in test_misc. Trying to debug what Hudson fails on...

81. By Jay Pipes

Fixups from Rick's review

80. By Jay Pipes

Removes now-unnecessary @validates decorator on model.

79. By Jay Pipes

I should probably rebase this commit considering all the previous
commits weren't actually addressing the issue. The fact that I
had glance-api and glance-registry installed on my local machine
was causing the test runs to improperly return a passing result.

It just so happens that the glance-api and glance-registry that
I had installed to my /usr/local/bin were the very same programs
that were from a previous branch I had locally where I fixed the
root cause of this issue, which was that the sqlalchemy @validates
decorator does NOT fire for *new* objects, only existing ones, which
resulted in image_create() improperly storing NULL data in type, name,
and other non-nullable fields in the database. This then set off
a domino effect which caused the next call from
glance.server._upload_and_activate() to die a horrible death due to
the @validates decorator then firing on the already-created Image
object. This horrible death was improperly being raised from the
glance.client as a BadRequest instead of exception.Invalid, which
caused the API server to ignore the text in the actual Invalid
exception coming from the registry server.

In short, this patch finally fixes the root of the problem by
placing a validate_image() function guard which throws exception.Invalid
for any invalid data coming into the _image_update() method in the db
API. It also adds a bunch of logging statements and ensures that
exceptions throughout the call stack between the API server to the
glance.registry.Client to the Registry server are properly handled and
that the text of those exceptions isn't thrown away willy-nilly.

78. By Jay Pipes

Use Nova's path trick in all bins...

77. By Jay Pipes

Add path to glance-control

76. By Jay Pipes

Merge trunk

75. By Jay Pipes

Add %default for image type in glance-upload

74. By Jay Pipes

Cleanups from Soren's review

73. By Jay Pipes

This adds a test case for LP Bug 704854 -- Exception
raised by Registry server gets eaten by API server.

The test involves spinning up an API server and a registry
server, firing cURL and glance-upload against the API
server with invalid requests, and verifying that appropriate
exception messages are contained in the response.

I cannot reproduce 704854 now. Not sure what changed in
the code that actually fixed this, but the test case verifies
that the behaviour described in the bug does not occur any more.

Branch metadata

Branch format:
Branch format 7
Repository format:
Bazaar repository format 2a (needs bzr 1.16 or later)
Stacked on:
lp:~glance-coresec/glance/cactus-trunk
This branch contains Public information 
Everyone can see this information.

Subscribers