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/.

learn more… | top users | synonyms

0
votes
1answer
37 views

Unable make SimpleTest GET and POST in test case, using Drupal6 and SimpleTest

After a while i ran this sample test, the Drupal batch screen (the one with the progress bar) stops running, no errors are logged in my server logs, and the whole browser window stay freezed. Code is ...
-2
votes
0answers
15 views

How to save a webform in Drupal Simpletest [closed]

I would like to create a node of webform type in Simpletest Drupal $this->drupalGet('node/add/webform'); $settings = array( 'type' => 'webform', 'title' => 'Sample webform', ...
0
votes
1answer
22 views

phpunit error after installation

SOLVED I installed PHP unit and then tried to type phpunit and it produces errors. I already searched for a solution but it didn't work well for me and am getting the following error message: PHP ...
0
votes
1answer
35 views

Make and distribution tool for php

I've seen some questions but none really answers what I have in mind; all developers are working with the one or the other framework but none has started something of their own otherwise they would ...
0
votes
0answers
10 views

Why does including web_tester.php in SimpleTest make tests 1/2 complete

I was trying to follow the examples on the SimpleTest website, and whenever I include web_tester.php, the status bar changes from 1/1 complete to 1/2 complete. Why is this? For example, I tried ...
1
vote
0answers
46 views

SimpleTest (PHP unit tester) seems to report incorrect test-case count

Here are my two test cases: <?php require_once(dirname(__FILE__) . '/../simpletest/unit_tester.php'); class Tests extends UnitTestCase { function test_1() { ...
0
votes
0answers
18 views

How to consolidate multiple suites of SimpleTest php tests

I am trying to consolidate a number of PHP SimpleTest class tests together in one test and don't understand what I am doing. Each test works great by itself. Each starts out </?php require ...
0
votes
1answer
69 views

Passing arguments to SimpleTest unit tests

I have a class that I am writing tests for using SimpleTest. There are static functions in the class that need to be passed my SQL connection object, that resides in Variables.php. How do i do this? ...
3
votes
1answer
43 views

Cakephp 1.3 mock authentication

I am trying to write and test on a controller action. Here is what I have: App::import('Component', 'Auth'); App::import('Controller', 'Goals'); class GoalControllerTest extends CakeTestCase { ...
1
vote
1answer
24 views

Automated Bug logging support in Test API

I am using SimpleTest API and PHPUnit Test API. Does any of them support automated bug logging support . And if not then how can I will provide this feature ?
1
vote
0answers
47 views

SimpleTest not being triggered, yet still maxing out the server

I'm sharing a simple PHP MVC framework with some students. As part of the framework, it includes SimpleTest in it's core/vendors/. A handful of the students are getting notices from their shared ...
0
votes
0answers
93 views

SimpleTest, setting $_SESSION variables

I am doing a POST request to this webservice <? session_start(); $request = array(); $request = $_POST; echo $_SESSION['USER']; echo $_SESSION['ORG']; ?> using simpletest ...
0
votes
2answers
94 views

Strange thing using simple test in Php

file1: <?php require_once('simpletest/autorun.php'); require_once('simpletest/web_tester.php'); class TestOfRankings extends WebTestCase { function tesetWeAreTopOfGoogle() { ...
0
votes
0answers
71 views

eclipse find php executable on mac when install simpletest

I'm new to PHP testing and trying to install SimpleTest for eclipse. When I'm trying to set up simpleTest it requires the php.exe file. I'm with mac and I know the php.ini file is in the path ...
0
votes
0answers
109 views

Testing REST routes in CakePHP 1.3 & simpletest

I can not find a way to test my REST routes in CakePHP 1.3. I am routing our API calls as follows: <?php Router::connect('/:api/:version/:controller/*', array('action' => 'rest_index' , ...
1
vote
1answer
71 views

Convert Simpletest test suite to PHPUnit

I use Simpletest test suites to run all tests, with different configuration methods. I've created one suite per config method, and it sets up the environment and then runs all tests. Take a look at ...
0
votes
0answers
30 views

Code coverage in drupal 6.25

Is there any code coverage module available for drupal 6.26 version? I searched but all those are available for drupal 7 version. I need to use simpletest for unit testing. Could anyone please let me ...
3
votes
2answers
438 views

Laravel and Simpletest

I am trying to use Simpletest for unit-testing with Laravel. I know Laravel comes integrated with PHPUnit support and I know that PHPUnit is the industry standard, but having worked with simpletest ...
0
votes
0answers
163 views

PHP Unit Testing with SimpleTest - Impossible to set cookies

I'm using Simple Test to do my unit testing and I tried to set cookies but I got this error: Error : Unexpected PHP error [Cannot modify header information - headers already sent] severity [2] ...
2
votes
1answer
99 views

How can I map a model to a specific controller in CodeIgniter-Simpletest unit test framework?

I am using codeigniter framework and I am using simpletest framework for unit testing my models. Each model have their own controller. Most of the url(s) that I use (for webservice response) for ...
2
votes
1answer
93 views

PHP Simpletest assertion on radio buttons?

I have one set of radio buttons: <input type="radio" id="edit-status-1" name="status" value="1" class="form-radio" /> <label class="option" for="edit-status-1">Active </label> ...
0
votes
1answer
67 views

Set Checkbox to Off in Simpletest

In one of my testcases using the simpletest webtester, I'd like to unset a checkbox. From the documentation, it seems like setField should do it, but so far it hasn't worked. The documentation isn't ...
0
votes
1answer
173 views

PHP SimpleTest / xdebug code coverage test - ignore some lines

I have a problem with SimpleTest / xdebug test classes - specifically, I have registered a shutdown function to close my test coverage and save the results. However, this still (correctly) shows up ...
0
votes
1answer
64 views

PHP SimpleTest HtmlReporter verbose report pass

How could I increase the verbosity of SimpleTest's HtmlReporter? It is sometimes convenient to see which tests the application passes, in addition to the ones it fails.
0
votes
0answers
130 views

Using SimpleTest on multivalue checkboxes

I have a form with several sets of multi-value checkboxes and a text field. These inputs are used to build a query. <input class="entry" name="search_text" /> <input type="checkbox" ...
3
votes
1answer
252 views

SimpleTest - Web Browser - Transfer Authentication to Client

I'm not sure if this is even possible, but I figured this was a great place to ask the question. I'm using http://simpletest.org/en/browser_documentation.html PHP WebBrowser to test a wordpress ...
1
vote
1answer
76 views

“Nothing fetched” returned when running PHP SimpleTest on my localhost

I'm trying to use SimpleTest to run a set of tests on a project, I always get "Nothing fetched" when running the tests on my localhost but it works totally fine when run these tests on a remote ...
1
vote
1answer
109 views

PHP - SimpleTest - List every call to methods of a mock object

My problem is, that I need to list every call to a mock object, because I need to check them. I haven't find anything about this feature in SimpleTest documentation. :S Maybe there is another way to ...
0
votes
2answers
248 views

Getting LastInsertId from SimpleTest TestAction in CakePHP

I am writing a unit test in CakePHP 1.3 via SimpleTest. I run the following code, which works (it does create as expected) $this->testAction('/post/add/user:'. $userId, array('method' => ...
0
votes
1answer
74 views

How to write a functional test for sending email in PHP?

My application sends reminder emails, so I am writing a test to make sure that they are sent. I haven't chosen a testing framework yet, but am considering SimpleTest. I don't think I can use PHPUnit ...
0
votes
2answers
150 views

Can I make a mock redirect() end tests in controllers using CakePHP 1.3 & Simpletest?

I am following Mark Story's "Testing CakePHP controllers - Mock Objects edition" to test some controller actions that have redirects. I am currently mocking out the redirect() method in simple test. I ...
0
votes
2answers
458 views

SimpleTester on CodeIgniter fails with “Class 'GroupTest' not found”

I'm trying to do a clean install SimpleTester on a new CodeIgniter application, following the instructions here: http://codeigniter.com/wiki/SimpleTester_-_Unit_testing_library Everything's fine ...
1
vote
1answer
210 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 ...
0
votes
1answer
364 views

CodeIgniter 2.1 and SimpleTest - Conducting a simple test

I am currently using CI 2.1 and Netbeans 7.0 as my inveiglement IDE. I would like to create some simple unit testing using SimpleTest. In particular the methodology used by Eric Barnes and his code ...
0
votes
1answer
700 views

SimpleTesting-PDOException: SQLSTATE[42S02]

SimpleTesting-PDOException: SQLSTATE[42S02] View Edit Revisions Posted by ichionid on December 15, 2011 at 10:56am Hi all, I am in the processes of developing a module. I am trying to incorporate ...
0
votes
3answers
149 views

How do I destroy a CakePHP session from inside of a test?

I found a test that fails when run from a browser if you are logged in. I need to make sure the session is cleared out before running this test. Is there an easy way to clear the CakePHP session from ...
0
votes
2answers
499 views

Where is the PHPUnit report schema used by Jenkins?

I am having problems getting Jenkins to parse a xunit.xml report file when there are exceptions in the tests. The XML looks well-formed so I can't see any problem just by looking at it. Is there a xsd ...
0
votes
2answers
209 views

Simpletest is running all of my tests twice. Why?

I have a simpletest suite I've been working on writing for some of my recent API wrapper code in PHP. But every time I run the test, it runs all of the tests twice. My calling code: ...
2
votes
1answer
153 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
359 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 ...
5
votes
2answers
424 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 ...
1
vote
2answers
127 views

SimpleTest PHP not completing a testor showing a failure

For some reason, even I have some other similar tests set up and working for other classes in the same environment, SimpleTest isn't running my test function, but it's not saying that the tests are ...
0
votes
0answers
112 views

How to configure/setup PHPCoverage with SimpleTest?

How can i configure/install PHPCoverage with SimpleTest? I cant seem to find a clear tutorial on how to integrate the two. Does anyone know the step by step procedure? I already done unit testing ...
0
votes
1answer
175 views

CakePHP and Simpletest: Reset database data after each test is run?

Is there a way to reset my database in between when tests run? Maybe something with test grouping? I need to load the same data for each test. Is there someway to automatically do this between each ...
0
votes
1answer
253 views

fopen problem with php simple test

I'm seriously stumped by this one. I'm learning to use simpletest to run my unit tests. In one of my sample test classes, I'm testing a parser which takes a file and works on the content. I decided ...
6
votes
1answer
396 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 ...
2
votes
3answers
195 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
1k 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 ...
0
votes
1answer
98 views

More clarity needed on the usage assertText() function?

I have written automation test cases for my application.Below is the sample code i have used for web testing. class UserWebTestcase extends CakeWebTestCase{ var $name='UserWebTestcase'; function ...
0
votes
1answer
140 views

Simpletest and debug drupal on remote host

I have 2 questions: 1. I see many times in drupal6 .test files and there is weird test code there, what is this? And what is supposed to do, and how i use that (should i?) my local machine I'm ...

1 2 3