class Fog::Orchestration::OpenStack::Mock

Attributes

auth_token[R]
auth_token_expiration[R]
current_tenant[R]
current_user[R]

Public Class Methods

data() click to toggle source
# File lib/fog/openstack/orchestration.rb, line 76
def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {
      :stacks => {}
    }
  end
end
new(options={}) click to toggle source
# File lib/fog/openstack/orchestration.rb, line 88
def initialize(options={})
  @openstack_username = options[:openstack_username]
  @openstack_auth_uri = URI.parse(options[:openstack_auth_url])

  @current_tenant = options[:openstack_tenant]

  @auth_token = Fog::Mock.random_base64(64)
  @auth_token_expiration = (Time.now.utc + 86400).iso8601

  management_url = URI.parse(options[:openstack_auth_url])
  management_url.port = 8774
  management_url.path = '/v1'
  @openstack_management_url = management_url.to_s

  identity_public_endpoint = URI.parse(options[:openstack_auth_url])
  identity_public_endpoint.port = 5000
  @openstack_identity_public_endpoint = identity_public_endpoint.to_s
end
reset() click to toggle source
# File lib/fog/openstack/orchestration.rb, line 84
def self.reset
  @data = nil
end

Public Instance Methods

create_stack(arg1, arg2 = nil) click to toggle source
# File lib/fog/openstack/requests/orchestration/create_stack.rb, line 41
def create_stack(arg1, arg2 = nil)
  if arg1.is_a?(Hash)
    # Normal use: create_stack(options)
    options = arg1
  else
    # Deprecated: create_stack(stack_name, options = {})
    Fog::Logger.deprecation("#create_stack(stack_name, options) is deprecated, use #create_stack(options) instead [light_black](#{caller.first})[/]")
    options = {
      :stack_name => arg1
    }.merge(arg2.nil? ? {} : arg2)
  end

  stack_id = Fog::Mock.random_hex(32)
  stack = self.data[:stacks][stack_id] = {
    'id' => stack_id,
    'stack_name' => options[:stack_name],
    'links' => [],
    'description' => options[:description],
    'stack_status' => 'CREATE_COMPLETE',
    'stack_status_reason' => 'Stack successfully created',
    'creation_time' => Time.now,
    'updated_time' => Time.now
  }

  response = Excon::Response.new
  response.status = 201
  response.body = {
    'id' => stack_id,
    'links'=>[{"href"=>"http://localhost:8004/v1/fake_tenant_id/stacks/#{options[:stack_name]}/#{stack_id}", "rel"=>"self"}]}
  response
end
credentials() click to toggle source
# File lib/fog/openstack/orchestration.rb, line 115
def credentials
  { :provider                 => 'openstack',
    :openstack_auth_url       => @openstack_auth_uri.to_s,
    :openstack_auth_token     => @auth_token,
    :openstack_management_url => @openstack_management_url,
    :openstack_identity_endpoint => @openstack_identity_public_endpoint }
end
data() click to toggle source
# File lib/fog/openstack/orchestration.rb, line 107
def data
  self.class.data["#{@openstack_username}-#{@current_tenant}"]
end
delete_stack(arg1, arg2 = nil) click to toggle source
# File lib/fog/openstack/requests/orchestration/delete_stack.rb, line 35
def delete_stack(arg1, arg2 = nil)
  if arg1.is_a?(Stack)
    # Normal use: delete_stack(stack)
    stack = arg1
    stack_name = stack.stack_name
    stack_id = stack.id
  else
    # Deprecated: delete_stack(stack_name, stack_id)
    Fog::Logger.deprecation("#delete_stack(stack_name, stack_id) is deprecated, use #delete_stack(stack) instead [light_black](#{caller.first})[/]")
    stack_name = arg1
    stack_id = arg2
  end

  self.data[:stacks].delete(stack_id)

  response = Excon::Response.new
  response.status = 204
  response.body = {}
  response
end
get_stack_template(stack) click to toggle source
# File lib/fog/openstack/requests/orchestration/get_stack_template.rb, line 15
def get_stack_template(stack)
end
list_resource_types() click to toggle source
# File lib/fog/openstack/requests/orchestration/list_resource_types.rb, line 15
def list_resource_types
  resources = self.data[:resource_types].values

  Excon::Response.new(
    :body   => { 'resource_types' => resources },
    :status => 200
  )
end
list_resources(stack) click to toggle source
# File lib/fog/openstack/requests/orchestration/list_resources.rb, line 12
def list_resources(stack)
  resources = self.data[:resources].values

  Excon::Response.new(
    :body   => { 'resources' => resources },
    :status => 200
  )
end
list_stack_data() click to toggle source
# File lib/fog/openstack/requests/orchestration/list_stack_data.rb, line 16
def list_stack_data
  stacks = self.data[:stacks].values

  Excon::Response.new(
    :body   => { 'stacks' => stacks },
    :status => 200
  )
end
list_stack_events() click to toggle source
# File lib/fog/openstack/requests/orchestration/list_resource_events.rb, line 12
def list_stack_events
  events = self.data[:events].values

  Excon::Response.new(
    :body => { 'events' => events },
    :status => 200
  )
end
reset_data() click to toggle source
# File lib/fog/openstack/orchestration.rb, line 111
def reset_data
  self.class.data.delete("#{@openstack_username}-#{@current_tenant}")
end
show_event_details(stack, event) click to toggle source
# File lib/fog/openstack/requests/orchestration/show_event_details.rb, line 15
def show_event_details(stack, event)
  events = self.data[:events].values

  Excon::Response.new(
    :body   => { 'events' => events },
    :status => 200
  )
end
show_resource_data(stack_name, stack_id, resource_name) click to toggle source
# File lib/fog/openstack/requests/orchestration/show_resource_data.rb, line 15
def show_resource_data(stack_name, stack_id, resource_name)
  resources = self.data[:resources].values

  Excon::Response.new(
    :body   => { 'resources' => resources },
    :status => 200
  )
end
show_resource_metadata(stack, resource_name) click to toggle source
# File lib/fog/openstack/requests/orchestration/show_resource_metadata.rb, line 15
def show_resource_metadata(stack, resource_name)
  resources = self.data[:resources].values

  Excon::Response.new(
    :body   => { 'resources' => resources },
    :status => 200
  )
end
show_resource_template(name) click to toggle source
# File lib/fog/openstack/requests/orchestration/show_resource_template.rb, line 15
def show_resource_template(name)
end
show_stack_details(name, id) click to toggle source
# File lib/fog/openstack/requests/orchestration/show_stack_details.rb, line 15
def show_stack_details(name, id)
  stack = self.data[:stack].values

  Excon::Response.new(
    :body   => { 'stack' => stack },
    :status => 200
  )
end
update_stack(arg1, arg2 = nil, arg3 = nil) click to toggle source
# File lib/fog/openstack/requests/orchestration/update_stack.rb, line 41
def update_stack(arg1, arg2 = nil, arg3 = nil)
  if arg1.is_a?(Stack)
    # Normal use, update_stack(stack, options = {})
    stack = arg1
    stack_name = stack.stack_name
    stack_id = stack.id
    params = arg2.nil? ? {} : arg2
  else
    # Deprecated, update_stack(stack_id, stack_name, options = {})
    Fog::Logger.deprecation("#update_stack(stack_id, stack_name, options) is deprecated, use #update_stack(stack, options) instead [light_black](#{caller.first})[/]")
    stack_id = arg1
    stack_name = arg2
    params = {
      :stack_name => stack_name
    }.merge(arg3.nil? ? {} : arg3)
  end

  response = Excon::Response.new
  response.status = 202
  response.body = {}
  response
end