Skip to content

Instantly share code, notes, and snippets.

@netzpirat
Created November 18, 2009 19:22
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save netzpirat/238158 to your computer and use it in GitHub Desktop.
Save netzpirat/238158 to your computer and use it in GitHub Desktop.
Cucumber ActiveResource faking
require 'fakeweb'
require 'fake_resource'
ActiveResource::Base.send :include, ActiveResource::FakeResource
Before do
FakeWeb.allow_net_connect = false
end
After do |scenario|
ActiveResource::FakeResource.clean
end
require 'FakeWeb'
module ActiveResource
#
# The FakeResource fakes ActiveResources so that no real resources are transferred. It catches the creation methods
# and stores the resources internally instead of sending to a remote service and responds these resources back on
# request.
#
# Additionally it adds a save! method and can be used in conjunction with Cucumber/Pickle/FactoryGirl to fully
# fake a back end service in the BDD cycle
#
module FakeResource
@@fake_resources = []
def self.clean
FakeWeb.clean_registry
@@fake_resources = []
end
def self.included(base)
base.class_eval do
def save
@@fake_resources << self
update_fake_responses
end
def destroy
@@fake_resources.delete(self)
update_fake_responses
end
def self.delete(id, options = {})
puts "delete"
@@fake_resources.delete_if {|r| r.id == id }
#update_fake_responses
end
def self.exists?(id, options = {})
not @@fake_resources.select {|r| r.id == id}.blank?
end
end
end
def save!
save
end
private
def update_fake_responses
FakeWeb.clean_registry
@@fake_resources.each do |r|
FakeWeb.register_uri(:get, element_uri, :body => r.to_xml)
end
FakeWeb.register_uri(:get, collection_uri, :body => @@fake_resources.to_xml)
end
def element_uri
"#{base_uri}#{element_path}"
end
def collection_uri
"#{base_uri}#{collection_path}"
end
def base_uri
"#{connection.site.scheme}://#{connection.user}:#{connection.password}@#{connection.site.host}:#{connection.site.port}"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment