Sha256: 18b2d4ee6f6a2461fc3dc06c1295725d8a3bed45fa750e355a08a91885724e79
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
require File.expand_path("../spec_helper", __FILE__) describe Keen::HTTP::Async do let(:project_id) { "12345" } let(:collection) { "users" } let(:event_properties) { { "name" => "Bob" } } let(:api_success) { { "created" => true } } describe "synchrony" do before do @client = Keen::Client.new(:project_id => project_id) end describe "success" do it "should post the event data" do stub_keen_post(api_event_resource_url(collection), 201, api_success) EM.synchrony { @client.publish_async(collection, event_properties) expect_keen_post(api_event_resource_url(collection), event_properties, "async") EM.stop } end it "should recieve the right response 'synchronously'" do stub_keen_post(api_event_resource_url(collection), 201, api_success) EM.synchrony { @client.publish_async(collection, event_properties).should == api_success EM.stop } end end describe "failure" do it "should raise an exception" do stub_request(:post, api_event_resource_url(collection)).to_timeout e = nil EM.synchrony { begin @client.publish_async(collection, event_properties).should == api_success rescue Exception => exception e = exception end e.class.should == Keen::HttpError e.message.should == "Couldn't connect to Keen IO: WebMock timeout error" EM.stop } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
keen-0.6.0 | spec/synchrony/synchrony_spec.rb |