0
votes
1answer
49 views

When using Laravel and Ardent, and when trying to use good testing practice, how would I make this work?

I'm using Laravel 4 and I followed JeffreyWay's testing book. Right now I'm working on testing my controllers. My specific question is in regards to line 69 of this: http://paste.laravel.com/v2B ...
1
vote
1answer
24 views

How mock new object in method - phpunit

I'm testing php code with phpunit and I have a problem: I'm testing class: class ClassName { public function MethodName() { // something $objectName = new Object(); $variableName = ...
0
votes
0answers
55 views

PHPUnit Mock Database Connection Class

I'm adding unit tests to legacy codes in a MVC framework. I have a model class called DbConnection that initiate all the database connection, it looks like this: class DbConnection function ...
0
votes
2answers
34 views

How to return the argument of a mocked method?

Hi all how can I make it so in PHPUnit a mocked method returns its passed argument? E.g: $redirector->expects( $this->once() )->method('gotoUrl')->will( $this->returnValue($argument) ...
0
votes
1answer
27 views

From Real stdClass Object to Mock

I have a Soap WebService that returns StdClass Object with different properties. What i want to do is to create a Mock Object that simulates the StdClass returned by WebService. What i dont want to do ...
2
votes
2answers
53 views

PHPUNIT mock with at() feature works weird

here is the following code sample <?php interface iFS { public function read(); public function write($data); } class MyClass { protected $_fs = null; public function ...
1
vote
1answer
55 views

PHPUnit mock all methods of an abstract class

I have a PHPUnit test case directly deriving from PHPUnit_Framework_TestCase. In a test in this class I need to get a mock for some service object. This service object is of a type defined by an ...
0
votes
1answer
46 views

Mocking an Iterator class with PHPUnit

How can I mock a dependency for my class that implements the Iterator interface in a robust manner?
1
vote
2answers
249 views

laravel 4 - mocking facades

How do i go about mocking facades with arguments in laravel 4? For instance, i'm trying to test my user controller and in my 'login' method. my controller method public function login(){ ...
1
vote
1answer
46 views

Mock a class, edit one method and use another

I am trying to test one method, which depends on the other. The first method registers a user but must check if the given username is available. I tried something with test class class Test { ...
0
votes
1answer
25 views

Mock storage when database should be injected by DI (through constructor)

I am trying to write my code as best as possible (and well testable) but here is something I am thinking about. I have an object, where I pass dependencies through DI <?php public function ...
3
votes
1answer
43 views

PHPUnit: how to test that methods are called in incorrect order?

I want to use PHPUnit to test that methods are called in the right order. My first attempt, using ->at() on a mock object, did not work. For example, I expected the following to fail, but it does ...
0
votes
2answers
60 views

Unit test mocking - doesnt make sense for me

I am trying to learn unit testing and have the following situation I just cant get my head around: I have a model: SalesOrder - which models orders in an ecommerce store The SalesOrder has a ...
2
votes
1answer
71 views

Functional Test - Mock service does not persist in service container

I am hoping someone can shed some light on this issue I am facing. [PROBLEM] I have mocked out doctrine.orm.default_entity_manager service in my functional unit test. I inject this into the client ...
1
vote
1answer
69 views

Mocking an object with internal dependencies in PHPUnit

I am kind of new to testing and I would like to understand how testing is implemented in a real world scenario. For instance, There is this code which implements an internal framework, and employs ...
0
votes
1answer
34 views

PHPUnit Stubbing consecutive calls

I have got a problem with a class, which returns unpredictable values and unit testing a method which calls that functions. So I'm going to change the return of a method. I'm not able to mock that ...
0
votes
2answers
120 views

Best practice for Mocking a webservice in MVC with Custom Repository (in Agile Methodology)

I am building a web application using MVC architecture. I will need to consume a webservice which is still under development (we are following Agile methodology). The webservice has several methods. ...
6
votes
2answers
162 views

Why phpunit doesn't run __destruct() in mocked class and how to force it?

Code will explain everything: <?php class ATest extends PHPUnit_Framework_TestCase { public function testDestructorOnOriginalClass() { $a = new A(); ...
1
vote
1answer
222 views

PHPUnit mock parent method

I have problem with mocking parent method, this is example: class PathProvider { public function getPath() { return isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '/'; ...
6
votes
3answers
242 views

Can you use $this in callback to get protected properties of mocked class in phpunit?

Can you use $this inside callback to get protected properties of mocked class in phpunit? Or is there other way to achieve that? $mock = $this->getMock('A', array('foo')); ...
2
votes
3answers
69 views

Mocking the SUT itself

My question is about unit testing. Assume we have the class below; class X { public function p1(){ //logic $a = $this->p2(); //more logic } public function p2(){ ...
0
votes
1answer
118 views

PHPUnit with Dependency Injection, testing the mock object using instanceof()

I have decoupled/abstract code that uses Dependency Injection. However, with abstracted code, my database classes all return a PDO object, since I have different classes for working with different ...
1
vote
2answers
247 views

Getting a mock Doctrine\ORM\QueryBuilder

Good afternoon, I've been trying all day to write some tests for a class that parses a custom DSL and creates DQL query's. My class requires that I pass in a queryBuilder which it then uses to build ...
4
votes
2answers
238 views

PHPUnit turning an instance of a class into a mock after instantiation

Is there a way to create a mock class with PHPUnit which I can then create a new instance of by using its class name? I have an interface which defines two methods. Something like: interface ...
1
vote
2answers
53 views

Mock object and retain functionality of other methods

Say for example I have this class: class Foo { public function add($x, $y) { return $x + $y; } public function subtract($x, $y) { return $x - $y; } } and I ...
0
votes
1answer
83 views

How to test a Factory / Strategy implementation with PHPUnit

I have a Factory class that returns a writer strategy based on the extension of a given file: public static function getWriterForFile($file) { // create file info object $fileInfo = new ...
1
vote
1answer
71 views

What I need to use: aggregation or composition in TDD?

I'm using TDD. I need to use raw SQL queries in my system. TDD suggests that I need to test only business logic (all tests of database, mail sending or file system is a integration tests). So, I place ...
0
votes
0answers
18 views

Override stub expectations and details for a PHPunit Mock [duplicate]

Possible Duplicate: Mock in PHPUnit - multiple configuration of the same method with different arguments Given an object under test, that has a __ToString(). This will call a method on a ...
0
votes
1answer
451 views

Unit Test Symfony2

I am trying to use Mockery in order to unit test my sf2 functions. I am strugeling with my first attempt. First try at test a class which uses security context: public function ...
2
votes
3answers
73 views

Can I change a method on a PHPUnit Mock after I've set it?

I'm trying to create a mock instance in setUp with default values for all of the overridden methods and then in several different tests change the return value for some of the methods depending on ...
3
votes
1answer
159 views

mock atLeastOnce with concrete value, the rest not important

The question is in PHP, but applies to any language using the xUnit framework. I want a mock, that expects 140 calls to method jump. I need to verify, that at least once there is a call with 500 as ...
1
vote
1answer
71 views

Simple PHPUnit one about getting a generic mocked object

Test method: public function convert(AbstractMessage $message) { $data = array(); // Text conversion $text = $message->getText(); if(null !== $text) { ...
1
vote
1answer
56 views

How to Implement test doubles (stand in mocks) in PHPunit, what triviality am I missing?

I am probably missing something really trivial here, but I cannot get phpunit to use stand-in Mocked classes. Below is an example where Foo is the class that I am testing and Bar the class that I ...
1
vote
1answer
79 views

Is it possible to use mocking on a procedural (non-oo) function? [duplicate]

Possible Duplicate: PHP - override existing function I want to use mocking to unit test some of my functions that have external dependencies. So here goes... Below is a simplified model ...
4
votes
3answers
784 views

Mockery - call_user_func_array() expects parameter 1 to be a valid callback

I have a class I need to mock: class MessagePublisher { /** * @param \PhpAmqpLib\Message\AMQPMessage $msg * @param string $exchange - if not provided then one passed in constructor is used * ...
2
votes
1answer
141 views

PHPUnit mock object issue

I must be missing something but I followed this tutorial: http://www.phpunit.de/manual/current/en/test-doubles.html <?php class SomeClass { public function doSomething() { ...
2
votes
2answers
218 views

Returning Different Results in PHPUnit Mock Object

I've been working on getting our systems more compatible with PHPUnit so we can do more unit testing of our classes and have managed to get some of them working with mock objects, but I've run across ...
0
votes
0answers
48 views

Mocking a Function [duplicate]

Possible Duplicate: PHPUnit: mocking the function I am fairly new to the Mock objects support in PHPUnit, but all the examples I see are for classes. I am testing legacy code, and before I ...
0
votes
1answer
181 views

PHPUnit mocking an object don't work

I'm new to mocking objects in PHPUnit and can't get it working. I am building an extension of the current SensioGeneratorBundle (for Symfony2). I use PHPUnit 3.7 installed via PEAR. It is running on ...
2
votes
1answer
586 views

Undefined method on mock object implementing a given interface in PHPUnit?

I'm new to unit testing and PHPUnit. I need a mock, on which I have a full control, implementing ConfigurationInterface interface. Test subject is ReportEventParamConverter object and test must check ...
3
votes
2answers
130 views

PHPUnit - Am I right in thinking I can't use mocks to test a dependency injection container?

I'm unit testing a Dependency Injection Container. At the most basic level, I'm testing that object graph creation is happening correctly. This uses a mixture of reflection and rules loaded into the ...
4
votes
1answer
108 views

How to mock a function that variable be passed by reference with PHPUnit?

My code looks something like: class A { function foo(&$a, $b) { if ($a == 0) { return false; } else { $a = $b + 1; return true; ...
1
vote
2answers
380 views

PHPUnit and Mock Objects not working

I am not sure if I am doing something wrong or it is a bug with PHPUnit and mock objects. Basically I am trying to test if $Model->doSomething() is called when $Model->start() is triggered. I ...
3
votes
3answers
487 views

PHPUnit: How do I mock this file system?

Consider the following scenario (this is not production code): class MyClass { public function myMethod() { // create a directory $path = sys_get_temp_dir() . '/' . md5(rand()); ...
2
votes
1answer
182 views

PHPUnit Mock that returns the same array every time

I'm building a session management class and associated unit test. In order to separate the class from the global state of $_SESSION I'm using an extremely simple class to manage the binding between ...
6
votes
2answers
189 views

Mock frameworks returns class with different name and type

I'm trying to create a mock to satisfy a typehint with this code (Mockery): return \Mockery::mock('\Contracts\Helpers\iFileSystemWrapper'); or this (PHPUnit): return ...
1
vote
1answer
88 views

How can I enable strict data type checking when using fluent interface in PHPUnit?

The following code passes the test when run. How can I change this so that it complains about the difference between 123 and '123'? $obj = $this->getMockBuilder('Namespace\Object') ...
3
votes
1answer
224 views

Is it Possible to PHPUnit Mock Object to Replace one Created in Class?

I've been trying to get the PHPUnit mock objects working for some legacy code I'm working on, but I'm having issues getting it to sub in for the object I'm after and I'm pretty sure it must be because ...
1
vote
4answers
272 views

How to mock built-in php socket functions?

I'm working on some code that reads from a socket, and it goes wrong when it gets a certain large input. I went to add a unit test for this, before fixing it, but got stuck because I cannot mock fread ...
2
votes
1answer
162 views

Unit test only asserting mock calls

While refactoring my code base I found a piece of code which I'd like to extract into a separate class. It will serve thumbnails for user profile pictures. The class (let's name it UserImageManager) ...

1 2 3