Displaying 20 results from an estimated 20000 matches similar to: "Testing XML over HTTP in a Rails app"
2009 Jun 24
3
ActiveResource:: HttpMock
I''m trying to set up testing on my ActiveResource project. The
HttpMock appears to be what I want, but whenever I use the code in the
"documentation", I get the error
NameError: uninitialized constant ActiveResource::HttpMock
Is there something I need to do to enable HttpMock testing?
Thanks,
Tom
2010 May 15
3
ActiveResource Mock Objects
Some of my tests use ActiveResource HttpMock requests and some of them
do not. Does anyone know if there is a way to disable the HttpMocks
after they have already been loaded? The method
ActiveResource::HttpMock.reset! only removes all the objects, but
ActiveResource still thinks it should look for mock requests rather
than actually making requests. I hope this makes sense!
Thanks,
Tom
--
2010 Aug 29
0
Troll - A Rails plugin for making webservice mocking easier
Hi Folks,
Troll trumps your existing ActiveResource mocking libraries like
inbuilt HttpMock,Fakeweb or Webmock out of water. With Troll,
ActiveResource mocking just works, some of its features:
1. Don''t need to mock calls at Net::HTTP level (which webmock,fakeweb
do). Really, we don''t care what HTTP library ActiveResource uses,
fakeweb and webmock bring additional complexity
2010 Jul 02
3
Ticket #5038 ActiveResource not handling updates correctly
https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/5038-activeresource-not-handling-updates-correctly
I just added this ticket. I''m writing a Sinatra API to be consumed by
Rails and I''ve run into an issue where the ActiveResource
documentation specifies that on update you should return an HTTP 204
status with no body. The problem is that Rack doesn''t
2008 Sep 04
0
ActiveResource testing
Hi, I''m trying to make some good testing on active resources, but I''ve
some trouble with the *post* method.
Basically this is my mock, where I set the POST verb and the expected
URI.
ActiveResource::HttpMock.respond_to do |mock|
mock.post "/locations/buildings.xml?description=new-
description&name=new-name", {}, @variable, 201
end
Now, if I call the post
2009 Apr 10
0
ActiveRecord belongs_to ActiveResource
class Thing < ActiveRecord::Base
belongs_to :other_thing
end
class OtherThing < ActiveResource::Base
self.site = ...
end
The association here works. I can access other_thing from thing with
no problems until, as usual, testing. Specifically functionally test
the things_controller. The things controller is simple scaffold,
however, having the association to an active resource model
2007 Sep 21
1
RESTful route gives a 500 error when Content-Type is set
I have encountered a problem with a RESTful route, I have the simple route;
r.resources :people
With a corresponding controller, when I tried to access it using
ActiveResource I get a server error, I have tracked this down to a
problem where if the header ''Content-Type: application/xml'' is sent it
errors out:
> curl -H ''Accept: */*''
2008 Jan 30
3
Not all mongrel starting (Errno:EEXIST)
I''m playing with the mongrel clustering, and am having a problem getting 2
mongrels to start up reliably.
This should be a pretty simple cluster, with just 2 instances running. My
mongrel config (mongrel_cluster.yml) looks like:
cwd: /deployment/installed/myapp/current
log_file: log/mongrel.log
port: "8000"
environment: production
address: 127.0.0.1
pid_file:
2009 Sep 09
0
ActiveResource - Two simple questions
I''m struggling a bit with implementing ActiveResource on a custom
RESTful API.
Firstly, I can''t seem to disable the transforms it does when it parses
the XML. For example "CamelCase" gets rendered as camel_case, likewise
underscores get converted to dashes. The docs page for ActiveResource
mentions being able to set
ActiveSupport.camelise_xml = false
In an
2011 May 09
1
Failure when posting an XML file to a rails metal app
I''m trying to write some rails metal code to handle a large XML file
post, but I''m receiving a 500 from my server. If I use a POST but
don''t provide a file to upload, everything works and I receive a 200
response, but if I provide a file (the -d flag with curl), I receive a
500. Here''s the curl command I''m using:
curl -siX POST
2013 Mar 03
1
Deploy with Capistrano. Bundle install freezes indefinetly.
I am fighting with this for 5 days... i''m getting crazy!
Here is my deploy.rb:
require "bundler/capistrano"
require "rvm/capistrano" # Load RVM''s capistrano plugin.
set :rvm_ruby_string, :local # Or whatever env you want it to run
in. ''1.9.3''
set :domain, ''www.xxx.com''
set :application,
2009 Mar 05
0
ActiveResource & HTTP proxy
Hi,
Do you know if there is any way to configure HTTP proxy connection in
ActiveResource?
I''m testing the youtube-model plugin
(http://github.com/edgarjs/youtube-model), which uses ActiveResource,
and actually noticed that all requests get stuck in the
ActiveResource::Connection.http method which uses Net::HTTP (and not
Net::HTTP:Proxy).
Thanks for your help
--
Posted via
2007 Jan 05
0
ActiveResource cache using memcache-client
I''ve created this class that overrides methods for
find,delete,destroy,reload, and save in activeresource. The code
populates a local memcache daemon and uses that cache for future find
requests. I''m posting it here to get whatever feedback people have.
I''m most interested in the pro/con of inheritance over a mixin and how
such a module might be tested.
$ cat
2006 Aug 31
0
ActiveResource
I''ve been sitting on an ActiveResource patch for a few weeks, waiting
to get some feedback from David. But, I see other folks like Jeremy
are starting to use it, so I committed my patch:
http://dev.rubyonrails.org/changeset/4890
It gets all the basic operations in working order, and adds support
for prefixes. I wasn''t quite sure how to pull this off. Right now,
I''m
2009 May 28
0
Re: ActiveResource as API test rig? Two jsons?
bump...
On Wed, May 20, 2009 at 3:57 PM, Marc Byrd <dr.marc.byrd-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> Hi,
>
> I''m using ActiveResource as an API test rig for an API we''re developing for
> our PHP app - the goal being to validate that we''re following some
> externally validated conventions for ReSTful API and that we can support at
>
2006 Aug 13
0
ssl breaks rails app
I''m a newbie both with rails and configuring a server so I appreciate
any help available.
I developed my rails app and deployed it successfully on apache using cgi.
Next I successfully configured mod_ssl for apache. I point my browser
to https://myserver and VIOLA , I see the index page in
../myapp/public/index.html .
But when I try to get to one of the controllers, the routing seems
2007 Mar 29
0
using certificates with ActiveResource
I''m trying to hack ActiveResource to use a self-signed certificate when
connecting to my RESTful rails app (seems like a pretty glaring hole
that it doesn''t offer this out of the box... though I guess it is alpha
software).
I started out going through the ActiveResource code looking for
somewhere I could set the cert and key. Didn''t find it, so I took the
approach
2006 Sep 27
0
ActiveResource and query string parameters
I have an app that was built using the new RESTful methods and I''m
trying to access its resources from another app using ActiveResource.
(more about the app itself on my blog -- http://jystewart.net/process )
The app provides details of bus stops in Grand Rapids, Michigan, and
the index method for the stops resource allows users to specify a
point (using its longitude and
2006 Dec 25
0
Why ActiveResource won't make it...
One of ActiveRecord''s greatest strengthes is its fluidity. Change a
col in your db, restart, wham!, new class.
This type of behavior is great for *internal* code. But for published
interfaces, it''s the exact opposite of what you want. Let''s say I have
a calendar web app, and expose a web service - via ActiveResource - for
you to hook in your local GUI app (or command
2006 Dec 01
4
uninitialized constant error in app but not when using console
I''ve got a wierd issue here and maybe someone can assist
i created a module in my apps lib directory which i use for
authenticating against an external source (among other things).
lib/myapp.rb
-----------------
require ''rubygems''
require_gem ''activerecord''
# uses activerecord odbc adapter by openlink
module MyApp
module ExternalSource
class