Tagged Questions
Simpletest is a Unit and Web Testing framework developed in PHP. You can read more about it and how to set it up at http://simpletest.org/.
45
votes
8answers
10k views
Simple test vs PHPunit
I was wondering if anyone that have experience in both these stuff can shed some light on the significant difference between the two, if any?
Any specific strength of each that makes it suitable for ...
13
votes
4answers
1k views
What's the state of PHP unit testing frameworks in 2010?
As far as I can see, PHPUnit is the only serious product in the field at the moment. It is widely used, is integrated into Continuous Integration suites like phpUnderControl, and well regarded.
The ...
11
votes
3answers
1k views
How do I write unit tests in PHP with a procedural codebase?
I'm mostly convinced of the benefits of unit testing, and I would like to start applying the concept to a large existing codebase written in PHP. Less than 10% of this code is object-oriented.
I've ...
8
votes
3answers
2k views
which unit-test framework for PHP: simpletest, phpunit or?
I'm a big fan of simpletest because it's what I know. It has excellent support for mocking and web-testing.
But I'm always scared of stagnating so any compelling arguments to switch would be ...
6
votes
1answer
142 views
CakePHP and SimpleTest failing tests from clean install
I've just downloaded Cake PHP 1.3, and installed SimpleTest 1.0.1 into the vendors directory. When I run cake testsuite core all I get the following error:
Running core all PHP Fatal error: Cannot ...
6
votes
4answers
552 views
How can I write tests for file upload in PHP?
I'm using simpleTest to write my PHP tests. I'm writing a file upload plugin and was wondering how I may be testing it.
I would like to check that the file is correctly uploaded, in the right folder, ...
6
votes
1answer
797 views
How can you set-up PHP + xDebug + (x)Unit + Eclipse to work with breakpoints in unit tests?
Have tried for quite some time to get this to work correctly but to no luck. Basically, I have Eclipse (3.3) with PHP Development Tools (PDT), and the PDT XDebug plugin as well as the SimpleTest ...
5
votes
2answers
289 views
Cakephp testing login
I want to test login function if it works propperly and only lets valid and active users in.
My user fixture contains:
array(
'password' => '*emptyPasswordHash*', // empty password
...
5
votes
2answers
587 views
Equivalent of SimpleTest “partial mocks” in PHPUnit?
I'm trying to migrate a bunch of tests from SimpleTest to PHPUnit and I was wondering if there is an equivalent for SimpleTest's partial mocks.
Update: I can't seem to find anything in the docs which ...
4
votes
1answer
702 views
How to implement SimpleTest in Kohana
Here's the problem, I was assigned task from my bos to learn how to use Kohana and implement simple test in that. We would like to use it as our framework for future projects.
Being new to both ...
4
votes
1answer
1k views
Real-world testing of CakePHP controllers?
I'm writing a new application with CakePHP (just-released 1.2.4), using SimpleTest 1.0.1. I have read the relevant sections of the Cookbook, searched on the Bakery, and read Mark Story's postings on ...
3
votes
2answers
122 views
Trouble Building a Simpletest Suite From Working Unit Test Cases
I've started using unit testing for my PHP programs, and figured Simpletest was as good a place to dive in as any other. I added the Simpletest files to my testing server, and ran the following tests ...
3
votes
1answer
363 views
PHPUnit and SimpleTest on Apache and Nusphere PhpED
I have a requirement that I need to run the tests through commandline as well as through a graphical debugger. The graphical debugger should run the code on Apache.
I tried SimpleTest and it works ...
3
votes
1answer
601 views
3
votes
5answers
919 views
What unit testing in PHP to start [closed]
Possible Duplicate:
Simple test vs PHPunit
I'm new to good practices on software development. I need to know with witch testing unit framework should I use. I have see that some people use ...
3
votes
4answers
189 views
How to write unit test before the class code?
I am trying to get into the habit of writing a unit test before the actual class. What are some pointers the stack overflow community can give me along with any useful resources.
Thank You
3
votes
2answers
1k views
CodeIgniter and SimpleTest — How to make my first test?
I'm used to web development using LAMP, PHP5, MySQL plus NetBeans with Xdebug.
Now I want to improve my development, by learning how to use (A) proper testing and (B) a framework. So I have set up ...
3
votes
2answers
2k views
PHP Unit testing
Is there any EASY php testing Framework and may be simpler than simpletest and not command line based like PHPUnit ?
3
votes
2answers
1k views
Using Eclipse SimpleTest plugin - SimpleTest not working
I'm using Eclipse 3.4.2 and installed the latest plug-in for simpletest using Help>Software Updates...
The plugin installed correctly and I was able to set it up in Window>Preferences>SimpleTest.
I ...
3
votes
3answers
648 views
Mocking PHP functions in unit tests
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 mysql functions. In my tests of a wrapper ...
3
votes
2answers
1k views
Missing Table with Simpletest in CakePHP
I'm using cakePHP and am using Simpletest as the testing suite. Whenever I run tests on the models, I get an error:
Missing Database Table
Error: Database table account_types for model AccountType ...
2
votes
3answers
90 views
Submit an array of values with SimpleTest
I'm trying to submit a simple form that has an array of fields:
<form>
<input type='text' name='Article[]' id='Article1' />
<input type='text' name='Article[]' id='Article2' />
...
2
votes
2answers
154 views
URL encoding seems to get in the way of properly json encoding/decoding in my PHP program
I'm implementing a PHP script which receives an HTTP POST message with in the body a json string, tied to a 'report' parameter. So HTTP POST report=.
I'm testing this out with SimpleTest (PHP Unit ...
2
votes
1answer
282 views
cakephp controller testing - how to test actions which require authorization?
The title pretty much says it all. I would like to test e.g. UsersController::admin_index() action, but it's required for the user to be authorized to access this location, therefore when I run the ...
2
votes
3answers
410 views
PHP Overloading to Unit Test Private Properties and Methods
I've been reading here a few questions regarding the use of unit testing to test private methods and properties. I'm new to unit testing and would like input on the method I'm trying so that my ...
2
votes
2answers
310 views
PHP Unit Tests: Is it possible to test for a Fatal Error?
FWIW I'm using SimpleTest 1.1alpha.
I have a singleton class, and I want to write a unit test that guarantees that the class is a singleton by attempting to instantiate the class (it has a private ...
2
votes
1answer
273 views
xdebug code coverage analysis with simpletest framework
I am doing unit testing with simpletest framework and using xdebug for code coverage reports. let me explain you my problem:
I have a class which I want to test lets assume name of class is ...
2
votes
2answers
78 views
How do I test my plug-in interface which uses an abstract class?
I'm using PHP 5.3 and SimpleTest, but more general answers are welcome. Each plug-in will be a class which extends an abstract class... how do I test that this interface works properly? Do I have to ...
2
votes
1answer
80 views
How to run a single test method in simpletest unittest class?
This is my Unit Test class
<?
require_once '../simpletest/unit_tester.php';
require_once '../simpletest/reporter.php';
class Academic extends UnitTestCase
{
function setUp()
{
}
...
2
votes
4answers
642 views
Using Simpletest PHP “unit testing for PHP”, getting error message “Deprecated: Assigning the return value of new by reference is deprecated ”
I am new to using simpletest: http://www.simpletest.org/ for PHP and am using PHP 5.2* on my server, when I try to set up an initial test script based on their demo, I get a page full of errors like ...
2
votes
1answer
121 views
Why should I be using testing frameworks in PHP?
I have recently heard a lot of people argue about using PHP testing features like PHPunit and SimpleTest together with their IDE of choice (Eclipse for me). After googling the subject, I have still a ...
2
votes
7answers
2k views
How do you set up database testing using the PHP SimpleTest framework
I am using SimpleTest, a PHP-based unit testing framework. I am testing new code that will handle storing and retrieving website comments from a database. I am at a loss for how to structure the ...
2
votes
2answers
224 views
Where can i find extended HTML reporters for Simpletest?
I am using Simpletest as my unit test framework for the PHP site I am currently working on. I like the fact that it is shipped with a simple HTML reporter, but I would like a bit more advanced ...
1
vote
1answer
56 views
PHP SimpleTest: How to get a value from webpage?
I use SimpleTest for testing my pages written in PHP.
I have a form where you can enter several names at once. Then you click on "Generate Usernames and Passwords".
My test can set the names using ...
1
vote
0answers
51 views
Content not being Posted properly?
I am using simpleTest WebBrowser for DataScraping on this URL http://www.magicbricks.com/bricks/agentSearch.html. But though everything seems right I always get the error City Field is required. I ...
1
vote
1answer
89 views
PHP SimpleTest - Using multiple test cases
I have been trying to use SimpleTest to begin unit testing my code, I have a working test that works on its own, but I want to use a single directory that will contain a range of tests, and a ...
1
vote
1answer
118 views
Unit Testing Drupal with DrupalUnitTestCase fails on database-setup
Using DrupalUnitTestCase to unit test a Drupal module, fails. I probably forget something.
The test runs fine untill I create an instance of some class:
$foo = new FooBar();
In that case, Drupal ...
1
vote
2answers
182 views
PHP MySQL Function Unit Testing
I need to test a number of functions that I have created using PHP 5 which carry out the required database CRUD type actions (SELECT, UPDATE, INSERT, DELETE) which are required by my web application.
...
1
vote
4answers
744 views
Looking for a “headless browser” equivalent for PHP for Cucumber testing
I'm trying to set up some functional/acceptance/integration testing using Cucumber for my PHP (Zend Framework) project. I'm trying to understand the best approach to implementing these types of tests. ...
1
vote
1answer
48 views
How to perform complex searches and test them, in cakePHP and Simpletest
I have a very complex data structure, something like 10 tables without the join tables. My application needs to be able to perform search in most of the tables.
To do this, I though to turn the ...
1
vote
2answers
251 views
SimpleTest: assertEquals and PHP types
Considering the following code:
<?php
class Foo extends UnitTestCase {
public function testFoo() {
$foo = new Foo();
$this->assertEqual('2, 3', $foo->bar(3));
}
}
...
1
vote
3answers
162 views
How to expect fatal errors with simpletest in php
I am attempting to write a test case to ensure a Singleton class cannot be instantiated. The constructor for the Singleton is defined to be private so my test is as follows:
$this->expectError();
...
1
vote
1answer
270 views
Altering $_POST in PHPUnit/Selenium
I need to add a value to $_POST, specifically 'port' so I can tell my test submission to go through fakemail.
The fakemail documentation shows how to insert a value to $_POST with SimpleTest:
...
1
vote
2answers
96 views
SimpleTest WebTestCases affecting each other, not deterministic output
I am developing some project with CodeIgniter and write unit tests and web tests in SimpleTest. I've noticed that my tests are not deterministic, i.e. they produce different outputs in time. I mean ...
1
vote
1answer
330 views
How to run test cases from the browser in cakephp
I'm new to testing, so please forgive me for this question
In the cakephp manual under the "Creating tests" chapter, one can read
When you have created a test case, you can execute it by browsing ...
1
vote
1answer
318 views
CakePHP SimpleTest enum problem
CakePHP1.3 with SimpleTest can't treat enum type column.
How to resolve this problem.?
Notice: Schema generation error: invalid column type enum(
1
vote
1answer
298 views
PHP - Simpletest - How to test “included” classes
I have de follow code:
include 'simpletest/autorun.php';
include 'config_test.case.php'; // <-- problem
But it not works. I get:
Bad TestSuite [index.php] with error [No runnable test cases in ...
1
vote
1answer
212 views
PDO Cannot execute queries while other unbuffered queries are active
I keep getting this issue with PDO, where this error crops up in my tests.
<?php
require_once('simpletest/unit_tester.php');
require_once('simpletest/reporter.php');
require_once('../model.php');
...
1
vote
2answers
152 views
Simpletest: Testing echo statements?
I've just been testing some PHP files with simpletest and found out thatit won't work too well with functions that actually outputs (echoes) anything.
So is there anything I can do to test functions ...
1
vote
1answer
671 views
php (codeigniter) - simpletest unit testing w/ session data
So I've got simpletest set up with codeigniter ( https://github.com/ericbarnes/codeigniter-simpletest )
I've got some simple tests running and things look good. But I'm hitting a block. I don't know ...