3
votes
2answers
22 views
Functional testing of output files, when output is non-deterministic (or with low control)
A long time ago, I had to test a program generating a postscript file image. One quick way to figure out if the program was producing the correct, expected output was to do an md5 of the result to …
1
vote
1answer
35 views
Does it make sense to test ui components seperately?
I'm working on a webform that has about 15 user controls, separated by context (comments, locations, members/leaders, etc).
If each control can render individually (using real or test data), does it …
0
votes
0answers
11 views
How to fake out a subdomain lookup in Rails tests?
I have the following filter defined:
# application_controller.rb
class ApplicationController < ActionController::Base
before_filter :find_account
private
def find_account
…
2
votes
7answers
122 views
Is it okay to run for loops in functional test methods?
Is it okay (conceptually) to run for loops in test methods?
I'd like to test a range of parameter values into a controller, to determine if the different inputs return the correct values.
test …
0
votes
0answers
38 views
How do I setup a functional test to authenticate openid with authlogic?
I have a functional test that is supposed to call ROTS (Ruby Openid Test Server) to act as an identity.
In my UsersControllerTest, I have the following:
test "creating a user" do
get …
0
votes
3answers
87 views
Automating Integration Tests: Use xUnit?
I'm looking into how best to automate integration tests (by which I mean complete use cases entirely within our application)
The questions
Correct Approach for Unit Testing Complex Interactions
…
0
votes
1answer
34 views
(Rails) Assert_Select’s Annoying Warnings
Does anyone know how to make assert_select not output all those nasty html warnings during a rake test? You know, like this stuff:
.ignoring attempt to close body with div
opened at byte 1036, line 5
…
0
votes
3answers
74 views
Rails Functional Test of Arbitrary or Custom URLs
I have a RESTful resource in my Rails app called "Photo". I'm using Paperclip to serve different "styles" of my photos (for thumbnails and the like), and I'm using a custom route to RESTfully access …
0
votes
1answer
46 views
How to assert action returns correct text?
Is there a standard or best-practices way to test that an action in rails is returning the correct text? For example, I have a simple action that is used for doing ajax validation that does the …
0
votes
1answer
38 views
Assert difference of number of children in relationship in Ruby on Rails
My controller is able to create a child book_loan. I am trying to test this behavior in a functional test but am having a hard time using the assert_difference method. I've tried a number of ways of …
1
vote
2answers
111 views
How to automate functional/integration tests and database rollbacks
Hello!
In contrast to my previous question, i'll try to give my requirements.
I am trying to find some framework/methodology/"thing" that would fit the following:
Ability to write an automated …
0
votes
1answer
235 views
Authlogic edit_password_reset_url in Functional / Integration Tests
I am trying to implement some tests to validate the behavior for Authlogic password resets as explained in http://www.binarylogic.com/2008/11/16/tutorial-reset-passwords-with-authlogic/
I am using …
0
votes
2answers
233 views
DRYer tests with associations in factory_girl
Can anyone suggest a better way to make a factory use a pre-built model
instance for its association? For example, so that it would be possible
below to define a child of the Message factory so that a …
12
votes
6answers
821 views
Integrating Automated Web Testing Into Build Process
I'm looking for suggestions to improve the process of automating functional testing of a website. Here's what I've tried in the past.
I used to have a test project using WATIN. You effectively write …
1
vote
2answers
62 views
How to manage test fixtures for end-to-end testing?
Having just set up a test framework for a new web application, I realized I missed one of the big questions: "How do I make tests independent from each other?"
Years ago I have set up some …
