File: delete_image.rb

package info (click to toggle)
ruby-fog-openstack 1.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,784 kB
  • sloc: ruby: 47,937; makefile: 5; sh: 4
file content (36 lines) | stat: -rw-r--r-- 991 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module Fog
  module OpenStack
    class Compute
      class Real
        def delete_image(image_id)
          request(
            :expects => 204,
            :method  => 'DELETE',
            :path    => "images/#{image_id}"
          )
        end
      end

      class Mock
        def delete_image(image_id)
          response = Excon::Response.new
          image = list_images_detail.body['images'].find { |im| im['id'] == image_id }
          if image
            if image['status'] == 'SAVING'
              response.status = 409
              raise(Excon::Errors.status_error({:expects => 202}, response))
            else
              data[:last_modified][:images].delete(image_id)
              data[:images].delete(image_id)
              response.status = 202
            end
            response
          else
            response.status = 400
            raise(Excon::Errors.status_error({:expects => 202}, response))
          end
        end
      end
    end
  end
end