active questions tagged mocking - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T19:34:06Zhttp://stackoverflow.com/feeds/tag/mockinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807463/integration-test-for-instantiation-of-a-type-via-di-container1Integration test for instantiation of a type via DI containerBen Aston2009-11-27T08:40:50Z2009-11-28T13:37:32Z
<p>I am running TDD on an ASP.NET MVC web app.</p>
<p>Is it standard practice to create integration tests to demonstrate the correct instantiation of a type via the DI container (in my case Castle Windsor)?</p>
<p>If so, would you mock out the container, or simply use it as is?</p>
<p>Or... is this simply not done for some reason?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1802725/save-object-in-debug-and-than-use-it-as-stub-in-tests1Save object in debug and than use it as stub in tests.Vladimir2009-11-26T10:00:04Z2009-11-27T01:20:56Z
<p>My application connects to db and gets tree of categories from here. In debug regime I can see this big tree object and I just thought of ability to save this object somewhere on disk to use in test stubs. Like this:</p>
<pre><code>mockedDao = mock(MyDao.class);
when(mockedDao.getCategoryTree()).thenReturn(mySavedObject);
</code></pre>
<p>Assuming <code>mySavedObject</code> - is huge enough, so I don't want to generate it manually or write special generation code. I just want to be able to serialize and save it somewhere during debug session then deserialize it and pass to <code>thenReturn</code> in tests.
Is there is a standard way to do so? If not how is better to implement such approach?</p>
http://stackoverflow.com/questions/1803433/how-to-verify-that-method-arguments-property-values-are-set-when-mocking-methods1How to verify that method argument's property values are set when mocking methods with Moq?Valentin Vasilyev2009-11-26T12:34:27Z2009-11-26T13:03:21Z
<p>Not sure if it has been asked before, here is the question.</p>
<p>Code first:</p>
<pre><code> public class Customer {
public string Password { get; set; }
public string PasswordHash { get; set; }
}
public class CustomerService {
private ICustomerRepository _repo;
public CustomerService(ICustomerRepository repo) {
_repo = repo;
}
public int? AddCustomer(Customer customer) {
customer.PasswordHash = SHA1Hasher.ComputeHash(customer.Password);
return _repo.Add(customer);
}
}
public interface ICustomerRepository {
int? Add(Customer c);
}
public class CustomerRepository : ICustomerRepository {
int? AddCustomer(Customer customer) {
// call db and return identity
return 1;
}
}
[TestClass]
public class CustomerServiceTest {
[TestMethod]
public void Add_Should_Compute_Password_Hash_Before_Saving() {
var repoMock = new Mock<ICustomerRepository>();
//how do I make sure the password hash was calculated before passing the customer to repository???
}
}
</code></pre>
<p>How do I verify that CustomerService assigned the PasswordHash before passing the customer to repository?</p>
http://stackoverflow.com/questions/1802580/how-to-find-the-value-that-has-been-passed-to-a-method-on-my-mocked-moq-or-rhino2How to find the value that has been passed to a method on my mocked (Moq or Rhino Mocks) interface?Ian Ringrose2009-11-26T09:29:50Z2009-11-26T11:27:59Z
<p>I am using <strong>Moq</strong> - but could easily swap to another mock framework <strong>if needed</strong>.</p>
<p>I have a interface defined:</p>
<pre><code>public interface IBaseEngineManagerImp
{
void SetClientCallbackSender(IClientCallbackSender clientCallbackSender);
}
</code></pre>
<p>I then mock <em>IBaseEngineManagerImp</em> with</p>
<pre><code>mockEngineManagerImp = new Mock<IEngineManagerImp>();
EngineManager engineManager = new EngineManager(mockEngineManagerImp.Object);
</code></pre>
<p><em>engineManager</em> then calls <em>SetClientCallbackSender</em> passing in a value.</p>
<p>How do I get the value that was passed to <em>SetClientCallbackSender</em> from my unit test?</p>
<p>(I wish to call some methods on <em>clientCallbackSender</em> as part of the test)</p>
http://stackoverflow.com/questions/1718463/what-are-the-real-world-pros-and-cons-of-each-of-the-major-mocking-frameworks7What are the real-world pros and cons of each of the major mocking frameworks?BenAlabaster2009-11-11T22:18:55Z2009-11-26T09:55:05Z
<blockquote>
<p>see also "<a href="http://stackoverflow.com/questions/642620/what-should-i-consider-when-choosing-a-mocking-framework-for-net">What should I consider when
choosing a mocking framework for
.Net</a>"</p>
</blockquote>
<p>I'm trying to decide on a mocking framework to use on a .NET project I've recently embarked on. I'd like to speed my research on the different frameworks. I've recently read this blog post <a href="http://codevanced.net/post/Mocking-frameworks-comparison.aspx" rel="nofollow">http://codevanced.net/post/Mocking-frameworks-comparison.aspx</a> and wondered if any of the StackOverflow audience has anything to add in the way of real-world advantages and caveats to the frameworks.</p>
<p>Could people could list the pros/cons of the mocking frameworks they either currently use or have investigated for their own use on .NET projects. I think this would be not only a help to me to decide for my current project, but it will help others make more informed decisions when picking the correct framework for their situation. I'm not an expert on any of the frameworks but I would like to get arguments for and against the major frameworks I've come across:</p>
<ul>
<li>RhinoMocks</li>
<li>Moq</li>
<li>TypeMock Isolator</li>
<li>NMock</li>
<li>Moles</li>
</ul>
<p>And other usable alternatives that I've missed. I'd also like insights from users that have switched or stopped using products because of issues.</p>
http://stackoverflow.com/questions/642620/what-should-i-consider-when-choosing-a-mocking-framework-for-net10What should I consider when choosing a mocking framework for .NetIan Ringrose2009-03-13T13:11:13Z2009-11-26T09:38:52Z
<p>There are lots of mocking frameworks out there for .Net some of them have been superseded by others that are better in everyway. However that still leaves many mocking frameworks that have different <em>styles</em> of usage.</p>
<p>The time it takes to learn all of them well enough to decide witch to use is unreasonable. I don’t believe that we have yet reached a stage that we can talk about <em>the best</em> mocking framework. So what questions should I by asking about the project and myself to help decide on the best mocking framework to use in a given case?</p>
<p>It would also be useful to know why you choose the mocking framework you are currently using and if you are still happy with that choose.</p>
<p>Is there yet a useful vocabulary to use when comparing the styles of mocking frameworks?</p>
<p>(I have limited this question to .Net as Java does not have attributes or lambda expression, so I hope the mocking frameworks can be better for .Net then Jave)</p>
<p><strong>Summary so far:</strong></p>
<ul>
<li>If you need to mock static method, or
none virtual methods then the only
reasonable option is <a href="http://typemock.com/" rel="nofollow">TypeMock</a>, however it is not free and does not drive you towards a good design.</li>
<li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a> is a very good option if you
are doing TDD, .e.g the objects you
wish to mock implement interfaces. At present it seems to be the "market leader"</li>
<li><a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a> (<a href="http://www.codethinked.com/post/2009/03/13/Beginning-Mocking-With-Moq-3-Part-1.aspx" rel="nofollow">introduction</a>) should be considered if you are
using .NET 3.5 Moq <em>may</em> be againing on Rhino Mocks for new projects</li>
</ul>
<p>What have I missed from this summary?</p>
<p><strong>So what drives the choose between <a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a> and <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a>, if you are using .NET 3.5?</strong></p>
<p><hr></p>
<p>see also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use">What c# mocking framework to use?</a> </li>
<li><a href="http://stackoverflow.com/questions/690769/what-are-the-capabilities-of-moq-and-rhino-mocks">What are the capabilities of Moq and Rhino.mocks?</a></li>
<li><a href="http://stackoverflow.com/questions/1718463/what-are-the-real-world-pros-and-cons-of-each-of-the-major-mocking-frameworks">What are the real-world pros and cons of each of the major mocking frameworks?</a></li>
</ul>
<p>“<a href="http://stackoverflow.com/questions/1267567/what-should-i-consider-when-choosing-a-dependency-injection-framework-for-net">What should I consider when choosing a dependency injection framework for .NET?</a>” may also be of interest as it asks the “other side” of the question.</p>
http://stackoverflow.com/questions/1797749/rhino-mocks-stub-one-method-of-class-and-let-other-real-methods-use-this-stubbe1Rhino.Mocks - Stub one method of class and let other real methods use this stubbed oneButhrakaur2009-11-25T15:35:49Z2009-11-25T19:43:25Z
<p>I have TimeMachine class which provides me current date/time values. The class looks like this:</p>
<pre><code>public class TimeMachine
{
public virtual DateTime GetCurrentDateTime(){ return DateTime.Now; };
public virtual DateTime GetCurrentDate(){ return GetCurrentDateTime().Date; };
public virtual TimeSpan GetCurrentTime(){ return GetCurrentDateTime().TimeOfDay; };
}
</code></pre>
<p>I'd like to use TimeMachine stub in my tests in such way that I'd just stub the GetCurrentDateTime method and let the other 2 methods use the stubbed GetCurrentDateTime method so as I don't have to stub all the three methods. I tried to do write the test like this:</p>
<pre><code> var time = MockRepository.GenerateStub<TimeMachine>();
time.Stub(x => x.GetCurrentDateTime())
.Return(new DateTime(2009, 11, 25, 12, 0, 0));
Assert.AreEqual(new DateTime(2009, 11, 25), time.GetCurrentDate());
</code></pre>
<p>But the test fails. GetCurrentDate returns default(DateTime) instead of using GetCurrentDateTime stub internally.</p>
<p>Is there any approach I could use to achieve such behavior or is it just some basic conceptual feature of RhinoMocks I don't catch at the moment? I know I could just get a rid of those two GetDate/Time methods and inline the .Date/.TimeOfDay usage, but I'd like to understand whether this is possible at all...</p>
http://stackoverflow.com/questions/1794428/how-to-mock-methods-with-lambda-as-parameter1How to mock methods with lambda as parameterryudice2009-11-25T03:24:54Z2009-11-25T03:28:04Z
<p>Hi,
I'm new to mocking, I have a method which takes a lambda as a parameter, how can I mock it using Rhino Mocks? Thanks.</p>
http://stackoverflow.com/questions/1633730/mocking-using-boostsharedptr-and-amop0Mocking using boost::shared_ptr and AMOPEdison Gustavo Muenz2009-10-27T21:13:44Z2009-11-24T09:00:03Z
<p>Hi, I'm trying to write mocks using <a href="http://code.google.com/p/amop/" rel="nofollow">amop</a>. I'm using Visual Studio 2008.</p>
<p>I have this interface class:</p>
<pre><code>struct Interface {
virtual void Activate() = 0;
};
</code></pre>
<p>and this other class which receives pointers to this <code>Interface</code>, like this:</p>
<pre><code>struct UserOfInterface {
void execute(Interface* iface) {
iface->Activate();
}
};
</code></pre>
<p>So I try to write some testing code like this:</p>
<pre><code>amop::TMockObject<Interface> mock;
mock.Method(&Interface::Activate).Count(1);
UserOfInterface user;
user.execute((Interface*)mock);
mock.Verifiy();
</code></pre>
<p>It works! So far so good, but what I really want is a boost::shared_ptr in the execute() method, so I write this:</p>
<pre><code>struct UserOfInterface {
void execute(boost::shared_ptr<Interface> iface) {
iface->Activate();
}
};
</code></pre>
<p>How should the test code be now? I tried some things, like:</p>
<pre><code>amop::TMockObject<Interface> mock;
mock.Method(&Interface::Activate).Count(1);
UserOfInterface user;
boost::shared_ptr<Interface> mockAsPtr((Interface*)mock);
user.execute(mockAsPtr);
mock.Verifiy();
</code></pre>
<p>It compiles, but obviously crashes, since at the end of the scope the variable 'mock' gets double destroyed (because of the stack variable 'mock' and the shared_ptr).</p>
<p>I also tried to create the 'mock' variable on the heap:</p>
<pre><code>amop::TMockObject<Interface>* mock(new amop::TMockObject<Interface>);
mock->Method(&Interface::Activate).Count(1);
UserOfInterface user;
boost::shared_ptr<Interface> mockAsPtr((Interface*)*mock);
user.execute(mockAsPtr);
mock->Verifiy();
</code></pre>
<p>But it doesn't work, somehow it enters an infinite loop, before I had a problem with boost not finding the destructor for the mocked object when the shared_ptr tried to delete the object.</p>
<p>Has anyone used <a href="http://code.google.com/p/amop/" rel="nofollow">amop</a> with boost::shared_ptr successfully?</p>
http://stackoverflow.com/questions/1787107/how-to-verify-a-certain-javascript-function-has-been-called-during-unit-testing4How to verify a certain javascript function has been called during unit testingBeraCim2009-11-24T00:46:26Z2009-11-24T04:04:46Z
<p>Hi all:</p>
<p>I'm using JsTestDriver and a bit of Jack (only when needed). Does anyone know how to verify that a javascript function has been called during unit testing?</p>
<p>E.g.</p>
<pre><code>function MainFunction()
{
var someElement = ''; // or = some other type
anotherFunction(someElement);
}
</code></pre>
<p>And in the test code:</p>
<pre><code>Test.prototype.test_mainFunction()
{
MainFunction();
// TODO how to verify anotherFunction(someElement) (and its logic) has been called?
}
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1785850/mocking-entity-context-in-ef41Mocking Entity Context in EF4Colin Desmond2009-11-23T20:50:00Z2009-11-23T20:51:21Z
<p>I am using VS2010 B2 and EF4 B2 and trying to use Rhino Mocks to mock the entity context generated by EEF.</p>
<pre><code>var context = MockRepository.GenerateMock<SomeDBEntities>();
IObjectSet<TxMode> objectSet = new List<TxMode> { mode }.AsObjectSet();
context.Expect(c => c.TxModes).Return(objectSet);
</code></pre>
<p>The problem is that <code>c.TxModes</code> is a property of type <code>ObjectSet<TxMode></code> whereas I am trying to return an <code>IObjectSet<TxMode></code> and I get the following compile error:</p>
<pre><code>Error 4 The best overloaded method match for
'Rhino.Mocks.Interfaces.IMethodOptions<System.Data.Objects.ObjectSet
<Data.Entities.TxMode>>.Return(System.Data.Objects.ObjectSet
<Data.Entities.TxMode>)' has some invalid arguments.
</code></pre>
<p>The AsObjectSet extension method comes from <a href="http://devblog.petrellyn.com/?p=189" rel="nofollow">here</a>. </p>
<p>Any idea how I can get this to compile?</p>
http://stackoverflow.com/questions/1759172/why-does-my-perl-unit-test-fail-in-epic-but-work-in-the-debugger1Why does my Perl unit test fail in EPIC but work in the debugger?Kurt W. Leucht2009-11-18T21:22:36Z2009-11-23T19:00:16Z
<p>Has anyone ever experienced a unit test that fails and when they tried to debug it to find out where the failure was occurring, the unit test succeeds when running the code in the debugger? </p>
<p>I'm using Eclipse 3.5.1 with EPIC 0.6.35 and ActiveState ActivePerl 5.10.0. I wrote module A and module B both with multiple routines. A routine in module B calls a bunch of routines from module A. I'm adding mock objects to my module B unit test file to try to get more complete code coverage on module B where the code in module B tests to see if all the calls to module As routines fail or succeed. So I added some mock objects to my unit test to force some of the module A routines to return failures, but I was not getting the failures as expected. When I debugged my unit test file, the calls to the module A routine did fail as expected (and my unit test succeeds). When I run the unit test file as normal without debugging, the call to the mocked Module A routine does not fail as expected (and my unit test fails). </p>
<p>What could be going on here? I'll try to post a working example of my problem if I can get it to fail using a small set of simple code.</p>
<p><strong><em>ADDENDUM:</strong> I got my code whittled down to a bare minimum set that demonstrates my problem. Details and a working example of the problem follows:</em></p>
<p>My Eclipse project contains a "lib" directory with two modules ... MainModule.pm and UtilityModule.pm. My Eclipse project also contains at the top level a unit test file named MainModuleTest.t and a text file called input_file.txt which just contains some garbage text. </p>
<pre><code>EclipseProject/
MainModuleTest.t
input_file.txt
lib/
MainModule.pm
UtilityModule.pm
</code></pre>
<p>Contents of the MainModuleTest.t file:</p>
<pre><code>use Test::More qw(no_plan);
use Test::MockModule;
use MainModule qw( mainModuleRoutine );
$testName = "force the Utility Module call to fail";
# set up mock utility routine that fails
my $mocked = new Test::MockModule('UtilityModule');
$mocked->mock( 'slurpFile', undef );
# call the routine under test
my $return_value = mainModuleRoutine( 'input_file.txt' );
if ( defined($return_value) ) {
# failure; actually expected undefined return value
fail($testName);
}
else {
# this is what we expect to occur
pass($testName);
}
</code></pre>
<p>Contents of the MainModule.pm file:</p>
<pre><code>package MainModule;
use strict;
use warnings;
use Exporter;
use base qw(Exporter);
use UtilityModule qw( slurpFile );
our @EXPORT_OK = qw( mainModuleRoutine );
sub mainModuleRoutine {
my ( $file_name ) = @_;
my $file_contents = slurpFile($file_name);
if( !defined($file_contents) ) {
# failure
print STDERR "slurpFile() encountered a problem!\n";
return;
}
print "slurpFile() was successful!\n";
return $file_contents;
}
1;
</code></pre>
<p>Contents of the UtilityModule.pm file:</p>
<pre><code>package UtilityModule;
use strict;
use warnings;
use Exporter;
use base qw(Exporter);
our @EXPORT_OK = qw( slurpFile );
sub slurpFile {
my ( $file_name ) = @_;
my $filehandle;
my $file_contents = "";
if ( open( $filehandle, '<', $file_name ) ) {
local $/=undef;
$file_contents = <$filehandle>;
local $/='\n';
close( $filehandle );
}
else {
print STDERR "Unable to open $file_name for read: $!";
return;
}
return $file_contents;
}
1;
</code></pre>
<p>When I right-click on MainModuleTest.t in Eclipse and select <strong>Run As</strong> | <strong>Perl Local</strong>, it gives me the following output:</p>
<pre><code>slurpFile() was successful!
not ok 1 - force the Utility Module call to fail
1..1
# Failed test 'force the Utility Module call to fail'
# at D:/Documents and Settings/[SNIP]/MainModuleTest.t line 13.
# Looks like you failed 1 test of 1.
</code></pre>
<p>When I right click on the same unit test file and select <strong>Debug As</strong> | <strong>Perl Local</strong>, it gives me the following output:</p>
<pre><code>slurpFile() encountered a problem!
ok 1 - force the Utility Module call to fail
1..1
</code></pre>
<p>So, this is obviously a problem. Run As and Debug As should give the same results, right?!?!? </p>
http://stackoverflow.com/questions/726583/rhino-mocks-mocked-method-returns-null1Rhino Mocks: Mocked method returns nulldav.evans2009-04-07T16:36:16Z2009-11-23T09:54:18Z
<p>I'm trying to mock a data repository object but after setting an expectation on my MockRepository, it returns null every time. My code is as follows:
<code></p>
<pre><code> [Test]
public void GetById_NotNull()
{
Person expectedPerson = new Person() { Id = 1, Name="Jon"};
MockRepository MockRepository = new MockRepository();
var FakePersonRepository = MockRepository.StrictMock<IRepository<Person>>();
FakePersonRepository.Expect(action => action.Get(1)).IgnoreArguments().Return(expectedPerson);
PersonService PersonService = new PersonService(FakePersonRepository);
Person returnedPerson = PersonService.Get(1);
Assert.IsNotNull(returnedPerson);
}
//and inside my person service
public class PersonService
{
private IRepository<Person> _PersonRepository;
public PersonService(IRepository<Person> PersonRepository)
{
this._PersonRepository = PersonRepository;
}
public Person Get(int Id)
{
Person p = _PersonRepository.Get(Id);
return p;
}
}
</code></pre>
<p></code>
The assertion at the bottom of the Test fails and returned person is always null. I know I must be doing something wrong with my mock....ideas?</p>
http://stackoverflow.com/questions/1781537/rmock-class-which-has-inner-class0Rmock class which has inner classRob2009-11-23T07:11:01Z2009-11-23T07:21:03Z
<p>I'm trying to mock a class with an inner class. Unfortunately the class under test creates a new instance of the inner class (which I want to be a mock). I'm not sure how to tell RMock that the inner class should be a mock too.</p>
<p>Here is the class I want to mock:</p>
<pre><code>
public class Database
{
protected String connectionUrl;
protected Properties connectionProperties = new Properties();
protected int queryTimeout;
public static class Details
{
public String url, loginId, password;
public Details(String url, String loginId, String password)
{
this.url = url;
this.loginId = loginId;
this.password = password;
}
protected Database(String url, String user, String password, int queryTimeout) throws IOException {
connectionUrl = url;
connectionProperties.put("user", user);
connectionProperties.put("password", password);
this.queryTimeout = queryTimeout;
}
public class Connection {
private java.sql.Connection connection;
private Transaction transaction;
public Connection() {
}
public void openConnection() throws SQLException {
connection = DriverManager.getConnection(connectionUrl, connectionProperties);
}
public String nextMessageToProcess() throws Exception {
openConnection();
try { // get stuff from DB
return "string from DB results";
}
catch (Exception e) {
throw e;
}
}
}
}
</code></pre>
<p>Here is the class I want to test:
<code><pre>
public class Processor {
Database.Connection database;</p>
<pre><code>Processor(Database database) throws Exception {
System.out.println("Processor constructor");
// note this line creates new instance of inner class!
this.database = database.new Connection();
}
public boolean process(long timeout) throws Exception {
System.out.println("Processor.process");
String message = database.nextMessageToProcess();
System.out.println("Processor.process: " + message);
return true;
}
</code></pre>
<p>}
</pre></code></p>
<p>My test code so far:
<code><pre>
import com.agical.rmock.extension.junit.RMockTestCase;</p>
<p>public class ProcessorTest extends RMockTestCase {
public void testProcessor() throws Exception
{
Database mockDb = (Database) mock(Database.class, new Object[]{"url", "user", "pass", 0}, "Database");</p>
<pre><code> startVerification();
Processor classUnderTest = new Processor(mockDb);
assertThat(true, is.eq(classUnderTest.process(1000)));
}
</code></pre>
<p>}</pre></code></p>
<p>Unfortunately the real Database.Connection class is being instantiated. How can I prevent (mock) this using RMock or another mock lib if necessary.</p>
http://stackoverflow.com/questions/1205559/how-can-i-measure-the-overhead-of-a-mocking-framework-typemock1How can I measure the overhead of a mocking framework (TypeMock)?spoon162009-07-30T09:44:32Z2009-11-22T20:36:36Z
<p>I'm just beginning to evaluate mocking frameworks for my team and am wondering if anyone has any pointers to reference documentation or experience that you can share regarding the cost of mocking when doing performance tests.</p>
<p>Links? Personal experience? Details appreciated.</p>
http://stackoverflow.com/questions/1778744/using-mockitos-generic-any-method1Using Mockito's generic "any()" methodripper2342009-11-22T13:50:00Z2009-11-22T13:59:35Z
<p>I have an interface with a method that expects an array of Foo:</p>
<pre><code>public interface IBar {
void DoStuff(Foo[] arr);
}
</code></pre>
<p>I am mocking this interface using Mockito, and I'd like to assert that DoStuff() is called, but I don't want to validate what argument are passed - "don't care".</p>
<p>How do I write the following code using any(), the generic method, instead of anyObject()?</p>
<pre><code>IBar bar = mock(IBar.class);
...
verify(bar).DoStuff((Foo[])anyObject());
</code></pre>
http://stackoverflow.com/questions/1766885/google-mock-for-iphone-development0Google Mock for iPhone development?Cliff2009-11-19T22:01:47Z2009-11-20T12:20:10Z
<p>I have an interesting situation where I am refactoring a bunch of ObjC iPhone code to create a C++ API. I'm a novice to C++ and looking into C++ mocking frameworks to augment the work I'd done using OCUnit and poor man's mocks. I ran across googlemock and wanted to know if anyone has ever used it for iPhone development? Also, how can I share this (or mockpp) with other devs as it is an installable package and doesn't seem to lend itself to checking into a repository?</p>
http://stackoverflow.com/questions/1156038/unit-testing-datastores-in-php1unit testing datastores in PHPkoen2009-07-20T21:26:21Z2009-11-20T04:40:58Z
<p>I'm using PHPUnit but find it difficult to make it create good mocks and stubs for objects used as datastore.</p>
<p>Example:</p>
<pre><code>class urlDisplayer {
private $storage;
public function __construct(IUrlStorage $storage) { $this->storage = $storage; }
public function displayUrl($name) {}
public function displayLatestUrls($count) {}
}
interface IUrlStorage {
public function addUrl($name, $url);
public function getUrl($name);
}
class MysqlUrlStorage implements IUrlStorage {
// saves and retrieves from database
}
class NonPersistentStorage implements IUrlStorage {
// just stores for this request
}
</code></pre>
<p>Eg how to have PHPUnit stubs returning more than one possible value on two calls with different $names?</p>
<p>Edit: example test:</p>
<pre><code>public function testUrlDisplayerDisplaysLatestUrls {
// get mock storage and have it return latest x urls so I can test whether
// UrlDisplayer really shows the latest x
}
</code></pre>
<p>In this test the mock should return a number of urls, however in the documentation I only how to return one value.</p>
http://stackoverflow.com/questions/1214178/moq-unit-testing-a-method-relying-on-httpcontext5Moq: unit testing a method relying on HttpContext pcampbell2009-07-31T18:43:42Z2009-11-19T20:11:50Z
<p>Consider a method in a .NET assembly:</p>
<pre><code>public static string GetSecurityContextUserName()
{
//extract the username from request
string sUser = HttpContext.Current.User.Identity.Name;
//everything after the domain
sUser = sUser.Substring(sUser.IndexOf("\\") + 1).ToLower();
return sUser;
}
</code></pre>
<p>I'd like to call this method from a unit test using the Moq framework. This assembly is part of a webforms solution. The unit test looks like this, but I am missing the Moq code.</p>
<pre><code>//arrange
string ADAccount = "BUGSBUNNY";
string fullADName = "LOONEYTUNES\BUGSBUNNY";
//act
//need to mock up the HttpContext here somehow -- using Moq.
string foundUserName = MyIdentityBL.GetSecurityContextUserName();
//assert
Assert.AreEqual(foundUserName, ADAccount, true, "Should have been the same User Identity.");
</code></pre>
<p><strong>Question</strong>: </p>
<ul>
<li>How can I use Moq to arrange a fake HttpContext object with some value like 'MyDomain\MyUser'? </li>
<li>How do I associate that fake with my call into my static method at <code>MyIdentityBL.GetSecurityContextUserName()</code>? </li>
<li>Do you have any suggestions on how to improve this code/architecture?</li>
</ul>
http://stackoverflow.com/questions/1764370/use-of-mocks-in-tests6Use of Mocks in Testsnotnoop2009-11-19T16:01:17Z2009-11-19T18:08:03Z
<p>I just started using mock objects (using Java's mockito) in my tests recently. Needless to say, they simplified the set-up part of the tests, and along with Dependency Injection, I would argue it made the code even more robust.</p>
<p>However, I have found myself tripping in testing against implementation rather than specification. I ended up setting up expectations that I would argue that it's not part of the tests. In more technical terms, I will be testing the interaction between SUT (the class under test) and its collaborators, and such dependency isn't part of contract or the interface of the class!</p>
<p>Consider that you have the following:
When dealing with XML node, suppose that you have a method, <code>attributeWithDefault()</code> that returns the attribute value of the node if it's available, otherwise it would return a default value!</p>
<p>I would setup the test like the following:</p>
<pre><code>Element e = mock(Element.class);
when(e.getAttribute("attribute")).thenReturn("what");
when(e.getAttribute("other")).thenReturn(null);
assertEquals(attributeWithDefault(e, "attribute", "default"), "what");
assertEquals(attributeWithDefault(e, "other", "default"), "default");
</code></pre>
<p>Well, here not only did I test that <code>attributeWithDefault()</code> adheres to the specification, but I also tested the implementation, as I required it to use <code>Element.getAttribute()</code>, instead of <code>Element.getAttributeNode().getValue()</code> or <code>Element.getAttributes().getNamedItem().getNodeValue()</code>, etc.</p>
<p>I assume that I am going about it in the wrong way, so any tips on how I can improve my usage of mocks and best practices will be appreciated.</p>
<p>EDIT:
<strong>What's wrong with the test</strong></p>
<p>I made the assumption above that the test is a bad style, here is my rationale.</p>
<ol>
<li><p>The specification doesn't specify which method gets called. A client of the library shouldn't care of how attribute is retrieved for example, as long as it is done rightly. The implementor should have free reign to access any of the alternative approaches, in any way he sees fit (with respect to performance, consistency, etc). It's the specification of <code>Element</code> that ensures that all these approaches return identical values.</p></li>
<li><p>It doesn't make sense to re-factor <code>Element</code> into a single method interface with <code>getElement()</code> (Go is quite nice about this actually). For ease of use, a client of the method should be able to just to use the standard <code>Element</code> in the standard library. Having interfaces and new classes is just plain silly, IMHO, as it makes the client code ugly, and it's not worth it.</p></li>
<li><p>Assuming the spec stays as is and the test stays as is, a new developer may decide to refactor the code to use a different approach of using the state, and cause the test to fail! Well, a test failing when the actual implementation adheres to the specification is valid.</p></li>
<li><p>Having a collaborator expose state in multiple format is quite common. A specification and the test shouldn't depend on which particular approach is taken; only the implementation should!</p></li>
</ol>
http://stackoverflow.com/questions/1685676/how-to-mock-each-and-find-method-in-jquery-using-jack0How to mock .each and .find method in jQuery using Jack?BeraCim2009-11-06T05:52:01Z2009-11-19T03:19:29Z
<p>Hi all:</p>
<p>I'm currently trying to mock the following method using Jack. The code example is as below:</p>
<pre><code>var ID = "id";
$('#' + ID + ' > div > table').each(function) {
var nodeSpan = $(this).find('span.' + NODE_INDICATORS)[0];
.
.
.
});
</code></pre>
<p>How should I approach it? Are there jQuery/QUnit functions that allows me to create a DOM node/element which I can use to mock the find method? Or can this be done easily with Jack?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/427400/unit-testing-and-mocking-email-sender-in-python-with-google-appengine1Unit testing and mocking email sender in Python with Google AppEngineCVertex2009-01-09T08:33:34Z2009-11-18T21:02:49Z
<p>I'm a newbie to python and the app engine.</p>
<p>I have this code that sends an email based on request params after some auth logic. in my Unit tests (i'm using <a href="http://code.google.com/p/gaeunit/" rel="nofollow">GAEUnit</a>), how do I confirm an email with specific contents were sent? - i.e. how do I mock the emailer with a fake emailer to verify send was called?</p>
<pre><code>class EmailHandler(webapp.RequestHandler):
def bad_input(self):
self.response.set_status(400)
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write("<html><body>bad input </body></html>")
def get(self):
to_addr = self.request.get("to")
subj = self.request.get("subject")
msg = self.request.get("body")
if not mail.is_email_valid(to_addr):
# Return an error message...
# self.bad_input()
pass
# authenticate here
message = mail.EmailMessage()
message.sender = "my.company@gmail.com"
message.to = to_addr
message.subject = subj
message.body = msg
message.send()
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write("<html><body>success!</body></html>")
</code></pre>
<p>And the unit tests,</p>
<pre><code>import unittest
from webtest import TestApp
from google.appengine.ext import webapp
from email import EmailHandler
class SendingEmails(unittest.TestCase):
def setUp(self):
self.application = webapp.WSGIApplication([('/', EmailHandler)], debug=True)
def test_success(self):
app = TestApp(self.application)
response = app.get('http://localhost:8080/send?to=vijay.santhanam@gmail.com&body=blah_blah_blah&subject=mySubject')
self.assertEqual('200 OK', response.status)
self.assertTrue('success' in response)
# somehow, assert email was sent
</code></pre>
http://stackoverflow.com/questions/1740801/good-php-mock-framework1Good PHP mock frameworkMax2009-11-16T08:20:11Z2009-11-16T09:23:00Z
<p>Is there a good standalone mock framework for PHP? Currently I am using Simpletest framework for unit testing. I like the framework, but I dont like how you create and setup a mock in it. I then tried PHPMock, I like how it can be used, but it I encountered some bugs that get annoying over time ... Or would it be best to switch over to PHPUnit for unit testing and mocking?</p>
<p>What I would really like is something easy and yet powerful like the Moq framework for C# in PHP (no generics, lambdas etc. of course ;) ).</p>
http://stackoverflow.com/questions/1720302/elegant-design-of-simulating-a-read-only-object0Elegant design of simulating a read-only objectCourtney de Lautour2009-11-12T06:30:04Z2009-11-14T15:00:04Z
<p>Hi, I am currently developing an <code>GUI</code> to an embedded system. <em>(I am using GUI to descripe my app opposed to interface to avoid confusion with the progamatic meaning)</em></p>
<p><strong>Context</strong></p>
<p>I have created a class which simulates the embedded system. I do all my communications through a <code>Connection</code> class I have designed which can communicate via TCP/Serial or a virtual connection between two <code>Connection</code> objects.</p>
<p>All this works nicely and as expected, my simulated object and <code>GUI</code> communicate via the virtual connection.</p>
<p>I have a <code>Diagnostic</code> packet which is sent from the <code>device</code> (real or simulated) and read by the <code>GUI</code>. This fits nicely into a class which I have called <code>ControllerDiagnostic</code>.</p>
<p><strong>Question</strong></p>
<p>My question relates to the <code>ControllerDiagnostic</code> class. On the <code>GUI</code> side all properties should be read-only <em>(DeSerialization is done via reflection on the private fields directly)</em>. On the simulation side they clearly need to be mutable. So how do I handle this elegantly? I've considered:</p>
<ul>
<li>Creating a completely new class which mimics <code>ControllerDiagnostic</code> but exposes setting of the fields.</li>
<li>Creating all fields in <code>ControllerDiagnostic</code> protected then inheriting into a private nested class which provides accessors to these fields within the simulation class.</li>
<li>Creating an assembly with just two classes and using an <code>Internal</code> setter.</li>
<li>Leave the properties as read/write and document the <code>GUI</code> should not modify them.</li>
<li>Re-writing C# so I could use <code>friend</code> in the same way I can in C++.</li>
</ul>
<p>None of these seem ideal to me.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1728815/how-do-i-mock-an-ienumerablet-so-that-i-can-test-a-method-that-receives-it2How do I mock an IEnumerable<T> so that I can test a method that receives itJamie Dixon2009-11-13T12:03:23Z2009-11-13T15:13:16Z
<p>I have a method that I want to test which expects an <code>IEnumerable<T></code> as a parameter.</p>
<p>I'm currently mocking the contents of the <code>IEnumerable<T></code> as follows (Using Moq):</p>
<pre><code> var mockParent = new Mock<ICsvTreeGridExportable>();
var mockChild = new Mock<ICsvTreeGridExportable>();
</code></pre>
<p>How do it put these mocked objects inside an <code>IEnumerable<T></code> so that I can pass them as a parameter to the method I want to test?</p>
<p>The method I'm testing expects to receive an <code>IEnumerable<ICsvTreeGridExportable></code></p>
http://stackoverflow.com/questions/1722884/rhinomocks-stub-a-method-that-returns-a-parameter3RhinoMocks - Stub a Method That Returns a ParameterMartin2009-11-12T15:10:33Z2009-11-12T23:35:48Z
<p>I am using RhinoMocks, I need to stub a method, and always have it return the third parameter, regardless of what is passed in:</p>
<pre><code>_service.Stub(x => x.Method(parm1, parm2, parm3)).Return(parm3);
</code></pre>
<p>Obviously, it ain't that easy. I don't always know what the parms are going to be, but I know I always want to return the 3rd one.</p>
http://stackoverflow.com/questions/1244949/mocking-php-functions-in-unit-tests2Mocking PHP functions in unit testsavdgaag2009-08-07T14:13:51Z2009-11-12T15:56:32Z
<p>I'm unit-testing some PHP code with SimpleTest and I've run into trouble. In my tests of a database class I want to be able to set an expectation for PHPs <code>mysql</code> functions. In my tests of a wrapper class for the <code>mail</code> function I want to mock PHPs <code>mail</code> function. These are just some examples.</p>
<p>The point is: I don't (always) want to test if my Mail class sends e-mail, I want to test how it calls the <code>mail</code> function. I want to be able to control what these functions return. I want to be able to test my Database class without needing a database, fixtures and that whole lot.</p>
<p>I've got some experience with testing Ruby code, and Test::Unit and RSpec make it very easy to test code in isolation. I'm new to testing PHP and it feels like I'm testing a lot more than I should need to, in order to get my tests to pass.</p>
<p>Is there a way in SimpleTest or PhpUnit or some other testing framework that makes this possible or easier?</p>
http://stackoverflow.com/questions/1717107/why-do-we-need-mocking-frameworks5Why do we need mocking frameworks?Sandbox2009-11-11T18:14:29Z2009-11-11T18:29:13Z
<p>I have worked with code which had NUnit test written. But, I have never worked with mocking frameworks. What are they? I understand dependency injection and how it helps to improve the testability. I mean all dependencies can be mocked while unit testing. But, then why do we need mocking frameworks? Can't we simply create mock objects and provide dependencies. Am I missing something here?
Thanks.</p>
http://stackoverflow.com/questions/1661628/which-objects-to-mock-when-doing-tdd5Which objects to mock when doing TDDJamie Dixon2009-11-02T14:30:39Z2009-11-11T18:24:52Z
<p>When creating methods, should every object instantiated inside that method be passed in as a parameter so that those objects can be mocked in our unit tests?</p>
<p>We have a lot of methods here at work that have no associated unit tests and upon writing tests retrospectively; we find that there are quite a lot of objects instantiated inside these methods.</p>
<p>One of our options is to refactor our current methods into more unit like methods and reduce the number of responsibilities per methods. This could be quite a lengthy process but most certainly be a large benefit to us in the future.</p>
<p>What do you think? Should all objects instantiated inside a method be passed in as parameters?</p>
http://stackoverflow.com/questions/1711544/using-qmock-with-internet-explorer0Using QMock with Internet ExplorerShane Fulmer2009-11-10T22:02:00Z2009-11-10T22:02:00Z
<p>I'm trying to use qMock to test some javascript code, and am having problems in IE. The tests are passing in chrome and firefox, but in IE I'm getting "Object doesn't support this property or method" for every test that uses the mocked object. It's almost like IE doesn't see that there is a mock implementation of the function. Has anyone run into this?</p>
<p>Thanks!</p>