test/test_executor.rb in bobes-textmagic-0.3.0 vs test/test_executor.rb in bobes-textmagic-0.3.1
- old
+ new
@@ -8,62 +8,64 @@
setup do
FakeWeb.allow_net_connect = false
@username, @password = random_string, random_string
@command, @options = random_string, random_hash
- @uri = build_uri(@command, @username, @password, @options)
+ @uri = "http://www.textmagic.com/app/api"
end
should 'not send HTTP request without command' do
- TextMagic::API::Executor.expects(:get).never
+ TextMagic::API::Executor.expects(:post).never
lambda {
TextMagic::API::Executor.execute(nil, @username, @password, @options)
}.should raise_error(TextMagic::API::Error)
end
should 'not send HTTP request without username' do
- TextMagic::API::Executor.expects(:get).never
+ TextMagic::API::Executor.expects(:post).never
lambda {
TextMagic::API::Executor.execute(@command, nil, @password, @options)
}.should raise_error(TextMagic::API::Error)
end
should 'not send HTTP request without password' do
- TextMagic::API::Executor.expects(:get).never
+ TextMagic::API::Executor.expects(:post).never
lambda {
TextMagic::API::Executor.execute(@command, @username, nil, @options)
}.should raise_error(TextMagic::API::Error)
end
- should 'send a GET request to proper uri' do
+ should 'send a POST request to proper uri' do
response = random_string
- FakeWeb.register_uri(:get, @uri, :string => response)
+ FakeWeb.register_uri(:post, @uri, :string => response)
TextMagic::API::Executor.execute(@command, @username, @password, @options)
end
should 'not send parameters with empty keys' do
options_with_empty_values = @options.merge(nil => random_string, '' => random_string)
- TextMagic::API::Executor.expects(:get).with('/api', :query => @options, :format => :json)
+ @options.merge!(:username => @username, :password => @password, :cmd => @command)
+ TextMagic::API::Executor.expects(:post).with('/api', :body => @options, :format => :json)
TextMagic::API::Executor.execute(@command, @username, @password, options_with_empty_values)
end
should 'not send parameters with empty values' do
options_with_empty_values = @options.merge(random_string => nil, random_string => '')
- TextMagic::API::Executor.expects(:get).with('/api', :query => @options, :format => :json)
+ @options.merge!(:username => @username, :password => @password, :cmd => @command)
+ TextMagic::API::Executor.expects(:post).with('/api', :body => @options, :format => :json)
TextMagic::API::Executor.execute(@command, @username, @password, options_with_empty_values)
end
should 'raise an error if the response contains error_code' do
response = "{error_code:#{1 + rand(10)}}"
- FakeWeb.register_uri(:get, @uri, :string => response)
+ FakeWeb.register_uri(:post, @uri, :string => response)
lambda {
TextMagic::API::Executor.execute(@command, @username, @password, @options)
}.should raise_error(TextMagic::API::Error)
end
should 'return a hash with values from the response' do
hash = random_hash
- FakeWeb.register_uri(:get, @uri, :string => hash.to_json)
+ FakeWeb.register_uri(:post, @uri, :string => hash.to_json)
response = TextMagic::API::Executor.execute(@command, @username, @password, @options)
response.should == hash
end
end
end