So what I'm doing is allowing an admin user to create a mailing campaign via a 3rd party mailing service such as Aweber. My question is: am I writing my tests with VCR the right way. Currently, I have set the VCR configure options in spec_helper.rb such that VCR ignores the 3rd party calls to the external mailing service because otherwise I'd have to put a VCR.use_cassette() method around the before_filter controller method, which seems slightly messy. How should I be approaching this test? Or should I refactor my code into something different?
GenericController.rb
def GenericController
before_filter :make_mail_campaign
def make_mail_campaign
id_str = @aweber_object.campaign_create(params[:stuff_for_mailservice])
end
def create
if mail_campaign.save
redirect_to admin_mail_campaign_path(mailchimp_campaign)
else
flash[:error]="Error red"
render :new
end
end
end
Capybara integration test
before(:each) do
@mcamp = FactoryGirl.create(:campaign_object)
@aweber_object = Aweber.new(find_api_key)
list_name = "SomeList"
VCR.use_cassette('mail_campaign', :record=>:new_episodes) do
@mcamp_list = @aweber_object.lists(some_params)
end
end
it user should be able to create a brand new campaign", :js do
admin_user = login_helper_method
visit new_admin_mail_campaign_path
fill_in "Stuff", with: @mcamp.stuff
click_button "Create this campaign"
page.should have_content(@mcamp.subject)
end
spec_helper.rb
VCR.configure do |c|
c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
c.hook_into :fakeweb
c.ignore_request do |request|
uri = URI(request.uri)
uri.host == 'localhost' || uri.host == '127.0.0.1' || uri.query=='method=campaignCreate' #mailchimp create call
end
end