0
votes
0answers
28 views

Using Rspec to test Sinatra application helpers with settings

I have a Sinatra application with a configure block. I'm using a helpers class defined separately; the methods within the helpers class make use of the settings defined in the configure block of the ...
0
votes
1answer
25 views

Testing expectations on doubles in Sinatra app using spec

I want to verify that a method was called on a service I want to inject into a Sinatra application using rspec but I can't find an example of how this is done. Here is my spec... RSpec.configure do ...
2
votes
1answer
54 views

How to test Mailer on Sinatra post request?

I have Sinatra app which sends email on post request: post '/test_mailer' do Pony.mail( to: 'me@mine.com.au', from: 'me@mine.com.au', subject: 'Howdy!', body: erb(:body) ) end So ...
0
votes
1answer
107 views

RSpec specs not running?

I'm having trouble running some rspec specs on a Sinatra app. I'm just learning Ruby, so unfortunately I don't know enough to fix the problem I'm having with code from a book (Service Oriented Design ...
1
vote
0answers
140 views

Stub multipart requests with webmock/rspec

I have been trying for a while to stub multipart requests using webmock and have not found a satisfying solution. Ideally, I would like to stub the request as follow: stub_request(:post, ...
2
votes
1answer
201 views

How do I test my JSON API with Sinatra + rspec

I have a post method that accepts JSON: post '/channel/create' do content_type :json @data = JSON.parse(env['rack.input'].gets) if @data.nil? or !@data.has_key?('api_key') status 400 ...
0
votes
0answers
32 views

Stack Level Too Deep in multi_json adapter logic

I have a rspec suite that runs perfectly on OS X, but fails on ubuntu for all specs that call a specific method. The error I am seeing is: SystemStackError - stack level too deep: ...
1
vote
1answer
122 views

How do you set up Rack::URLMap to work with RSpec in Sinatra?

I'm relatively new to Sinatra, and I want to figure out a way to integrate RSpec with my Sinatra setup. config.ru require 'sinatra' require 'mongoid' require 'uri' require './lib/twilio_wrapper' ...
0
votes
1answer
96 views

Simple way to test an HTTPS (SSL) request with RSpec

I want Rspec to request the root using https. This is what I currently have: it "requesting root (/) with HTTPS should return 200" do get "https://test.host/" last_response.should be_ok end ...
0
votes
2answers
101 views

RSpec Can Only See Classes in the Root of my Lib Directory

RSpec (2.12.2) is giving me a hard time. If I want to reference a class in one of my specs and that class is not in the root of my /lib directory, it throws an error: no such file to load -- test ...
0
votes
1answer
163 views

Mock file input as file path on Rspec

I have a question on how to use rspec to mock a file input. I have a following code for the class, but not exactly know a why to mock a file input. filepath is /path/to/the/file I did my search on ...
0
votes
0answers
56 views

Vim keybinding to switch between rspec tests and code

In a Sinatra app I am looking for a way to better switch between code and the corresponding tests using Vim. I am familiar with the plugins that exist for doing the equivalent in Rails projects, but ...
0
votes
1answer
52 views

Tests won't work with MongoMapper in Sinatra

I hooked up MongoMapper with Sinatra and everything works fine except for the testing. I have Autotest with Rack Testing and Rspec installed. Whenever I run autotest, it tells me ...
0
votes
2answers
248 views

Stubbing RestClient response in RSpec

I have the following spec... describe "successful POST on /user/create" do it "should redirect to dashboard" do post '/user/create', { :name => "dave", :email => ...
0
votes
1answer
157 views

Test Sinatra upload and download binary file using Rspec

I have the following rspec code to test the upload and download of a binary file. I know I can check for 'content-type' to verify the file is properly uploaded and downloaded. But how do I run MD5 ...
1
vote
0answers
85 views

How do I set request payload in RSpec for Sinatra?

I'm trying to test my controller but my controller accept request payload for the whole json string which I can't seem to figure out how to set it in RSpec. Here's my RSpec code xit "should update ...
1
vote
1answer
142 views

How to set the env['SERVER_NAME'] in rack/test?

In Sinatra tests, env['SERVER_NAME'] defaults to www.example.com. How can I set this to some arbitrary domain? Capybara has .default_host method, but not using Capybara. Or, is it possible to change ...
0
votes
1answer
121 views

Rspec render_template equivalent for Sinatra?

I'm building a Sinatra app currently that will be outputting JSON templates as part of an API. When testing with rails and the rspec-rails gem I was able to call: response.should ...
3
votes
0answers
136 views

What are best practices for writing tests for a Sinatra API? [closed]

Specifically, I would like to know how to separate unit and acceptance tests. Unit test looks like: it 'creates bar' do expect { post '/foo/bar' }.to change{ Bar.count }.by 1 end This is ...
1
vote
1answer
78 views

should_not_receive doesn't fail for Class method

I'm not quite sure why but my Sinatra rspec tests don't fail properly when they should. Here's part of my Rspec: context "invalid params" do before do @params = {} end ...
0
votes
1answer
166 views

How to use WebMock to mock Paperclip call in a Sinatra app?

This code works fine without WebMock. Raising an exception: Paperclip::AdapterRegistry::NoHandlerError: No handler found for #<URI::HTTP:0x007ff3852cefb8 ...
0
votes
2answers
132 views

What is a good way to run background processes in foreground for tests in Ruby?

Working with a Sinatra application, and found 3 ways to run a background process: Thread.new Process.fork Process.spawn Figured out how to get the first two to work, but now the challenge is that ...
0
votes
1answer
105 views

How to test background process in RSpec?

Found this simple way to run a separate process in Sinatra: Run background process in Sinatra get '/start_process' @@pid = Process.spawn('external_command_to_run') end How would you test this in ...
1
vote
1answer
95 views

Ruby: mock a local object to test module methods

Working in Sinatra, a local object request is created and made available to all views and helpers. So, I can make an ApplicationHelper module with helper methods, and if the helper methods are called ...
0
votes
1answer
104 views

How to test a Rails HTTP request to a Sinatra app?

Consider a Rails app that hits a (Sinatra app) API being developed separately from the Rails app. I want to test an API call from within the Rails tests. The API code: post '/foo/create' do ... ...
1
vote
1answer
85 views

How to Silence SQLite3 logger in Sinatra with Active Record?

The guard output window fills up with D, [2012-11-19T18:36:30.391459 #53057] DEBUG -- : (0.1ms) begin transaction D, [2012-11-19T18:36:30.392668 #53057] DEBUG -- : SQL (0.4ms) INSERT INTO ...
1
vote
0answers
99 views

Mongoid performance measuring

I'm building a web app using Mongoid, Sinatra and Rspec for testing. What kind of technique or gem can be used with this stack to measure performance of queries?
3
votes
2answers
156 views

How to refactor RSpec tests for API

I've got a series of RSpec tests for a Sinatra based API, and would like to refactor them to make them a little simpler and reduce repetition. Here's an example a test for a route: describe 'post ...
0
votes
0answers
84 views

Rspec should_receive expectation different behaviour in Sinatra and Rails

So, let's consider we have two models, A1 and A2, and A1 has_many A2, while A2 belongs_to A1. According to the ActiveRecord Spec, if you instantiate from A1, and try to create a resource in the a2 ...
0
votes
3answers
203 views

Are there any RSpec HTML tag matchers extensions for sinatra?

I've been using for Rails apps I've been maintaining the hpricot_matchers and most recently rspec_tag_matchers as matcher implementations to test strings with nested tags inside (like, let's say, HTML ...
1
vote
1answer
124 views

How to write a particular rspec test? Advice needed …

I'm new to rspec and I'm trying understand how to write some particular tests. Background: I'm testing a Sinatra app That app connects to several databases I've defined the usernames/passwords for ...
0
votes
1answer
86 views

Running the same rspec tests on multiple routes with sinatra

My sinatra application has a security method which runs at the start of some routes. I want to run the same set of authentication rspec tests against each of the routes which I need to be secure, but ...
0
votes
2answers
268 views

RSpec test fails on Travis-CI but on local machine pass successfuly

I'm write some specs to cover my HTML helpers describe Sinatra::Helpers::HTML do describe 'tag' do it 'should retun selfclosed tag' do Helpers.tag(:br, {}, true).should == '<br />' ...
0
votes
0answers
180 views

Testing an instance variable in a Sinatra route

I need to test a route like the bellow, in a Sinatra app. post '/xxx' do @yyy.update do |doc| ... ... ... end redirect '/zzz' end My problem is: how can I create ...
1
vote
1answer
221 views

How do you spec a digest auth in Sinatra?

I have a digest auth set up like the example from the sinatrarb website. #config.ru require './main' app = Rack::Auth::Digest::MD5.new(Sinatra::Application) do |username| {'foo' => ...
0
votes
1answer
397 views

RSpec + Sinatra + Capybara (+ webkit) for js textarea testing

I'm trying to test a sinatra (1.3.2) application with fields that are updated using data-bind's through Knockout.js to concatenate on client-side and I need to run some tests on this. However I can't ...
1
vote
1answer
135 views

Testing random output in Sinatra

I've been digging into Ruby lately and am working on throwing something together to put to use what I'm learning. I've got a Sinatra app that outputs a random quote. I'd like to put some RSpec ...
1
vote
2answers
450 views

How to use RSpec to test a Sinatra application within a gem?

I am writing a gem which includes a Sinatra application that a developer can extend. For example: # gem code: require 'sinatra' module Mygem class Application < Sinatra::Base get ...
0
votes
1answer
237 views

Testing Sinatra REST API Methodology

I would like to know best practice on testing a REST API (in this case, using Sinatra and Rspec). The obvious problem is that, if you have a test that checks GET /users for a user list, you would like ...
1
vote
2answers
255 views

Testing ActiveRecord associations with Shoulda in non-Rails app

App: Sinatra + ActiveRecord Trying to test association existence using best practices. I really like the Shoulda syntax: describe Bar do it { should belong_to(:foo) } end However, ...
1
vote
1answer
1k views

Tutorials to Testing using RSPEC on PADRINO framework on RUBY

I am new to Ruby and have been asked to use it in our new project. We have also been asked to use Padrino (Sinatra) as backend/framework. For testing we have been asked to use Rspec. I have been ...
0
votes
2answers
464 views

Testing Datamapper models with RSpec

I'm testing a Sinatra application, which is using DataMapper, with RSpec. The following code: it "should update the item's title" do lambda do post "/hello/edit", :params => { ...
1
vote
2answers
433 views

how do i set a mock db for testing in sinatra?

I have a sinatra app that uses neo4j as a graph db. the app accesses the db through neography as a REST client. I want to mock this client for testing purposes, using rspec. what's the best practice ...
2
votes
3answers
525 views

How to dump sinatra rack test exceptions to console?

While I develop, I would like to see sinatra app exceptions when running tests, cosider example: require 'sinatra/base' class ExceptionWeb < Sinatra::Base enable :raise_errors enable ...
3
votes
1answer
773 views

Separate Sinatra app's test database from development database?

As a learning exercise, I am building a practice app using Sinatra, Datamapper and RSpec. I am using this template, which is basically a boilerplate for all the above. The problem I am having is that ...
1
vote
1answer
777 views

undefined method `have_content' using Cucumber / Capybara / sinatra

I'm trying to validate the start of an initial page for a Sinatra application but am struggling to get the testing framework working. Googling around suggests I add cucumber/rails/rspec or similar, ...
0
votes
1answer
275 views

How to make attr_accessor work only in testing environment?

I'm working with Sinatra and RSpec. I have this in lib/auth.rb class Person attr_accessor :password if ENV['RACK_ENV'] == 'test' .... I want to execute this code when I'm testing with ...
3
votes
1answer
2k views

How to test headers with rspec and rack-test in Sinatra

So I have a Sinatra app that receives an XML via a HTTP POST from another service. I want to test it locally. I have a test XML-file that I send to the endpoint. That goes well. I also set some ...
0
votes
1answer
261 views

ruby-debug not finding variables in rspec (in sinatra)

In my Gemfile I have (as per http://stackoverflow.com/a/8351945/111884) gem 'ruby-debug19', :require => 'ruby-debug' In my spec_helper.rb I have require 'ruby-debug' But when I put in ...
0
votes
1answer
484 views

Ruby “no such file to load” error running spec from rake task

I have written tests using rspec. When I run default rake task by running bundle exec rake spec it gives following error, even though previously it used to work fine. `require': no such file to ...

1 2