Tagged Questions
The zend-test tag has no wiki summary.
5
votes
1answer
2k views
Zend Framework (PHPUnit) Tests won'r run (phpunit: command not found / Class 'PHPUnit_Framework_TestCase' not found)
i installed PHPUnit by the book:
sudo pear channel-discover pear.phpunit.de
sudo pear install phpunit/PHPUnit
The include path is added in the /etc/php5/cli/php.ini
include_path = ...
4
votes
1answer
782 views
Unit testing with Zend Framework/Doctrine 2.0
I wanted to write unit tests for my Zend Framework/Doctrine 2.0 application, but I don't quite understand how to set up unit testing in ZF. Also, I would like to include Doctrine 2.0 in those unit ...
4
votes
3answers
499 views
Running PHP Zend Test in Eclipse
Is it possible to run PHP Zend test cases (those that extend Zend_Test_PHPUnit_ControllerTestCase, etc.) through Eclipse PDT?
I would like to be able to run them in a similar fashion as you run JUnit ...
3
votes
3answers
299 views
How can I in PHP re-create my Database (for Unit Testing for example)
How can I from PHP, re-create my Database, maybe inserting default data. Currently, I am intending to use the behavior for Unit Tests.
I am using Doctrine 2, Zend Framework 1.11, Zend_Test for unit ...
3
votes
1answer
758 views
Code coverage fails with PHPUnit and the Zend Framework
I have some issues with code coverage reports in PHPunit and the zend framework. Whenever I run a phpunit test the code coverage fails returning the following message:
PHPUnit 3.4.15 by Sebastian ...
2
votes
2answers
115 views
Zend_Controller_Router_Exception: Route default is not defined
I'm trying to test a controller. Zend Tool has generated the following code:
class Default_CarrinhoControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
{
public function setUp()
{
...
2
votes
2answers
622 views
Unit Testing Doctrine 2 Models
Whats the way to unit test Doctrine 2 models? I am using it with Zend Framework 1.11. It has Zend_Test which uses PHPUnit. I think the right thing to use is PHPUnit_Extensions_Database_TestCase. In ...
1
vote
1answer
60 views
Phpunit Error - failed asserting node denoted by
I am using PHPUnit 3.5.x along with Zend 1.10
I have a line in my IndexControllerTestCase.php
$this->assertXpathContentContains("id('message')", "test message");
this shows an error
1) ...
1
vote
2answers
181 views
XPath in PHPUnit testing with Zend
I have this apparently basic code:
$docSrc =
'<?xml version="1.0" encoding="UTF-8" ?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title /></head>
...
1
vote
1answer
122 views
How to use zend test phpunit in zend project
I am a very new zend framework and phpunit test learner.
I have a zend project, I want to use the zend-test-phpunit to test the model and controllers under the application folder. How could I test it? ...
1
vote
2answers
453 views
(PHP): Testing models with Zend_Test_PHPUnit_DatabaseTestCase
When I run my PHP unit test I get:
1) Test_Model_Mapper_TestTest::testTest
Argument 1 passed to PHPUnit_Extensions_Database_DataSet_DefaultTableIterator::__construct() must be an array, null given, ...
1
vote
1answer
1k views
Zend_Test: No default module defined for this application
UPDATE 23 Dec
I had the problem where Zend Framework complains about "No default module defined for this application". I didn't use Modules and the main app works fine.
I finally solved the problem ...
1
vote
2answers
672 views
PHPUnit/Zend_Test: PDOException: You cannot serialize or unserialize PDO instances
I am getting the exception
PDOException: You cannot serialize or unserialize PDO instances
when I am trying to use PHPUnit for Unit Tests. I have not much going on. I am using Zend Framework ...
1
vote
1answer
101 views
Bootstrapping Zend_Application with Zend_Test
in the docs the provided code for bootstrapping looks like
protected $application;
public function setUp() {
$this->bootstrap = array($this, 'appBootstrap');
parent::setUp();
}
public ...
1
vote
1answer
971 views
How do I bootstrap for unit testing with Zend MVC and Zend_Test?
I have read many posts about setting up unit testing in Zend Framework and I simply have not been able to get even one simple unit test to run. The issue is with setting up and testing the bootstrap ...
0
votes
0answers
31 views
how to test HEAD section contains link to CSS file in conditional comments
How to write a more elegant Unit-Test to assert the ie.css file for certain browsers has been added to the head section between conditional comments:
order of attributes may differ
spaces can be on ...
0
votes
1answer
73 views
PHPunit, Getting function code coverage for a ZF controller action
I'm using PHPunit to test our Zend Framework project and it works allright but i'm not getting coverage om my action methods in my controllers.
Although I get coverage in number off lines of code but ...
0
votes
1answer
127 views
Setting up a Controller Test with ZendFramework: Autoloader issue
I'm working on a web application with Zend Framework v1.11.0, but I'm failing to set up a correct test environment for controller tests.
I know that there are already a lot of questions about setting ...
0
votes
1answer
51 views
How to mock/stub a call to the database in a Zend_Test_PHPUnit_ControllerTestCase?
I am writing my first controller test. Internally the controller must call (or extend) a file that tries to connect to the database. However, I don't want it to actually connect to a database, since ...
0
votes
1answer
190 views
Zend_Test on Action_Helper accessing $bootstrap->getOptions() error
I am accessing options from an action controller, which is working well with the application, but I've hit a problem when I attempt to UnitTest it:
PHP Fatal error: Call to a member function ...
0
votes
2answers
252 views
PHPUnit::How can be __construct with protected variables tested?
PhpUnit::How can be __construct with protected variables tested?
(not always we should add public method getVal()- soo without add method that return protected variable value)
Example:
class ...
0
votes
1answer
702 views
Unit Testing with Zend_Test: Call to a member function hasResource() on a non-object in Zend's ErrorController
I am getting this error
Fatal error: Call to a member function hasResource() on a non-object in D:\Projects\Tickle\application\controllers\ErrorController.php on line 53
where line 53 looks like
...
0
votes
1answer
320 views
Unit Testing with PHPUnit & Doctrine2: Autoloading Failed
I am getting this error
D:\Projects\Tickle\tests>phpunit
PHPUnit 3.5.5 by Sebastian Bergmann.
..........ok1
Fatal error: Doctrine\Common\ClassLoader::loadClass(): Failed opening required ...
0
votes
1answer
351 views
How Does One Produce a Selenium Test with Database Fixture
Zend Test appears to rely upon Zend_Test_PHPUnit_DatabaseTestCase and Selenium appears to need PHPUnit_Extensions_SeleniumTestCase yet as far as I can tell PHP doesn't support multiple inheritance.
0
votes
3answers
159 views
Testing controller with Zend_Test
I asked the same question in another forum, but I don't yet have any luck there. So please allow me to ask the same question here.
I want to setup Zend_Test to test my controller code (I am using ...
0
votes
1answer
268 views
“No such file or directory” SQLSTATE error using PHPUnit with XAMPP & Zend Framework
The error I'm getting is below.
Zend_Db_Adapter_Exception: SQLSTATE[HY000] [2002] No such file or directory
I've tried setting the xampp php to be the php in my PATH, hoping that it's a ...
0
votes
2answers
253 views
PHPUnit+ZendFramework ::How I can test multu users session in the same time?
I beginer programmer,and don't have any QA experience
(only simple test that i write without PHPUnit or other tool)
How I can create test for testing multi users sessions in the same time?
...
0
votes
1answer
126 views
PHP unit tests for controller returns no errors and no success message
I'm using the zend modular director structure, i.e.
application
modules
users
controllers
.
.
lessons
reports
...
0
votes
1answer
438 views
How to start testing Zend Framework Models?
How do I begin testing my models in a Zend Framework 1.8+ application?
Let's say I have my application set up to start testing. I have already tested a controller, so I know it works. I have all my ...
0
votes
1answer
118 views
How to assert multiple attribute element in Zend_Test?
For example:
How can I assert this input?
$this->assertQuery( "input[name="user_name][type='hidden']") can not find any content.
Of couse $this->assertQuery( "input[name='user_name']) will work ...
0
votes
2answers
335 views
How to test my forms in Zend Framework 1.8+?
So I've set up testing in my ZF 1.9.5 application thanks to this tutorial, I am able to test my controllers, now I want to create a test for a form. However, I'm having the problem that PHPUnit can't ...