= Tim
== Running Tests
{}[http://travis-ci.org/aeolus-incubator/tim]
Tests are run from the project root directory. But are run in the
context of the dummy app located under test/dummy. In order to run
the tests you must first setup dummy app database.
rake db:setup; rake -f test/dummy/Rakefile test:prepare
Once you have done this cd to the project root and run the following:
rake spec
== Running the Dummy app
This will allow you to runn the commands below to test out the engine
in isolation (if mounted in another application, the main difference
will just be where the engine gets mounted, so adjust your url
accordingly).
cd test/dummy; rails s
== API Reference
=== Base Images
==== Create Base Image
Request
curl -X POST --header "Accept: application/xml" --header \
"Content-Type: application/xml" http://localhost:3000/tim/base_images --data \
"
MyFirstBaseImage
This is my very first base image
"
Response
Code: 201
Body:
MyFirstBaseImage
This is my very first base image
==== Show Base Image
Request
curl --header "Accept: application/xml" http://localhost:3000/tim/base_images/1
Response
Code: 200
Body:
MyFirstBaseImage
This is my very first base image
==== List Base Images
Request
curl --header "Accept: application/xml" http://localhost:3000/tim/base_images
Response
Code: 200
Body:
==== Delete Base Image
Request
curl -X DELETE--header "Accept: application/xml" http://localhost:3000/tim/base_images/1
Response
Code: 204
Body:
=== Image Versions
==== Create Image Version
Request
curl -X POST --header "Accept: application/xml" --header \
"Content-Type: application/xml" http://localhost:3000/tim/image_versions --data \
"
"
Response
Code: 201
Body:
==== Show Image Version
Request
curl --header "Accept: application/xml" http://localhost:3000/tim/image_versions/1
Response
Code: 200
Body:
==== List Image Versions
Request
curl --header "Accept: application/xml" http://localhost:3000/tim/image_versions
Response
Code: 200
Body:
==== Delete Image Version
Request
curl -X DELETE--header "Accept: application/xml" http://localhost:3000/tim/image_versions/1
Response
Code: 204
Body:
==== Update Image Version
Request
curl -X PUT --header "Accept: application/xml" --header \
"Content-Type: application/xml" http://localhost:3000/tim/image_versions/1 --data \
"
"
Response
Code: 200
body:
==== Create Target Image
Request
curl -X POST --header "Accept: application/xml" --header \
"Content-Type: application/xml" http://localhost:3000/tim/target_images --data \
"
"
Response
Code: 201
Body:
EC2
BUILDING
==== Show Target Image
Request
curl --header "Accept: application/xml" http://localhost:3000/tim/target_images/1
Response
Code: 200
Body:
EC2
COMPLETE
==== List Target Image
Request
curl --header "Accept: application/xml" http://localhost:3000/tim/target_images
Response
Code: 200
Body:
==== Delete Target Image
Request
curl -X DELETE --header "Accept: application/xml" http://localhost:3000/tim/target_images/1
Response
Code: 204
Body:
==== Update Target Image
Request
curl -X PUT --header "Accept: application/xml" --header \
"Content-Type: application/xml" http://localhost:3000/tim/target_images/2 --data \
"
"
Response
Code: 204
==== Create Provider Image
Request
curl -X POST --header "Accept: application/xml" --header \
"Content-Type: application/xml" http://localhost:3000/tim/provider_images --data \
"
"
Response
Code: 201
Body:
Amazon EC2
ami-123456
false
NEW
==== Show Provider Image
Request
curl --header "Accept: application/xml" http://localhost:3000/tim/provider_images/1
Response
Code: 200
Body:
Amazon EC2
ami-123456
false
NEW
==== List Provider Images
Request
curl --header "Accept: application/xml" http://localhost:3000/tim/provider_images
Response
Code: 200
Body:
==== Delete Target Image
Request
curl -X DELETE --header "Accept: application/xml" http://localhost:3000/tim/provider_images/1
Response
Code: 204
Body:
==== Update Target Image
Request
curl -X PUT --header "Accept: application/xml" --header \
"Content-Type: application/xml" http://localhost:3000/tim/provider_images/2 --data \
"
"
Response
Code: 204
Body:
== License
Image Management Engine is released under the MIT license.