Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

19
votes
6answers
2k 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 ...
18
votes
7answers
1k views

Unit Testing or Functional Testing?

I have recently heard of Functional Testing over Unit Testing. I understand that Unit Testing tests each of the possibilities of a given piece of code from its most atomic form. But what about ...
12
votes
2answers
2k views

Testing devise with shoulda

I'm having some difficulties in testing devise with shoulda: 2) Error: test: handle :index logged as admin should redirect to Daily page. (Admin::DailyClosesControllerTest): NoMethodError: undefined ...
11
votes
4answers
539 views

Mocha Mock Carries To Another Test

I have been following the 15 TDD steps to create a Rails application guide - but have run into an issue I cannot seem to resolve. For the functional test of the WordsController, I have the following ...
10
votes
2answers
234 views

What are the pros & cons of functional testing frameworks for a new grails application?

I've got analysis paralysis looking at all the different functional testing options for a new grails (v1.3.4) application. I've looked at WebDriver/Selenium (which I've used before) WebTest/Canoo ...
10
votes
5answers
202 views

How can I test windows programs in the cloud?

I'm working on a project that makes heavy use of shell extensions. I want to test it in as any versions of windows as possible. Is there a service designed for this? Almost like a VPS host but with OS ...
9
votes
7answers
349 views

How to do concurrent modification testing for grails application

I'd like to run tests that simulate users modifying certain data at the same time for a grails application. Are there any plug-ins / tools / mechanisms I can use to do this efficiently? They don't ...
9
votes
4answers
814 views

How to Automate Testing of Medium Trust Code

I would like to write automated tests that run in medium trust and fail if they require full trust. I am writing a library where some functionality is only available in full trust scenarios and I ...
8
votes
3answers
2k views

Functional testing form with CSRF enabled in Symfony

What is the best way of creating functional tests to test forms with CSRF protection enabled in Symfony? Currently I have to add the following code before each form submittion: $form = new ...
7
votes
3answers
2k views

Functional testing automation tools for iPad/iPhone?

There doesn't seem to be many choices out there for running functional tests on the iPad/iPhone. A quick search brought up a few options: FoneMonkey, Frank, UI Automation. Does anyone have ...
7
votes
2answers
943 views

How can I use Sql CE 4 databases for functional tests

Due to the potential differences between Linq-to-Entities (EF4) and Linq-to-Objects, I need to use an actual database to make sure my query classes retrieve data from EF correctly. Sql CE 4 seems to ...
7
votes
5answers
2k views

What tools do you use to test your public REST API?

Looking for tools use to test REST API. So far I'm only aware of SoapUI (http://www.eviware.com/soapUI/soapui-products-overview.html). I've tried SOAPUI but - at least in a mac - it's terrible. ...
7
votes
4answers
3k views

Best way to take screenshots of tests in Selenium 2?

So I need a way to take screenshots of my functional tests. Right now I'm using Selenium 2 with C# bindings. I pretty much want to take a screenshot at the end of the test to make sure the desired ...
7
votes
2answers
261 views

tools for testing vim plugins

I'm looking for some tools for testing vim scripts. Either vim scripts that do unit/functional testing, or classes for some other library (eg Python's unittest module) that make it convenient to ...
7
votes
6answers
663 views

Why are functional tests not enough? What do unit tests offer?

I just had a conversation with my lead developer who disagreed that unit tests are all that necessary or important. In his view, functional tests with a high enough code coverage should be enough ...
6
votes
6answers
647 views

Running a single test in maven -> No tests were executed!

When I run a single test in Maven with this command: mvn test -Dtest=InitiateTest I'm getting the following result: No tests were executed! It worked a couple of minutes ago, but now it stopped ...
6
votes
2answers
293 views

In Rails 3, I'm getting a NoMethodError for the recycle! method during testing

I've got a functional test that's using fixtures. I also am using fixtures in my Unit tests, but they work without flaw. When running the functional tests, I get a: NoMethodError: undefined method ...
6
votes
8answers
2k views

Difference between acceptance test and functional test?

What is the real difference between acceptance tests and functional tests? What are the highlights or aims of each? Everywhere I read they are ambiguously similar.
6
votes
9answers
502 views

Are you testing against Chrome?

I'm curious to know who is testing against Chrome. I am mainly because it has become my primary browser, so all development is taking place on Chrome, then i test with IE and Firefox.
6
votes
5answers
2k views

In Rails, how do you functional test a Javascript response format?

If your controller action looks like this: respond_to do |format| format.html { raise 'Unsupported' } format.js # index.js.erb end and your functional test looks like this: test "javascript ...
6
votes
4answers
2k views

Selenium vs. SimpleTest vs. WatiN

It seems there is very few comparison between Selenium / WatiN and SimpleTest (which has web testing features too). I tried Selenium and found the GUI great to create tests as you can see what's ...
6
votes
5answers
416 views

Fitnesse- Should tests talk to the database?

We are trying to use Fitnesse for our Functional test. Should i be mocking dependencies or should it be testing against the database? What are the Pros/Cons of either of the approach? The whole ...
6
votes
7answers
576 views

What is the right balance between unit vs. functional testing in a typical web application?

Unit tests are cheaper to write and maintain, but they don't cover all scenarios. What is the right balance between them?
5
votes
1answer
626 views

Skip an RSpec test case at runtime

I'm running RSpec tests against a website product that exists in several different markets. Each market has subtly different combinations of features, etc. I would like to be able to write tests such ...
5
votes
5answers
401 views

Test Driven Development (TDD) for User Interface (UI) with functional tests

As we know, TDD means "write the test first, and then write the code". And when it comes to unit-testing, this is fine, because you are limited within the "unit". However when it comes to UI, writing ...
5
votes
3answers
2k views

Making functional tests in Rails with Devise

After 3 years of procrastination today is the day that I start testing my Rails apps. My first step is to fix the failing tests in my Rails 3 beta4 app. My last 3 failing tests have to do with the ...
5
votes
2answers
559 views

How to test for the appearance of a Toast message

Would anyone know how to test for the appearance of a Toast message on an Activity? I'm using code similar to what the OP posted on this question for testing my program flow from one activity to the ...
5
votes
3answers
734 views

How to automate functional/integration tests and database rollbacks

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 test, ...
5
votes
2answers
2k views

Ruby on Rails functional testing with the RESTful Authentication plugin

I started writing functional tests for my rails app today. I use the RESTful authentication plugin. I ran into a couple confusing things I hope someone can clarify for me. 1) I wrote a quick login ...
4
votes
2answers
150 views

How to test the update method in Rails

I am struggling with testing the update method in Rails. I am using the standard built in testing framework (test::unit) and Rails 3.0.8. I have created a minimum application for testing this now, but ...
4
votes
3answers
229 views

What is the best tool for functional testing of a complex web application

I have a fairly complicated web application that is written using Grails. I am trying to set up a functional testing framework, initially using Selenium, but have run into two problems. Part of the ...
4
votes
1answer
127 views

What is the best way to do automated UI testing on the iPhone? [closed]

What is the best way to do automated UI testing on the iPhone? ___ is to iPhone as Selenium is to web apps
4
votes
2answers
105 views

Integration testing two grails web applications at once?

I've got two grails applications, A and B. A makes explicit REST calls to B, and I'd like an automated way of knowing this works. In the traditional grails integration-test model, only a single ...
4
votes
2answers
279 views

auth-hmac functional testing problem

I want to use this gem in my api application https://github.com/seangeo/auth-hmac/ I have a question about creating tests for request authentification. I want to sign request with hmac but rails ...
4
votes
3answers
240 views

Unit tests and functional tests in CodeIgniter

Is there any testing framework for CodeIgniter?
4
votes
8answers
804 views

Recommendations for automated testing of an IVR system

We are building a complex Integrated Voice Response application, and testing it manually has become rather cumbersome and time consuming. Is there such a thing as an integration test framework for ...
4
votes
3answers
156 views

how can I stop all tests from inside a test or setUp using python's unittest framework

I'm extending the python 2.7 unittest framework to do some function testing. One of the things I would like to do is to stop all the tests from running inside of a test, and inside of a setUpClass ...
4
votes
4answers
273 views

Best way to test CRC logic?

How can I verify two CRC implementations will generate the same checksums? I'm looking for an exhaustive implementation evaluating methodology specific to CRC.
4
votes
7answers
264 views

Screen Resolutions

I am testing an application and need to test it with different screen resolutions with windows form applications. What is the common resolution tested for now days?
4
votes
1answer
646 views

Rails Functional Test using Recaptcha

My UsersControllerTest currently fails because I use verify_recaptcha in UsersController#create. How can I write my tests such that a known good CAPTCHA response is passed with params[:user]? I am ...
4
votes
3answers
1k 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 ...
4
votes
9answers
640 views

How to reduce the time spent on testing?

I just looked back through the project that nearly finished recently and found a very serious problem. I spent most of bank time on testing the code, reproducing the different situations "may" cause ...
4
votes
2answers
172 views

Confusion: leave out functional tests that cover same ground as unit tests?

I'm struggling to figure out what should be excluded from functional tests (in my case, using Rails, but I guess the framework's probably irrelevant). I'm under the impression that I shouldn't bother ...
3
votes
3answers
79 views

How-To Perl recursive regex

I have outputs from a device I need to test and mostly the response is one line, but sometimes it is two lines. Which I handle with a simple regex parsing one or two lines if ($prompt =~ ...
3
votes
1answer
74 views

How to test if correct layout was used in controller in Rails 3

In Rails 2 I would do def assert_layout(layout_name) assert_equal layout_name, @response.layout end and: assert_layout 'layouts/layout_name' This doesn't work in rails 3 anymore ...
3
votes
2answers
99 views

Functional tests philosophy : test features or requirement?

I'm currently writing some functional tests, and I started wondering what's the best philosophy between these two. Situation My application has some secured page, that need the user's group to have ...
3
votes
4answers
72 views

Do you perform test when you code a project alone? [closed]

I wonder if individual programmer would spend time doing unit test, functional test or applying test driven development (TDD) method when they code alone. Or, he just bother about getting it work. ...
3
votes
3answers
205 views

grails embedded server functional testing needs to have valid ssl cert

I have been scouring the web for how to solve my problem with grails functional testing using embedded server + ssl, and would very much appreciate any help with the problem I'm having. We have had ...
3
votes
1answer
105 views

How can I automate antivirus/WSUS patch testing of my Windows driver and binary?

My (rather small) company develops a popular Windows application, but one thing we've always struggled with is testing - it frequently is only tested by the developers on a system similar to the one ...
3
votes
1answer
89 views

Framework for automatically planning execution order of automated regression-tests?

I'm currently working on the implementation of a testsuite for a relatively complex application. The application is Java & Spring based with a web frontend. The Frontend-Tests can be written in ...

1 2 3 4 5 7