I have a Rails 2.2.2 app which has a bunch of cucumber tests, which until now have just tested the page contents, ie without javascript. Now, though, i want to test some javascript behaviour in a headless browser. For this, i'm trying to use Celerity, with Culerity as well. My app is in a ruby 1.8.6 RVM. It's turned into a bit of a mare, on the first day back after xmas/new year holidays as well, to add to the pain.
Here's what i've done so far:
followed this guide to setting up celerity with jruby https://github.com/langalex/culerity#readme
followed this guide to setting up culerity/celerity with RVM https://rvm.beginrescueend.com/integration/culerity/
I'm now really confused about whether i needed to do the first step. Part of the first step is to do this in the root folder of my rails app:
script/generate culerity
which, among other things, tries to generate a new features/support/env.rb file. I already had one of these, and there are two changes added by the new one:
The first change is the addition of this line in the culerity version:
Culerity.jruby_invocation = File.expand_path("~/.rvm/bin/celerity_jruby")
The other change is a conflict in this line
#old line
ENV["RAILS_ENV"] ||= "cucumber"
#new line
ENV["RAILS_ENV"] ||= "culerity"
Obviously i need to comment one of these out. Whichever i comment out, though, when i do rake culerity:rails:start i get this error:
/home/max/.rvm/gems/<current rvm gemset>/gems/rails-2.2.2/lib/initializer.rb:530:in `send': undefined method `cache_template_loading=' for ActionView::Base:Class (NoMethodError)
It doesn't seem to actually fail though, ie it doesn't fall back to command input but seems to still be running.
If i try to carry on regardless, and run my cucumber feature, then i get an error, which changes depending on which of the conflicting lines above is used.
If i use ENV["RAILS_ENV"] ||= "cucumber", then i get this error:
uninitialized constant Culerity (NameError)
which is caused by the
Culerity.jruby_invocation = File.expand_path("~/.rvm/bin/celerity_jruby")
line i added to env.rb.
If i use ENV["RAILS_ENV"] ||= "culerity", then whenever it gets to a step that refers to $browser (ie that uses one of the steps in culerity_steps.rb), i get this error:
NativeException: org.apache.http.conn.HttpHostConnectException: Connection to http://localhost:3001 refused (Culerity::CulerityException)
...which is presumably due to the server not starting up properly.
I'm kind of hopelessly confused at this point :( You probably are too after my explanation... I guess the first step is to get the culerity server to start successfully.
Grateful for any advice! max