Sha256: 0af98802d6cf59af52c435d878fcf004d04a7b3eea527787f56352a3f9b9ae10
Contents?: true
Size: 1.61 KB
Versions: 1
Compression:
Stored size: 1.61 KB
Contents
require File.expand_path("../spec_helper", __FILE__) describe Keen::HTTP::Async do let(:project_id) { "12345" } let(:write_key) { "abcdewrite" } 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, :write_key => write_key) 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", write_key) 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 == "Keen IO Exception: HTTP em-synchrony publish_async error: WebMock timeout error" EM.stop } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
keen-0.7.0 | spec/synchrony/synchrony_spec.rb |