- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
< ? php
// $Id$
2010-06-28 19:57:34 +00:00
/**
* Global variable that holds information about the tests being run .
*
* An array , with the following keys :
* - 'test_run_id' : the ID of the test being run , in the form ' simpletest_ % "
* - 'in_child_site' : TRUE if the current request is a cURL request from
* the parent site .
*
* @ var array
*/
global $drupal_test_info ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
2009-05-25 05:20:16 +00:00
* Base class for Drupal tests .
*
* Do not extend this class , use one of the subclasses in this file .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2009-05-25 05:20:16 +00:00
abstract class DrupalTestCase {
2008-11-26 13:48:50 +00:00
/**
* The test run ID .
*
* @ var string
*/
protected $testId ;
/**
2010-06-28 19:57:34 +00:00
* The database prefix of this test run .
2008-11-26 13:48:50 +00:00
*
* @ var string
*/
2010-06-28 19:57:34 +00:00
protected $databasePrefix = NULL ;
2008-11-26 13:48:50 +00:00
/**
* The original file directory , before it was changed for testing purposes .
*
* @ var string
*/
protected $originalFileDirectory = NULL ;
2008-12-18 00:42:55 +00:00
/**
2009-05-25 05:20:16 +00:00
* Time limit for the test .
2008-12-18 00:42:55 +00:00
*/
2009-10-13 07:14:26 +00:00
protected $timeLimit = 500 ;
2008-12-18 00:42:55 +00:00
2008-11-26 13:48:50 +00:00
/**
* Current results of this test case .
*
* @ var Array
*/
public $results = array (
'#pass' => 0 ,
'#fail' => 0 ,
'#exception' => 0 ,
2009-08-15 06:20:20 +00:00
'#debug' => 0 ,
2008-11-26 13:48:50 +00:00
);
/**
* Assertions thrown in that test case .
*
* @ var Array
*/
protected $assertions = array ();
2008-06-24 21:51:03 +00:00
2009-01-06 12:44:20 +00:00
/**
2009-05-25 05:20:16 +00:00
* This class is skipped when looking for the source of an assertion .
*
* When displaying which function an assert comes from , it ' s not too useful
* to see " drupalWebTestCase->drupalLogin()', we would like to see the test
* that called it . So we need to skip the classes defining these helper
* methods .
2009-04-25 22:35:49 +00:00
*/
2009-05-25 05:20:16 +00:00
protected $skipClasses = array ( __CLASS__ => TRUE );
2009-01-06 12:44:20 +00:00
2008-06-24 21:51:03 +00:00
/**
2010-06-13 13:14:18 +00:00
* Constructor for DrupalTestCase .
2008-06-24 21:51:03 +00:00
*
2008-11-26 13:48:50 +00:00
* @ param $test_id
2008-06-24 21:51:03 +00:00
* Tests with the same id are reported together .
*/
2008-11-26 13:48:50 +00:00
public function __construct ( $test_id = NULL ) {
$this -> testId = $test_id ;
2008-06-24 21:51:03 +00:00
}
/**
2008-11-26 13:48:50 +00:00
* Internal helper : stores the assert .
2008-06-24 21:51:03 +00:00
*
* @ param $status
2008-11-26 13:48:50 +00:00
* Can be 'pass' , 'fail' , 'exception' .
* TRUE is a synonym for 'pass' , FALSE for 'fail' .
2008-06-24 21:51:03 +00:00
* @ param $message
* The message string .
* @ param $group
2008-12-09 11:09:26 +00:00
* Which group this assert belongs to .
2008-09-10 04:13:01 +00:00
* @ param $caller
2008-12-09 11:09:26 +00:00
* By default , the assert comes from a function whose name starts with
2008-06-24 21:51:03 +00:00
* 'test' . Instead , you can specify where this assert originates from
2008-09-10 04:13:01 +00:00
* by passing in an associative array as $caller . Key 'file' is
2008-06-24 21:51:03 +00:00
* the name of the source file , 'line' is the line number and 'function'
* is the caller function itself .
*/
2009-05-25 05:20:16 +00:00
protected function assert ( $status , $message = '' , $group = 'Other' , array $caller = NULL ) {
2008-09-10 04:13:01 +00:00
// Convert boolean status to string status.
2008-06-24 21:51:03 +00:00
if ( is_bool ( $status )) {
$status = $status ? 'pass' : 'fail' ;
}
2008-09-10 04:13:01 +00:00
// Increment summary result counter.
2008-11-26 13:48:50 +00:00
$this -> results [ '#' . $status ] ++ ;
2008-09-10 04:13:01 +00:00
// Get the function information about the call to the assertion method.
if ( ! $caller ) {
$caller = $this -> getAssertionCall ();
2008-06-24 21:51:03 +00:00
}
2008-09-10 04:13:01 +00:00
// Creation assertion array that can be displayed while tests are running.
2008-11-26 13:48:50 +00:00
$this -> assertions [] = $assertion = array (
'test_id' => $this -> testId ,
2008-09-10 04:13:01 +00:00
'test_class' => get_class ( $this ),
2008-07-05 07:19:31 +00:00
'status' => $status ,
'message' => $message ,
2008-09-10 04:13:01 +00:00
'message_group' => $group ,
'function' => $caller [ 'function' ],
'line' => $caller [ 'line' ],
'file' => $caller [ 'file' ],
2008-07-05 07:19:31 +00:00
);
2008-09-10 04:13:01 +00:00
// Store assertion for display after the test has completed.
2010-06-28 19:57:34 +00:00
Database :: getConnection ( 'default' , 'simpletest_original_default' )
-> insert ( 'simpletest' )
2009-05-30 11:17:32 +00:00
-> fields ( $assertion )
-> execute ();
2008-09-10 04:13:01 +00:00
2009-05-20 22:16:38 +00:00
// We do not use a ternary operator here to allow a breakpoint on
// test failure.
if ( $status == 'pass' ) {
return TRUE ;
}
else {
return FALSE ;
}
2008-06-24 21:51:03 +00:00
}
2009-07-07 07:50:53 +00:00
/**
2009-07-30 10:46:53 +00:00
* Store an assertion from outside the testing context .
*
* This is useful for inserting assertions that can only be recorded after
* the test case has been destroyed , such as PHP fatal errors . The caller
* information is not automatically gathered since the caller is most likely
* inserting the assertion on behalf of other code . In all other respects
* the method behaves just like DrupalTestCase :: assert () in terms of storing
* the assertion .
2009-07-07 07:50:53 +00:00
*
2009-12-14 19:24:10 +00:00
* @ return
* Message ID of the stored assertion .
*
2009-07-07 07:50:53 +00:00
* @ see DrupalTestCase :: assert ()
2009-12-14 19:24:10 +00:00
* @ see DrupalTestCase :: deleteAssert ()
2009-07-07 07:50:53 +00:00
*/
2009-07-30 10:46:53 +00:00
public static function insertAssert ( $test_id , $test_class , $status , $message = '' , $group = 'Other' , array $caller = array ()) {
2009-07-07 07:50:53 +00:00
// Convert boolean status to string status.
if ( is_bool ( $status )) {
$status = $status ? 'pass' : 'fail' ;
}
$caller += array (
2009-07-30 10:46:53 +00:00
'function' => t ( 'Unknown' ),
'line' => 0 ,
'file' => t ( 'Unknown' ),
2009-07-07 07:50:53 +00:00
);
$assertion = array (
'test_id' => $test_id ,
'test_class' => $test_class ,
'status' => $status ,
'message' => $message ,
'message_group' => $group ,
'function' => $caller [ 'function' ],
'line' => $caller [ 'line' ],
'file' => $caller [ 'file' ],
);
2009-12-14 19:24:10 +00:00
return db_insert ( 'simpletest' )
2009-07-07 07:50:53 +00:00
-> fields ( $assertion )
-> execute ();
}
2009-12-14 19:24:10 +00:00
/**
* Delete an assertion record by message ID .
2010-01-04 23:08:34 +00:00
*
2009-12-14 19:24:10 +00:00
* @ param $message_id
* Message ID of the assertion to delete .
* @ return
* TRUE if the assertion was deleted , FALSE otherwise .
2010-01-04 23:08:34 +00:00
*
2009-12-14 19:24:10 +00:00
* @ see DrupalTestCase :: insertAssert ()
*/
public static function deleteAssert ( $message_id ) {
return ( bool ) db_delete ( 'simpletest' )
-> condition ( 'message_id' , $message_id )
-> execute ();
}
2008-09-10 04:13:01 +00:00
/**
* Cycles through backtrace until the first non - assertion method is found .
*
* @ return
* Array representing the true caller .
*/
protected function getAssertionCall () {
$backtrace = debug_backtrace ();
// The first element is the call. The second element is the caller.
2009-05-25 05:20:16 +00:00
// We skip calls that occurred in one of the methods of our base classes
2008-09-10 04:13:01 +00:00
// or in an assertion function.
2009-05-25 05:20:16 +00:00
while (( $caller = $backtrace [ 1 ]) &&
(( isset ( $caller [ 'class' ]) && isset ( $this -> skipClasses [ $caller [ 'class' ]])) ||
substr ( $caller [ 'function' ], 0 , 6 ) == 'assert' )) {
2008-09-10 04:13:01 +00:00
// We remove that call.
array_shift ( $backtrace );
}
return _drupal_get_last_caller ( $backtrace );
}
2008-06-24 21:51:03 +00:00
/**
* Check to see if a value is not false ( not an empty string , 0 , NULL , or FALSE ) .
*
* @ param $value
* The value on which the assertion is to be done .
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
2008-11-26 13:48:50 +00:00
* TRUE if the assertion succeeded , FALSE otherwise .
2008-06-24 21:51:03 +00:00
*/
protected function assertTrue ( $value , $message = '' , $group = 'Other' ) {
2009-11-02 01:49:02 +00:00
return $this -> assert (( bool ) $value , $message ? $message : t ( 'Value @value is TRUE.' , array ( '@value' => var_export ( $value , TRUE ))), $group );
2008-06-24 21:51:03 +00:00
}
/**
* Check to see if a value is false ( an empty string , 0 , NULL , or FALSE ) .
*
* @ param $value
* The value on which the assertion is to be done .
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
2008-11-26 13:48:50 +00:00
* TRUE if the assertion succeeded , FALSE otherwise .
2008-06-24 21:51:03 +00:00
*/
protected function assertFalse ( $value , $message = '' , $group = 'Other' ) {
2009-11-02 01:49:02 +00:00
return $this -> assert ( ! $value , $message ? $message : t ( 'Value @value is FALSE.' , array ( '@value' => var_export ( $value , TRUE ))), $group );
2008-06-24 21:51:03 +00:00
}
/**
* Check to see if a value is NULL .
*
* @ param $value
* The value on which the assertion is to be done .
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
2008-11-26 13:48:50 +00:00
* TRUE if the assertion succeeded , FALSE otherwise .
2008-06-24 21:51:03 +00:00
*/
protected function assertNull ( $value , $message = '' , $group = 'Other' ) {
2009-11-02 01:49:02 +00:00
return $this -> assert ( ! isset ( $value ), $message ? $message : t ( 'Value @value is NULL.' , array ( '@value' => var_export ( $value , TRUE ))), $group );
2008-06-24 21:51:03 +00:00
}
/**
* Check to see if a value is not NULL .
*
* @ param $value
* The value on which the assertion is to be done .
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
2008-11-26 13:48:50 +00:00
* TRUE if the assertion succeeded , FALSE otherwise .
2008-06-24 21:51:03 +00:00
*/
protected function assertNotNull ( $value , $message = '' , $group = 'Other' ) {
2009-11-02 01:49:02 +00:00
return $this -> assert ( isset ( $value ), $message ? $message : t ( 'Value @value is not NULL.' , array ( '@value' => var_export ( $value , TRUE ))), $group );
2008-06-24 21:51:03 +00:00
}
/**
* Check to see if two values are equal .
*
* @ param $first
* The first value to check .
* @ param $second
* The second value to check .
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
2008-11-26 13:48:50 +00:00
* TRUE if the assertion succeeded , FALSE otherwise .
2008-06-24 21:51:03 +00:00
*/
protected function assertEqual ( $first , $second , $message = '' , $group = 'Other' ) {
2009-11-02 01:49:02 +00:00
return $this -> assert ( $first == $second , $message ? $message : t ( 'Value @first is equal to value @second.' , array ( '@first' => var_export ( $first , TRUE ), '@second' => var_export ( $second , TRUE ))), $group );
2008-06-24 21:51:03 +00:00
}
/**
* Check to see if two values are not equal .
*
* @ param $first
* The first value to check .
* @ param $second
* The second value to check .
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
2008-11-26 13:48:50 +00:00
* TRUE if the assertion succeeded , FALSE otherwise .
2008-06-24 21:51:03 +00:00
*/
protected function assertNotEqual ( $first , $second , $message = '' , $group = 'Other' ) {
2009-11-02 01:49:02 +00:00
return $this -> assert ( $first != $second , $message ? $message : t ( 'Value @first is not equal to value @second.' , array ( '@first' => var_export ( $first , TRUE ), '@second' => var_export ( $second , TRUE ))), $group );
2008-06-24 21:51:03 +00:00
}
/**
* Check to see if two values are identical .
*
* @ param $first
* The first value to check .
* @ param $second
* The second value to check .
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
2008-11-26 13:48:50 +00:00
* TRUE if the assertion succeeded , FALSE otherwise .
2008-06-24 21:51:03 +00:00
*/
protected function assertIdentical ( $first , $second , $message = '' , $group = 'Other' ) {
2009-11-02 01:49:02 +00:00
return $this -> assert ( $first === $second , $message ? $message : t ( 'Value @first is identical to value @second.' , array ( '@first' => var_export ( $first , TRUE ), '@second' => var_export ( $second , TRUE ))), $group );
2008-06-24 21:51:03 +00:00
}
/**
* Check to see if two values are not identical .
*
* @ param $first
* The first value to check .
* @ param $second
* The second value to check .
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
2008-11-26 13:48:50 +00:00
* TRUE if the assertion succeeded , FALSE otherwise .
2008-06-24 21:51:03 +00:00
*/
protected function assertNotIdentical ( $first , $second , $message = '' , $group = 'Other' ) {
2009-11-02 01:49:02 +00:00
return $this -> assert ( $first !== $second , $message ? $message : t ( 'Value @first is not identical to value @second.' , array ( '@first' => var_export ( $first , TRUE ), '@second' => var_export ( $second , TRUE ))), $group );
2008-06-24 21:51:03 +00:00
}
/**
* Fire an assertion that is always positive .
*
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
* TRUE .
*/
protected function pass ( $message = NULL , $group = 'Other' ) {
2008-11-26 13:48:50 +00:00
return $this -> assert ( TRUE , $message , $group );
2008-06-24 21:51:03 +00:00
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
2008-06-24 21:51:03 +00:00
* Fire an assertion that is always negative .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
* @ return
* FALSE .
*/
protected function fail ( $message = NULL , $group = 'Other' ) {
2008-11-26 13:48:50 +00:00
return $this -> assert ( FALSE , $message , $group );
2008-06-24 21:51:03 +00:00
}
/**
* Fire an error assertion .
*
* @ param $message
* The message to display along with the assertion .
* @ param $group
* The type of assertion - examples are " Browser " , " PHP " .
2008-09-10 04:13:01 +00:00
* @ param $caller
2008-06-24 21:51:03 +00:00
* The caller of the error .
2008-11-26 13:48:50 +00:00
* @ return
* FALSE .
2008-06-24 21:51:03 +00:00
*/
2008-12-09 11:09:26 +00:00
protected function error ( $message = '' , $group = 'Other' , array $caller = NULL ) {
2009-08-15 06:20:20 +00:00
if ( $group == 'User notice' ) {
// Since 'User notice' is set by trigger_error() which is used for debug
// set the message to a status of 'debug'.
return $this -> assert ( 'debug' , $message , 'Debug' , $caller );
}
2008-11-26 13:48:50 +00:00
return $this -> assert ( 'exception' , $message , $group , $caller );
2008-06-24 21:51:03 +00:00
}
2010-09-02 15:56:10 +00:00
/**
* Logs verbose message in a text file .
*
* The a link to the vebose message will be placed in the test results via
* as a passing assertion with the text '[verbose message]' .
*
* @ param $message
* The verbose message to be stored .
*
* @ see simpletest_verbose ()
*/
protected function verbose ( $message ) {
if ( $id = simpletest_verbose ( $message )) {
$url = file_create_url ( $this -> originalFileDirectory . '/simpletest/verbose/' . get_class ( $this ) . '-' . $id . '.html' );
$this -> error ( l ( t ( 'Verbose message' ), $url , array ( 'attributes' => array ( 'target' => '_blank' ))), 'User notice' );
}
}
2008-06-24 21:51:03 +00:00
/**
* Run all tests in this class .
2010-11-26 19:26:57 +00:00
*
* Regardless of whether $methods are passed or not , only method names
* starting with " test " are executed .
*
* @ param $methods
* ( optional ) A list of method names in the test case class to run ; e . g . ,
* array ( 'testFoo' , 'testBar' ) . By default , all methods of the class are
* taken into account , but it can be useful to only run a few selected test
* methods during debugging .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2010-11-26 19:26:57 +00:00
public function run ( array $methods = array ()) {
2009-07-08 07:23:23 +00:00
// Initialize verbose debugging.
2010-09-01 20:08:17 +00:00
simpletest_verbose ( NULL , variable_get ( 'file_public_path' , conf_path () . '/files' ), get_class ( $this ));
2009-07-08 07:23:23 +00:00
2009-04-25 22:35:49 +00:00
// HTTP auth settings (<username>:<password>) for the simpletest browser
// when sending requests to the test site.
2009-12-30 11:41:52 +00:00
$this -> httpauth_method = variable_get ( 'simpletest_httpauth_method' , CURLAUTH_BASIC );
$username = variable_get ( 'simpletest_httpauth_username' , NULL );
$password = variable_get ( 'simpletest_httpauth_password' , NULL );
2009-07-07 08:07:24 +00:00
if ( $username && $password ) {
$this -> httpauth_credentials = $username . ':' . $password ;
}
2009-04-25 22:35:49 +00:00
2008-06-24 21:51:03 +00:00
set_error_handler ( array ( $this , 'errorHandler' ));
2009-12-14 19:24:10 +00:00
$class = get_class ( $this );
2010-11-26 19:26:57 +00:00
// Iterate through all the methods in this class, unless a specific list of
// methods to run was passed.
$class_methods = get_class_methods ( $class );
if ( $methods ) {
$class_methods = array_intersect ( $class_methods , $methods );
}
foreach ( $class_methods as $method ) {
2008-06-24 21:51:03 +00:00
// If the current method starts with "test", run it - it's a test.
if ( strtolower ( substr ( $method , 0 , 4 )) == 'test' ) {
2009-12-14 19:24:10 +00:00
// Insert a fail record. This will be deleted on completion to ensure
// that testing completed.
$method_info = new ReflectionMethod ( $class , $method );
$caller = array (
'file' => $method_info -> getFileName (),
'line' => $method_info -> getStartLine (),
'function' => $class . '->' . $method . '()' ,
);
$completion_check_id = DrupalTestCase :: insertAssert ( $this -> testId , $class , FALSE , t ( 'The test did not complete due to a fatal error.' ), 'Completion check' , $caller );
2008-07-02 19:34:13 +00:00
$this -> setUp ();
2008-09-10 04:13:01 +00:00
try {
$this -> $method ();
// Finish up.
}
catch ( Exception $e ) {
$this -> exceptionHandler ( $e );
}
2008-07-02 19:34:13 +00:00
$this -> tearDown ();
2009-12-14 19:24:10 +00:00
// Remove the completion check record.
DrupalTestCase :: deleteAssert ( $completion_check_id );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
2008-09-20 07:35:53 +00:00
// Clear out the error messages and restore error handler.
drupal_get_messages ();
2008-06-24 21:51:03 +00:00
restore_error_handler ();
}
/**
2009-12-10 15:39:43 +00:00
* Handle errors during test runs .
2008-06-24 21:51:03 +00:00
*
2008-11-26 13:48:50 +00:00
* Because this is registered in set_error_handler (), it has to be public .
2008-06-24 21:51:03 +00:00
* @ see set_error_handler
*/
2008-11-26 13:48:50 +00:00
public function errorHandler ( $severity , $message , $file = NULL , $line = NULL ) {
2009-12-13 09:14:21 +00:00
if ( $severity & error_reporting ()) {
$error_map = array (
E_STRICT => 'Run-time notice' ,
E_WARNING => 'Warning' ,
E_NOTICE => 'Notice' ,
E_CORE_ERROR => 'Core error' ,
E_CORE_WARNING => 'Core warning' ,
E_USER_ERROR => 'User error' ,
E_USER_WARNING => 'User warning' ,
E_USER_NOTICE => 'User notice' ,
E_RECOVERABLE_ERROR => 'Recoverable error' ,
);
$backtrace = debug_backtrace ();
$this -> error ( $message , $error_map [ $severity ], _drupal_get_last_caller ( $backtrace ));
}
2008-06-24 21:51:03 +00:00
return TRUE ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2008-09-10 04:13:01 +00:00
/**
* Handle exceptions .
*
* @ see set_exception_handler
*/
2008-11-26 13:48:50 +00:00
protected function exceptionHandler ( $exception ) {
2008-09-10 04:13:01 +00:00
$backtrace = $exception -> getTrace ();
// Push on top of the backtrace the call that generated the exception.
array_unshift ( $backtrace , array (
'line' => $exception -> getLine (),
'file' => $exception -> getFile (),
));
2010-02-25 16:03:47 +00:00
require_once DRUPAL_ROOT . '/includes/errors.inc' ;
2010-10-25 00:06:19 +00:00
// The exception message is run through check_plain() by _drupal_decode_exception().
$this -> error ( t ( '%type: !message in %function (line %line of %file).' , _drupal_decode_exception ( $exception )), 'Uncaught exception' , _drupal_get_last_caller ( $backtrace ));
2008-09-10 04:13:01 +00:00
}
2009-05-25 05:20:16 +00:00
/**
* Generates a random string of ASCII characters of codes 32 to 126.
*
* The generated string includes alpha - numeric characters and common misc
* characters . Use this method when testing general input where the content
* is not restricted .
*
* @ param $length
2010-02-26 17:22:39 +00:00
* Length of random string to generate .
2009-05-25 05:20:16 +00:00
* @ return
* Randomly generated string .
*/
public static function randomString ( $length = 8 ) {
$str = '' ;
for ( $i = 0 ; $i < $length ; $i ++ ) {
$str .= chr ( mt_rand ( 32 , 126 ));
}
2010-02-26 17:22:39 +00:00
return $str ;
2009-05-25 05:20:16 +00:00
}
/**
* Generates a random string containing letters and numbers .
*
2010-02-26 17:22:39 +00:00
* The string will always start with a letter . The letters may be upper or
* lower case . This method is better for restricted inputs that do not
* accept certain characters . For example , when testing input fields that
* require machine readable values ( i . e . without spaces and non - standard
* characters ) this method is best .
2009-05-25 05:20:16 +00:00
*
* @ param $length
2010-02-26 17:22:39 +00:00
* Length of random string to generate .
2009-05-25 05:20:16 +00:00
* @ return
* Randomly generated string .
*/
public static function randomName ( $length = 8 ) {
$values = array_merge ( range ( 65 , 90 ), range ( 97 , 122 ), range ( 48 , 57 ));
$max = count ( $values ) - 1 ;
2010-02-26 17:22:39 +00:00
$str = chr ( mt_rand ( 97 , 122 ));
for ( $i = 1 ; $i < $length ; $i ++ ) {
2009-05-25 05:20:16 +00:00
$str .= chr ( $values [ mt_rand ( 0 , $max )]);
}
2010-02-26 17:22:39 +00:00
return $str ;
2009-05-25 05:20:16 +00:00
}
}
/**
* Test case for Drupal unit tests .
*
* These tests can not access the database nor files . Calling any Drupal
* function that needs the database will throw exceptions . These include
2010-03-02 09:07:09 +00:00
* watchdog (), module_implements (), module_invoke_all () etc .
2009-05-25 05:20:16 +00:00
*/
class DrupalUnitTestCase extends DrupalTestCase {
/**
* Constructor for DrupalUnitTestCase .
*/
function __construct ( $test_id = NULL ) {
parent :: __construct ( $test_id );
$this -> skipClasses [ __CLASS__ ] = TRUE ;
}
2009-05-26 08:46:03 +00:00
2010-09-04 13:33:53 +00:00
/**
* Sets up unit test environment .
*
* Unlike DrupalWebTestCase :: setUp (), DrupalUnitTestCase :: setUp () does not
* install modules because tests are performed without accessing the database .
* Any required files must be explicitly included by the child class setUp ()
* method .
*/
2009-12-10 15:39:43 +00:00
protected function setUp () {
2010-06-28 19:57:34 +00:00
global $conf ;
2009-05-25 05:20:16 +00:00
2010-06-28 19:57:34 +00:00
// Store necessary current values before switching to the test environment.
2010-09-01 20:08:17 +00:00
$this -> originalFileDirectory = variable_get ( 'file_public_path' , conf_path () . '/files' );
2009-05-25 05:20:16 +00:00
2009-11-21 14:35:05 +00:00
// Reset all statics so that test is performed with a clean environment.
drupal_static_reset ();
2009-05-25 05:20:16 +00:00
// Generate temporary prefixed database to ensure that tests have a clean starting point.
2010-06-28 19:57:34 +00:00
$this -> databasePrefix = Database :: getConnection () -> prefixTables ( '{simpletest' . mt_rand ( 1000 , 1000000 ) . '}' );
2010-09-25 01:50:07 +00:00
// Create test directory.
$public_files_directory = $this -> originalFileDirectory . '/simpletest/' . substr ( $this -> databasePrefix , 10 );
file_prepare_directory ( $public_files_directory , FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS );
$conf [ 'file_public_path' ] = $public_files_directory ;
2010-06-28 19:57:34 +00:00
// Clone the current connection and replace the current prefix.
$connection_info = Database :: getConnectionInfo ( 'default' );
Database :: renameConnection ( 'default' , 'simpletest_original_default' );
foreach ( $connection_info as $target => $value ) {
$connection_info [ $target ][ 'prefix' ] = array (
'default' => $value [ 'prefix' ][ 'default' ] . $this -> databasePrefix ,
);
}
Database :: addConnectionInfo ( 'default' , 'default' , $connection_info [ 'default' ]);
2009-05-25 05:20:16 +00:00
2010-04-23 05:46:01 +00:00
// Set user agent to be consistent with web test case.
2010-06-28 19:57:34 +00:00
$_SERVER [ 'HTTP_USER_AGENT' ] = $this -> databasePrefix ;
2010-04-23 05:46:01 +00:00
2009-05-25 05:20:16 +00:00
// If locale is enabled then t() will try to access the database and
// subsequently will fail as the database is not accessible.
$module_list = module_list ();
if ( isset ( $module_list [ 'locale' ])) {
$this -> originalModuleList = $module_list ;
unset ( $module_list [ 'locale' ]);
2009-08-24 00:14:23 +00:00
module_list ( TRUE , FALSE , FALSE , $module_list );
2009-05-25 05:20:16 +00:00
}
}
2009-12-10 15:39:43 +00:00
protected function tearDown () {
2010-06-28 19:57:34 +00:00
global $conf ;
// Get back to the original connection.
Database :: removeConnection ( 'default' );
Database :: renameConnection ( 'simpletest_original_default' , 'default' );
$conf [ 'file_public_path' ] = $this -> originalFileDirectory ;
// Restore modules if necessary.
if ( isset ( $this -> originalModuleList )) {
module_list ( TRUE , FALSE , FALSE , $this -> originalModuleList );
2009-05-25 05:20:16 +00:00
}
}
}
/**
* Test case for typical Drupal tests .
*/
class DrupalWebTestCase extends DrupalTestCase {
2010-08-22 15:31:18 +00:00
/**
* The profile to install as a basis for testing .
*
* @ var string
*/
protected $profile = 'standard' ;
2009-05-25 05:20:16 +00:00
/**
* The URL currently loaded in the internal browser .
*
* @ var string
*/
protected $url ;
/**
* The handle of the current cURL connection .
*
* @ var resource
*/
protected $curlHandle ;
/**
* The headers of the page currently loaded in the internal browser .
*
* @ var Array
*/
protected $headers ;
/**
* The content of the page currently loaded in the internal browser .
*
* @ var string
*/
protected $content ;
/**
* The content of the page currently loaded in the internal browser ( plain text version ) .
*
* @ var string
*/
protected $plainTextContent ;
2010-09-19 18:39:18 +00:00
/**
* The value of the Drupal . settings JavaScript variable for the page currently loaded in the internal browser .
*
* @ var Array
*/
protected $drupalSettings ;
2009-05-25 05:20:16 +00:00
/**
* The parsed version of the page .
*
* @ var SimpleXMLElement
*/
protected $elements = NULL ;
/**
* The current user logged in using the internal browser .
*
* @ var bool
*/
protected $loggedInUser = FALSE ;
/**
* The current cookie file used by cURL .
*
* We do not reuse the cookies in further runs , so we do not need a file
* but we still need cookie handling , so we set the jar to NULL .
*/
protected $cookieFile = NULL ;
/**
* Additional cURL options .
*
* DrupalWebTestCase itself never sets this but always obeys what is set .
*/
protected $additionalCurlOptions = array ();
/**
* The original user , before it was changed to a clean uid = 1 for testing purposes .
*
* @ var object
*/
protected $originalUser = NULL ;
2010-03-07 08:10:26 +00:00
/**
* The original shutdown handlers array , before it was cleaned for testing purposes .
*
* @ var array
*/
protected $originalShutdownCallbacks = array ();
2009-12-30 11:41:52 +00:00
/**
* HTTP authentication method
*/
protected $httpauth_method = CURLAUTH_BASIC ;
2009-05-25 05:20:16 +00:00
/**
* HTTP authentication credentials ( < username >:< password > ) .
*/
protected $httpauth_credentials = NULL ;
2009-05-30 07:09:02 +00:00
/**
* The current session name , if available .
*/
protected $session_name = NULL ;
/**
* The current session ID , if available .
*/
protected $session_id = NULL ;
2009-12-28 12:06:49 +00:00
/**
* Whether the files were copied to the test files directory .
*/
protected $generatedTestFiles = FALSE ;
2010-03-03 08:10:33 +00:00
/**
* The number of redirects followed during the handling of a request .
*/
protected $redirect_count ;
2009-05-25 05:20:16 +00:00
/**
* Constructor for DrupalWebTestCase .
*/
function __construct ( $test_id = NULL ) {
parent :: __construct ( $test_id );
$this -> skipClasses [ __CLASS__ ] = TRUE ;
}
2008-12-05 22:18:46 +00:00
/**
* Get a node from the database based on its title .
*
* @ param title
* A node title , usually generated by $this -> randomName () .
2010-11-30 19:31:47 +00:00
* @ param $reset
* ( optional ) Whether to reset the internal node_load () cache .
2008-12-05 22:18:46 +00:00
*
* @ return
* A node object matching $title .
*/
2010-11-30 19:31:47 +00:00
function drupalGetNodeByTitle ( $title , $reset = FALSE ) {
$nodes = node_load_multiple ( array (), array ( 'title' => $title ), $reset );
2008-12-05 22:18:46 +00:00
// Load the first node returned from the database.
$returned_node = reset ( $nodes );
return $returned_node ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Creates a node based on default settings .
*
2008-06-24 21:51:03 +00:00
* @ param $settings
* An associative array of settings to change from the defaults , keys are
2009-06-12 08:39:40 +00:00
* node properties , for example 'title' => 'Hello, world!' .
2008-11-26 13:48:50 +00:00
* @ return
* Created node object .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function drupalCreateNode ( $settings = array ()) {
2009-06-01 11:35:09 +00:00
// Populate defaults array.
2009-04-22 09:57:10 +00:00
$settings += array (
2009-12-02 19:26:23 +00:00
'body' => array ( LANGUAGE_NONE => array ( array ())),
2010-01-09 21:54:01 +00:00
'title' => $this -> randomName ( 8 ),
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
'comment' => 2 ,
2008-09-17 07:11:59 +00:00
'changed' => REQUEST_TIME ,
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
'moderate' => 0 ,
'promote' => 0 ,
'revision' => 1 ,
'log' => '' ,
'status' => 1 ,
'sticky' => 0 ,
'type' => 'page' ,
'revisions' => NULL ,
2009-12-02 19:26:23 +00:00
'language' => LANGUAGE_NONE ,
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
);
2009-04-22 09:57:10 +00:00
// Use the original node's created time for existing nodes.
if ( isset ( $settings [ 'created' ]) && ! isset ( $settings [ 'date' ])) {
$settings [ 'date' ] = format_date ( $settings [ 'created' ], 'custom' , 'Y-m-d H:i:s O' );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2009-04-22 09:57:10 +00:00
// If the node's user uid is not specified manually, use the currently
// logged in user if available, or else the user running the test.
if ( ! isset ( $settings [ 'uid' ])) {
if ( $this -> loggedInUser ) {
$settings [ 'uid' ] = $this -> loggedInUser -> uid ;
}
else {
global $user ;
$settings [ 'uid' ] = $user -> uid ;
}
}
2009-06-12 08:39:40 +00:00
// Merge body field value and format separately.
$body = array (
'value' => $this -> randomName ( 32 ),
- Patch #11218 by David_Rothstein, sun, quicksketch, duncf, awood456, dropcube, mgifford | pwolanin, dww, RobRoy, Crell, webchick, beginner, ray007, bjaspan, chx, Gábor Hojtsy, Steven, Dries, lutegrass, sym, guardian, matt2000, geerlingguy, SeanBannister, matt westgate, com2, praseodym: allow default text formats per role, and integrate text format permissions.
2009-09-20 07:32:19 +00:00
'format' => filter_default_format (),
2009-06-12 08:39:40 +00:00
);
2009-12-02 19:26:23 +00:00
$settings [ 'body' ][ $settings [ 'language' ]][ 0 ] += $body ;
2009-06-12 08:39:40 +00:00
2009-04-22 09:57:10 +00:00
$node = ( object ) $settings ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
node_save ( $node );
2009-06-01 11:35:09 +00:00
// Small hack to link revisions to our test user.
2009-05-30 11:17:32 +00:00
db_update ( 'node_revision' )
-> fields ( array ( 'uid' => $node -> uid ))
-> condition ( 'vid' , $node -> vid )
-> execute ();
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
return $node ;
}
/**
* Creates a custom content type based on default settings .
*
2008-06-24 21:51:03 +00:00
* @ param $settings
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
* An array of settings to change from the defaults .
* Example : 'type' => 'foo' .
2008-06-24 21:51:03 +00:00
* @ return
* Created content type .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function drupalCreateContentType ( $settings = array ()) {
2009-06-01 11:35:09 +00:00
// Find a non-existent random type name.
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
do {
2009-04-29 12:08:28 +00:00
$name = strtolower ( $this -> randomName ( 8 ));
2009-06-04 03:33:29 +00:00
} while ( node_type_get_type ( $name ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
2009-06-01 11:35:09 +00:00
// Populate defaults array.
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$defaults = array (
'type' => $name ,
'name' => $name ,
2009-09-25 15:12:56 +00:00
'base' => 'node_content' ,
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
'description' => '' ,
'help' => '' ,
'title_label' => 'Title' ,
'body_label' => 'Body' ,
'has_title' => 1 ,
'has_body' => 1 ,
);
2009-06-01 11:35:09 +00:00
// Imposed values for a custom type.
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$forced = array (
'orig_type' => '' ,
'old_type' => '' ,
'module' => 'node' ,
'custom' => 1 ,
'modified' => 1 ,
'locked' => 0 ,
);
$type = $forced + $settings + $defaults ;
2010-05-06 05:59:31 +00:00
$type = ( object ) $type ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
2008-08-22 12:40:32 +00:00
$saved_type = node_type_save ( $type );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
node_types_rebuild ();
2009-09-25 15:12:56 +00:00
menu_rebuild ();
2010-05-05 06:55:25 +00:00
node_add_body_field ( $type );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
2008-08-22 12:40:32 +00:00
$this -> assertEqual ( $saved_type , SAVED_NEW , t ( 'Created content type %type.' , array ( '%type' => $type -> type )));
2008-09-10 04:13:01 +00:00
2008-08-22 12:40:32 +00:00
// Reset permissions so that permissions for this content type are available.
$this -> checkPermissions ( array (), TRUE );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
return $type ;
}
/**
* Get a list files that can be used in tests .
*
2008-06-24 21:51:03 +00:00
* @ param $type
* File type , possible values : 'binary' , 'html' , 'image' , 'javascript' , 'php' , 'sql' , 'text' .
* @ param $size
* File size in bytes to match . Please check the tests / files folder .
* @ return
* List of files that match filter .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function drupalGetTestFiles ( $type , $size = NULL ) {
2009-12-28 12:06:49 +00:00
if ( empty ( $this -> generatedTestFiles )) {
// Generate binary test files.
$lines = array ( 64 , 1024 );
$count = 0 ;
foreach ( $lines as $line ) {
simpletest_generate_file ( 'binary-' . $count ++ , 64 , $line , 'binary' );
}
// Generate text test files.
$lines = array ( 16 , 256 , 1024 , 2048 , 20480 );
$count = 0 ;
foreach ( $lines as $line ) {
simpletest_generate_file ( 'text-' . $count ++ , 64 , $line );
}
// Copy other test files from simpletest.
$original = drupal_get_path ( 'module' , 'simpletest' ) . '/files' ;
$files = file_scan_directory ( $original , '/(html|image|javascript|php|sql)-.*/' );
foreach ( $files as $file ) {
2010-09-01 20:08:17 +00:00
file_unmanaged_copy ( $file -> uri , variable_get ( 'file_public_path' , conf_path () . '/files' ));
2009-12-28 12:06:49 +00:00
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
2009-12-28 12:06:49 +00:00
$this -> generatedTestFiles = TRUE ;
}
$files = array ();
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// Make sure type is valid.
if ( in_array ( $type , array ( 'binary' , 'html' , 'image' , 'javascript' , 'php' , 'sql' , 'text' ))) {
2010-09-11 21:14:32 +00:00
$files = file_scan_directory ( 'public://' , '/' . $type . '\-.*/' );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// If size is set then remove any files that are not of that size.
if ( $size !== NULL ) {
foreach ( $files as $file ) {
2009-08-17 19:14:42 +00:00
$stats = stat ( $file -> uri );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
if ( $stats [ 'size' ] != $size ) {
2009-08-17 19:14:42 +00:00
unset ( $files [ $file -> uri ]);
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
}
}
usort ( $files , array ( $this , 'drupalCompareFiles' ));
return $files ;
}
/**
2008-10-12 08:30:05 +00:00
* Compare two files based on size and file name .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function drupalCompareFiles ( $file1 , $file2 ) {
2009-08-17 19:14:42 +00:00
$compare_size = filesize ( $file1 -> uri ) - filesize ( $file2 -> uri );
2009-03-08 21:52:10 +00:00
if ( $compare_size ) {
// Sort by file size.
return $compare_size ;
2008-10-12 08:30:05 +00:00
}
else {
2009-03-08 21:52:10 +00:00
// The files were the same size, so sort alphabetically.
return strnatcmp ( $file1 -> name , $file2 -> name );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
/**
* Create a user with a given set of permissions . The permissions correspond to the
* names given on the privileges page .
*
2008-06-24 21:51:03 +00:00
* @ param $permissions
* Array of permission names to assign to user .
* @ return
* A fully loaded user object with pass_raw property , or FALSE if account
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
* creation fails .
*/
2010-10-05 06:17:29 +00:00
protected function drupalCreateUser ( $permissions = array ( 'access comments' , 'access content' , 'post comments' , 'skip comment approval' )) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// Create a role with the given permission set.
2009-04-29 12:04:47 +00:00
if ( ! ( $rid = $this -> drupalCreateRole ( $permissions ))) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
return FALSE ;
}
// Create a user assigned to that role.
$edit = array ();
$edit [ 'name' ] = $this -> randomName ();
2008-05-10 06:55:09 +00:00
$edit [ 'mail' ] = $edit [ 'name' ] . '@example.com' ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$edit [ 'roles' ] = array ( $rid => $rid );
$edit [ 'pass' ] = user_password ();
$edit [ 'status' ] = 1 ;
2009-10-10 16:48:39 +00:00
$account = user_save ( drupal_anonymous_user (), $edit );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$this -> assertTrue ( ! empty ( $account -> uid ), t ( 'User created with name %name and pass %pass' , array ( '%name' => $edit [ 'name' ], '%pass' => $edit [ 'pass' ])), t ( 'User login' ));
if ( empty ( $account -> uid )) {
return FALSE ;
}
// Add the raw password so that we can log in as this user.
$account -> pass_raw = $edit [ 'pass' ];
return $account ;
}
/**
* Internal helper function ; Create a role with specified permissions .
*
2008-06-24 21:51:03 +00:00
* @ param $permissions
* Array of permission names to assign to role .
2009-07-30 08:31:05 +00:00
* @ param $name
* ( optional ) String for the name of the role . Defaults to a random string .
2008-06-24 21:51:03 +00:00
* @ return
* Role ID of newly created role , or FALSE if role creation failed .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2009-07-30 08:31:05 +00:00
protected function drupalCreateRole ( array $permissions , $name = NULL ) {
// Generate random name if it was not passed.
if ( ! $name ) {
$name = $this -> randomName ();
}
2009-08-27 20:25:29 +00:00
// Check the all the permissions strings are valid.
2008-06-08 19:09:50 +00:00
if ( ! $this -> checkPermissions ( $permissions )) {
return FALSE ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// Create new role.
2009-08-27 20:25:29 +00:00
$role = new stdClass ();
$role -> name = $name ;
user_role_save ( $role );
2009-09-19 10:54:36 +00:00
user_role_grant_permissions ( $role -> rid , $permissions );
2009-09-14 19:05:06 +00:00
2009-08-27 20:25:29 +00:00
$this -> assertTrue ( isset ( $role -> rid ), t ( 'Created role of name: @name, id: @rid' , array ( '@name' => $name , '@rid' => ( isset ( $role -> rid ) ? $role -> rid : t ( '-n/a-' )))), t ( 'Role' ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
if ( $role && ! empty ( $role -> rid )) {
2009-05-30 11:17:32 +00:00
$count = db_query ( 'SELECT COUNT(*) FROM {role_permission} WHERE rid = :rid' , array ( ':rid' => $role -> rid )) -> fetchField ();
2008-05-07 19:34:24 +00:00
$this -> assertTrue ( $count == count ( $permissions ), t ( 'Created permissions: @perms' , array ( '@perms' => implode ( ', ' , $permissions ))), t ( 'Role' ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
return $role -> rid ;
}
else {
return FALSE ;
}
}
2008-06-08 19:09:50 +00:00
/**
* Check to make sure that the array of permissions are valid .
*
2008-06-24 21:51:03 +00:00
* @ param $permissions
* Permissions to check .
* @ param $reset
* Reset cached available permissions .
* @ return
* TRUE or FALSE depending on whether the permissions are valid .
2008-06-08 19:09:50 +00:00
*/
2008-12-08 21:41:54 +00:00
protected function checkPermissions ( array $permissions , $reset = FALSE ) {
2009-07-11 06:14:48 +00:00
$available = & drupal_static ( __FUNCTION__ );
2008-06-08 19:09:50 +00:00
if ( ! isset ( $available ) || $reset ) {
2009-07-05 18:00:11 +00:00
$available = array_keys ( module_invoke_all ( 'permission' ));
2008-06-08 19:09:50 +00:00
}
$valid = TRUE ;
foreach ( $permissions as $permission ) {
if ( ! in_array ( $permission , $available )) {
$this -> fail ( t ( 'Invalid permission %permission.' , array ( '%permission' => $permission )), t ( 'Role' ));
$valid = FALSE ;
}
}
return $valid ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
2009-01-06 11:04:59 +00:00
* Log in a user with the internal browser .
*
* If a user is already logged in , then the current user is logged out before
* logging in the specified user .
*
* Please note that neither the global $user nor the passed in user object is
* populated with data of the logged in user . If you need full access to the
* user object after logging in , it must be updated manually . If you also need
* access to the plain - text password of the user ( set by drupalCreateUser ()),
2010-01-11 16:25:16 +00:00
* e . g . to log in the same user again , then it must be re - assigned manually .
2009-01-06 11:04:59 +00:00
* For example :
* @ code
* // Create a user.
* $account = $this -> drupalCreateUser ( array ());
* $this -> drupalLogin ( $account );
* // Load real user object.
* $pass_raw = $account -> pass_raw ;
* $account = user_load ( $account -> uid );
* $account -> pass_raw = $pass_raw ;
* @ endcode
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $user
2010-01-11 16:25:16 +00:00
* User object representing the user to log in .
2009-01-06 11:04:59 +00:00
*
* @ see drupalCreateUser ()
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-12-11 20:35:37 +00:00
protected function drupalLogin ( stdClass $user ) {
2009-04-22 09:57:10 +00:00
if ( $this -> loggedInUser ) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$this -> drupalLogout ();
}
$edit = array (
'name' => $user -> name ,
'pass' => $user -> pass_raw
);
$this -> drupalPost ( 'user' , $edit , t ( 'Log in' ));
2009-06-10 19:57:13 +00:00
// If a "log out" link appears on the page, it is almost certainly because
// the login was successful.
$pass = $this -> assertLink ( t ( 'Log out' ), 0 , t ( 'User %name successfully logged in.' , array ( '%name' => $user -> name )), t ( 'User login' ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
2009-04-22 09:57:10 +00:00
if ( $pass ) {
$this -> loggedInUser = $user ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2009-05-30 07:09:02 +00:00
/**
* Generate a token for the currently logged in user .
*/
protected function drupalGetToken ( $value = '' ) {
$private_key = drupal_get_private_key ();
2010-05-01 08:12:23 +00:00
return drupal_hmac_base64 ( $value , $this -> session_id . $private_key );
2009-05-30 07:09:02 +00:00
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/*
* Logs a user out of the internal browser , then check the login page to confirm logout .
*/
2008-11-26 13:48:50 +00:00
protected function drupalLogout () {
2009-07-01 12:47:30 +00:00
// Make a request to the logout page, and redirect to the user page, the
// idea being if you were properly logged out you should be seeing a login
// screen.
2010-06-29 18:24:10 +00:00
$this -> drupalGet ( 'user/logout' );
$this -> drupalGet ( 'user' );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$pass = $this -> assertField ( 'name' , t ( 'Username field found.' ), t ( 'Logout' ));
$pass = $pass && $this -> assertField ( 'pass' , t ( 'Password field found.' ), t ( 'Logout' ));
2009-04-22 09:57:10 +00:00
if ( $pass ) {
$this -> loggedInUser = FALSE ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2008-06-09 08:11:45 +00:00
* Generates a random database prefix , runs the install scripts on the
* prefixed database and enable the specified modules . After installation
* many caches are flushed and the internal browser is setup so that the
* page requests will run on the new prefix . A temporary files directory
2008-06-05 21:55:45 +00:00
* is created with the same name as the database prefix .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-09 08:11:45 +00:00
* @ param ...
2010-03-27 06:03:21 +00:00
* List of modules to enable for the duration of the test . This can be
* either a single array or a variable number of string arguments .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2010-04-11 18:33:44 +00:00
protected function setUp () {
2010-06-28 19:57:34 +00:00
global $user , $language , $conf ;
// Generate a temporary prefixed database to ensure that tests have a clean starting point.
$this -> databasePrefix = 'simpletest' . mt_rand ( 1000 , 1000000 );
db_update ( 'simpletest_test_id' )
-> fields ( array ( 'last_prefix' => $this -> databasePrefix ))
-> condition ( 'test_id' , $this -> testId )
-> execute ();
// Clone the current connection and replace the current prefix.
$connection_info = Database :: getConnectionInfo ( 'default' );
Database :: renameConnection ( 'default' , 'simpletest_original_default' );
foreach ( $connection_info as $target => $value ) {
$connection_info [ $target ][ 'prefix' ] = array (
'default' => $value [ 'prefix' ][ 'default' ] . $this -> databasePrefix ,
);
}
Database :: addConnectionInfo ( 'default' , 'default' , $connection_info [ 'default' ]);
2008-05-28 13:11:11 +00:00
// Store necessary current values before switching to prefixed database.
2009-05-24 07:04:33 +00:00
$this -> originalLanguage = $language ;
$this -> originalLanguageDefault = variable_get ( 'language_default' );
2010-09-01 20:08:17 +00:00
$this -> originalFileDirectory = variable_get ( 'file_public_path' , conf_path () . '/files' );
2009-08-21 07:50:08 +00:00
$this -> originalProfile = drupal_get_profile ();
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$clean_url_original = variable_get ( 'clean_url' , 0 );
2008-05-28 13:11:11 +00:00
2010-03-07 08:10:26 +00:00
// Save and clean shutdown callbacks array because it static cached and
// will be changed by the test run. If we don't, then it will contain
// callbacks from both environments. So testing environment will try
// to call handlers from original environment.
$callbacks = & drupal_register_shutdown_function ();
$this -> originalShutdownCallbacks = $callbacks ;
$callbacks = array ();
2009-07-30 10:46:53 +00:00
// Create test directory ahead of installation so fatal errors and debug
// information can be logged during installation process.
2009-12-15 05:25:47 +00:00
// Use temporary files directory with the same prefix as the database.
2010-06-28 19:57:34 +00:00
$public_files_directory = $this -> originalFileDirectory . '/simpletest/' . substr ( $this -> databasePrefix , 10 );
2009-12-15 05:25:47 +00:00
$private_files_directory = $public_files_directory . '/private' ;
2009-12-25 10:24:29 +00:00
$temp_files_directory = $private_files_directory . '/temp' ;
2009-12-15 05:25:47 +00:00
// Create the directories
file_prepare_directory ( $public_files_directory , FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS );
file_prepare_directory ( $private_files_directory , FILE_CREATE_DIRECTORY );
2009-12-25 10:24:29 +00:00
file_prepare_directory ( $temp_files_directory , FILE_CREATE_DIRECTORY );
2009-12-28 12:06:49 +00:00
$this -> generatedTestFiles = FALSE ;
2009-07-30 10:46:53 +00:00
// Log fatal errors.
ini_set ( 'log_errors' , 1 );
2009-12-15 05:25:47 +00:00
ini_set ( 'error_log' , $public_files_directory . '/error.log' );
2009-07-30 10:46:53 +00:00
2010-03-02 09:07:09 +00:00
// Reset all statics and variables to perform tests in a clean environment.
2010-01-15 03:07:34 +00:00
$conf = array ();
2009-11-21 14:35:05 +00:00
drupal_static_reset ();
2010-06-28 19:57:34 +00:00
// Set the test information for use in other parts of Drupal.
$test_info = & $GLOBALS [ 'drupal_test_info' ];
$test_info [ 'test_run_id' ] = $this -> databasePrefix ;
$test_info [ 'in_child_site' ] = FALSE ;
2008-09-20 20:22:25 +00:00
include_once DRUPAL_ROOT . '/includes/install.inc' ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
drupal_install_system ();
2008-05-28 13:11:11 +00:00
2008-11-30 07:04:45 +00:00
$this -> preloadRegistry ();
2010-05-10 06:38:23 +00:00
// Set path variables.
variable_set ( 'file_public_path' , $public_files_directory );
variable_set ( 'file_private_path' , $private_files_directory );
variable_set ( 'file_temporary_path' , $temp_files_directory );
2010-08-22 15:31:18 +00:00
// Include the testing profile.
variable_set ( 'install_profile' , $this -> profile );
$profile_details = install_profile_info ( $this -> profile , 'en' );
2009-07-15 02:08:41 +00:00
2010-08-22 15:31:18 +00:00
// Install the modules specified by the testing profile.
2010-03-02 09:07:09 +00:00
module_enable ( $profile_details [ 'dependencies' ], FALSE );
2009-06-12 08:39:40 +00:00
2010-03-27 06:03:21 +00:00
// Install modules needed for this test. This could have been passed in as
// either a single array argument or a variable number of string arguments.
// @todo Remove this compatibility layer in Drupal 8, and only accept
// $modules as a single array argument.
2010-04-11 18:33:44 +00:00
$modules = func_get_args ();
if ( isset ( $modules [ 0 ]) && is_array ( $modules [ 0 ])) {
$modules = $modules [ 0 ];
2010-03-27 06:03:21 +00:00
}
if ( $modules ) {
2010-03-02 09:07:09 +00:00
module_enable ( $modules , TRUE );
2009-06-12 08:39:40 +00:00
}
2008-05-28 13:11:11 +00:00
2010-08-22 15:31:18 +00:00
// Run the profile tasks.
$install_profile_module_exists = db_query ( " SELECT 1 FROM { system} WHERE type = 'module' AND name = :name " , array (
2010-08-27 12:36:53 +00:00
':name' => $this -> profile ,
)) -> fetchField ();
2010-08-22 15:31:18 +00:00
if ( $install_profile_module_exists ) {
module_enable ( array ( $this -> profile ), FALSE );
}
2008-05-28 13:11:11 +00:00
2010-09-01 02:05:36 +00:00
// Reset/rebuild all data structures after enabling the modules.
$this -> resetAll ();
2010-03-02 09:07:09 +00:00
2010-02-09 12:28:39 +00:00
// Run cron once in that environment, as install.php does at the end of
// the installation process.
drupal_cron_run ();
2008-12-18 00:42:55 +00:00
// Log in with a clean $user.
$this -> originalUser = $user ;
drupal_save_session ( FALSE );
2009-03-14 23:01:38 +00:00
$user = user_load ( 1 );
2008-12-18 00:42:55 +00:00
2008-05-28 13:11:11 +00:00
// Restore necessary variables.
2009-07-28 12:13:47 +00:00
variable_set ( 'install_task' , 'done' );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
variable_set ( 'clean_url' , $clean_url_original );
2008-12-07 07:55:24 +00:00
variable_set ( 'site_mail' , 'simpletest@example.com' );
2010-04-11 18:33:44 +00:00
variable_set ( 'date_default_timezone' , date_default_timezone_get ());
2009-05-24 07:04:33 +00:00
// Set up English language.
unset ( $GLOBALS [ 'conf' ][ 'language_default' ]);
$language = language_default ();
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
2009-12-15 05:25:47 +00:00
// Use the test mail class instead of the default mail handler class.
variable_set ( 'mail_system' , array ( 'default-system' => 'TestingMailSystem' ));
2009-07-07 07:50:53 +00:00
2009-08-05 15:58:35 +00:00
drupal_set_time_limit ( $this -> timeLimit );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2008-11-30 07:04:45 +00:00
/**
2010-09-01 02:05:36 +00:00
* Preload the registry from the testing site .
*
* This method is called by DrupalWebTestCase :: setUp (), and preloads the
2008-12-11 20:35:37 +00:00
* registry from the testing site to cut down on the time it takes to
2010-09-01 02:05:36 +00:00
* set up a clean environment for the current test run .
2008-12-11 20:35:37 +00:00
*/
2008-11-30 07:04:45 +00:00
protected function preloadRegistry () {
2010-12-22 21:34:13 +00:00
// Use two separate queries, each with their own connections: copy the
// {registry} and {registry_file} tables over from the parent installation
// to the child installation.
2010-06-28 19:57:34 +00:00
$original_connection = Database :: getConnection ( 'default' , 'simpletest_original_default' );
2010-12-22 21:34:13 +00:00
$test_connection = Database :: getConnection ();
foreach ( array ( 'registry' , 'registry_file' ) as $table ) {
// Find the records from the parent database.
$source_query = $original_connection
-> select ( $table , array (), array ( 'fetch' => PDO :: FETCH_ASSOC ))
-> fields ( $table );
$dest_query = $test_connection -> insert ( $table );
$first = TRUE ;
foreach ( $source_query -> execute () as $row ) {
if ( $first ) {
$dest_query -> fields ( array_keys ( $row ));
$first = FALSE ;
}
// Insert the records into the child database.
$dest_query -> values ( $row );
}
$dest_query -> execute ();
}
2008-11-30 07:04:45 +00:00
}
2010-09-01 02:05:36 +00:00
/**
* Reset all data structures after having enabled new modules .
*
* This method is called by DrupalWebTestCase :: setUp () after enabling
* the requested modules . It must be called again when additional modules
* are enabled later .
*/
protected function resetAll () {
2010-12-18 01:50:16 +00:00
// Reset all static variables.
2010-09-01 02:05:36 +00:00
drupal_static_reset ();
2010-12-18 01:50:16 +00:00
// Reset the list of enabled modules.
module_list ( TRUE );
// Reset cached schema for new database prefix. This must be done before
// drupal_flush_all_caches() so rebuilds can make use of the schema of
// modules enabled on the cURL side.
drupal_get_schema ( NULL , TRUE );
// Perform rebuilds and flush remaining caches.
2010-09-01 02:05:36 +00:00
drupal_flush_all_caches ();
// Reload global $conf array and permissions.
$this -> refreshVariables ();
$this -> checkPermissions ( array (), TRUE );
}
2008-05-28 13:11:11 +00:00
/**
* Refresh the in - memory set of variables . Useful after a page request is made
* that changes a variable in a different thread .
*
* In other words calling a settings page with $this -> drupalPost () with a changed
* value would update a variable to reflect that change , but in the thread that
* made the call ( thread running the test ) the changed variable would not be
* picked up .
*
* This method clears the variables cache and loads a fresh copy from the database
* to ensure that the most up - to - date set of variables is loaded .
*/
2008-11-26 13:48:50 +00:00
protected function refreshVariables () {
2008-05-28 13:11:11 +00:00
global $conf ;
2009-11-10 22:06:09 +00:00
cache_clear_all ( 'variables' , 'cache_bootstrap' );
2009-07-14 11:46:55 +00:00
$conf = variable_initialize ();
2008-05-28 13:11:11 +00:00
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Delete created files and temporary files directory , delete the tables created by setUp (),
* and reset the database prefix .
*/
2008-11-26 13:48:50 +00:00
protected function tearDown () {
2010-06-28 19:57:34 +00:00
global $user , $language ;
2009-05-26 08:46:03 +00:00
2009-07-30 10:46:53 +00:00
// In case a fatal error occured that was not in the test process read the
// log to pick up any fatal errors.
2010-06-28 19:57:34 +00:00
simpletest_log_read ( $this -> testId , $this -> databasePrefix , get_class ( $this ), TRUE );
2009-07-30 10:46:53 +00:00
2009-08-31 18:30:27 +00:00
$emailCount = count ( variable_get ( 'drupal_test_email_collector' , array ()));
2009-05-26 08:46:03 +00:00
if ( $emailCount ) {
2010-05-29 13:51:27 +00:00
$message = format_plural ( $emailCount , '1 e-mail was sent during this test.' , '@count e-mails were sent during this test.' );
2009-05-26 08:46:03 +00:00
$this -> pass ( $message , t ( 'E-mail' ));
}
2010-06-28 19:57:34 +00:00
// Delete temporary files directory.
file_unmanaged_delete_recursive ( $this -> originalFileDirectory . '/simpletest/' . substr ( $this -> databasePrefix , 10 ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
2010-06-28 19:57:34 +00:00
// Remove all prefixed tables (all the tables in the schema).
$schema = drupal_get_schema ( NULL , TRUE );
foreach ( $schema as $name => $table ) {
db_drop_table ( $name );
}
2008-05-28 13:11:11 +00:00
2010-06-28 19:57:34 +00:00
// Get back to the original connection.
Database :: removeConnection ( 'default' );
Database :: renameConnection ( 'simpletest_original_default' , 'default' );
2010-03-07 08:10:26 +00:00
2010-06-28 19:57:34 +00:00
// Restore original shutdown callbacks array to prevent original
// environment of calling handlers from test run.
$callbacks = & drupal_register_shutdown_function ();
$callbacks = $this -> originalShutdownCallbacks ;
2008-12-18 00:42:55 +00:00
2010-06-28 19:57:34 +00:00
// Return the user to the original one.
$user = $this -> originalUser ;
drupal_save_session ( TRUE );
2008-05-28 13:11:11 +00:00
2010-06-28 19:57:34 +00:00
// Ensure that internal logged in variable and cURL options are reset.
$this -> loggedInUser = FALSE ;
$this -> additionalCurlOptions = array ();
2008-06-03 19:53:42 +00:00
2010-06-28 19:57:34 +00:00
// Reload module list and implementations to ensure that test module hooks
// aren't called after tests.
module_list ( TRUE );
module_implements ( '' , FALSE , TRUE );
2009-02-06 00:30:36 +00:00
2010-06-28 19:57:34 +00:00
// Reset the Field API.
field_cache_clear ();
2009-05-26 08:46:03 +00:00
2010-06-28 19:57:34 +00:00
// Rebuild caches.
$this -> refreshVariables ();
2008-06-03 19:53:42 +00:00
2010-06-28 19:57:34 +00:00
// Reset language.
$language = $this -> originalLanguage ;
if ( $this -> originalLanguageDefault ) {
$GLOBALS [ 'conf' ][ 'language_default' ] = $this -> originalLanguageDefault ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2010-06-28 19:57:34 +00:00
// Close the CURL handler.
$this -> curlClose ();
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2008-11-23 18:12:08 +00:00
* Initializes the cURL connection .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2009-04-25 22:35:49 +00:00
* If the simpletest_httpauth_credentials variable is set , this function will
* add HTTP authentication headers . This is necessary for testing sites that
* are protected by login credentials from public access .
* See the description of $curl_options for other options .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-23 18:12:08 +00:00
protected function curlInitialize () {
2010-06-28 19:57:34 +00:00
global $base_url ;
2009-07-22 04:45:35 +00:00
2008-11-26 13:48:50 +00:00
if ( ! isset ( $this -> curlHandle )) {
$this -> curlHandle = curl_init ();
2010-07-19 21:54:46 +00:00
$curl_options = array (
2008-11-26 13:48:50 +00:00
CURLOPT_COOKIEJAR => $this -> cookieFile ,
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
CURLOPT_URL => $base_url ,
2010-03-03 08:10:33 +00:00
CURLOPT_FOLLOWLOCATION => FALSE ,
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
CURLOPT_RETURNTRANSFER => TRUE ,
2009-06-01 11:35:09 +00:00
CURLOPT_SSL_VERIFYPEER => FALSE , // Required to make the tests run on https.
CURLOPT_SSL_VERIFYHOST => FALSE , // Required to make the tests run on https.
2008-11-05 17:06:18 +00:00
CURLOPT_HEADERFUNCTION => array ( & $this , 'curlHeaderCallback' ),
2010-06-28 19:57:34 +00:00
CURLOPT_USERAGENT => $this -> databasePrefix ,
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
);
2009-04-25 22:35:49 +00:00
if ( isset ( $this -> httpauth_credentials )) {
2009-12-30 11:41:52 +00:00
$curl_options [ CURLOPT_HTTPAUTH ] = $this -> httpauth_method ;
2009-04-25 22:35:49 +00:00
$curl_options [ CURLOPT_USERPWD ] = $this -> httpauth_credentials ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2008-11-26 13:48:50 +00:00
curl_setopt_array ( $this -> curlHandle , $this -> additionalCurlOptions + $curl_options );
2009-05-30 07:09:02 +00:00
// By default, the child session name should be the same as the parent.
$this -> session_name = session_name ();
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2009-07-22 04:45:35 +00:00
// We set the user agent header on each request so as to use the current
// time and a new uniqid.
2010-06-28 19:57:34 +00:00
if ( preg_match ( '/simpletest\d+/' , $this -> databasePrefix , $matches )) {
2009-07-22 04:45:35 +00:00
curl_setopt ( $this -> curlHandle , CURLOPT_USERAGENT , drupal_generate_test_ua ( $matches [ 0 ]));
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2010-05-03 07:18:06 +00:00
* Initializes and executes a cURL request .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-11-26 13:48:50 +00:00
* @ param $curl_options
2010-05-03 07:18:06 +00:00
* An associative array of cURL options to set , where the keys are constants
* defined by the cURL library . For a list of valid options , see
* http :// www . php . net / manual / function . curl - setopt . php
2010-03-03 08:10:33 +00:00
* @ param $redirect
2010-05-03 07:18:06 +00:00
* FALSE if this is an initial request , TRUE if this request is the result
* of a redirect .
*
2008-06-24 21:51:03 +00:00
* @ return
2010-05-03 07:18:06 +00:00
* The content returned from the call to curl_exec () .
*
* @ see curlInitialize ()
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2010-03-03 08:10:33 +00:00
protected function curlExec ( $curl_options , $redirect = FALSE ) {
2008-11-23 18:12:08 +00:00
$this -> curlInitialize ();
2010-03-03 08:10:33 +00:00
// cURL incorrectly handles URLs with a fragment by including the
// fragment in the request to the server, causing some web servers
// to reject the request citing "400 - Bad Request". To prevent
// this, we strip the fragment from the request.
// TODO: Remove this for Drupal 8, since fixed in curl 7.20.0.
if ( ! empty ( $curl_options [ CURLOPT_URL ]) && strpos ( $curl_options [ CURLOPT_URL ], '#' )) {
$original_url = $curl_options [ CURLOPT_URL ];
$curl_options [ CURLOPT_URL ] = strtok ( $curl_options [ CURLOPT_URL ], '#' );
}
2008-11-26 13:48:50 +00:00
$url = empty ( $curl_options [ CURLOPT_URL ]) ? curl_getinfo ( $this -> curlHandle , CURLINFO_EFFECTIVE_URL ) : $curl_options [ CURLOPT_URL ];
2010-03-03 08:10:33 +00:00
2009-04-17 07:07:09 +00:00
if ( ! empty ( $curl_options [ CURLOPT_POST ])) {
// This is a fix for the Curl library to prevent Expect: 100-continue
// headers in POST requests, that may cause unexpected HTTP response
// codes from some webservers (like lighttpd that returns a 417 error
// code). It is done by setting an empty "Expect" header field that is
// not overwritten by Curl.
$curl_options [ CURLOPT_HTTPHEADER ][] = 'Expect:' ;
}
2008-11-26 13:48:50 +00:00
curl_setopt_array ( $this -> curlHandle , $this -> additionalCurlOptions + $curl_options );
2009-05-30 07:09:02 +00:00
2010-03-03 08:10:33 +00:00
if ( ! $redirect ) {
// Reset headers, the session ID and the redirect counter.
$this -> session_id = NULL ;
$this -> headers = array ();
$this -> redirect_count = 0 ;
}
$content = curl_exec ( $this -> curlHandle );
$status = curl_getinfo ( $this -> curlHandle , CURLINFO_HTTP_CODE );
// cURL incorrectly handles URLs with fragments, so instead of
// letting cURL handle redirects we take of them ourselves to
// to prevent fragments being sent to the web server as part
// of the request.
// TODO: Remove this for Drupal 8, since fixed in curl 7.20.0.
if ( in_array ( $status , array ( 300 , 301 , 302 , 303 , 305 , 307 )) && $this -> redirect_count < variable_get ( 'simpletest_maximum_redirects' , 5 )) {
if ( $this -> drupalGetHeader ( 'location' )) {
$this -> redirect_count ++ ;
$curl_options = array ();
$curl_options [ CURLOPT_URL ] = $this -> drupalGetHeader ( 'location' );
$curl_options [ CURLOPT_HTTPGET ] = TRUE ;
return $this -> curlExec ( $curl_options , TRUE );
}
}
2009-05-30 07:09:02 +00:00
2010-03-03 08:10:33 +00:00
$this -> drupalSetContent ( $content , isset ( $original_url ) ? $original_url : curl_getinfo ( $this -> curlHandle , CURLINFO_EFFECTIVE_URL ));
2009-03-14 21:28:50 +00:00
$message_vars = array (
'!method' => ! empty ( $curl_options [ CURLOPT_NOBODY ]) ? 'HEAD' : ( empty ( $curl_options [ CURLOPT_POSTFIELDS ]) ? 'GET' : 'POST' ),
2010-03-03 08:10:33 +00:00
'@url' => isset ( $original_url ) ? $original_url : $url ,
'@status' => $status ,
2010-06-23 13:17:51 +00:00
'!length' => format_size ( strlen ( $this -> drupalGetContent ()))
2009-03-14 21:28:50 +00:00
);
$message = t ( '!method @url returned @status (!length).' , $message_vars );
2010-06-23 13:17:51 +00:00
$this -> assertTrue ( $this -> drupalGetContent () !== FALSE , $message , t ( 'Browser' ));
2008-08-16 07:31:01 +00:00
return $this -> drupalGetContent ();
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2008-11-05 17:06:18 +00:00
/**
* Reads headers and registers errors received from the tested site .
*
* @ see _drupal_log_error () .
*
2008-11-26 13:48:50 +00:00
* @ param $curlHandler
* The cURL handler .
* @ param $header
* An header .
2008-11-05 17:06:18 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function curlHeaderCallback ( $curlHandler , $header ) {
2008-12-02 20:03:57 +00:00
$this -> headers [] = $header ;
2009-05-30 07:09:02 +00:00
2008-11-05 17:06:18 +00:00
// Errors are being sent via X-Drupal-Assertion-* headers,
// generated by _drupal_log_error() in the exact form required
// by DrupalWebTestCase::error().
if ( preg_match ( '/^X-Drupal-Assertion-[0-9]+: (.*)$/' , $header , $matches )) {
// Call DrupalWebTestCase::error() with the parameters from the header.
call_user_func_array ( array ( & $this , 'error' ), unserialize ( urldecode ( $matches [ 1 ])));
}
2009-05-30 07:09:02 +00:00
2009-09-05 13:05:31 +00:00
// Save cookies.
if ( preg_match ( '/^Set-Cookie: ([^=]+)=(.+)/' , $header , $matches )) {
$name = $matches [ 1 ];
$parts = array_map ( 'trim' , explode ( ';' , $matches [ 2 ]));
$value = array_shift ( $parts );
$this -> cookies [ $name ] = array ( 'value' => $value , 'secure' => in_array ( 'secure' , $parts ));
if ( $name == $this -> session_name ) {
if ( $value != 'deleted' ) {
$this -> session_id = $value ;
}
else {
$this -> session_id = NULL ;
}
2009-05-30 07:09:02 +00:00
}
}
2008-11-05 17:06:18 +00:00
// This is required by cURL.
return strlen ( $header );
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Close the cURL handler and unset the handler .
*/
protected function curlClose () {
2008-11-26 13:48:50 +00:00
if ( isset ( $this -> curlHandle )) {
curl_close ( $this -> curlHandle );
unset ( $this -> curlHandle );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
/**
2008-06-24 21:51:03 +00:00
* Parse content returned from curlExec using DOM and SimpleXML .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ return
* A SimpleXMLElement or FALSE on failure .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
protected function parse () {
if ( ! $this -> elements ) {
2009-12-15 05:22:05 +00:00
// DOM can load HTML soup. But, HTML soup can throw warnings, suppress
// them.
2010-10-31 13:08:29 +00:00
$htmlDom = new DOMDocument ();
@ $htmlDom -> loadHTML ( $this -> drupalGetContent ());
2009-12-15 05:22:05 +00:00
if ( $htmlDom ) {
2008-09-10 04:13:01 +00:00
$this -> pass ( t ( 'Valid HTML found on "@path"' , array ( '@path' => $this -> getUrl ())), t ( 'Browser' ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// It's much easier to work with simplexml than DOM, luckily enough
// we can just simply import our DOM tree.
2009-12-15 05:22:05 +00:00
$this -> elements = simplexml_import_dom ( $htmlDom );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
2008-05-22 19:32:52 +00:00
if ( ! $this -> elements ) {
$this -> fail ( t ( 'Parsed page successfully.' ), t ( 'Browser' ));
}
2008-06-26 19:31:31 +00:00
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
return $this -> elements ;
}
/**
* Retrieves a Drupal path or an absolute path .
*
2008-06-24 21:51:03 +00:00
* @ param $path
2008-07-17 21:10:39 +00:00
* Drupal path or URL to load into internal browser
2008-06-24 21:51:03 +00:00
* @ param $options
2008-11-26 13:48:50 +00:00
* Options to be forwarded to url () .
2008-12-03 14:51:53 +00:00
* @ param $headers
* An array containing additional HTTP request headers , each formatted as
* " name: value " .
2008-06-24 21:51:03 +00:00
* @ return
2008-11-26 13:48:50 +00:00
* The retrieved HTML string , also available as $this -> drupalGetContent ()
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-12-08 21:41:54 +00:00
protected function drupalGet ( $path , array $options = array (), array $headers = array ()) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$options [ 'absolute' ] = TRUE ;
2008-04-28 08:36:06 +00:00
2008-12-20 18:24:41 +00:00
// We re-using a CURL connection here. If that connection still has certain
// options set, it might change the GET into a POST. Make sure we clear out
2008-04-28 08:36:06 +00:00
// previous options.
2008-12-03 14:51:53 +00:00
$out = $this -> curlExec ( array ( CURLOPT_HTTPGET => TRUE , CURLOPT_URL => url ( $path , $options ), CURLOPT_NOBODY => FALSE , CURLOPT_HTTPHEADER => $headers ));
2008-05-28 13:11:11 +00:00
$this -> refreshVariables (); // Ensure that any changes to variables in the other thread are picked up.
2008-10-09 02:49:36 +00:00
// Replace original page output with new output from redirected page(s).
2009-12-25 10:30:07 +00:00
if ( $new = $this -> checkForMetaRefresh ()) {
2008-10-09 02:49:36 +00:00
$out = $new ;
}
2009-07-08 07:23:23 +00:00
$this -> verbose ( 'GET request to: ' . $path .
'<hr />Ending URL: ' . $this -> getUrl () .
'<hr />' . $out );
2008-05-28 13:11:11 +00:00
return $out ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2009-11-18 04:56:20 +00:00
/**
* Retrieve a Drupal path or an absolute path and JSON decode the result .
*/
2009-12-06 18:06:22 +00:00
protected function drupalGetAJAX ( $path , array $options = array (), array $headers = array ()) {
2009-11-21 00:43:42 +00:00
return drupal_json_decode ( $this -> drupalGet ( $path , $options , $headers ));
2009-11-18 04:56:20 +00:00
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
2008-06-03 13:45:07 +00:00
* Execute a POST request on a Drupal page .
* It will be done as usual POST request with SimpleBrowser .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $path
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
* Location of the post form . Either a Drupal path or an absolute path or
2008-08-18 18:40:07 +00:00
* NULL to post to the current page . For multi - stage forms you can set the
* path to NULL and have it post to the last received page . Example :
*
2009-11-18 04:56:20 +00:00
* @ code
2008-08-18 18:40:07 +00:00
* // First step in form.
* $edit = array ( ... );
* $this -> drupalPost ( 'some_url' , $edit , t ( 'Save' ));
*
* // Second step in form.
* $edit = array ( ... );
* $this -> drupalPost ( NULL , $edit , t ( 'Save' ));
2009-11-18 04:56:20 +00:00
* @ endcode
2008-06-24 21:51:03 +00:00
* @ param $edit
2008-12-30 16:43:20 +00:00
* Field data in an associative array . Changes the current input fields
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
* ( where possible ) to the values indicated . A checkbox can be set to
2008-07-05 07:19:31 +00:00
* TRUE to be checked and FALSE to be unchecked . Note that when a form
* contains file upload fields , other fields cannot start with the '@'
* character .
2008-08-18 18:40:07 +00:00
*
* Multiple select fields can be set using name [] and setting each of the
* possible values . Example :
2009-11-18 04:56:20 +00:00
* @ code
2008-08-18 18:40:07 +00:00
* $edit = array ();
* $edit [ 'name[]' ] = array ( 'value1' , 'value2' );
2009-11-18 04:56:20 +00:00
* @ endcode
2008-06-24 21:51:03 +00:00
* @ param $submit
2009-11-18 04:56:20 +00:00
* Value of the submit button whose click is to be emulated . For example ,
* t ( 'Save' ) . The processing of the request depends on this value . For
* example , a form may have one button with the value t ( 'Save' ) and another
* button with the value t ( 'Delete' ), and execute different code depending
* on which one is clicked .
*
* This function can also be called to emulate an AJAX submission . In this
* case , this value needs to be an array with the following keys :
* - path : A path to submit the form values to for AJAX - specific processing ,
* which is likely different than the $path parameter used for retrieving
* the initial form . Defaults to 'system/ajax' .
* - triggering_element : If the value for the 'path' key is 'system/ajax' or
2010-03-26 18:58:12 +00:00
* another generic AJAX processing path , this needs to be set to the name
* of the element . If the name doesn ' t identify the element uniquely , then
* this should instead be an array with a single key / value pair ,
* corresponding to the element name and value . The callback for the
* generic AJAX processing path uses this to find the #ajax information
* for the element , including which specific callback to use for
* processing the request .
*
* This can also be set to NULL in order to emulate an Internet Explorer
* submission of a form with a single text field , and pressing ENTER in that
* textfield : under these conditions , no button information is added to the
* POST data .
2008-06-26 19:31:31 +00:00
* @ param $options
* Options to be forwarded to url () .
2008-12-03 14:51:53 +00:00
* @ param $headers
* An array containing additional HTTP request headers , each formatted as
* " name: value " .
2010-03-27 18:32:06 +00:00
* @ param $form_html_id
* ( optional ) HTML ID of the form to be submitted . On some pages
2010-03-07 18:06:06 +00:00
* there are many identical forms , so just using the value of the submit
2010-03-27 18:32:06 +00:00
* button is not enough . For example : 'trigger-node-presave-assign-form' .
* Note that this is not the Drupal $form_id , but rather the HTML ID of the
* form , which is typically the same thing but with hyphens replacing the
* underscores .
2010-09-19 18:39:18 +00:00
* @ param $extra_post
* ( optional ) A string of additional data to append to the POST submission .
* This can be used to add POST data for which there are no HTML fields , as
* is done by drupalPostAJAX () . This string is literally appended to the
* POST data , so it must already be urlencoded and contain a leading " & "
* ( e . g . , " &extra_var1=hello+world&extra_var2=you%26me " ) .
*/
protected function drupalPost ( $path , $edit , $submit , array $options = array (), array $headers = array (), $form_html_id = NULL , $extra_post = NULL ) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$submit_matches = FALSE ;
2009-11-18 04:56:20 +00:00
$ajax = is_array ( $submit );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
if ( isset ( $path )) {
2009-12-25 10:30:07 +00:00
$this -> drupalGet ( $path , $options );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
if ( $this -> parse ()) {
$edit_save = $edit ;
// Let's iterate over all the forms.
2010-03-07 18:06:06 +00:00
$xpath = " //form " ;
2010-03-27 18:32:06 +00:00
if ( ! empty ( $form_html_id )) {
$xpath .= " [@id=' " . $form_html_id . " '] " ;
2010-03-07 18:06:06 +00:00
}
$forms = $this -> xpath ( $xpath );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
foreach ( $forms as $form ) {
2008-06-26 19:31:31 +00:00
// We try to set the fields of this form as specified in $edit.
$edit = $edit_save ;
$post = array ();
$upload = array ();
2009-11-18 04:56:20 +00:00
$submit_matches = $this -> handleForm ( $post , $edit , $upload , $ajax ? NULL : $submit , $form );
2010-12-05 18:40:17 +00:00
$action = isset ( $form [ 'action' ]) ? $this -> getAbsoluteUrl (( string ) $form [ 'action' ]) : $this -> getUrl ();
2009-11-18 04:56:20 +00:00
if ( $ajax ) {
$action = $this -> getAbsoluteUrl ( ! empty ( $submit [ 'path' ]) ? $submit [ 'path' ] : 'system/ajax' );
// AJAX callbacks verify the triggering element if necessary, so while
// we may eventually want extra code that verifies it in the
// handleForm() function, it's not currently a requirement.
$submit_matches = TRUE ;
}
2008-07-02 20:05:11 +00:00
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// We post only if we managed to handle every field in edit and the
2008-06-03 13:45:07 +00:00
// submit button matches.
2010-03-26 18:58:12 +00:00
if ( ! $edit && ( $submit_matches || ! isset ( $submit ))) {
2009-07-08 07:23:23 +00:00
$post_array = $post ;
2008-07-05 07:19:31 +00:00
if ( $upload ) {
// TODO: cURL handles file uploads for us, but the implementation
// is broken. This is a less than elegant workaround. Alternatives
// are being explored at #253506.
foreach ( $upload as $key => $file ) {
2009-08-17 19:14:42 +00:00
$file = drupal_realpath ( $file );
2008-11-09 03:07:54 +00:00
if ( $file && is_file ( $file )) {
$post [ $key ] = '@' . $file ;
}
2008-07-05 07:19:31 +00:00
}
}
else {
foreach ( $post as $key => $value ) {
// Encode according to application/x-www-form-urlencoded
// Both names and values needs to be urlencoded, according to
// http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1
$post [ $key ] = urlencode ( $key ) . '=' . urlencode ( $value );
}
2010-09-19 18:39:18 +00:00
$post = implode ( '&' , $post ) . $extra_post ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2008-12-03 14:51:53 +00:00
$out = $this -> curlExec ( array ( CURLOPT_URL => $action , CURLOPT_POST => TRUE , CURLOPT_POSTFIELDS => $post , CURLOPT_HTTPHEADER => $headers ));
2008-06-03 13:45:07 +00:00
// Ensure that any changes to variables in the other thread are picked up.
2008-06-09 08:11:45 +00:00
$this -> refreshVariables ();
2008-10-09 02:49:36 +00:00
// Replace original page output with new output from redirected page(s).
2009-12-25 10:30:07 +00:00
if ( $new = $this -> checkForMetaRefresh ()) {
2008-10-09 02:49:36 +00:00
$out = $new ;
}
2009-07-08 07:23:23 +00:00
$this -> verbose ( 'POST request to: ' . $path .
'<hr />Ending URL: ' . $this -> getUrl () .
'<hr />Fields: ' . highlight_string ( '<?php ' . var_export ( $post_array , TRUE ), TRUE ) .
'<hr />' . $out );
2008-05-28 13:11:11 +00:00
return $out ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
// We have not found a form which contained all fields of $edit.
foreach ( $edit as $name => $value ) {
$this -> fail ( t ( 'Failed to set field @name to @value' , array ( '@name' => $name , '@value' => $value )));
}
2010-03-26 18:58:12 +00:00
if ( ! $ajax && isset ( $submit )) {
2009-11-18 04:56:20 +00:00
$this -> assertTrue ( $submit_matches , t ( 'Found the @submit button' , array ( '@submit' => $submit )));
}
2008-08-18 18:40:07 +00:00
$this -> fail ( t ( 'Found the requested form fields at @path' , array ( '@path' => $path )));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
2009-11-18 04:56:20 +00:00
/**
2010-04-07 17:30:43 +00:00
* Execute an AJAX submission .
*
* This executes a POST as ajax . js does . It uses the returned JSON data , an
* array of commands , to update $this -> content using equivalent DOM
* manipulation as is used by ajax . js . It also returns the array of commands .
*
* @ see ajax . js
2009-11-18 04:56:20 +00:00
*/
2010-10-20 15:22:53 +00:00
protected function drupalPostAJAX ( $path , $edit , $triggering_element , $ajax_path = NULL , array $options = array (), array $headers = array (), $form_html_id = NULL , $ajax_settings = NULL ) {
2010-04-07 17:30:43 +00:00
// Get the content of the initial page prior to calling drupalPost(), since
// drupalPost() replaces $this->content.
if ( isset ( $path )) {
$this -> drupalGet ( $path , $options );
}
2010-09-19 18:39:18 +00:00
$content = $this -> content ;
$drupal_settings = $this -> drupalSettings ;
// Get the AJAX settings bound to the triggering element.
if ( ! isset ( $ajax_settings )) {
if ( is_array ( $triggering_element )) {
$xpath = '//*[@name="' . key ( $triggering_element ) . '" and @value="' . current ( $triggering_element ) . '"]' ;
}
else {
$xpath = '//*[@name="' . $triggering_element . '"]' ;
}
if ( isset ( $form_html_id )) {
$xpath = '//form[@id="' . $form_html_id . '"]' . $xpath ;
}
$element = $this -> xpath ( $xpath );
$element_id = ( string ) $element [ 0 ][ 'id' ];
$ajax_settings = $drupal_settings [ 'ajax' ][ $element_id ];
}
// Add extra information to the POST data as ajax.js does.
$extra_post = '' ;
if ( isset ( $ajax_settings [ 'submit' ])) {
foreach ( $ajax_settings [ 'submit' ] as $key => $value ) {
$extra_post .= '&' . urlencode ( $key ) . '=' . urlencode ( $value );
}
}
foreach ( $this -> xpath ( '//*[@id]' ) as $element ) {
$id = ( string ) $element [ 'id' ];
$extra_post .= '&' . urlencode ( 'ajax_html_ids[]' ) . '=' . urlencode ( $id );
}
2010-10-20 15:22:53 +00:00
// Unless a particular path is specified, use the one specified by the
// AJAX settings, or else 'system/ajax'.
if ( ! isset ( $ajax_path )) {
$ajax_path = isset ( $ajax_settings [ 'url' ]) ? $ajax_settings [ 'url' ] : 'system/ajax' ;
}
2010-09-19 18:39:18 +00:00
// Submit the POST request.
$return = drupal_json_decode ( $this -> drupalPost ( NULL , $edit , array ( 'path' => $ajax_path , 'triggering_element' => $triggering_element ), $options , $headers , $form_html_id , $extra_post ));
2010-04-07 17:30:43 +00:00
2010-09-19 18:39:18 +00:00
// Change the page content by applying the returned commands.
2010-04-07 17:30:43 +00:00
if ( ! empty ( $ajax_settings ) && ! empty ( $return )) {
2010-09-19 18:39:18 +00:00
// ajax.js applies some defaults to the settings object, so do the same
// for what's used by this function.
$ajax_settings += array (
'method' => 'replaceWith' ,
);
2010-04-07 17:30:43 +00:00
// DOM can load HTML soup. But, HTML soup can throw warnings, suppress
// them.
2010-10-31 13:08:29 +00:00
$dom = new DOMDocument ();
@ $dom -> loadHTML ( $content );
2010-04-07 17:30:43 +00:00
foreach ( $return as $command ) {
2010-09-19 18:39:18 +00:00
switch ( $command [ 'command' ]) {
case 'settings' :
$drupal_settings = array_merge_recursive ( $drupal_settings , $command [ 'settings' ]);
break ;
case 'insert' :
// @todo ajax.js can process commands that include a 'selector', but
// these are hard to emulate with DOMDocument. For now, we only
// implement 'insert' commands that use $ajax_settings['wrapper'].
if ( ! isset ( $command [ 'selector' ])) {
// $dom->getElementById() doesn't work when drupalPostAJAX() is
// invoked multiple times for a page, so use XPath instead. This
// also sets us up for adding support for $command['selector'] in
// the future, once we figure out how to transform a jQuery
// selector to XPath.
$xpath = new DOMXPath ( $dom );
$wrapperNode = $xpath -> query ( '//*[@id="' . $ajax_settings [ 'wrapper' ] . '"]' ) -> item ( 0 );
if ( $wrapperNode ) {
// ajax.js adds an enclosing DIV to work around a Safari bug.
$newDom = new DOMDocument ();
$newDom -> loadHTML ( '<div>' . $command [ 'data' ] . '</div>' );
$newNode = $dom -> importNode ( $newDom -> documentElement -> firstChild -> firstChild , TRUE );
$method = isset ( $command [ 'method' ]) ? $command [ 'method' ] : $ajax_settings [ 'method' ];
// The "method" is a jQuery DOM manipulation function. Emulate
// each one using PHP's DOMNode API.
switch ( $method ) {
case 'replaceWith' :
$wrapperNode -> parentNode -> replaceChild ( $newNode , $wrapperNode );
break ;
case 'append' :
$wrapperNode -> appendChild ( $newNode );
break ;
case 'prepend' :
// If no firstChild, insertBefore() falls back to
// appendChild().
$wrapperNode -> insertBefore ( $newNode , $wrapperNode -> firstChild );
break ;
case 'before' :
$wrapperNode -> parentNode -> insertBefore ( $newNode , $wrapperNode );
break ;
case 'after' :
// If no nextSibling, insertBefore() falls back to
// appendChild().
$wrapperNode -> parentNode -> insertBefore ( $newNode , $wrapperNode -> nextSibling );
break ;
case 'html' :
foreach ( $wrapperNode -> childNodes as $childNode ) {
$wrapperNode -> removeChild ( $childNode );
}
$wrapperNode -> appendChild ( $newNode );
break ;
2010-04-07 17:30:43 +00:00
}
2010-09-19 18:39:18 +00:00
}
2010-04-07 17:30:43 +00:00
}
2010-09-19 18:39:18 +00:00
break ;
// @todo Add suitable implementations for these commands in order to
// have full test coverage of what ajax.js can do.
case 'remove' :
break ;
case 'changed' :
break ;
case 'css' :
break ;
case 'data' :
break ;
case 'restripe' :
break ;
2010-04-07 17:30:43 +00:00
}
}
2010-09-19 18:39:18 +00:00
$content = $dom -> saveHTML ();
2010-04-07 17:30:43 +00:00
}
2010-09-19 18:39:18 +00:00
$this -> drupalSetContent ( $content );
$this -> drupalSetSettings ( $drupal_settings );
2010-04-07 17:30:43 +00:00
return $return ;
2009-11-18 04:56:20 +00:00
}
2009-10-13 05:37:46 +00:00
/**
* Runs cron in the Drupal installed by Simpletest .
*/
protected function cronRun () {
$this -> drupalGet ( $GLOBALS [ 'base_url' ] . '/cron.php' , array ( 'external' => TRUE , 'query' => array ( 'cron_key' => variable_get ( 'cron_key' , 'drupal' ))));
}
2008-10-09 02:49:36 +00:00
/**
2009-08-20 03:16:06 +00:00
* Check for meta refresh tag and if found call drupalGet () recursively . This
2008-10-09 02:49:36 +00:00
* function looks for the http - equiv attribute to be set to " Refresh "
* and is case - sensitive .
*
* @ return
* Either the new page content or FALSE .
*/
2009-08-20 03:16:06 +00:00
protected function checkForMetaRefresh () {
2009-11-02 03:12:05 +00:00
if ( strpos ( $this -> drupalGetContent (), '<meta ' ) && $this -> parse ()) {
2008-10-09 02:49:36 +00:00
$refresh = $this -> xpath ( '//meta[@http-equiv="Refresh"]' );
if ( ! empty ( $refresh )) {
// Parse the content attribute of the meta tag for the format:
// "[delay]: URL=[page_to_redirect_to]".
if ( preg_match ( '/\d+;\s*URL=(?P<url>.*)/i' , $refresh [ 0 ][ 'content' ], $match )) {
return $this -> drupalGet ( $this -> getAbsoluteUrl ( decode_entities ( $match [ 'url' ])));
}
}
}
return FALSE ;
}
2008-07-17 21:10:39 +00:00
/**
* Retrieves only the headers for a Drupal path or an absolute path .
*
* @ param $path
* Drupal path or URL to load into internal browser
* @ param $options
* Options to be forwarded to url () .
2008-12-03 14:51:53 +00:00
* @ param $headers
* An array containing additional HTTP request headers , each formatted as
* " name: value " .
2008-07-17 21:10:39 +00:00
* @ return
* The retrieved headers , also available as $this -> drupalGetContent ()
*/
2008-12-08 21:41:54 +00:00
protected function drupalHead ( $path , array $options = array (), array $headers = array ()) {
2008-07-17 21:10:39 +00:00
$options [ 'absolute' ] = TRUE ;
2008-12-03 14:51:53 +00:00
$out = $this -> curlExec ( array ( CURLOPT_NOBODY => TRUE , CURLOPT_URL => url ( $path , $options ), CURLOPT_HTTPHEADER => $headers ));
2008-07-17 21:10:39 +00:00
$this -> refreshVariables (); // Ensure that any changes to variables in the other thread are picked up.
return $out ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Handle form input related to drupalPost () . Ensure that the specified fields
2008-06-03 13:45:07 +00:00
* exist and attempt to create POST data in the correct manner for the particular
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
* field type .
*
2008-06-24 21:51:03 +00:00
* @ param $post
2008-06-03 13:45:07 +00:00
* Reference to array of post values .
2008-06-24 21:51:03 +00:00
* @ param $edit
2008-06-03 13:45:07 +00:00
* Reference to array of edit values to be checked against the form .
2008-06-24 21:51:03 +00:00
* @ param $submit
2008-06-03 13:45:07 +00:00
* Form submit button value .
2008-06-24 21:51:03 +00:00
* @ param $form
2008-06-03 13:45:07 +00:00
* Array of form elements .
2008-06-24 21:51:03 +00:00
* @ return
2008-06-03 13:45:07 +00:00
* Submit value matches a valid submit input in the form .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
protected function handleForm ( & $post , & $edit , & $upload , $submit , $form ) {
// Retrieve the form elements.
2010-03-12 14:38:37 +00:00
$elements = $form -> xpath ( './/input[not(@disabled)]|.//textarea[not(@disabled)]|.//select[not(@disabled)]' );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$submit_matches = FALSE ;
foreach ( $elements as $element ) {
// SimpleXML objects need string casting all the time.
2008-06-10 19:39:29 +00:00
$name = ( string ) $element [ 'name' ];
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// This can either be the type of <input> or the name of the tag itself
// for <select> or <textarea>.
2010-05-06 05:59:31 +00:00
$type = isset ( $element [ 'type' ]) ? ( string ) $element [ 'type' ] : $element -> getName ();
$value = isset ( $element [ 'value' ]) ? ( string ) $element [ 'value' ] : '' ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$done = FALSE ;
2008-06-24 21:51:03 +00:00
if ( isset ( $edit [ $name ])) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
switch ( $type ) {
case 'text' :
case 'textarea' :
2009-10-24 04:23:51 +00:00
case 'hidden' :
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
case 'password' :
$post [ $name ] = $edit [ $name ];
unset ( $edit [ $name ]);
break ;
case 'radio' :
if ( $edit [ $name ] == $value ) {
$post [ $name ] = $edit [ $name ];
unset ( $edit [ $name ]);
}
break ;
case 'checkbox' :
// To prevent checkbox from being checked.pass in a FALSE,
// otherwise the checkbox will be set to its value regardless
// of $edit.
if ( $edit [ $name ] === FALSE ) {
unset ( $edit [ $name ]);
continue 2 ;
}
else {
unset ( $edit [ $name ]);
$post [ $name ] = $value ;
}
break ;
case 'select' :
$new_value = $edit [ $name ];
$options = $this -> getAllOptions ( $element );
2009-11-20 05:14:13 +00:00
if ( is_array ( $new_value )) {
// Multiple select box.
if ( ! empty ( $new_value )) {
$index = 0 ;
$key = preg_replace ( '/\[\]$/' , '' , $name );
foreach ( $options as $option ) {
2010-05-06 05:59:31 +00:00
$option_value = ( string ) $option [ 'value' ];
2009-11-20 05:14:13 +00:00
if ( in_array ( $option_value , $new_value )) {
$post [ $key . '[' . $index ++ . ']' ] = $option_value ;
$done = TRUE ;
unset ( $edit [ $name ]);
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
2009-11-20 05:14:13 +00:00
else {
// No options selected: do not include any POST data for the
// element.
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$done = TRUE ;
2009-11-20 05:14:13 +00:00
unset ( $edit [ $name ]);
}
}
else {
// Single select box.
foreach ( $options as $option ) {
if ( $new_value == $option [ 'value' ]) {
$post [ $name ] = $new_value ;
unset ( $edit [ $name ]);
$done = TRUE ;
break ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
break ;
case 'file' :
$upload [ $name ] = $edit [ $name ];
unset ( $edit [ $name ]);
break ;
}
}
if ( ! isset ( $post [ $name ]) && ! $done ) {
switch ( $type ) {
case 'textarea' :
2010-05-06 05:59:31 +00:00
$post [ $name ] = ( string ) $element ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
break ;
case 'select' :
$single = empty ( $element [ 'multiple' ]);
$first = TRUE ;
$index = 0 ;
$key = preg_replace ( '/\[\]$/' , '' , $name );
$options = $this -> getAllOptions ( $element );
foreach ( $options as $option ) {
// For single select, we load the first option, if there is a
// selected option that will overwrite it later.
if ( $option [ 'selected' ] || ( $first && $single )) {
$first = FALSE ;
if ( $single ) {
2010-05-06 05:59:31 +00:00
$post [ $name ] = ( string ) $option [ 'value' ];
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
else {
2010-05-06 05:59:31 +00:00
$post [ $key . '[' . $index ++ . ']' ] = ( string ) $option [ 'value' ];
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
}
break ;
case 'file' :
break ;
case 'submit' :
case 'image' :
2010-03-26 18:58:12 +00:00
if ( isset ( $submit ) && $submit == $value ) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$post [ $name ] = $value ;
$submit_matches = TRUE ;
}
break ;
case 'radio' :
case 'checkbox' :
if ( ! isset ( $element [ 'checked' ])) {
break ;
}
// Deliberate no break.
default :
$post [ $name ] = $value ;
}
}
}
return $submit_matches ;
}
2010-03-31 20:05:06 +00:00
/**
* Builds an XPath query .
*
* Builds an XPath query by replacing placeholders in the query by the value
* of the arguments .
*
* XPath 1.0 ( the version supported by libxml2 , the underlying XML library
* used by PHP ) doesn ' t support any form of quotation . This function
* simplifies the building of XPath expression .
*
* @ param $xpath
* An XPath query , possibly with placeholders in the form ':name' .
* @ param $args
* An array of arguments with keys in the form ':name' matching the
* placeholders in the query . The values may be either strings or numeric
* values .
* @ return
* An XPath query with arguments replaced .
*/
protected function buildXPathQuery ( $xpath , array $args = array ()) {
// Replace placeholders.
foreach ( $args as $placeholder => $value ) {
// XPath 1.0 doesn't support a way to escape single or double quotes in a
// string literal. We split double quotes out of the string, and encode
// them separately.
if ( is_string ( $value )) {
// Explode the text at the quote characters.
$parts = explode ( '"' , $value );
// Quote the parts.
foreach ( $parts as & $part ) {
$part = '"' . $part . '"' ;
}
// Return the string.
$value = count ( $parts ) > 1 ? 'concat(' . implode ( ', \'"\', ' , $parts ) . ')' : $parts [ 0 ];
}
$xpath = preg_replace ( '/' . preg_quote ( $placeholder ) . '\b/' , $value , $xpath );
}
return $xpath ;
}
2008-08-22 12:35:55 +00:00
/**
2008-12-30 16:43:20 +00:00
* Perform an xpath search on the contents of the internal browser . The search
2008-08-22 12:35:55 +00:00
* is relative to the root element ( HTML tag normally ) of the page .
*
* @ param $xpath
* The xpath string to use in the search .
* @ return
* The return value of the xpath search . For details on the xpath string
2009-06-01 11:35:09 +00:00
* format and return values see the SimpleXML documentation ,
* http :// us . php . net / manual / function . simplexml - element - xpath . php .
2008-08-22 12:35:55 +00:00
*/
2010-03-31 20:05:06 +00:00
protected function xpath ( $xpath , array $arguments = array ()) {
2008-08-22 12:35:55 +00:00
if ( $this -> parse ()) {
2010-03-31 20:05:06 +00:00
$xpath = $this -> buildXPathQuery ( $xpath , $arguments );
2010-11-21 10:17:33 +00:00
$result = $this -> elements -> xpath ( $xpath );
// Some combinations of PHP / libxml versions return an empty array
// instead of the documented FALSE. Forcefully convert any falsish values
// to an empty array to allow foreach(...) constructions.
return $result ? $result : array ();
2008-08-22 12:35:55 +00:00
}
2010-03-31 20:05:06 +00:00
else {
return FALSE ;
}
2008-08-22 12:35:55 +00:00
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Get all option elements , including nested options , in a select .
*
2008-06-24 21:51:03 +00:00
* @ param $element
* The element for which to get the options .
* @ return
* Option elements in select .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function getAllOptions ( SimpleXMLElement $element ) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$options = array ();
// Add all options items.
foreach ( $element -> option as $option ) {
$options [] = $option ;
}
// Search option group children.
if ( isset ( $element -> optgroup )) {
2008-08-30 09:27:21 +00:00
foreach ( $element -> optgroup as $group ) {
$options = array_merge ( $options , $this -> getAllOptions ( $group ));
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
return $options ;
}
2008-08-23 07:42:54 +00:00
/**
* Pass if a link with the specified label is found , and optional with the
* specified index .
*
* @ param $label
* Text between the anchor tags .
* @ param $index
* Link position counting from zero .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
2009-06-16 04:43:47 +00:00
* @ return
* TRUE if the assertion succeeded , FALSE otherwise .
2008-08-23 07:42:54 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertLink ( $label , $index = 0 , $message = '' , $group = 'Other' ) {
2010-07-08 12:22:59 +00:00
$links = $this -> xpath ( '//a[normalize-space(text())=:label]' , array ( ':label' => $label ));
2009-09-19 11:20:34 +00:00
$message = ( $message ? $message : t ( 'Link with label %label found.' , array ( '%label' => $label )));
2009-06-11 04:16:24 +00:00
return $this -> assert ( isset ( $links [ $index ]), $message , $group );
2008-08-23 07:42:54 +00:00
}
/**
* Pass if a link with the specified label is not found .
*
* @ param $label
* Text between the anchor tags .
* @ param $index
* Link position counting from zero .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
2009-06-16 04:43:47 +00:00
* @ return
* TRUE if the assertion succeeded , FALSE otherwise .
2008-08-23 07:42:54 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertNoLink ( $label , $message = '' , $group = 'Other' ) {
2010-07-08 12:22:59 +00:00
$links = $this -> xpath ( '//a[normalize-space(text())=:label]' , array ( ':label' => $label ));
2009-09-19 11:20:34 +00:00
$message = ( $message ? $message : t ( 'Link with label %label not found.' , array ( '%label' => $label )));
2009-06-11 04:16:24 +00:00
return $this -> assert ( empty ( $links ), $message , $group );
2008-08-23 07:42:54 +00:00
}
2009-11-14 07:58:50 +00:00
/**
* Pass if a link containing a given href ( part ) is found .
*
* @ param $href
* The full or partial value of the 'href' attribute of the anchor tag .
* @ param $index
* Link position counting from zero .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
*
* @ return
* TRUE if the assertion succeeded , FALSE otherwise .
*/
protected function assertLinkByHref ( $href , $index = 0 , $message = '' , $group = 'Other' ) {
2010-03-31 20:05:06 +00:00
$links = $this -> xpath ( '//a[contains(@href, :href)]' , array ( ':href' => $href ));
2009-11-14 07:58:50 +00:00
$message = ( $message ? $message : t ( 'Link containing href %href found.' , array ( '%href' => $href )));
return $this -> assert ( isset ( $links [ $index ]), $message , $group );
}
/**
* Pass if a link containing a given href ( part ) is not found .
*
* @ param $href
* The full or partial value of the 'href' attribute of the anchor tag .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
*
* @ return
* TRUE if the assertion succeeded , FALSE otherwise .
*/
protected function assertNoLinkByHref ( $href , $message = '' , $group = 'Other' ) {
2010-03-31 20:05:06 +00:00
$links = $this -> xpath ( '//a[contains(@href, :href)]' , array ( ':href' => $href ));
2009-11-14 07:58:50 +00:00
$message = ( $message ? $message : t ( 'No link containing href %href found.' , array ( '%href' => $href )));
return $this -> assert ( empty ( $links ), $message , $group );
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Follows a link by name .
*
* Will click the first link found with this link text by default , or a
* later one if an index is given . Match is case insensitive with
* normalized space . The label is translated label . There is an assert
* for successful click .
*
2008-06-24 21:51:03 +00:00
* @ param $label
* Text between the anchor tags .
* @ param $index
* Link position counting from zero .
* @ return
* Page on success , or FALSE on failure .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function clickLink ( $label , $index = 0 ) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$url_before = $this -> getUrl ();
2010-07-08 12:22:59 +00:00
$urls = $this -> xpath ( '//a[normalize-space(text())=:label]' , array ( ':label' => $label ));
2008-09-19 02:47:38 +00:00
2008-08-22 12:35:55 +00:00
if ( isset ( $urls [ $index ])) {
$url_target = $this -> getAbsoluteUrl ( $urls [ $index ][ 'href' ]);
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2008-09-19 02:47:38 +00:00
2009-09-19 11:20:34 +00:00
$this -> assertTrue ( isset ( $urls [ $index ]), t ( 'Clicked link %label (@url_target) from @url_before' , array ( '%label' => $label , '@url_target' => $url_target , '@url_before' => $url_before )), t ( 'Browser' ));
2008-09-19 02:47:38 +00:00
2009-09-29 15:31:17 +00:00
if ( isset ( $url_target )) {
2008-09-19 02:47:38 +00:00
return $this -> drupalGet ( $url_target );
}
return FALSE ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
* Takes a path and returns an absolute path .
*
2008-06-24 21:51:03 +00:00
* @ param $path
2009-10-09 07:48:07 +00:00
* A path from the internal browser content .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
* @ return
2009-10-09 07:48:07 +00:00
* The $path with $base_url prepended , if necessary .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function getAbsoluteUrl ( $path ) {
2009-10-09 07:48:07 +00:00
global $base_url , $base_path ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$parts = parse_url ( $path );
if ( empty ( $parts [ 'host' ])) {
2009-10-09 07:48:07 +00:00
// Ensure that we have a string (and no xpath object).
$path = ( string ) $path ;
// Strip $base_path, if existent.
$length = strlen ( $base_path );
if ( substr ( $path , 0 , $length ) === $base_path ) {
$path = substr ( $path , $length );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2009-10-09 07:48:07 +00:00
// Ensure that we have an absolute path.
if ( $path [ 0 ] !== '/' ) {
$path = '/' . $path ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2009-10-09 07:48:07 +00:00
// Finally, prepend the $base_url.
$path = $base_url . $path ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
return $path ;
}
/**
* Get the current url from the cURL handler .
*
2008-06-24 21:51:03 +00:00
* @ return
* The current url .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function getUrl () {
return $this -> url ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2008-12-02 20:03:57 +00:00
/**
* Gets the HTTP response headers of the requested page . Normally we are only
* interested in the headers returned by the last request . However , if a page
* is redirected or HTTP authentication is in use , multiple requests will be
* required to retrieve the page . Headers from all requests may be requested
* by passing TRUE to this function .
*
* @ param $all_requests
* Boolean value specifying whether to return headers from all requests
* instead of just the last request . Defaults to FALSE .
* @ return
* A name / value array if headers from only the last request are requested .
* If headers from all requests are requested , an array of name / value
* arrays , one for each request .
*
* The pseudonym " :status " is used for the HTTP status line .
*
* Values for duplicate headers are stored as a single comma - separated list .
*/
protected function drupalGetHeaders ( $all_requests = FALSE ) {
$request = 0 ;
$headers = array ( $request => array ());
foreach ( $this -> headers as $header ) {
$header = trim ( $header );
if ( $header === '' ) {
$request ++ ;
}
else {
if ( strpos ( $header , 'HTTP/' ) === 0 ) {
$name = ':status' ;
$value = $header ;
}
else {
list ( $name , $value ) = explode ( ':' , $header , 2 );
$name = strtolower ( $name );
}
if ( isset ( $headers [ $request ][ $name ])) {
$headers [ $request ][ $name ] .= ',' . trim ( $value );
}
else {
$headers [ $request ][ $name ] = trim ( $value );
}
}
}
if ( ! $all_requests ) {
$headers = array_pop ( $headers );
}
return $headers ;
}
/**
* Gets the value of an HTTP response header . If multiple requests were
* required to retrieve the page , only the headers from the last request will
* be checked by default . However , if TRUE is passed as the second argument ,
* all requests will be processed from last to first until the header is
* found .
*
* @ param $name
* The name of the header to retrieve . Names are case - insensitive ( see RFC
* 2616 section 4.2 ) .
* @ param $all_requests
* Boolean value specifying whether to check all requests if the header is
* not found in the last request . Defaults to FALSE .
* @ return
* The HTTP header value or FALSE if not found .
*/
protected function drupalGetHeader ( $name , $all_requests = FALSE ) {
$name = strtolower ( $name );
$header = FALSE ;
if ( $all_requests ) {
foreach ( array_reverse ( $this -> drupalGetHeaders ( TRUE )) as $headers ) {
if ( isset ( $headers [ $name ])) {
$header = $headers [ $name ];
break ;
}
}
}
else {
$headers = $this -> drupalGetHeaders ();
if ( isset ( $headers [ $name ])) {
$header = $headers [ $name ];
}
}
return $header ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Gets the current raw HTML of requested page .
*/
2008-11-26 13:48:50 +00:00
protected function drupalGetContent () {
return $this -> content ;
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2010-09-19 18:39:18 +00:00
/**
* Gets the value of the Drupal . settings JavaScript variable for the currently loaded page .
*/
protected function drupalGetSettings () {
return $this -> drupalSettings ;
}
2009-05-26 08:46:03 +00:00
/**
* Gets an array containing all e - mails sent during this test case .
*
* @ param $filter
* An array containing key / value pairs used to filter the e - mails that are returned .
* @ return
* An array containing e - mail messages captured during the current test .
*/
protected function drupalGetMails ( $filter = array ()) {
2009-08-31 18:30:27 +00:00
$captured_emails = variable_get ( 'drupal_test_email_collector' , array ());
2009-05-26 08:46:03 +00:00
$filtered_emails = array ();
foreach ( $captured_emails as $message ) {
foreach ( $filter as $key => $value ) {
if ( ! isset ( $message [ $key ]) || $message [ $key ] != $value ) {
continue 2 ;
}
}
$filtered_emails [] = $message ;
}
return $filtered_emails ;
}
2008-08-16 07:31:01 +00:00
/**
* Sets the raw HTML content . This can be useful when a page has been fetched
* outside of the internal browser and assertions need to be made on the
* returned page .
*
* A good example would be when testing drupal_http_request () . After fetching
* the page the content can be set and page elements can be checked to ensure
* that the function worked properly .
*/
2008-11-26 13:48:50 +00:00
protected function drupalSetContent ( $content , $url = 'internal:' ) {
$this -> content = $content ;
$this -> url = $url ;
$this -> plainTextContent = FALSE ;
2008-08-16 07:31:01 +00:00
$this -> elements = FALSE ;
2010-09-19 18:39:18 +00:00
$this -> drupalSettings = array ();
if ( preg_match ( '/jQuery\.extend\(Drupal\.settings, (.*?)\);/' , $content , $matches )) {
$this -> drupalSettings = drupal_json_decode ( $matches [ 1 ]);
}
}
/**
* Sets the value of the Drupal . settings JavaScript variable for the currently loaded page .
*/
protected function drupalSetSettings ( $settings ) {
$this -> drupalSettings = $settings ;
2008-08-16 07:31:01 +00:00
}
2010-09-28 03:30:37 +00:00
/**
* Pass if the internal browser ' s URL matches the given path .
*
* @ param $path
* The expected system path .
* @ param $options
* ( optional ) Any additional options to pass for $path to url () .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
*
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertUrl ( $path , array $options = array (), $message = '' , $group = 'Other' ) {
if ( ! $message ) {
$message = t ( 'Current URL is @url.' , array (
'@url' => var_export ( url ( $path , $options ), TRUE ),
));
}
$options [ 'absolute' ] = TRUE ;
return $this -> assertEqual ( $this -> getUrl (), url ( $path , $options ), $message , $group );
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Pass if the raw text IS found on the loaded page , fail otherwise . Raw text
* refers to the raw HTML that the page generated .
*
2008-06-24 21:51:03 +00:00
* @ param $raw
2008-11-26 13:48:50 +00:00
* Raw ( HTML ) string to look for .
2008-06-24 21:51:03 +00:00
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2009-05-03 09:30:21 +00:00
protected function assertRaw ( $raw , $message = '' , $group = 'Other' ) {
if ( ! $message ) {
2009-09-14 19:05:06 +00:00
$message = t ( 'Raw "@raw" found' , array ( '@raw' => $raw ));
2009-05-03 09:30:21 +00:00
}
2010-06-23 13:17:51 +00:00
return $this -> assert ( strpos ( $this -> drupalGetContent (), $raw ) !== FALSE , $message , $group );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
* Pass if the raw text is NOT found on the loaded page , fail otherwise . Raw text
* refers to the raw HTML that the page generated .
*
2008-06-24 21:51:03 +00:00
* @ param $raw
* Raw ( HTML ) string to look for .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2009-05-03 09:30:21 +00:00
protected function assertNoRaw ( $raw , $message = '' , $group = 'Other' ) {
if ( ! $message ) {
2009-09-14 19:05:06 +00:00
$message = t ( 'Raw "@raw" not found' , array ( '@raw' => $raw ));
2009-05-03 09:30:21 +00:00
}
2010-06-23 13:17:51 +00:00
return $this -> assert ( strpos ( $this -> drupalGetContent (), $raw ) === FALSE , $message , $group );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
* Pass if the text IS found on the text version of the page . The text version
2008-12-30 16:43:20 +00:00
* is the equivalent of what a user would see when viewing through a web browser .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
* In other words the HTML has been filtered out of the contents .
*
2008-06-24 21:51:03 +00:00
* @ param $text
2008-11-26 13:48:50 +00:00
* Plain text to look for .
2008-06-24 21:51:03 +00:00
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertText ( $text , $message = '' , $group = 'Other' ) {
2008-09-10 04:13:01 +00:00
return $this -> assertTextHelper ( $text , $message , $group , FALSE );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
* Pass if the text is NOT found on the text version of the page . The text version
2008-12-30 16:43:20 +00:00
* is the equivalent of what a user would see when viewing through a web browser .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
* In other words the HTML has been filtered out of the contents .
*
2008-06-24 21:51:03 +00:00
* @ param $text
* Plain text to look for .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertNoText ( $text , $message = '' , $group = 'Other' ) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
return $this -> assertTextHelper ( $text , $message , $group , TRUE );
}
/**
2008-06-24 21:51:03 +00:00
* Helper for assertText and assertNoText .
*
* It is not recommended to call this function directly .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $text
* Plain text to look for .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ param $not_exists
* TRUE if this text should not exist , FALSE if it should .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2010-06-08 06:16:01 +00:00
protected function assertTextHelper ( $text , $message = '' , $group , $not_exists ) {
2008-11-26 13:48:50 +00:00
if ( $this -> plainTextContent === FALSE ) {
2010-06-23 13:17:51 +00:00
$this -> plainTextContent = filter_xss ( $this -> drupalGetContent (), array ());
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
if ( ! $message ) {
2009-05-03 09:30:21 +00:00
$message = ! $not_exists ? t ( '"@text" found' , array ( '@text' => $text )) : t ( '"@text" not found' , array ( '@text' => $text ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2008-11-26 13:48:50 +00:00
return $this -> assert ( $not_exists == ( strpos ( $this -> plainTextContent , $text ) === FALSE ), $message , $group );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2009-03-17 23:26:33 +00:00
/**
* Pass if the text is found ONLY ONCE on the text version of the page .
*
* The text version is the equivalent of what a user would see when viewing
* through a web browser . In other words the HTML has been filtered out of
* the contents .
*
* @ param $text
* Plain text to look for .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertUniqueText ( $text , $message = '' , $group = 'Other' ) {
return $this -> assertUniqueTextHelper ( $text , $message , $group , TRUE );
}
/**
* Pass if the text is found MORE THAN ONCE on the text version of the page .
*
* The text version is the equivalent of what a user would see when viewing
* through a web browser . In other words the HTML has been filtered out of
* the contents .
*
* @ param $text
* Plain text to look for .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to , defaults to 'Other' .
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertNoUniqueText ( $text , $message = '' , $group = 'Other' ) {
return $this -> assertUniqueTextHelper ( $text , $message , $group , FALSE );
}
/**
* Helper for assertUniqueText and assertNoUniqueText .
*
* It is not recommended to call this function directly .
*
* @ param $text
* Plain text to look for .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ param $be_unique
* TRUE if this text should be found only once , FALSE if it should be found more than once .
* @ return
* TRUE on pass , FALSE on fail .
*/
2010-06-08 06:16:01 +00:00
protected function assertUniqueTextHelper ( $text , $message = '' , $group , $be_unique ) {
2009-03-17 23:26:33 +00:00
if ( $this -> plainTextContent === FALSE ) {
2010-06-23 13:17:51 +00:00
$this -> plainTextContent = filter_xss ( $this -> drupalGetContent (), array ());
2009-03-17 23:26:33 +00:00
}
if ( ! $message ) {
2009-05-24 17:39:35 +00:00
$message = '"' . $text . '"' . ( $be_unique ? ' found only once' : ' found more than once' );
2009-03-17 23:26:33 +00:00
}
$first_occurance = strpos ( $this -> plainTextContent , $text );
if ( $first_occurance === FALSE ) {
return $this -> assert ( FALSE , $message , $group );
}
$offset = $first_occurance + strlen ( $text );
$second_occurance = strpos ( $this -> plainTextContent , $text , $offset );
return $this -> assert ( $be_unique == ( $second_occurance === FALSE ), $message , $group );
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
* Will trigger a pass if the Perl regex pattern is found in the raw content .
*
2008-06-24 21:51:03 +00:00
* @ param $pattern
* Perl regex to look for including the regex delimiters .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2009-05-03 09:30:21 +00:00
protected function assertPattern ( $pattern , $message = '' , $group = 'Other' ) {
if ( ! $message ) {
$message = t ( 'Pattern "@pattern" found' , array ( '@pattern' => $pattern ));
}
2008-11-26 13:48:50 +00:00
return $this -> assert (( bool ) preg_match ( $pattern , $this -> drupalGetContent ()), $message , $group );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
* Will trigger a pass if the perl regex pattern is not present in raw content .
*
2008-06-24 21:51:03 +00:00
* @ param $pattern
* Perl regex to look for including the regex delimiters .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2009-05-03 09:30:21 +00:00
protected function assertNoPattern ( $pattern , $message = '' , $group = 'Other' ) {
if ( ! $message ) {
$message = t ( 'Pattern "@pattern" not found' , array ( '@pattern' => $pattern ));
}
2008-11-26 13:48:50 +00:00
return $this -> assert ( ! preg_match ( $pattern , $this -> drupalGetContent ()), $message , $group );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
* Pass if the page title is the given string .
*
2008-06-24 21:51:03 +00:00
* @ param $title
2008-11-26 13:48:50 +00:00
* The string the title should be .
2008-06-24 21:51:03 +00:00
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2010-06-08 06:16:01 +00:00
protected function assertTitle ( $title , $message = '' , $group = 'Other' ) {
2010-09-24 00:37:45 +00:00
$actual = ( string ) current ( $this -> xpath ( '//title' ));
if ( ! $message ) {
$message = t ( 'Page title @actual is equal to @expected.' , array (
'@actual' => var_export ( $actual , TRUE ),
'@expected' => var_export ( $title , TRUE ),
));
}
return $this -> assertEqual ( $actual , $title , $message , $group );
2008-12-11 20:11:40 +00:00
}
/**
* Pass if the page title is not the given string .
*
* @ param $title
* The string the title should not be .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
*/
2010-06-08 06:16:01 +00:00
protected function assertNoTitle ( $title , $message = '' , $group = 'Other' ) {
2010-09-24 00:37:45 +00:00
$actual = ( string ) current ( $this -> xpath ( '//title' ));
if ( ! $message ) {
$message = t ( 'Page title @actual is not equal to @unexpected.' , array (
'@actual' => var_export ( $actual , TRUE ),
'@unexpected' => var_export ( $title , TRUE ),
));
}
return $this -> assertNotEqual ( $actual , $title , $message , $group );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2010-10-18 01:16:29 +00:00
* Asserts that a field exists in the current page by the given XPath .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $xpath
* XPath used to find the field .
* @ param $value
2010-10-25 15:51:21 +00:00
* ( optional ) Value of the field to assert .
2008-06-24 21:51:03 +00:00
* @ param $message
2010-10-25 15:51:21 +00:00
* ( optional ) Message to display .
2008-06-24 21:51:03 +00:00
* @ param $group
2010-10-25 15:51:21 +00:00
* ( optional ) The group this message belongs to .
*
2008-06-24 21:51:03 +00:00
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2010-10-25 15:51:21 +00:00
protected function assertFieldByXPath ( $xpath , $value = NULL , $message = '' , $group = 'Other' ) {
2008-08-22 12:35:55 +00:00
$fields = $this -> xpath ( $xpath );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// If value specified then check array for match.
$found = TRUE ;
2010-10-25 15:51:21 +00:00
if ( isset ( $value )) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$found = FALSE ;
2008-08-22 12:35:55 +00:00
if ( $fields ) {
foreach ( $fields as $field ) {
2008-09-17 00:46:44 +00:00
if ( isset ( $field [ 'value' ]) && $field [ 'value' ] == $value ) {
// Input element with correct value.
$found = TRUE ;
}
2008-10-12 04:30:09 +00:00
elseif ( isset ( $field -> option )) {
2008-09-17 00:46:44 +00:00
// Select element found.
if ( $this -> getSelectedItem ( $field ) == $value ) {
$found = TRUE ;
}
else {
// No item selected so use first item.
$items = $this -> getAllOptions ( $field );
if ( ! empty ( $items ) && $items [ 0 ][ 'value' ] == $value ) {
$found = TRUE ;
}
}
}
2008-12-13 14:03:21 +00:00
elseif (( string ) $field == $value ) {
2008-09-17 00:46:44 +00:00
// Text area with correct text.
2008-08-22 12:35:55 +00:00
$found = TRUE ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
}
return $this -> assertTrue ( $fields && $found , $message , $group );
}
2008-09-17 00:46:44 +00:00
/**
* Get the selected value from a select field .
*
* @ param $element
* SimpleXMLElement select element .
* @ return
* The selected value or FALSE .
*/
2008-11-26 13:48:50 +00:00
protected function getSelectedItem ( SimpleXMLElement $element ) {
2008-09-17 00:46:44 +00:00
foreach ( $element -> children () as $item ) {
if ( isset ( $item [ 'selected' ])) {
return $item [ 'value' ];
}
2008-10-12 04:30:09 +00:00
elseif ( $item -> getName () == 'optgroup' ) {
2008-09-17 00:46:44 +00:00
if ( $value = $this -> getSelectedItem ( $item )) {
return $value ;
}
}
}
return FALSE ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
2010-10-18 01:16:29 +00:00
* Asserts that a field does not exist in the current page by the given XPath .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $xpath
* XPath used to find the field .
* @ param $value
2010-10-25 15:51:21 +00:00
* ( optional ) Value of the field to assert .
2008-06-24 21:51:03 +00:00
* @ param $message
2010-10-25 15:51:21 +00:00
* ( optional ) Message to display .
2008-06-24 21:51:03 +00:00
* @ param $group
2010-10-25 15:51:21 +00:00
* ( optional ) The group this message belongs to .
*
2008-06-24 21:51:03 +00:00
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2010-10-25 15:51:21 +00:00
protected function assertNoFieldByXPath ( $xpath , $value = NULL , $message = '' , $group = 'Other' ) {
2008-08-22 12:35:55 +00:00
$fields = $this -> xpath ( $xpath );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
// If value specified then check array for match.
$found = TRUE ;
2010-10-25 15:51:21 +00:00
if ( isset ( $value )) {
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$found = FALSE ;
2008-08-22 12:35:55 +00:00
if ( $fields ) {
foreach ( $fields as $field ) {
if ( $field [ 'value' ] == $value ) {
$found = TRUE ;
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
}
}
return $this -> assertFalse ( $fields && $found , $message , $group );
}
/**
2010-10-18 01:16:29 +00:00
* Asserts that a field exists in the current page with the given name and value .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $name
* Name of field to assert .
* @ param $value
* Value of the field to assert .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertFieldByName ( $name , $value = '' , $message = '' ) {
return $this -> assertFieldByXPath ( $this -> constructFieldXpath ( 'name' , $name ), $value , $message ? $message : t ( 'Found field by name @name' , array ( '@name' => $name )), t ( 'Browser' ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2010-10-18 01:16:29 +00:00
* Asserts that a field does not exist with the given name and value .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $name
* Name of field to assert .
* @ param $value
* Value of the field to assert .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertNoFieldByName ( $name , $value = '' , $message = '' ) {
return $this -> assertNoFieldByXPath ( $this -> constructFieldXpath ( 'name' , $name ), $value , $message ? $message : t ( 'Did not find field by name @name' , array ( '@name' => $name )), t ( 'Browser' ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2010-10-18 01:16:29 +00:00
* Asserts that a field exists in the current page with the given id and value .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $id
2008-11-26 13:48:50 +00:00
* Id of field to assert .
2008-06-24 21:51:03 +00:00
* @ param $value
* Value of the field to assert .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertFieldById ( $id , $value = '' , $message = '' ) {
return $this -> assertFieldByXPath ( $this -> constructFieldXpath ( 'id' , $id ), $value , $message ? $message : t ( 'Found field by id @id' , array ( '@id' => $id )), t ( 'Browser' ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2010-10-18 01:16:29 +00:00
* Asserts that a field does not exist with the given id and value .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $id
2008-11-26 13:48:50 +00:00
* Id of field to assert .
2008-06-24 21:51:03 +00:00
* @ param $value
* Value of the field to assert .
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertNoFieldById ( $id , $value = '' , $message = '' ) {
return $this -> assertNoFieldByXPath ( $this -> constructFieldXpath ( 'id' , $id ), $value , $message ? $message : t ( 'Did not find field by id @id' , array ( '@id' => $id )), t ( 'Browser' ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2009-08-03 22:18:59 +00:00
/**
2010-10-18 01:16:29 +00:00
* Asserts that a checkbox field in the current page is checked .
2009-08-03 22:18:59 +00:00
*
* @ param $id
* Id of field to assert .
* @ param $message
* Message to display .
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertFieldChecked ( $id , $message = '' ) {
2010-03-31 20:05:06 +00:00
$elements = $this -> xpath ( '//input[@id=:id]' , array ( ':id' => $id ));
2009-08-03 22:18:59 +00:00
return $this -> assertTrue ( isset ( $elements [ 0 ]) && ! empty ( $elements [ 0 ][ 'checked' ]), $message ? $message : t ( 'Checkbox field @id is checked.' , array ( '@id' => $id )), t ( 'Browser' ));
}
/**
2010-10-18 01:16:29 +00:00
* Asserts that a checkbox field in the current page is not checked .
2009-08-03 22:18:59 +00:00
*
* @ param $id
* Id of field to assert .
* @ param $message
* Message to display .
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertNoFieldChecked ( $id , $message = '' ) {
2010-03-31 20:05:06 +00:00
$elements = $this -> xpath ( '//input[@id=:id]' , array ( ':id' => $id ));
2009-08-03 22:18:59 +00:00
return $this -> assertTrue ( isset ( $elements [ 0 ]) && empty ( $elements [ 0 ][ 'checked' ]), $message ? $message : t ( 'Checkbox field @id is not checked.' , array ( '@id' => $id )), t ( 'Browser' ));
}
2009-11-20 05:14:13 +00:00
/**
2010-10-18 01:16:29 +00:00
* Asserts that a select option in the current page is checked .
2009-11-20 05:14:13 +00:00
*
* @ param $id
* Id of select field to assert .
* @ param $option
* Option to assert .
* @ param $message
* Message to display .
* @ return
* TRUE on pass , FALSE on fail .
2010-10-23 02:26:11 +00:00
*
* @ todo $id is unusable . Replace with $name .
2009-11-20 05:14:13 +00:00
*/
protected function assertOptionSelected ( $id , $option , $message = '' ) {
2010-03-31 20:05:06 +00:00
$elements = $this -> xpath ( '//select[@id=:id]//option[@value=:option]' , array ( ':id' => $id , ':option' => $option ));
2009-11-20 05:14:13 +00:00
return $this -> assertTrue ( isset ( $elements [ 0 ]) && ! empty ( $elements [ 0 ][ 'selected' ]), $message ? $message : t ( 'Option @option for field @id is selected.' , array ( '@option' => $option , '@id' => $id )), t ( 'Browser' ));
}
/**
2010-10-18 01:16:29 +00:00
* Asserts that a select option in the current page is not checked .
2009-11-20 05:14:13 +00:00
*
* @ param $id
* Id of select field to assert .
* @ param $option
* Option to assert .
* @ param $message
* Message to display .
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertNoOptionSelected ( $id , $option , $message = '' ) {
2010-03-31 20:05:06 +00:00
$elements = $this -> xpath ( '//select[@id=:id]//option[@value=:option]' , array ( ':id' => $id , ':option' => $option ));
2009-11-20 05:14:13 +00:00
return $this -> assertTrue ( isset ( $elements [ 0 ]) && empty ( $elements [ 0 ][ 'selected' ]), $message ? $message : t ( 'Option @option for field @id is not selected.' , array ( '@option' => $option , '@id' => $id )), t ( 'Browser' ));
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
2010-10-18 01:16:29 +00:00
* Asserts that a field exists with the given name or id .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $field
2008-11-26 13:48:50 +00:00
* Name or id of field to assert .
2008-06-24 21:51:03 +00:00
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertField ( $field , $message = '' , $group = 'Other' ) {
2010-10-25 15:51:21 +00:00
return $this -> assertFieldByXPath ( $this -> constructFieldXpath ( 'name' , $field ) . '|' . $this -> constructFieldXpath ( 'id' , $field ), NULL , $message , $group );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2010-10-18 01:16:29 +00:00
* Asserts that a field does not exist with the given name or id .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $field
2008-11-26 13:48:50 +00:00
* Name or id of field to assert .
2008-06-24 21:51:03 +00:00
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ return
* TRUE on pass , FALSE on fail .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertNoField ( $field , $message = '' , $group = 'Other' ) {
2010-10-25 15:51:21 +00:00
return $this -> assertNoFieldByXPath ( $this -> constructFieldXpath ( 'name' , $field ) . '|' . $this -> constructFieldXpath ( 'id' , $field ), NULL , $message , $group );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
2010-04-07 17:30:43 +00:00
/**
2010-10-18 01:16:29 +00:00
* Asserts that each HTML ID is used for just a single element .
2010-04-07 17:30:43 +00:00
*
* @ param $message
* Message to display .
* @ param $group
* The group this message belongs to .
* @ param $ids_to_skip
* An optional array of ids to skip when checking for duplicates . It is
* always a bug to have duplicate HTML IDs , so this parameter is to enable
* incremental fixing of core code . Whenever a test passes this parameter ,
* it should add a " todo " comment above the call to this function explaining
* the legacy bug that the test wishes to ignore and including a link to an
* issue that is working to fix that legacy bug .
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertNoDuplicateIds ( $message = '' , $group = 'Other' , $ids_to_skip = array ()) {
$status = TRUE ;
foreach ( $this -> xpath ( '//*[@id]' ) as $element ) {
$id = ( string ) $element [ 'id' ];
if ( isset ( $seen_ids [ $id ]) && ! in_array ( $id , $ids_to_skip )) {
$this -> fail ( t ( 'The HTML ID %id is unique.' , array ( '%id' => $id )), $group );
$status = FALSE ;
}
$seen_ids [ $id ] = TRUE ;
}
return $this -> assert ( $status , $message , $group );
}
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
/**
2008-11-26 13:48:50 +00:00
* Helper function : construct an XPath for the given set of attributes and value .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $attribute
2008-11-26 13:48:50 +00:00
* Field attributes .
2008-06-24 21:51:03 +00:00
* @ param $value
2008-11-26 13:48:50 +00:00
* Value of field .
2008-06-24 21:51:03 +00:00
* @ return
2008-11-26 13:48:50 +00:00
* XPath for specified values .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function constructFieldXpath ( $attribute , $value ) {
2010-03-31 20:05:06 +00:00
$xpath = '//textarea[@' . $attribute . '=:value]|//input[@' . $attribute . '=:value]|//select[@' . $attribute . '=:value]' ;
return $this -> buildXPathQuery ( $xpath , array ( ':value' => $value ));
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
}
/**
2010-10-18 01:16:29 +00:00
* Asserts the page responds with the specified response code .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*
2008-06-24 21:51:03 +00:00
* @ param $code
2008-12-30 16:43:20 +00:00
* Response code . For example 200 is a successful page request . For a list
2008-06-24 21:51:03 +00:00
* of all codes see http :// www . w3 . org / Protocols / rfc2616 / rfc2616 - sec10 . html .
* @ param $message
* Message to display .
* @ return
* Assertion result .
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
*/
2008-11-26 13:48:50 +00:00
protected function assertResponse ( $code , $message = '' ) {
$curl_code = curl_getinfo ( $this -> curlHandle , CURLINFO_HTTP_CODE );
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:34:43 +00:00
$match = is_array ( $code ) ? in_array ( $curl_code , $code ) : $curl_code == $code ;
return $this -> assertTrue ( $match , $message ? $message : t ( 'HTTP response expected !code, actual !curl_code' , array ( '!code' => $code , '!curl_code' => $curl_code )), t ( 'Browser' ));
}
2009-05-26 08:46:03 +00:00
2010-09-24 00:37:45 +00:00
/**
2010-10-18 01:16:29 +00:00
* Asserts the page did not return the specified response code .
2010-09-24 00:37:45 +00:00
*
* @ param $code
* Response code . For example 200 is a successful page request . For a list
* of all codes see http :// www . w3 . org / Protocols / rfc2616 / rfc2616 - sec10 . html .
* @ param $message
* Message to display .
*
* @ return
* Assertion result .
*/
protected function assertNoResponse ( $code , $message = '' ) {
$curl_code = curl_getinfo ( $this -> curlHandle , CURLINFO_HTTP_CODE );
$match = is_array ( $code ) ? in_array ( $curl_code , $code ) : $curl_code == $code ;
return $this -> assertFalse ( $match , $message ? $message : t ( 'HTTP response not expected !code, actual !curl_code' , array ( '!code' => $code , '!curl_code' => $curl_code )), t ( 'Browser' ));
}
2009-05-26 08:46:03 +00:00
/**
2010-06-29 18:24:10 +00:00
* Asserts that the most recently sent e - mail message has the given value .
*
* The field in $name must have the content described in $value .
2009-05-26 08:46:03 +00:00
*
* @ param $name
* Name of field or message property to assert . Examples : subject , body , id , ...
* @ param $value
* Value of the field to assert .
* @ param $message
* Message to display .
2010-06-29 18:24:10 +00:00
*
2009-05-26 08:46:03 +00:00
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertMail ( $name , $value = '' , $message = '' ) {
2009-08-31 18:30:27 +00:00
$captured_emails = variable_get ( 'drupal_test_email_collector' , array ());
2009-05-26 08:46:03 +00:00
$email = end ( $captured_emails );
return $this -> assertTrue ( $email && isset ( $email [ $name ]) && $email [ $name ] == $value , $message , t ( 'E-mail' ));
}
2009-07-08 07:23:23 +00:00
/**
2010-06-29 18:24:10 +00:00
* Asserts that the most recently sent e - mail message has the string in it .
*
* @ param $field_name
* Name of field or message property to assert : subject , body , id , ...
* @ param $string
* String to search for .
* @ param $email_depth
* Number of emails to search for string , starting with most recent .
*
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertMailString ( $field_name , $string , $email_depth ) {
$mails = $this -> drupalGetMails ();
$string_found = FALSE ;
for ( $i = sizeof ( $mails ) - 1 ; $i >= sizeof ( $mails ) - $email_depth && $i >= 0 ; $i -- ) {
$mail = $mails [ $i ];
// Normalize whitespace, as we don't know what the mail system might have
// done. Any run of whitespace becomes a single space.
$normalized_mail = preg_replace ( '/\s+/' , ' ' , $mail [ $field_name ]);
$normalized_string = preg_replace ( '/\s+/' , ' ' , $string );
$string_found = ( FALSE !== strpos ( $normalized_mail , $normalized_string ));
if ( $string_found ) {
break ;
}
}
return $this -> assertTrue ( $string_found , t ( 'Expected text found in @field of email message: "@expected".' , array ( '@field' => $field_name , '@expected' => $string )));
}
/**
* Asserts that the most recently sent e - mail message has the pattern in it .
*
* @ param $field_name
* Name of field or message property to assert : subject , body , id , ...
* @ param $regex
* Pattern to search for .
*
* @ return
* TRUE on pass , FALSE on fail .
*/
protected function assertMailPattern ( $field_name , $regex , $message ) {
$mails = $this -> drupalGetMails ();
$mail = end ( $mails );
$regex_found = preg_match ( " / $regex / " , $mail [ $field_name ]);
return $this -> assertTrue ( $regex_found , t ( 'Expected text found in @field of email message: "@expected".' , array ( '@field' => $field_name , '@expected' => $regex )));
}
/**
* Outputs to verbose the most recent $count emails sent .
*
* @ param $count
* Optional number of emails to output .
*/
protected function verboseEmail ( $count = 1 ) {
$mails = $this -> drupalGetMails ();
for ( $i = sizeof ( $mails ) - 1 ; $i >= sizeof ( $mails ) - $count && $i >= 0 ; $i -- ) {
$mail = $mails [ $i ];
$this -> verbose ( t ( 'Email:' ) . '<pre>' . print_r ( $mail , TRUE ) . '</pre>' );
}
}
2009-05-26 08:46:03 +00:00
}
2009-07-08 07:23:23 +00:00
/**
2010-06-29 18:24:10 +00:00
* Logs verbose message in a text file .
2009-07-08 07:23:23 +00:00
*
* If verbose mode is enabled then page requests will be dumped to a file and
* presented on the test result screen . The messages will be placed in a file
* located in the simpletest directory in the original file system .
*
* @ param $message
* The verbose message to be stored .
* @ param $original_file_directory
* The original file directory , before it was changed for testing purposes .
2009-08-15 17:52:53 +00:00
* @ param $test_class
* The active test case class .
2010-06-29 18:24:10 +00:00
*
2009-07-08 07:23:23 +00:00
* @ return
* The ID of the message to be placed in related assertion messages .
2010-06-29 18:24:10 +00:00
*
2009-07-08 07:23:23 +00:00
* @ see DrupalTestCase -> originalFileDirectory
* @ see DrupalWebTestCase -> verbose ()
*/
2009-08-15 17:52:53 +00:00
function simpletest_verbose ( $message , $original_file_directory = NULL , $test_class = NULL ) {
2009-11-22 08:09:21 +00:00
static $file_directory = NULL , $class = NULL , $id = 1 , $verbose = NULL ;
2009-07-08 07:23:23 +00:00
2009-07-11 02:23:09 +00:00
// Will pass first time during setup phase, and when verbose is TRUE.
if ( ! isset ( $original_file_directory ) && ! $verbose ) {
2009-07-08 07:23:23 +00:00
return FALSE ;
}
if ( $message && $file_directory ) {
2009-08-15 17:52:53 +00:00
$message = '<hr />ID #' . $id . ' (<a href="' . $class . '-' . ( $id - 1 ) . '.html">Previous</a> | <a href="' . $class . '-' . ( $id + 1 ) . '.html">Next</a>)<hr />' . $message ;
file_put_contents ( $file_directory . " /simpletest/verbose/ $class - $id .html " , $message , FILE_APPEND );
2009-07-08 07:23:23 +00:00
return $id ++ ;
}
if ( $original_file_directory ) {
$file_directory = $original_file_directory ;
2009-08-15 17:52:53 +00:00
$class = $test_class ;
2010-04-30 19:12:38 +00:00
$verbose = variable_get ( 'simpletest_verbose' , TRUE );
2009-08-15 17:52:53 +00:00
$directory = $file_directory . '/simpletest/verbose' ;
2009-12-25 10:30:07 +00:00
$writable = file_prepare_directory ( $directory , FILE_CREATE_DIRECTORY );
if ( $writable && ! file_exists ( $directory . '/.htaccess' )) {
file_put_contents ( $directory . '/.htaccess' , " <IfModule mod_expires.c> \n ExpiresActive Off \n </IfModule> \n " );
}
return $writable ;
2009-07-08 07:23:23 +00:00
}
return FALSE ;
}