active questions tagged integration-testing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T02:45:01Zhttp://stackoverflow.com/feeds/tag/integration-testinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1847914/cucumber-cleanup-1Cucumber Cleanupcorywilkerson2009-12-04T16:02:33Z2009-12-04T19:22:35Z
<p>SO Folk,</p>
<p>Anyone around these parts know if you can keep Cucumber from cleansing test data at the end of a run? I've a few tests that continue to fail and I'd like to have a look at the data backing those tests...</p>
<p>Any ideas?</p>
<p>Thanks!
Cory Wilkerson</p>
http://stackoverflow.com/questions/516915/how-to-automate-integration-testing3How to automate integration testing ?Nicolas Dorier2009-02-05T17:21:56Z2009-12-04T04:44:39Z
<p>Hi,</p>
<p>I'd like to know something, I know that to make your test easier you should use mock during unit testing to only test the composant you want, without external depedencies.</p>
<p>But at some time you have to bite the bullet, and test classes wich interact with your database/file/network...</p>
<p>So my question is : What do you do to test these classes ?
I don't feel that installing a database on my CI server is a good practice, but have you other options ?</p>
<p>Should I create another server with another CI tools, with all externals depedencies ?</p>
<p>Should I run integration test on my CI as often as my unit tests ?</p>
<p>Maybe a full time person should be in charge to test these components manually ? (or in charge to create the test environment and configure the interaction between your class and your external depedency (like editing config files of your application))</p>
<p>I'd like to know how do you do in the real world ?</p>
http://stackoverflow.com/questions/284774/can-we-use-junit-for-automated-integration-testing7Can we use JUNIT for Automated Integration Testing?Eduardo Santa2008-11-12T18:03:33Z2009-12-04T04:39:33Z
<p>How do you automate <a href="http://en.wikipedia.org/wiki/Integration_testing" rel="nofollow">integration testing</a>? I use JUnit for some of these tests. This is one of the solutions or is totally wrong? What do you suggest?</p>
http://stackoverflow.com/questions/1838703/how-to-set-the-browser-locale-for-selenium-tests-running-in-java1How to set the browser locale for Selenium tests running in Java?Epaga2009-12-03T09:20:41Z2009-12-03T09:40:23Z
<p>I've been <a href="http://release.seleniumhq.org/selenium-remote-control/0.9.2/doc/java/" rel="nofollow">looking</a> <a href="http://www.google.com/codesearch?q=selenium.%2Alocale+lang%3Ajava&hl=en" rel="nofollow">for</a> a <a href="http://www.google.de/search?hl=de&rlz=1C1%5F%5F%5F%5F%5FenDE353DE353&q=selenium+locale+java&btnG=Suche&meta=&aq=f&oq=" rel="nofollow">while</a> and still haven't found anything. When I run my Selenium tests from within Eclipse, it opens up a Firefox browser which always has English as its default locale. Changing default browser settings doesn't change the fact that each new browser opened by Selenium has an English locale.</p>
<p>I haven't found any way in the API to set something other than English as my locale. I've tried setting the locale as a VM parameter for the Selenium server, I've tried setting it for my tests.</p>
<p>There's got to be some obvious way of doing this that I'm missing that will result in easy rep for you. :) Any thoughts?</p>
http://stackoverflow.com/questions/1788436/why-using-integration-tests-instead-of-unit-tests-is-a-bad-idea1Why using Integration tests instead of unit tests is a bad idea?andrey-tsykunov2009-11-24T07:26:25Z2009-12-03T05:10:16Z
<p>Let me start from definition:</p>
<p><strong>Unit Test</strong> is a software verification and validation method in which a programmer tests if individual units of source code are fit for use</p>
<p><strong>Integration testing</strong> is the activity of software testing in which individual software modules are combined and tested as a group.</p>
<p>Although they serve different purposes very often these terms are mixed up. Developers refer to automated integration tests as unit tests. Also some argue which one is better which seems to me as a wrong question at all.</p>
<p>I would like to ask development community to share their opinions on <em>why automated integration tests cannot replace classic unit tests</em>.</p>
<p>Here are my own observations:</p>
<ol>
<li>Integration tests can not be used with TDD approach</li>
<li>Integration tests are slow and can not be executed very often</li>
<li>In most cases integration tests do not indicate the source of the problem</li>
<li>it's more difficult to create test environment with integration tests</li>
<li>it's more difficult to ensure high coverage (e.g. simulating special cases, unexpected failures etc)</li>
<li>Integration tests can not be used with <a href="http://benpryor.com/blog/2007/01/16/state-based-vs-interaction-based-unit-testing/" rel="nofollow">Iteration based testing</a></li>
<li><a href="http://stackoverflow.com/questions/1788436/why-using-integration-tests-instead-of-unit-tests-is-a-bad-idea/1788461#1788461">Integration tests move moment of discovering defect further</a> (from <a href="http://stackoverflow.com/users/14860/paxdiablo">paxdiablo</a>)</li>
</ol>
<p>EDIT: Just to clarify once again: the question is not about whether to use integration or unit testing and not about which one is more useful. Basically I want to collect arguments to the development teams which write ONLY integration tests and consider them as unit tests.
Any test which involve components from different layers is considered as integration test. This is to compare to unit test where isolation is the main goal.</p>
<p>Thank you,
Andrey</p>
http://stackoverflow.com/questions/1833339/how-should-i-be-configuring-spring-and-hibernate-so-that-my-integration-tests-rep0 How should I be configuring spring and hibernate so that my Integration Tests replicate properly the behaviour of the Web application ?Tom Carter2009-12-02T14:45:16Z2009-12-02T14:45:16Z
<p>We have a web application based on NSpring 1.2 and NHibernate 2 and use HibernateTemplate. The web application is configured to use <strong>OpenSessionInViewModule</strong>.</p>
<p>In our integration tests however the hibernate session is marked as <strong>InitDeferredClose</strong> and for the most part this works fine for our tests. There are some service functions that work fine in the context of the web application but fail when called from a test harness.</p>
<p>For example : I have one function that creates and updates a number of objects within a transaction. The function is marked with the Transaction attribute but the test fails with the message : </p>
<pre><code>Illegal attempt to associate a collection with two open sessions
</code></pre>
<p>When called from the web application the transaction completes successfully</p>
<p>How should I be configuring spring and hibernate so that my Integration Tests replicate properly the functionnality of the Web application ?</p>
http://stackoverflow.com/questions/1819572/testing-framework-for-data-access-tier0Testing framework for data access tierThomman Yacob2009-11-30T12:36:54Z2009-11-30T13:09:51Z
<p>Is there any testing framework for Data access tier? I'm using mysql DB.</p>
http://stackoverflow.com/questions/1759626/how-do-you-test-an-android-application-across-multiple-activities3How do you test an Android application across multiple Activities?SingleShot2009-11-18T22:30:23Z2009-11-30T12:28:06Z
<p>We are building a complex Android application consisting of many screens and workflows spread across many Activities. Our workflows are similar to what you might see on a Bank's ATM machine, for example, there is an <code>Activity</code> to login in that transitions to a main menu <code>Activity</code> which can transition to other activities based on the user's choices.</p>
<p>Since we have so many workflows we need to create automated tests that span multiple activities so we can test a workflow from end to end. For example, using the ATM example, we would want to enter a valid PIN, verify that sends us to the main menu, choose withdraw cash, verify that we are on the withdraw cash screen, etc., etc., and eventually find ourselves back on the main menu or "logged" out.</p>
<p>We've toyed with the test APIs that come with Android (e.g. <code>ActivityInstrumentationTestCase2</code>) and also with <a href="http://code.google.com/p/autoandroid/" rel="nofollow">Positron</a>, but neither seem capable of testing beyond the bounds of a single <code>Activity</code>, and while we can find some utility in these tools for some unit testing, they won't meet our needs for testing scenarios that cut across multiple Activities.</p>
<p>We are open to an xUnit framework, scripting, GUI recorders/playbacks, etc. and would appreciate any advice.</p>
http://stackoverflow.com/questions/1806351/testing-rails-routes-cant-find-actioncontrollerassertionsroutingassertions0Testing rails routes: can't find ActionController::Assertions::RoutingAssertions methodsnilbus2009-11-27T01:09:50Z2009-11-28T19:22:42Z
<p>I'm trying to test the routes on my rails 2.3.4 application. There are several sites that explain how to test routes, including the rails docs, but I'm getting errors following the instructions.</p>
<p>First, I'm assuming that these tests can be done in related unit test files. There seems to be no more obvious place, and none of the docs specify.</p>
<p>That said, this is a condensed version of <code>test/unit/TitlesTest.rb</code></p>
<pre><code>require File.dirname(__FILE__) + '/../test_helper'
class TitleTest < Test::Unit::TestCase
# include ActionController::Assertions::RoutingAssertions
def test_routes
assert_routing "games", { :controller => "titles", :section => "games", :action => "index", :id => nil }
end
end
</code></pre>
<p><code>rake test:units</code> fails with the error: </p>
<pre><code>NoMethodError: undefined method `assert_routing' for #<TitleTest:0x7f387232ec98>
/test/unit/title_test.rb:7:in `test_routes'
</code></pre>
<p>I saw in the Rails API that assert_routing is defined in <code>ActionController::Assertions::RoutingAssertions</code>, so I attempted to include that module, only to have it fail elsewhere.</p>
<p>Note the commented <code>include</code> line in the code example above.</p>
<pre><code>NoMethodError: undefined method `clean_backtrace' for #<TitleTest:0x7fd895fadf00>
/test/unit/title_test.rb:7:in `test_routes'
</code></pre>
<p><code>clean_backtrace</code> is another testing method defined in ActionController::TestCase::Assertions.</p>
<p>I'm not getting any google search results for these errors - no one else seems to be having this problem. The problem also occurs if I recreate the scenario in a freshly generated rails app. I don't think I should be having to include these modules in my test cases. What might be wrong here?</p>
http://stackoverflow.com/questions/1795262/can-some-one-please-provide-the-practical-examples-of-stubs-and-drivers0Can some one please provide the practical examples of stubs and drivers?Aditya2009-11-25T07:38:00Z2009-11-25T07:54:57Z
<p>Hi All,</p>
<p>I need some practical examples of stubs and drivers with respect to top-down and bottom-up approaches to testing. I don't require code here. Just the scenario based examples.</p>
http://stackoverflow.com/questions/1791338/how-do-i-create-reliable-integration-tests-with-an-active-directory-role-provider0How do I create reliable integration tests with an Active Directory role provider?tvanfosson2009-11-24T16:46:29Z2009-11-24T16:52:35Z
<p>I recently refactored some code in an Active Directory role provider to remove support for multiple domains. In the process my integration tests broke in ways that I didn't expect. The tests do not reliably succeed unless I put significant delays between the test set up code and the code that invoked the method being tested. If I run the test using the debugger it always succeeds and I can't see any problems with the code. If I run the test using the automated tools one or more tests fail and fail in ways that are unexpected.</p>
<p>How can I reliabily test role provider code that uses the System.Directory.AccountManagement namespace classes and methods?</p>
<p><strong>Note:</strong> In keeping with the SO paradigm, I'm providing the solution that I found as a separate answer. I'm open to other solutions, however, if you feel that your solution works better than mine. This question is being contributed because I couldn't find any existing questions on SO that addressed my problem.</p>
<p>Some related questions are:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/911142/how-to-unit-test-a-nextpasswordchangedate-function-against-the-active-directory">http://stackoverflow.com/questions/911142/how-to-unit-test-a-nextpasswordchangedate-function-against-the-active-directory</a></li>
<li><a href="http://stackoverflow.com/questions/318541/how-to-setup-a-active-directory-environment-test">http://stackoverflow.com/questions/318541/how-to-setup-a-active-directory-environment-test</a></li>
</ul>
http://stackoverflow.com/questions/1747772/integration-testing-for-a-wep-app3Integration Testing for a Wep Appkhelll2009-11-17T09:59:30Z2009-11-17T15:58:49Z
<p>I want to make a full integration testing for a web application. I want to test many things like AJAX, positioning and presence of certain phrases and HTML elements <strong>using several browsers</strong>. I'm seeking a tool to do such automated testing.</p>
<p>On the other hand; this is my first time with integration testing, is there any specific recommendations when doing such testing? Any tutorial as well?</p>
<p><em>(As a note: My backend code is done using Perl, Python and Django.)</em></p>
<p>Thanks! </p>
http://stackoverflow.com/questions/1740416/unit-testing-codeigniter-with-simpletest-very-few-tests0Unit Testing CodeIgniter with Simpletest - very few testsmives2009-11-16T06:28:02Z2009-11-16T06:28:02Z
<p>Hello all! On our development team, we decided to give Unit Testing a try. We use Simpletest. However, it's been a tough road. After a week, I only have created 1 unit test that tests a certain helper file. That's it. The rest (controllers, models, views, libraries) don't have unit tests yet. And I plan to not test a majority of them. Views, for example, are too trivial to test, so I pass up on testing that. Next, the controllers. I plan my controllers to not do complex stuff, so that it only does passing of information between the models and the views. I'd move those more complex stuff to libraries or helpers.</p>
<p>Now for my questions:</p>
<p>1) Am I doing it wrong? So far, there's nothing more that I can see that can be erroneous so it would need a unit test. Most of the stuff (right now) are just CRUD. <br/>
2) Do we really need to unit test controllers? Since a controller's job is just minor processing of data passed between View and Model, I find very little initiative in unit testing it. <br/>
3) If I use WebTestCase to test for controllers, would that be still considered a Unit Test? Or is it already an integration test? <br/>
4) Suppose you got me to test my controller, how would I test it? As far as I know, CI follows the Front Controller pattern through index.php, so how would I handle (mock?) that?</p>
http://stackoverflow.com/questions/1724708/when-not-to-use-integration-tests1When not to Use Integration TestsDiego Dias2009-11-12T19:23:50Z2009-11-12T19:38:52Z
<p>I am writing an application that uses 3rd party libraries to instantiate and make some operations on virtualmachines.</p>
<p>At first I was writing integration tests to every functionality of the application. But them I found that these tests were not really helping since my environment had to be at a determined state, which turned the tests more and more difficult to write. And I decided to make only the unit and acceptance tests.</p>
<p>So, my question ... is/can there be method or a clue to notice when the integration tests are not to be used?? (or I am wrong and on all cases they should be written) </p>
http://stackoverflow.com/questions/1721200/why-does-my-session-expire-when-using-performancetest-and-not-integrationtest0Why does my session expire when using PerformanceTest and not IntegrationTest?Richard2009-11-12T10:03:58Z2009-11-12T10:03:58Z
<p>OK, I am writing performance tests and am having trouble getting my session to persist like it does in integration tests. As I understand it, PerformanceTest is a child of IntegrationTest and any integration tests should work with performance test. However, when I take a integration test and copy it over to performance, change the ActionController::IntegrationTest to ActionController::PerformanceTest and then run the test, it fails.</p>
<p>I am using Authlogic and have not had a problem with the integration test sessions sticking around. With the performance tests though it looks like the session gets created properly but when I visit the "/reports" page (which is a protected page) it redirects me to the login page like there is no user session at all.</p>
<pre><code>require 'performance_test_help'
class SimpleTest < ActionController::PerformanceTest
setup :activate_authlogic
test "login" do
assert user_session = UserSession.create!(User.find_by_login("admin"))
get "/reports"
assert_response :success
end
end
</code></pre>
<p>What's going on here? I've tried multiple ways to get a user session (create, post, etc.) and nothing seems to work. This is the first time I've written performance tests so I'm probably doing something stupid...</p>
<p>BTW: I am running Ruby 1.8.7, Rails 2.2.2 on Debian Squeeze.</p>
http://stackoverflow.com/questions/1717648/integration-testing-w-acegi-protected-controllers0Integration Testing w/ Acegi Protected ControllersThody2009-11-11T19:55:25Z2009-11-11T19:55:25Z
<p>In a Grails app, how can I mock an authenticated user so that I can write integration tests for controller actions, which are protected by Acegi?</p>
<p>For example, let's say I have a blog application, and the /post/save action is restricted to ROLE_AUTHOR. What might an integration test for this action look like?</p>
http://stackoverflow.com/questions/1621790/integration-tests-failing-in-grails-app-engine1Integration tests failing in Grails & App EngineWraith Monster2009-10-25T19:20:31Z2009-11-10T02:00:20Z
<p>I am using <strong>Grails</strong> with the <strong>App Engine plugin</strong> and <strong>JPA persistence</strong>. When running </p>
<blockquote>
<p>grails test-app</p>
</blockquote>
<p>my unit tests run perfectly, but I receive the error below when the integration tests start. </p>
<p>Is this a known issue with the <strong>app-engine plugin</strong>?</p>
<pre><code>Starting integration tests ...
[copy] Copying 1 file to /home/matthew/.grails/1.1.1/projects/test-gae-jpa
[copy] Copying 1 file to /home/matthew/.grails/1.1.1/projects/test-gae-jpa
Error executing script TestApp: null
java.lang.ExceptionInInitializerError
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at AppEngineGrailsPlugin$_closure1.class$(AppEngineGrailsPlugin.groovy)
at AppEngineGrailsPlugin$_closure1.$get$$class$org$grails$appengine$AppEngineEntityManagerFactory(AppEngineGrailsPlugin.groovy)
at AppEngineGrailsPlugin$_closure1.doCall(AppEngineGrailsPlugin.groovy:70)
at AppEngineGrailsPlugin$_closure1.doCall(AppEngineGrailsPlugin.groovy)
at grails.spring.BeanBuilder.invokeBeanDefiningClosure(BeanBuilder.java:651)
at grails.spring.BeanBuilder.beans(BeanBuilder.java:501)
at grails.spring.BeanBuilder.invokeMethod(BeanBuilder.java:447)
at _GrailsBootstrap_groovy$_run_closure2_closure13.doCall(_GrailsBootstrap_groovy:86)
at _GrailsBootstrap_groovy$_run_closure2_closure13.doCall(_GrailsBootstrap_groovy)
at _GrailsSettings_groovy$_run_closure10.doCall(_GrailsSettings_groovy:274)
at _GrailsSettings_groovy$_run_closure10.call(_GrailsSettings_groovy)
at _GrailsBootstrap_groovy$_run_closure2.doCall(_GrailsBootstrap_groovy:84)
at _GrailsBootstrap_groovy$_run_closure7.doCall(_GrailsBootstrap_groovy:142)
at _GrailsTest_groovy$_run_closure7.doCall(_GrailsTest_groovy:249)
at _GrailsTest_groovy$_run_closure7.doCall(_GrailsTest_groovy)
at _GrailsTest_groovy$_run_closure1_closure19.doCall(_GrailsTest_groovy:110)
at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:96)
at TestApp$_run_closure1.doCall(TestApp.groovy:66)
at gant.Gant$_dispatch_closure4.doCall(Gant.groovy:324)
at gant.Gant$_dispatch_closure6.doCall(Gant.groovy:334)
at gant.Gant$_dispatch_closure6.doCall(Gant.groovy)
at gant.Gant.withBuildListeners(Gant.groovy:344)
at gant.Gant.this$2$withBuildListeners(Gant.groovy)
at gant.Gant$this$2$withBuildListeners.callCurrent(Unknown Source)
at gant.Gant.dispatch(Gant.groovy:334)
at gant.Gant.this$2$dispatch(Gant.groovy)
at gant.Gant.invokeMethod(Gant.groovy)
at gant.Gant.processTargets(Gant.groovy:495)
at gant.Gant.processTargets(Gant.groovy:480)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:90)
Caused by: java.lang.NullPointerException
at org.datanucleus.jpa.EntityManagerFactoryImpl.initialisePMF(EntityManagerFactoryImpl.java:452)
at org.datanucleus.jpa.EntityManagerFactoryImpl.<init>(EntityManagerFactoryImpl.java:355)
at org.datanucleus.store.appengine.jpa.DatastoreEntityManagerFactory.<init>(DatastoreEntityManagerFactory.java:63)
at org.datanucleus.store.appengine.jpa.DatastorePersistenceProvider.createEntityManagerFactory(DatastorePersistenceProvider.java:35)
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:51)
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:33)
at javax.persistence.Persistence$createEntityManagerFactory.call(Unknown Source)
at org.grails.appengine.AppEngineEntityManagerFactory.<clinit>(AppEngineEntityManagerFactory.groovy:13)
... 32 more
Process finished with exit code 1
</code></pre>
http://stackoverflow.com/questions/1676201/automating-integration-tests-use-xunit0Automating Integration Tests: Use xUnit?Eric J.2009-11-04T19:56:19Z2009-11-08T17:21:11Z
<p>I'm looking into how best to automate integration tests (by which I mean complete use cases entirely within our application)</p>
<p>The questions</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1663515/correct-approach-for-unit-testing-complex-interactions">Correct Approach for Unit Testing Complex Interactions</a></li>
<li><a href="http://stackoverflow.com/questions/771011/what-are-the-pros-and-cons-of-automated-unit-tests-vs-automated-integration-tests">What are the pros and cons of automated Unit Tests vs automated Integration tests?</a></li>
</ul>
<p>cover the "why" and "what" aspects very well.</p>
<p>The question <a href="http://stackoverflow.com/questions/87610/automated-integration-testing-a-c-app-with-a-database">Automated integration testing a C++ app with a database</a> implies that xUnit frameworks are a good way to create and execute integration tests. Are xUnit's really well suited to that task? Are there common gotcha's to be aware of? A good approach to follow?</p>
<p>Are there better approaches (short of possibly purchasing the HP / former Mercury tool suite)?</p>
<p>My specific environment for this project is Java / SpringSource / Hibernate but am also interested in suggestions for the .Net platform.</p>
http://stackoverflow.com/questions/1681413/how-to-test-drive-a-networking-application-with-custom-protocol0How to test drive a networking application with custom protocol?Darth2009-11-05T15:49:30Z2009-11-05T15:58:50Z
<p>I'm currently developing two Java networking applications for school projects. One over TCP and the other one over UDP. In both I have to implement simple custom protocol.</p>
<p>Even though I'm trying pretty hard, <strong>I can't find a way how to correctly test this kind of apps, or better develop with test first development</strong>.</p>
<p>If I have a client and I want real test without stubbing everything out, I have to implement server with simulated behaviour, which in case of simple apps like these is almost the <strong>whole project</strong>. I understand, that when something big, than writing few lines of Perl script to test it could really help.</p>
<p>Right now I'm developing server and client simultaneously, so that I can at least test by hand, but this doesn't seem like a clean way to develop. The only thing that is helping is tunneling the connection through logger, so that I can see all the data that goes through (using <strong>TunneliJ plugin for IDEA</strong>).</p>
<p><strong>What is the best way to TDD a networking application with custom protocol? Should I just stub everything and be fine with it?</strong></p>
http://stackoverflow.com/questions/1578742/how-to-determine-which-code-in-a-project-solution-is-the-most-often-used5How to determine which code in a project/solution is the most often used?BenA2009-10-16T15:19:53Z2009-11-05T14:56:18Z
<p>If I have an existing solution containing multiple c# projects, are there any static analysis tools that can help me determine which areas of code are the most often used?</p>
<p>I'd like to use this information in order to determine which areas should have their test coverage ramped up first. </p>
<p>I've looked at some static analysis tools already, but they mostly seem to focus on things like complexity, coding conventions, code duplication etc.</p>
<p>Alternatively, if there aren't any analysis tools available that can do this, do you have any advice about how to determine which code I ought to focus on testing first?</p>
<p>Thanks!</p>
<p><strong>EDIT:</strong> Just to clarify, what I'm looking for isn't code coverage. I'd like a rundown of which parts of my application are most often used, so that I can in turn focus on improving the coverage in those areas. I'm trying to avoid just writing tests for areas that don't yet have any, as they may be edge cases that aren't often executed.</p>
http://stackoverflow.com/questions/1637131/integration-testing-authlogic-beforefilter-requireadminuser-problem0Integration Testing Authlogic before_filter :require_admin_user ProblemCarmen2009-10-28T13:05:32Z2009-11-04T03:41:30Z
<p>I'm not able to access urls in my integration test that require an admin user despite creating an admin user session. My test fails on a 302 error.</p>
<pre><code>class NewsItemsController < ApplicationController
before_filter :require_admin_user, :except => [:show, :index, :feed]
etc...
end
--test/inetgration/admin_stories.rb --
require 'test_helper'
class AdminStoriesTest < ActionController::IntegrationTest
fixtures :all
setup :activate_authlogic
# if user is an admin he can create a new news_item
def test_creating_a_news_item
assert UserSession.create(users(:admin))
get "news_items/new"
assert_response :success
#etc...
end
end
</code></pre>
<p>I've got the following in the test.log:</p>
<pre><code>Unable to load roles_user, underlying cause no such file to load -- roles_user
</code></pre>
<p>My fixtures file is named roles_users.yml as you would expect - so unsure of how to resolve this...</p>
http://stackoverflow.com/questions/1633940/whats-the-point-of-automated-integration-test-here0What's the point of automated integration test here?dferraro2009-10-27T22:04:40Z2009-10-27T22:26:14Z
<p>Hi,</p>
<p>Yes, I did read the 'Related Questions' in the box above after I typed this =). They still didn't help me as much as I'd like, as I understand what the difference between the two are - I'm just not sure if I need it in my specific case.</p>
<p>So I have a fully unit tested (simple & small) application. I have some 'Job' class with a single public Run() method + ctors which takes in an Excel spreadsheet as parameter, extracts the data, checks the database to see if we already have that data, and if not, makes a request to a third party vendor, takes that response, puts it in the database and then completes the job (db update again)</p>
<p>I have IConnection to talk to vendor, IParser to parse excel/vendor files, IDataAccess to do all database access. My Job class is lean & mean and doesnt do much logic, even though in reality it is doing <em>all</em> of the logic, it's really just 'chaining along' data through to the composite objects...</p>
<p>So all the composite objects are unit tested themselves, including the DAL, and even my Run() method on the Job class is unit tested fully using mocks for all possible code paths..</p>
<p>So - do I need to do any type of integration test at this point, other then run the app to see if it works? Is my test(s) of the Run() method with mocks considered my integration test(s)? Or should my integration test use real instances instead of mocks, and then Assert database values at the end, based on known excel spreadsheet input? But that's what all my unit tests are doing already (just in seperate places, and the mocked Run test makes sure those places 'connect')! Following the DRY methodology, I just don't see a need to do an integration test here...</p>
<p>Am I missing something obvious guys? Many thanks again...</p>
http://stackoverflow.com/questions/1554634/linq-to-sql-cannot-create-database-schema-permissions7LINQ to SQL Cannot create database [Schema Permissions]Kirschstein2009-10-12T13:37:01Z2009-10-25T21:44:02Z
<p>For some integration tests I want to use LINQ to SQL to drop/re-create the test database. I've had this working fine before, however in this project the database is split up into several schemas. </p>
<p>When I try to run the <code>ctx.CreateDatabase()</code> command I'm getting this exception:</p>
<blockquote>
<p>The specified schema name "xyz" either
does not exist or you do not have
permission to use it.</p>
</blockquote>
<p>The login I'm using to do this has the role <code>dbcreator</code> - Does it need further permissions? Surely a login with persmissions to create a database should be able to create everything contained in that database also?</p>
<h2>Update:</h2>
<p>Since it looks like there isn't a solution to this problem using LINQtoSQL, does anyone have recommendations of any similiar tools to generate a db that are preferably free? Ideally I don't want to have to muck about hand writing sql build scripts.</p>
http://stackoverflow.com/questions/437897/what-are-unit-testing-and-integration-testing-and-what-other-types-of-testing-sh3What are unit testing and integration testing, and what other types of testing should I know about?Daniel2009-01-13T03:43:31Z2009-10-24T07:25:30Z
<p>I've seen other people mention several types of testing on Stack Overflow.</p>
<p>The ones I can recall are unit testing and integration testing. Especially unit testing is mentioned a lot. What exactly is unit testing? What is integration testing? What other important testing techniques should I be aware of? </p>
<p>Programming is not my profession, but I would like it to be some day;stuff about production etc is welcomed too.</p>
http://stackoverflow.com/questions/1611904/selenium-how-to-test-whether-a-download-of-a-certain-file-was-started2(Selenium) How to test whether a download of a certain file was started?Epaga2009-10-23T07:39:13Z2009-10-23T08:49:24Z
<p>I want to test whether a certain action results in a file download (a) at all, and (b) with the file having a certain name.</p>
<p>Is there any way to use Selenium to do this?</p>
http://stackoverflow.com/questions/1596249/how-to-initiate-automated-testing1How to initiate automated testing?Zak 2009-10-20T17:49:32Z2009-10-20T18:33:34Z
<p>I started as a software engineer at the company I'm currently at. Over time, I was either the only one willing to or capable of taking responsibility for various systems, and so I was "promoted" to being IT Manager. Now, during my time as software engineer, I would create functional tests for the various software modules I would build, and as a result, even today I am able to quickly test various parts of the system that I have worked on. However, there is a large large code base with little to no coverage from the other various developers who have been working here.</p>
<p>Now, as IT Manager, I want to be able to test that all the parts of the system are working, but there is:</p>
<p>A) no budgeted time dedicated to creating code test coverage</p>
<p>and </p>
<p>B) No desire from the "chief software engineer" to start creating testing suites to help me monitor that the software is functioning. </p>
<p>I don't expect the software team to drop everything they are doing and spend 2 weeks creating test suites, but it would be nice if they started expanding the test suite
coverage over time so I can confirm that the various parts of the system are working.</p>
<p>So boiling it down, how do I get the software team to start building test suites?</p>
<p>Other caveats:</p>
<p>A) I'm still asked to do software projects in addition to managing our IT dept (a unix engineer, desktop support guy, and related office and production equipment)</p>
<p>B) My unix admin has a really hard time getting production systems up running the full code base, and we aren't getting good help from the software team. He can't run any kind of diagnostic to see where the web app is failing on the new installs. The VP of the company keeps telling me to go in and do print_r's in the code to see what is happening. This sucks!!!</p>
http://stackoverflow.com/questions/1263199/how-to-run-integration-testing-on-db-through-repositories-with-linq2sql4How to run Integration Testing on DB through repositories with LINQ2SQL?RSolberg2009-08-11T22:00:12Z2009-10-15T23:00:09Z
<p>How do you go about integration testing your database through your domain layer/model (repositories) that uses LINQ 2 SQL in the implementation and leave the DB as you found it? In other words, the ideal world of unit testing the DB, the integration test would leave the DB as it found it.</p>
<p>Are there tools out there that will handle this automagically? What are the best practices for performing integration tests on a DB through repositories?</p>
http://stackoverflow.com/questions/1567941/how-do-i-write-useful-unit-tests-for-a-mostly-service-oriented-app4How do I write useful unit tests for a mostly service-oriented app?levand2009-10-14T17:53:51Z2009-10-14T23:52:45Z
<p>I've used unit tests successfully for a while, but I'm beginning to think they're only useful for classes/methods that actually perform a fair amount of logic - parsers, doing math, complex business logic - all good candidates for testing, no question. I'm really struggling to figure out how to use testing for another class of objects: those which operate mostly via delegation.</p>
<p>Case in point: my current project coordinates a lot of databases and services. Most classes are just collections of service methods, and most methods perform some basic conditional logic, maybe a for-each loop, and then invoke other services.</p>
<p>With objects like this, mocks are really the only viable strategy for testing, so I've dutifully designed mocks for several of them. And I really, really don't like it, for the following reasons:</p>
<ol>
<li>Using mocks to specify expectations for behavior makes things break whenever I change the class implementation, even if it's not the sort of change that ought to make a difference to a unit test. To my mind, unit tests ought to test functionality, not specify "the methods needs to do A, then B, then C, and nothing else, in that order." I like tests because I am free to change things with the confidence that I'll know if something breaks - but mocks just make it a pain in the ass to change anything.</li>
<li>Writing the mocks is often more work than writing the classes themselves, if the intended behavior is simple.</li>
<li>Because I'm using a completely different implementation of all the services and component objects in my test, in the end, all my tests really verify is the most basic skeleton of the behavior: that "if" and "for" statements still work. Boring. I'm not worried about those.</li>
</ol>
<p>The core of my application is really how all the pieces work together, so I'm considering
ditching unit tests altogether (except for places where they're clearly appropriate) and moving to external integration tests instead - harder to set up, coverage of less possible cases, but actually exercise the system as it is mean to be run.</p>
<p>I'm not seeing any cases where using mocks is actually useful.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1564453/is-there-any-value-in-using-abstract-test-classes-ro-run-unit-and-integration-tes1Is there any value in using abstract test classes ro run Unit and Integration testing?Wololo2009-10-14T05:45:39Z2009-10-14T12:06:00Z
<p>I have this abstract test class</p>
<pre><code>[TestFixture]
public abstract class BaseTests
{
private IRepository _repository;
public BaseTests(IRepository repository)
{
_repository = repository;
}
[Test]
public virtual void CanGetResultsFromSearch()
{
var results = _repository.GetResults("test");
Assert.IsTrue(results.Count() > 0);
}
}
</code></pre>
<p>Is there any value in executing the Base Tests as part of Unit Testing and also Integration testings. e.g</p>
<pre><code>[TestFixture]
public class UnitTest : BaseTests
{
private static IRepository _repository = new FakeReposistory();
public UnitTest() : base(_repository)
{
}
}
[TestFixture]
public class IntegrationTest : BaseTests
{
private static IRepository _repository = new SqlReposistory();
public UnitTest() : base(_repository)
{
}
}
</code></pre>
<p>Is there value in repeating the test twice? I am a bit unclear if this particular test is a concern of the integration test? i.e Should integration tests be testing public methods on a class? Or should it be more into testing the functionality of the system? Or Both?!</p>
http://stackoverflow.com/questions/856115/should-one-test-internal-implementation-or-only-test-public-behaviour6Should one test internal implementation, or only test public behaviour?ChrisW2009-05-13T04:52:49Z2009-10-09T00:05:58Z
<p>Given software where ...</p>
<ul>
<li>The system consists of a few subsystems</li>
<li>Each subsystem consists of a few components</li>
<li>Each component is implemented using many classes</li>
</ul>
<p>... I like to write automated tests of each subsystem or component.</p>
<p>I don't write a test for each internal class of a component (except inasmuch as each class contributes to the component's public functionality and is therefore testable/tested from outside via the component's public API).</p>
<p>When I refactor the implementation of a component (which I often do, as part of adding new functionality), I therefore don't need to alter any existing automated tests: because the tests only depend on the component's public API, and the public APIs are typically being expanded rather than altered.</p>
<p>I think this policy contrasts with a document like <a href="http://www.agilealliance.org/system/article/file/995/file.pdf" rel="nofollow">Refactoring Test Code</a>, which says things like ...</p>
<ul>
<li>"... unit testing ..."</li>
<li>"... a test class for every class in the system ..."</li>
<li>"... test code / production code ratio ... is ideally considered to approach a ratio of 1:1 ..."</li>
</ul>
<p>... all of which I suppose I disagree with (or at least don't practice).</p>
<p><strong>My question is, if you disagree with my policy, would you explain why? In what scenarios is this degree of testing insufficient?</strong></p>
<p>In summary:</p>
<ul>
<li>Public interfaces are tested (and retested), and rarely change (they're added to but rarely altered)</li>
<li>Internal APIs are hidden behind the public APIs, and can be changed without rewriting the test cases which test the public APIs</li>
</ul>
<p><hr /></p>
<p>Footnote: some of my 'test cases' are actually implemented as data. For example, test cases for the UI consist of data files which contain various user inputs and the corresponding expected system outputs. Testing the system means having test code which reads each data file, replays the input into the system, and asserts that it gets the corresponding expected output.</p>
<p>Although I rarely need to change test code (because public APIs are usually added to rather than changed), I do find that I sometimes (e.g. twice a week) need to change some existing data files. This can happens when I change the system output for the better (i.e. new functionality improves existing output), which might cause an existing test to 'fail' (because the test code only tries to assert that output hasn't changed). To handle these cases I do the following:</p>
<ul>
<li>Rerun the automated test suite which a special run-time flag, which tells it to not assert the output, but instead to capture the new output into a new directory</li>
<li>Use a visual diff tool to see which output data files (i.e. what test cases) have changed, and to verify that these changes are good and as expected given the new functionality</li>
<li>Update the existing tests by copying new output files from the new directory into the directory from which test cases are run (over-writing the old tests)</li>
</ul>
<p><hr /></p>
<p>Footnote: by "component", I mean something like "one DLL" or "one assembly" ... something that's big enough to be visible on an architecture or a deployment diagram of the system, often implemented using dozens or 100 classes, and with a public API that consists of only about 1 or a handful of interfaces ... something that may be assigned to one team of developers (where a different component is assigned to a different team), and which will therefore according to <a href="http://en.wikipedia.org/wiki/Conway%27s%5FLaw" rel="nofollow">Conway's Law</a> having a relatively stable public API.</p>
<p><hr /></p>
<p>Footnote: The article <em><a href="http://www.rbsc.com/pages/myths.html" rel="nofollow">Object-Oriented Testing: Myth and Reality</a></em> says,</p>
<blockquote>
<p><strong>Myth: Black box testing is sufficient.</strong>
If you do a careful job of test case
design using the class interface or
specification, you can be assured that
the class has been fully exercised.
White-box testing (looking at a
method's implementation to design
tests) violates the very concept of
encapsulation. </p>
<p><strong>Reality: OO structure matters, part
II.</strong> Many studies have shown that
black-box test suites thought to be
excruciatingly thorough by developers
only exercise from one-third to a half
of the statements (let alone paths or
states) in the implementation under
test. There are three reasons for
this. First, the inputs or states
selected typically exercise normal
paths, but don't force all possible
paths/states. Second, black-box
testing alone cannot reveal surprises.
Suppose we've tested all of the
specified behaviors of the system
under test. To be confident there are
no unspecified behaviors we need to
know if any parts of the system have
not been exercised by the black-box
test suite. The only way this
information can be obtained is by code
instrumentation. Third, it is often
difficult to exercise exception and
error-handling without examination of
the source code.</p>
</blockquote>
<p>I should add that I'm doing whitebox functional testing: I see the code (in the implementation) and I write functional tests (which drive the public API) to exercise the various code branches (details of the feature's implementation).</p>