drupal_web_test_case.php 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762
  1. <?php
  2. /**
  3. * Global variable that holds information about the tests being run.
  4. *
  5. * An array, with the following keys:
  6. * - 'test_run_id': the ID of the test being run, in the form 'simpletest_%"
  7. * - 'in_child_site': TRUE if the current request is a cURL request from
  8. * the parent site.
  9. *
  10. * @var array
  11. */
  12. global $drupal_test_info;
  13. /**
  14. * Base class for Drupal tests.
  15. *
  16. * Do not extend this class, use one of the subclasses in this file.
  17. */
  18. abstract class DrupalTestCase {
  19. /**
  20. * The test run ID.
  21. *
  22. * @var string
  23. */
  24. protected $testId;
  25. /**
  26. * The database prefix of this test run.
  27. *
  28. * @var string
  29. */
  30. protected $databasePrefix = NULL;
  31. /**
  32. * The original file directory, before it was changed for testing purposes.
  33. *
  34. * @var string
  35. */
  36. protected $originalFileDirectory = NULL;
  37. /**
  38. * Time limit for the test.
  39. */
  40. protected $timeLimit = 500;
  41. /**
  42. * Current results of this test case.
  43. *
  44. * @var Array
  45. */
  46. public $results = array(
  47. '#pass' => 0,
  48. '#fail' => 0,
  49. '#exception' => 0,
  50. '#debug' => 0,
  51. );
  52. /**
  53. * Assertions thrown in that test case.
  54. *
  55. * @var Array
  56. */
  57. protected $assertions = array();
  58. /**
  59. * This class is skipped when looking for the source of an assertion.
  60. *
  61. * When displaying which function an assert comes from, it's not too useful
  62. * to see "drupalWebTestCase->drupalLogin()', we would like to see the test
  63. * that called it. So we need to skip the classes defining these helper
  64. * methods.
  65. */
  66. protected $skipClasses = array(__CLASS__ => TRUE);
  67. /**
  68. * Flag to indicate whether the test has been set up.
  69. *
  70. * The setUp() method isolates the test from the parent Drupal site by
  71. * creating a random prefix for the database and setting up a clean file
  72. * storage directory. The tearDown() method then cleans up this test
  73. * environment. We must ensure that setUp() has been run. Otherwise,
  74. * tearDown() will act on the parent Drupal site rather than the test
  75. * environment, destroying live data.
  76. */
  77. protected $setup = FALSE;
  78. protected $setupDatabasePrefix = FALSE;
  79. protected $setupEnvironment = FALSE;
  80. /**
  81. * Constructor for DrupalTestCase.
  82. *
  83. * @param $test_id
  84. * Tests with the same id are reported together.
  85. */
  86. public function __construct($test_id = NULL) {
  87. $this->testId = $test_id;
  88. }
  89. /**
  90. * Internal helper: stores the assert.
  91. *
  92. * @param $status
  93. * Can be 'pass', 'fail', 'exception'.
  94. * TRUE is a synonym for 'pass', FALSE for 'fail'.
  95. * @param $message
  96. * The message string.
  97. * @param $group
  98. * Which group this assert belongs to.
  99. * @param $caller
  100. * By default, the assert comes from a function whose name starts with
  101. * 'test'. Instead, you can specify where this assert originates from
  102. * by passing in an associative array as $caller. Key 'file' is
  103. * the name of the source file, 'line' is the line number and 'function'
  104. * is the caller function itself.
  105. */
  106. protected function assert($status, $message = '', $group = 'Other', array $caller = NULL) {
  107. // Convert boolean status to string status.
  108. if (is_bool($status)) {
  109. $status = $status ? 'pass' : 'fail';
  110. }
  111. // Increment summary result counter.
  112. $this->results['#' . $status]++;
  113. // Get the function information about the call to the assertion method.
  114. if (!$caller) {
  115. $caller = $this->getAssertionCall();
  116. }
  117. // Creation assertion array that can be displayed while tests are running.
  118. $this->assertions[] = $assertion = array(
  119. 'test_id' => $this->testId,
  120. 'test_class' => get_class($this),
  121. 'status' => $status,
  122. 'message' => $message,
  123. 'message_group' => $group,
  124. 'function' => $caller['function'],
  125. 'line' => $caller['line'],
  126. 'file' => $caller['file'],
  127. );
  128. // Store assertion for display after the test has completed.
  129. self::getDatabaseConnection()
  130. ->insert('simpletest')
  131. ->fields($assertion)
  132. ->execute();
  133. // We do not use a ternary operator here to allow a breakpoint on
  134. // test failure.
  135. if ($status == 'pass') {
  136. return TRUE;
  137. }
  138. else {
  139. return FALSE;
  140. }
  141. }
  142. /**
  143. * Returns the database connection to the site running Simpletest.
  144. *
  145. * @return DatabaseConnection
  146. * The database connection to use for inserting assertions.
  147. */
  148. public static function getDatabaseConnection() {
  149. try {
  150. $connection = Database::getConnection('default', 'simpletest_original_default');
  151. }
  152. catch (DatabaseConnectionNotDefinedException $e) {
  153. // If the test was not set up, the simpletest_original_default
  154. // connection does not exist.
  155. $connection = Database::getConnection('default', 'default');
  156. }
  157. return $connection;
  158. }
  159. /**
  160. * Store an assertion from outside the testing context.
  161. *
  162. * This is useful for inserting assertions that can only be recorded after
  163. * the test case has been destroyed, such as PHP fatal errors. The caller
  164. * information is not automatically gathered since the caller is most likely
  165. * inserting the assertion on behalf of other code. In all other respects
  166. * the method behaves just like DrupalTestCase::assert() in terms of storing
  167. * the assertion.
  168. *
  169. * @return
  170. * Message ID of the stored assertion.
  171. *
  172. * @see DrupalTestCase::assert()
  173. * @see DrupalTestCase::deleteAssert()
  174. */
  175. public static function insertAssert($test_id, $test_class, $status, $message = '', $group = 'Other', array $caller = array()) {
  176. // Convert boolean status to string status.
  177. if (is_bool($status)) {
  178. $status = $status ? 'pass' : 'fail';
  179. }
  180. $caller += array(
  181. 'function' => t('Unknown'),
  182. 'line' => 0,
  183. 'file' => t('Unknown'),
  184. );
  185. $assertion = array(
  186. 'test_id' => $test_id,
  187. 'test_class' => $test_class,
  188. 'status' => $status,
  189. 'message' => $message,
  190. 'message_group' => $group,
  191. 'function' => $caller['function'],
  192. 'line' => $caller['line'],
  193. 'file' => $caller['file'],
  194. );
  195. return self::getDatabaseConnection()
  196. ->insert('simpletest')
  197. ->fields($assertion)
  198. ->execute();
  199. }
  200. /**
  201. * Delete an assertion record by message ID.
  202. *
  203. * @param $message_id
  204. * Message ID of the assertion to delete.
  205. * @return
  206. * TRUE if the assertion was deleted, FALSE otherwise.
  207. *
  208. * @see DrupalTestCase::insertAssert()
  209. */
  210. public static function deleteAssert($message_id) {
  211. return (bool) self::getDatabaseConnection()
  212. ->delete('simpletest')
  213. ->condition('message_id', $message_id)
  214. ->execute();
  215. }
  216. /**
  217. * Cycles through backtrace until the first non-assertion method is found.
  218. *
  219. * @return
  220. * Array representing the true caller.
  221. */
  222. protected function getAssertionCall() {
  223. $backtrace = debug_backtrace();
  224. // The first element is the call. The second element is the caller.
  225. // We skip calls that occurred in one of the methods of our base classes
  226. // or in an assertion function.
  227. while (($caller = $backtrace[1]) &&
  228. ((isset($caller['class']) && isset($this->skipClasses[$caller['class']])) ||
  229. substr($caller['function'], 0, 6) == 'assert')) {
  230. // We remove that call.
  231. array_shift($backtrace);
  232. }
  233. return _drupal_get_last_caller($backtrace);
  234. }
  235. /**
  236. * Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
  237. *
  238. * @param $value
  239. * The value on which the assertion is to be done.
  240. * @param $message
  241. * The message to display along with the assertion.
  242. * @param $group
  243. * The type of assertion - examples are "Browser", "PHP".
  244. * @return
  245. * TRUE if the assertion succeeded, FALSE otherwise.
  246. */
  247. protected function assertTrue($value, $message = '', $group = 'Other') {
  248. return $this->assert((bool) $value, $message ? $message : t('Value @value is TRUE.', array('@value' => var_export($value, TRUE))), $group);
  249. }
  250. /**
  251. * Check to see if a value is false (an empty string, 0, NULL, or FALSE).
  252. *
  253. * @param $value
  254. * The value on which the assertion is to be done.
  255. * @param $message
  256. * The message to display along with the assertion.
  257. * @param $group
  258. * The type of assertion - examples are "Browser", "PHP".
  259. * @return
  260. * TRUE if the assertion succeeded, FALSE otherwise.
  261. */
  262. protected function assertFalse($value, $message = '', $group = 'Other') {
  263. return $this->assert(!$value, $message ? $message : t('Value @value is FALSE.', array('@value' => var_export($value, TRUE))), $group);
  264. }
  265. /**
  266. * Check to see if a value is NULL.
  267. *
  268. * @param $value
  269. * The value on which the assertion is to be done.
  270. * @param $message
  271. * The message to display along with the assertion.
  272. * @param $group
  273. * The type of assertion - examples are "Browser", "PHP".
  274. * @return
  275. * TRUE if the assertion succeeded, FALSE otherwise.
  276. */
  277. protected function assertNull($value, $message = '', $group = 'Other') {
  278. return $this->assert(!isset($value), $message ? $message : t('Value @value is NULL.', array('@value' => var_export($value, TRUE))), $group);
  279. }
  280. /**
  281. * Check to see if a value is not NULL.
  282. *
  283. * @param $value
  284. * The value on which the assertion is to be done.
  285. * @param $message
  286. * The message to display along with the assertion.
  287. * @param $group
  288. * The type of assertion - examples are "Browser", "PHP".
  289. * @return
  290. * TRUE if the assertion succeeded, FALSE otherwise.
  291. */
  292. protected function assertNotNull($value, $message = '', $group = 'Other') {
  293. return $this->assert(isset($value), $message ? $message : t('Value @value is not NULL.', array('@value' => var_export($value, TRUE))), $group);
  294. }
  295. /**
  296. * Check to see if two values are equal.
  297. *
  298. * @param $first
  299. * The first value to check.
  300. * @param $second
  301. * The second value to check.
  302. * @param $message
  303. * The message to display along with the assertion.
  304. * @param $group
  305. * The type of assertion - examples are "Browser", "PHP".
  306. * @return
  307. * TRUE if the assertion succeeded, FALSE otherwise.
  308. */
  309. protected function assertEqual($first, $second, $message = '', $group = 'Other') {
  310. 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);
  311. }
  312. /**
  313. * Check to see if two values are not equal.
  314. *
  315. * @param $first
  316. * The first value to check.
  317. * @param $second
  318. * The second value to check.
  319. * @param $message
  320. * The message to display along with the assertion.
  321. * @param $group
  322. * The type of assertion - examples are "Browser", "PHP".
  323. * @return
  324. * TRUE if the assertion succeeded, FALSE otherwise.
  325. */
  326. protected function assertNotEqual($first, $second, $message = '', $group = 'Other') {
  327. 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);
  328. }
  329. /**
  330. * Check to see if two values are identical.
  331. *
  332. * @param $first
  333. * The first value to check.
  334. * @param $second
  335. * The second value to check.
  336. * @param $message
  337. * The message to display along with the assertion.
  338. * @param $group
  339. * The type of assertion - examples are "Browser", "PHP".
  340. * @return
  341. * TRUE if the assertion succeeded, FALSE otherwise.
  342. */
  343. protected function assertIdentical($first, $second, $message = '', $group = 'Other') {
  344. 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);
  345. }
  346. /**
  347. * Check to see if two values are not identical.
  348. *
  349. * @param $first
  350. * The first value to check.
  351. * @param $second
  352. * The second value to check.
  353. * @param $message
  354. * The message to display along with the assertion.
  355. * @param $group
  356. * The type of assertion - examples are "Browser", "PHP".
  357. * @return
  358. * TRUE if the assertion succeeded, FALSE otherwise.
  359. */
  360. protected function assertNotIdentical($first, $second, $message = '', $group = 'Other') {
  361. 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);
  362. }
  363. /**
  364. * Fire an assertion that is always positive.
  365. *
  366. * @param $message
  367. * The message to display along with the assertion.
  368. * @param $group
  369. * The type of assertion - examples are "Browser", "PHP".
  370. * @return
  371. * TRUE.
  372. */
  373. protected function pass($message = NULL, $group = 'Other') {
  374. return $this->assert(TRUE, $message, $group);
  375. }
  376. /**
  377. * Fire an assertion that is always negative.
  378. *
  379. * @param $message
  380. * The message to display along with the assertion.
  381. * @param $group
  382. * The type of assertion - examples are "Browser", "PHP".
  383. * @return
  384. * FALSE.
  385. */
  386. protected function fail($message = NULL, $group = 'Other') {
  387. return $this->assert(FALSE, $message, $group);
  388. }
  389. /**
  390. * Fire an error assertion.
  391. *
  392. * @param $message
  393. * The message to display along with the assertion.
  394. * @param $group
  395. * The type of assertion - examples are "Browser", "PHP".
  396. * @param $caller
  397. * The caller of the error.
  398. * @return
  399. * FALSE.
  400. */
  401. protected function error($message = '', $group = 'Other', array $caller = NULL) {
  402. if ($group == 'User notice') {
  403. // Since 'User notice' is set by trigger_error() which is used for debug
  404. // set the message to a status of 'debug'.
  405. return $this->assert('debug', $message, 'Debug', $caller);
  406. }
  407. return $this->assert('exception', $message, $group, $caller);
  408. }
  409. /**
  410. * Logs a verbose message in a text file.
  411. *
  412. * The link to the verbose message will be placed in the test results as a
  413. * passing assertion with the text '[verbose message]'.
  414. *
  415. * @param $message
  416. * The verbose message to be stored.
  417. *
  418. * @see simpletest_verbose()
  419. */
  420. protected function verbose($message) {
  421. if ($id = simpletest_verbose($message)) {
  422. $class_safe = str_replace('\\', '_', get_class($this));
  423. $url = file_create_url($this->originalFileDirectory . '/simpletest/verbose/' . $class_safe . '-' . $id . '.html');
  424. $this->error(l(t('Verbose message'), $url, array('attributes' => array('target' => '_blank'))), 'User notice');
  425. }
  426. }
  427. /**
  428. * Run all tests in this class.
  429. *
  430. * Regardless of whether $methods are passed or not, only method names
  431. * starting with "test" are executed.
  432. *
  433. * @param $methods
  434. * (optional) A list of method names in the test case class to run; e.g.,
  435. * array('testFoo', 'testBar'). By default, all methods of the class are
  436. * taken into account, but it can be useful to only run a few selected test
  437. * methods during debugging.
  438. */
  439. public function run(array $methods = array()) {
  440. // Initialize verbose debugging.
  441. $class = get_class($this);
  442. simpletest_verbose(NULL, variable_get('file_public_path', conf_path() . '/files'), str_replace('\\', '_', $class));
  443. // HTTP auth settings (<username>:<password>) for the simpletest browser
  444. // when sending requests to the test site.
  445. $this->httpauth_method = variable_get('simpletest_httpauth_method', CURLAUTH_BASIC);
  446. $username = variable_get('simpletest_httpauth_username', NULL);
  447. $password = variable_get('simpletest_httpauth_password', NULL);
  448. if ($username && $password) {
  449. $this->httpauth_credentials = $username . ':' . $password;
  450. }
  451. set_error_handler(array($this, 'errorHandler'));
  452. // Iterate through all the methods in this class, unless a specific list of
  453. // methods to run was passed.
  454. $class_methods = get_class_methods($class);
  455. if ($methods) {
  456. $class_methods = array_intersect($class_methods, $methods);
  457. }
  458. foreach ($class_methods as $method) {
  459. // If the current method starts with "test", run it - it's a test.
  460. if (strtolower(substr($method, 0, 4)) == 'test') {
  461. // Insert a fail record. This will be deleted on completion to ensure
  462. // that testing completed.
  463. $method_info = new ReflectionMethod($class, $method);
  464. $caller = array(
  465. 'file' => $method_info->getFileName(),
  466. 'line' => $method_info->getStartLine(),
  467. 'function' => $class . '->' . $method . '()',
  468. );
  469. $completion_check_id = DrupalTestCase::insertAssert($this->testId, $class, FALSE, t('The test did not complete due to a fatal error.'), 'Completion check', $caller);
  470. $this->setUp();
  471. if ($this->setup) {
  472. try {
  473. $this->$method();
  474. // Finish up.
  475. }
  476. catch (Exception $e) {
  477. $this->exceptionHandler($e);
  478. }
  479. $this->tearDown();
  480. }
  481. else {
  482. $this->fail(t("The test cannot be executed because it has not been set up properly."));
  483. }
  484. // Remove the completion check record.
  485. DrupalTestCase::deleteAssert($completion_check_id);
  486. }
  487. }
  488. // Clear out the error messages and restore error handler.
  489. drupal_get_messages();
  490. restore_error_handler();
  491. }
  492. /**
  493. * Handle errors during test runs.
  494. *
  495. * Because this is registered in set_error_handler(), it has to be public.
  496. * @see set_error_handler
  497. */
  498. public function errorHandler($severity, $message, $file = NULL, $line = NULL) {
  499. if ($severity & error_reporting()) {
  500. $error_map = array(
  501. E_STRICT => 'Run-time notice',
  502. E_WARNING => 'Warning',
  503. E_NOTICE => 'Notice',
  504. E_CORE_ERROR => 'Core error',
  505. E_CORE_WARNING => 'Core warning',
  506. E_USER_ERROR => 'User error',
  507. E_USER_WARNING => 'User warning',
  508. E_USER_NOTICE => 'User notice',
  509. E_RECOVERABLE_ERROR => 'Recoverable error',
  510. );
  511. // PHP 5.3 adds new error logging constants. Add these conditionally for
  512. // backwards compatibility with PHP 5.2.
  513. if (defined('E_DEPRECATED')) {
  514. $error_map += array(
  515. E_DEPRECATED => 'Deprecated',
  516. E_USER_DEPRECATED => 'User deprecated',
  517. );
  518. }
  519. $backtrace = debug_backtrace();
  520. $this->error($message, $error_map[$severity], _drupal_get_last_caller($backtrace));
  521. }
  522. return TRUE;
  523. }
  524. /**
  525. * Handle exceptions.
  526. *
  527. * @see set_exception_handler
  528. */
  529. protected function exceptionHandler($exception) {
  530. $backtrace = $exception->getTrace();
  531. // Push on top of the backtrace the call that generated the exception.
  532. array_unshift($backtrace, array(
  533. 'line' => $exception->getLine(),
  534. 'file' => $exception->getFile(),
  535. ));
  536. require_once DRUPAL_ROOT . '/includes/errors.inc';
  537. // The exception message is run through check_plain() by _drupal_decode_exception().
  538. $this->error(t('%type: !message in %function (line %line of %file).', _drupal_decode_exception($exception)), 'Uncaught exception', _drupal_get_last_caller($backtrace));
  539. }
  540. /**
  541. * Generates a random string of ASCII characters of codes 32 to 126.
  542. *
  543. * The generated string includes alpha-numeric characters and common
  544. * miscellaneous characters. Use this method when testing general input
  545. * where the content is not restricted.
  546. *
  547. * Do not use this method when special characters are not possible (e.g., in
  548. * machine or file names that have already been validated); instead,
  549. * use DrupalWebTestCase::randomName().
  550. *
  551. * @param $length
  552. * Length of random string to generate.
  553. *
  554. * @return
  555. * Randomly generated string.
  556. *
  557. * @see DrupalWebTestCase::randomName()
  558. */
  559. public static function randomString($length = 8) {
  560. $str = '';
  561. for ($i = 0; $i < $length; $i++) {
  562. $str .= chr(mt_rand(32, 126));
  563. }
  564. return $str;
  565. }
  566. /**
  567. * Generates a random string containing letters and numbers.
  568. *
  569. * The string will always start with a letter. The letters may be upper or
  570. * lower case. This method is better for restricted inputs that do not
  571. * accept certain characters. For example, when testing input fields that
  572. * require machine readable values (i.e. without spaces and non-standard
  573. * characters) this method is best.
  574. *
  575. * Do not use this method when testing unvalidated user input. Instead, use
  576. * DrupalWebTestCase::randomString().
  577. *
  578. * @param $length
  579. * Length of random string to generate.
  580. *
  581. * @return
  582. * Randomly generated string.
  583. *
  584. * @see DrupalWebTestCase::randomString()
  585. */
  586. public static function randomName($length = 8) {
  587. $values = array_merge(range(65, 90), range(97, 122), range(48, 57));
  588. $max = count($values) - 1;
  589. $str = chr(mt_rand(97, 122));
  590. for ($i = 1; $i < $length; $i++) {
  591. $str .= chr($values[mt_rand(0, $max)]);
  592. }
  593. return $str;
  594. }
  595. /**
  596. * Converts a list of possible parameters into a stack of permutations.
  597. *
  598. * Takes a list of parameters containing possible values, and converts all of
  599. * them into a list of items containing every possible permutation.
  600. *
  601. * Example:
  602. * @code
  603. * $parameters = array(
  604. * 'one' => array(0, 1),
  605. * 'two' => array(2, 3),
  606. * );
  607. * $permutations = DrupalTestCase::generatePermutations($parameters)
  608. * // Result:
  609. * $permutations == array(
  610. * array('one' => 0, 'two' => 2),
  611. * array('one' => 1, 'two' => 2),
  612. * array('one' => 0, 'two' => 3),
  613. * array('one' => 1, 'two' => 3),
  614. * )
  615. * @endcode
  616. *
  617. * @param $parameters
  618. * An associative array of parameters, keyed by parameter name, and whose
  619. * values are arrays of parameter values.
  620. *
  621. * @return
  622. * A list of permutations, which is an array of arrays. Each inner array
  623. * contains the full list of parameters that have been passed, but with a
  624. * single value only.
  625. */
  626. public static function generatePermutations($parameters) {
  627. $all_permutations = array(array());
  628. foreach ($parameters as $parameter => $values) {
  629. $new_permutations = array();
  630. // Iterate over all values of the parameter.
  631. foreach ($values as $value) {
  632. // Iterate over all existing permutations.
  633. foreach ($all_permutations as $permutation) {
  634. // Add the new parameter value to existing permutations.
  635. $new_permutations[] = $permutation + array($parameter => $value);
  636. }
  637. }
  638. // Replace the old permutations with the new permutations.
  639. $all_permutations = $new_permutations;
  640. }
  641. return $all_permutations;
  642. }
  643. }
  644. /**
  645. * Test case for Drupal unit tests.
  646. *
  647. * These tests can not access the database nor files. Calling any Drupal
  648. * function that needs the database will throw exceptions. These include
  649. * watchdog(), module_implements(), module_invoke_all() etc.
  650. */
  651. class DrupalUnitTestCase extends DrupalTestCase {
  652. /**
  653. * Constructor for DrupalUnitTestCase.
  654. */
  655. function __construct($test_id = NULL) {
  656. parent::__construct($test_id);
  657. $this->skipClasses[__CLASS__] = TRUE;
  658. }
  659. /**
  660. * Sets up unit test environment.
  661. *
  662. * Unlike DrupalWebTestCase::setUp(), DrupalUnitTestCase::setUp() does not
  663. * install modules because tests are performed without accessing the database.
  664. * Any required files must be explicitly included by the child class setUp()
  665. * method.
  666. */
  667. protected function setUp() {
  668. global $conf;
  669. // Store necessary current values before switching to the test environment.
  670. $this->originalFileDirectory = variable_get('file_public_path', conf_path() . '/files');
  671. // Reset all statics so that test is performed with a clean environment.
  672. drupal_static_reset();
  673. // Generate temporary prefixed database to ensure that tests have a clean starting point.
  674. $this->databasePrefix = Database::getConnection()->prefixTables('{simpletest' . mt_rand(1000, 1000000) . '}');
  675. // Create test directory.
  676. $public_files_directory = $this->originalFileDirectory . '/simpletest/' . substr($this->databasePrefix, 10);
  677. file_prepare_directory($public_files_directory, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
  678. $conf['file_public_path'] = $public_files_directory;
  679. // Clone the current connection and replace the current prefix.
  680. $connection_info = Database::getConnectionInfo('default');
  681. Database::renameConnection('default', 'simpletest_original_default');
  682. foreach ($connection_info as $target => $value) {
  683. $connection_info[$target]['prefix'] = array(
  684. 'default' => $value['prefix']['default'] . $this->databasePrefix,
  685. );
  686. }
  687. Database::addConnectionInfo('default', 'default', $connection_info['default']);
  688. // Set user agent to be consistent with web test case.
  689. $_SERVER['HTTP_USER_AGENT'] = $this->databasePrefix;
  690. // If locale is enabled then t() will try to access the database and
  691. // subsequently will fail as the database is not accessible.
  692. $module_list = module_list();
  693. if (isset($module_list['locale'])) {
  694. // Transform the list into the format expected as input to module_list().
  695. foreach ($module_list as &$module) {
  696. $module = array('filename' => drupal_get_filename('module', $module));
  697. }
  698. $this->originalModuleList = $module_list;
  699. unset($module_list['locale']);
  700. module_list(TRUE, FALSE, FALSE, $module_list);
  701. }
  702. $this->setup = TRUE;
  703. }
  704. protected function tearDown() {
  705. global $conf;
  706. // Get back to the original connection.
  707. Database::removeConnection('default');
  708. Database::renameConnection('simpletest_original_default', 'default');
  709. $conf['file_public_path'] = $this->originalFileDirectory;
  710. // Restore modules if necessary.
  711. if (isset($this->originalModuleList)) {
  712. module_list(TRUE, FALSE, FALSE, $this->originalModuleList);
  713. }
  714. }
  715. }
  716. /**
  717. * Test case for typical Drupal tests.
  718. */
  719. class DrupalWebTestCase extends DrupalTestCase {
  720. /**
  721. * The profile to install as a basis for testing.
  722. *
  723. * @var string
  724. */
  725. protected $profile = 'standard';
  726. /**
  727. * The URL currently loaded in the internal browser.
  728. *
  729. * @var string
  730. */
  731. protected $url;
  732. /**
  733. * The handle of the current cURL connection.
  734. *
  735. * @var resource
  736. */
  737. protected $curlHandle;
  738. /**
  739. * The headers of the page currently loaded in the internal browser.
  740. *
  741. * @var Array
  742. */
  743. protected $headers;
  744. /**
  745. * The content of the page currently loaded in the internal browser.
  746. *
  747. * @var string
  748. */
  749. protected $content;
  750. /**
  751. * The content of the page currently loaded in the internal browser (plain text version).
  752. *
  753. * @var string
  754. */
  755. protected $plainTextContent;
  756. /**
  757. * The value of the Drupal.settings JavaScript variable for the page currently loaded in the internal browser.
  758. *
  759. * @var Array
  760. */
  761. protected $drupalSettings;
  762. /**
  763. * The parsed version of the page.
  764. *
  765. * @var SimpleXMLElement
  766. */
  767. protected $elements = NULL;
  768. /**
  769. * The current user logged in using the internal browser.
  770. *
  771. * @var bool
  772. */
  773. protected $loggedInUser = FALSE;
  774. /**
  775. * The current cookie file used by cURL.
  776. *
  777. * We do not reuse the cookies in further runs, so we do not need a file
  778. * but we still need cookie handling, so we set the jar to NULL.
  779. */
  780. protected $cookieFile = NULL;
  781. /**
  782. * Additional cURL options.
  783. *
  784. * DrupalWebTestCase itself never sets this but always obeys what is set.
  785. */
  786. protected $additionalCurlOptions = array();
  787. /**
  788. * The original user, before it was changed to a clean uid = 1 for testing purposes.
  789. *
  790. * @var object
  791. */
  792. protected $originalUser = NULL;
  793. /**
  794. * The original shutdown handlers array, before it was cleaned for testing purposes.
  795. *
  796. * @var array
  797. */
  798. protected $originalShutdownCallbacks = array();
  799. /**
  800. * HTTP authentication method
  801. */
  802. protected $httpauth_method = CURLAUTH_BASIC;
  803. /**
  804. * HTTP authentication credentials (<username>:<password>).
  805. */
  806. protected $httpauth_credentials = NULL;
  807. /**
  808. * The current session name, if available.
  809. */
  810. protected $session_name = NULL;
  811. /**
  812. * The current session ID, if available.
  813. */
  814. protected $session_id = NULL;
  815. /**
  816. * Whether the files were copied to the test files directory.
  817. */
  818. protected $generatedTestFiles = FALSE;
  819. /**
  820. * The number of redirects followed during the handling of a request.
  821. */
  822. protected $redirect_count;
  823. /**
  824. * Constructor for DrupalWebTestCase.
  825. */
  826. function __construct($test_id = NULL) {
  827. parent::__construct($test_id);
  828. $this->skipClasses[__CLASS__] = TRUE;
  829. }
  830. /**
  831. * Get a node from the database based on its title.
  832. *
  833. * @param $title
  834. * A node title, usually generated by $this->randomName().
  835. * @param $reset
  836. * (optional) Whether to reset the internal node_load() cache.
  837. *
  838. * @return
  839. * A node object matching $title.
  840. */
  841. function drupalGetNodeByTitle($title, $reset = FALSE) {
  842. $nodes = node_load_multiple(array(), array('title' => $title), $reset);
  843. // Load the first node returned from the database.
  844. $returned_node = reset($nodes);
  845. return $returned_node;
  846. }
  847. /**
  848. * Creates a node based on default settings.
  849. *
  850. * @param $settings
  851. * An associative array of settings to change from the defaults, keys are
  852. * node properties, for example 'title' => 'Hello, world!'.
  853. * @return
  854. * Created node object.
  855. */
  856. protected function drupalCreateNode($settings = array()) {
  857. // Populate defaults array.
  858. $settings += array(
  859. 'body' => array(LANGUAGE_NONE => array(array())),
  860. 'title' => $this->randomName(8),
  861. 'comment' => 2,
  862. 'changed' => REQUEST_TIME,
  863. 'moderate' => 0,
  864. 'promote' => 0,
  865. 'revision' => 1,
  866. 'log' => '',
  867. 'status' => 1,
  868. 'sticky' => 0,
  869. 'type' => 'page',
  870. 'revisions' => NULL,
  871. 'language' => LANGUAGE_NONE,
  872. );
  873. // Use the original node's created time for existing nodes.
  874. if (isset($settings['created']) && !isset($settings['date'])) {
  875. $settings['date'] = format_date($settings['created'], 'custom', 'Y-m-d H:i:s O');
  876. }
  877. // If the node's user uid is not specified manually, use the currently
  878. // logged in user if available, or else the user running the test.
  879. if (!isset($settings['uid'])) {
  880. if ($this->loggedInUser) {
  881. $settings['uid'] = $this->loggedInUser->uid;
  882. }
  883. else {
  884. global $user;
  885. $settings['uid'] = $user->uid;
  886. }
  887. }
  888. // Merge body field value and format separately.
  889. $body = array(
  890. 'value' => $this->randomName(32),
  891. 'format' => filter_default_format(),
  892. );
  893. $settings['body'][$settings['language']][0] += $body;
  894. $node = (object) $settings;
  895. node_save($node);
  896. // Small hack to link revisions to our test user.
  897. db_update('node_revision')
  898. ->fields(array('uid' => $node->uid))
  899. ->condition('vid', $node->vid)
  900. ->execute();
  901. return $node;
  902. }
  903. /**
  904. * Creates a custom content type based on default settings.
  905. *
  906. * @param $settings
  907. * An array of settings to change from the defaults.
  908. * Example: 'type' => 'foo'.
  909. * @return
  910. * Created content type.
  911. */
  912. protected function drupalCreateContentType($settings = array()) {
  913. // Find a non-existent random type name.
  914. do {
  915. $name = strtolower($this->randomName(8));
  916. } while (node_type_get_type($name));
  917. // Populate defaults array.
  918. $defaults = array(
  919. 'type' => $name,
  920. 'name' => $name,
  921. 'base' => 'node_content',
  922. 'description' => '',
  923. 'help' => '',
  924. 'title_label' => 'Title',
  925. 'body_label' => 'Body',
  926. 'has_title' => 1,
  927. 'has_body' => 1,
  928. );
  929. // Imposed values for a custom type.
  930. $forced = array(
  931. 'orig_type' => '',
  932. 'old_type' => '',
  933. 'module' => 'node',
  934. 'custom' => 1,
  935. 'modified' => 1,
  936. 'locked' => 0,
  937. );
  938. $type = $forced + $settings + $defaults;
  939. $type = (object) $type;
  940. $saved_type = node_type_save($type);
  941. node_types_rebuild();
  942. menu_rebuild();
  943. node_add_body_field($type);
  944. $this->assertEqual($saved_type, SAVED_NEW, t('Created content type %type.', array('%type' => $type->type)));
  945. // Reset permissions so that permissions for this content type are available.
  946. $this->checkPermissions(array(), TRUE);
  947. return $type;
  948. }
  949. /**
  950. * Get a list files that can be used in tests.
  951. *
  952. * @param $type
  953. * File type, possible values: 'binary', 'html', 'image', 'javascript', 'php', 'sql', 'text'.
  954. * @param $size
  955. * File size in bytes to match. Please check the tests/files folder.
  956. * @return
  957. * List of files that match filter.
  958. */
  959. protected function drupalGetTestFiles($type, $size = NULL) {
  960. if (empty($this->generatedTestFiles)) {
  961. // Generate binary test files.
  962. $lines = array(64, 1024);
  963. $count = 0;
  964. foreach ($lines as $line) {
  965. simpletest_generate_file('binary-' . $count++, 64, $line, 'binary');
  966. }
  967. // Generate text test files.
  968. $lines = array(16, 256, 1024, 2048, 20480);
  969. $count = 0;
  970. foreach ($lines as $line) {
  971. simpletest_generate_file('text-' . $count++, 64, $line);
  972. }
  973. // Copy other test files from simpletest.
  974. $original = drupal_get_path('module', 'simpletest') . '/files';
  975. $files = file_scan_directory($original, '/(html|image|javascript|php|sql)-.*/');
  976. foreach ($files as $file) {
  977. file_unmanaged_copy($file->uri, variable_get('file_public_path', conf_path() . '/files'));
  978. }
  979. $this->generatedTestFiles = TRUE;
  980. }
  981. $files = array();
  982. // Make sure type is valid.
  983. if (in_array($type, array('binary', 'html', 'image', 'javascript', 'php', 'sql', 'text'))) {
  984. $files = file_scan_directory('public://', '/' . $type . '\-.*/');
  985. // If size is set then remove any files that are not of that size.
  986. if ($size !== NULL) {
  987. foreach ($files as $file) {
  988. $stats = stat($file->uri);
  989. if ($stats['size'] != $size) {
  990. unset($files[$file->uri]);
  991. }
  992. }
  993. }
  994. }
  995. usort($files, array($this, 'drupalCompareFiles'));
  996. return $files;
  997. }
  998. /**
  999. * Compare two files based on size and file name.
  1000. */
  1001. protected function drupalCompareFiles($file1, $file2) {
  1002. $compare_size = filesize($file1->uri) - filesize($file2->uri);
  1003. if ($compare_size) {
  1004. // Sort by file size.
  1005. return $compare_size;
  1006. }
  1007. else {
  1008. // The files were the same size, so sort alphabetically.
  1009. return strnatcmp($file1->name, $file2->name);
  1010. }
  1011. }
  1012. /**
  1013. * Create a user with a given set of permissions.
  1014. *
  1015. * @param array $permissions
  1016. * Array of permission names to assign to user. Note that the user always
  1017. * has the default permissions derived from the "authenticated users" role.
  1018. *
  1019. * @return object|false
  1020. * A fully loaded user object with pass_raw property, or FALSE if account
  1021. * creation fails.
  1022. */
  1023. protected function drupalCreateUser(array $permissions = array()) {
  1024. // Create a role with the given permission set, if any.
  1025. $rid = FALSE;
  1026. if ($permissions) {
  1027. $rid = $this->drupalCreateRole($permissions);
  1028. if (!$rid) {
  1029. return FALSE;
  1030. }
  1031. }
  1032. // Create a user assigned to that role.
  1033. $edit = array();
  1034. $edit['name'] = $this->randomName();
  1035. $edit['mail'] = $edit['name'] . '@example.com';
  1036. $edit['pass'] = user_password();
  1037. $edit['status'] = 1;
  1038. if ($rid) {
  1039. $edit['roles'] = array($rid => $rid);
  1040. }
  1041. $account = user_save(drupal_anonymous_user(), $edit);
  1042. $this->assertTrue(!empty($account->uid), t('User created with name %name and pass %pass', array('%name' => $edit['name'], '%pass' => $edit['pass'])), t('User login'));
  1043. if (empty($account->uid)) {
  1044. return FALSE;
  1045. }
  1046. // Add the raw password so that we can log in as this user.
  1047. $account->pass_raw = $edit['pass'];
  1048. return $account;
  1049. }
  1050. /**
  1051. * Creates a role with specified permissions.
  1052. *
  1053. * @param $permissions
  1054. * Array of permission names to assign to role.
  1055. * @param $name
  1056. * (optional) String for the name of the role. Defaults to a random string.
  1057. * @return
  1058. * Role ID of newly created role, or FALSE if role creation failed.
  1059. */
  1060. protected function drupalCreateRole(array $permissions, $name = NULL) {
  1061. // Generate random name if it was not passed.
  1062. if (!$name) {
  1063. $name = $this->randomName();
  1064. }
  1065. // Check the all the permissions strings are valid.
  1066. if (!$this->checkPermissions($permissions)) {
  1067. return FALSE;
  1068. }
  1069. // Create new role.
  1070. $role = new stdClass();
  1071. $role->name = $name;
  1072. user_role_save($role);
  1073. user_role_grant_permissions($role->rid, $permissions);
  1074. $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'));
  1075. if ($role && !empty($role->rid)) {
  1076. $count = db_query('SELECT COUNT(*) FROM {role_permission} WHERE rid = :rid', array(':rid' => $role->rid))->fetchField();
  1077. $this->assertTrue($count == count($permissions), t('Created permissions: @perms', array('@perms' => implode(', ', $permissions))), t('Role'));
  1078. return $role->rid;
  1079. }
  1080. else {
  1081. return FALSE;
  1082. }
  1083. }
  1084. /**
  1085. * Check to make sure that the array of permissions are valid.
  1086. *
  1087. * @param $permissions
  1088. * Permissions to check.
  1089. * @param $reset
  1090. * Reset cached available permissions.
  1091. * @return
  1092. * TRUE or FALSE depending on whether the permissions are valid.
  1093. */
  1094. protected function checkPermissions(array $permissions, $reset = FALSE) {
  1095. $available = &drupal_static(__FUNCTION__);
  1096. if (!isset($available) || $reset) {
  1097. $available = array_keys(module_invoke_all('permission'));
  1098. }
  1099. $valid = TRUE;
  1100. foreach ($permissions as $permission) {
  1101. if (!in_array($permission, $available)) {
  1102. $this->fail(t('Invalid permission %permission.', array('%permission' => $permission)), t('Role'));
  1103. $valid = FALSE;
  1104. }
  1105. }
  1106. return $valid;
  1107. }
  1108. /**
  1109. * Log in a user with the internal browser.
  1110. *
  1111. * If a user is already logged in, then the current user is logged out before
  1112. * logging in the specified user.
  1113. *
  1114. * Please note that neither the global $user nor the passed-in user object is
  1115. * populated with data of the logged in user. If you need full access to the
  1116. * user object after logging in, it must be updated manually. If you also need
  1117. * access to the plain-text password of the user (set by drupalCreateUser()),
  1118. * e.g. to log in the same user again, then it must be re-assigned manually.
  1119. * For example:
  1120. * @code
  1121. * // Create a user.
  1122. * $account = $this->drupalCreateUser(array());
  1123. * $this->drupalLogin($account);
  1124. * // Load real user object.
  1125. * $pass_raw = $account->pass_raw;
  1126. * $account = user_load($account->uid);
  1127. * $account->pass_raw = $pass_raw;
  1128. * @endcode
  1129. *
  1130. * @param $account
  1131. * User object representing the user to log in.
  1132. *
  1133. * @see drupalCreateUser()
  1134. */
  1135. protected function drupalLogin(stdClass $account) {
  1136. if ($this->loggedInUser) {
  1137. $this->drupalLogout();
  1138. }
  1139. $edit = array(
  1140. 'name' => $account->name,
  1141. 'pass' => $account->pass_raw
  1142. );
  1143. $this->drupalPost('user', $edit, t('Log in'));
  1144. // If a "log out" link appears on the page, it is almost certainly because
  1145. // the login was successful.
  1146. $pass = $this->assertLink(t('Log out'), 0, t('User %name successfully logged in.', array('%name' => $account->name)), t('User login'));
  1147. if ($pass) {
  1148. $this->loggedInUser = $account;
  1149. }
  1150. }
  1151. /**
  1152. * Generate a token for the currently logged in user.
  1153. */
  1154. protected function drupalGetToken($value = '') {
  1155. $private_key = drupal_get_private_key();
  1156. return drupal_hmac_base64($value, $this->session_id . $private_key);
  1157. }
  1158. /*
  1159. * Logs a user out of the internal browser, then check the login page to confirm logout.
  1160. */
  1161. protected function drupalLogout() {
  1162. // Make a request to the logout page, and redirect to the user page, the
  1163. // idea being if you were properly logged out you should be seeing a login
  1164. // screen.
  1165. $this->drupalGet('user/logout');
  1166. $this->drupalGet('user');
  1167. $pass = $this->assertField('name', t('Username field found.'), t('Logout'));
  1168. $pass = $pass && $this->assertField('pass', t('Password field found.'), t('Logout'));
  1169. if ($pass) {
  1170. $this->loggedInUser = FALSE;
  1171. }
  1172. }
  1173. /**
  1174. * Generates a database prefix for running tests.
  1175. *
  1176. * The generated database table prefix is used for the Drupal installation
  1177. * being performed for the test. It is also used as user agent HTTP header
  1178. * value by the cURL-based browser of DrupalWebTestCase, which is sent
  1179. * to the Drupal installation of the test. During early Drupal bootstrap, the
  1180. * user agent HTTP header is parsed, and if it matches, all database queries
  1181. * use the database table prefix that has been generated here.
  1182. *
  1183. * @see DrupalWebTestCase::curlInitialize()
  1184. * @see drupal_valid_test_ua()
  1185. * @see DrupalWebTestCase::setUp()
  1186. */
  1187. protected function prepareDatabasePrefix() {
  1188. $this->databasePrefix = 'simpletest' . mt_rand(1000, 1000000);
  1189. // As soon as the database prefix is set, the test might start to execute.
  1190. // All assertions as well as the SimpleTest batch operations are associated
  1191. // with the testId, so the database prefix has to be associated with it.
  1192. db_update('simpletest_test_id')
  1193. ->fields(array('last_prefix' => $this->databasePrefix))
  1194. ->condition('test_id', $this->testId)
  1195. ->execute();
  1196. }
  1197. /**
  1198. * Changes the database connection to the prefixed one.
  1199. *
  1200. * @see DrupalWebTestCase::setUp()
  1201. */
  1202. protected function changeDatabasePrefix() {
  1203. if (empty($this->databasePrefix)) {
  1204. $this->prepareDatabasePrefix();
  1205. // If $this->prepareDatabasePrefix() failed to work, return without
  1206. // setting $this->setupDatabasePrefix to TRUE, so setUp() methods will
  1207. // know to bail out.
  1208. if (empty($this->databasePrefix)) {
  1209. return;
  1210. }
  1211. }
  1212. // Clone the current connection and replace the current prefix.
  1213. $connection_info = Database::getConnectionInfo('default');
  1214. Database::renameConnection('default', 'simpletest_original_default');
  1215. foreach ($connection_info as $target => $value) {
  1216. $connection_info[$target]['prefix'] = array(
  1217. 'default' => $value['prefix']['default'] . $this->databasePrefix,
  1218. );
  1219. }
  1220. Database::addConnectionInfo('default', 'default', $connection_info['default']);
  1221. // Indicate the database prefix was set up correctly.
  1222. $this->setupDatabasePrefix = TRUE;
  1223. }
  1224. /**
  1225. * Prepares the current environment for running the test.
  1226. *
  1227. * Backups various current environment variables and resets them, so they do
  1228. * not interfere with the Drupal site installation in which tests are executed
  1229. * and can be restored in tearDown().
  1230. *
  1231. * Also sets up new resources for the testing environment, such as the public
  1232. * filesystem and configuration directories.
  1233. *
  1234. * @see DrupalWebTestCase::setUp()
  1235. * @see DrupalWebTestCase::tearDown()
  1236. */
  1237. protected function prepareEnvironment() {
  1238. global $user, $language, $conf;
  1239. // Store necessary current values before switching to prefixed database.
  1240. $this->originalLanguage = $language;
  1241. $this->originalLanguageDefault = variable_get('language_default');
  1242. $this->originalFileDirectory = variable_get('file_public_path', conf_path() . '/files');
  1243. $this->originalProfile = drupal_get_profile();
  1244. $this->originalCleanUrl = variable_get('clean_url', 0);
  1245. $this->originalUser = $user;
  1246. // Set to English to prevent exceptions from utf8_truncate() from t()
  1247. // during install if the current language is not 'en'.
  1248. // The following array/object conversion is copied from language_default().
  1249. $language = (object) array('language' => 'en', 'name' => 'English', 'native' => 'English', 'direction' => 0, 'enabled' => 1, 'plurals' => 0, 'formula' => '', 'domain' => '', 'prefix' => '', 'weight' => 0, 'javascript' => '');
  1250. // Save and clean the shutdown callbacks array because it is static cached
  1251. // and will be changed by the test run. Otherwise it will contain callbacks
  1252. // from both environments and the testing environment will try to call the
  1253. // handlers defined by the original one.
  1254. $callbacks = &drupal_register_shutdown_function();
  1255. $this->originalShutdownCallbacks = $callbacks;
  1256. $callbacks = array();
  1257. // Create test directory ahead of installation so fatal errors and debug
  1258. // information can be logged during installation process.
  1259. // Use temporary files directory with the same prefix as the database.
  1260. $this->public_files_directory = $this->originalFileDirectory . '/simpletest/' . substr($this->databasePrefix, 10);
  1261. $this->private_files_directory = $this->public_files_directory . '/private';
  1262. $this->temp_files_directory = $this->private_files_directory . '/temp';
  1263. // Create the directories
  1264. file_prepare_directory($this->public_files_directory, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
  1265. file_prepare_directory($this->private_files_directory, FILE_CREATE_DIRECTORY);
  1266. file_prepare_directory($this->temp_files_directory, FILE_CREATE_DIRECTORY);
  1267. $this->generatedTestFiles = FALSE;
  1268. // Log fatal errors.
  1269. ini_set('log_errors', 1);
  1270. ini_set('error_log', $this->public_files_directory . '/error.log');
  1271. // Set the test information for use in other parts of Drupal.
  1272. $test_info = &$GLOBALS['drupal_test_info'];
  1273. $test_info['test_run_id'] = $this->databasePrefix;
  1274. $test_info['in_child_site'] = FALSE;
  1275. // Indicate the environment was set up correctly.
  1276. $this->setupEnvironment = TRUE;
  1277. }
  1278. /**
  1279. * Sets up a Drupal site for running functional and integration tests.
  1280. *
  1281. * Generates a random database prefix and installs Drupal with the specified
  1282. * installation profile in DrupalWebTestCase::$profile into the
  1283. * prefixed database. Afterwards, installs any additional modules specified by
  1284. * the test.
  1285. *
  1286. * After installation all caches are flushed and several configuration values
  1287. * are reset to the values of the parent site executing the test, since the
  1288. * default values may be incompatible with the environment in which tests are
  1289. * being executed.
  1290. *
  1291. * @param ...
  1292. * List of modules to enable for the duration of the test. This can be
  1293. * either a single array or a variable number of string arguments.
  1294. *
  1295. * @see DrupalWebTestCase::prepareDatabasePrefix()
  1296. * @see DrupalWebTestCase::changeDatabasePrefix()
  1297. * @see DrupalWebTestCase::prepareEnvironment()
  1298. */
  1299. protected function setUp() {
  1300. global $user, $language, $conf;
  1301. // Create the database prefix for this test.
  1302. $this->prepareDatabasePrefix();
  1303. // Prepare the environment for running tests.
  1304. $this->prepareEnvironment();
  1305. if (!$this->setupEnvironment) {
  1306. return FALSE;
  1307. }
  1308. // Reset all statics and variables to perform tests in a clean environment.
  1309. $conf = array();
  1310. drupal_static_reset();
  1311. // Change the database prefix.
  1312. // All static variables need to be reset before the database prefix is
  1313. // changed, since DrupalCacheArray implementations attempt to
  1314. // write back to persistent caches when they are destructed.
  1315. $this->changeDatabasePrefix();
  1316. if (!$this->setupDatabasePrefix) {
  1317. return FALSE;
  1318. }
  1319. // Preset the 'install_profile' system variable, so the first call into
  1320. // system_rebuild_module_data() (in drupal_install_system()) will register
  1321. // the test's profile as a module. Without this, the installation profile of
  1322. // the parent site (executing the test) is registered, and the test
  1323. // profile's hook_install() and other hook implementations are never invoked.
  1324. $conf['install_profile'] = $this->profile;
  1325. // Perform the actual Drupal installation.
  1326. include_once DRUPAL_ROOT . '/includes/install.inc';
  1327. drupal_install_system();
  1328. $this->preloadRegistry();
  1329. // Set path variables.
  1330. variable_set('file_public_path', $this->public_files_directory);
  1331. variable_set('file_private_path', $this->private_files_directory);
  1332. variable_set('file_temporary_path', $this->temp_files_directory);
  1333. // Set the 'simpletest_parent_profile' variable to add the parent profile's
  1334. // search path to the child site's search paths.
  1335. // @see drupal_system_listing()
  1336. // @todo This may need to be primed like 'install_profile' above.
  1337. variable_set('simpletest_parent_profile', $this->originalProfile);
  1338. // Include the testing profile.
  1339. variable_set('install_profile', $this->profile);
  1340. $profile_details = install_profile_info($this->profile, 'en');
  1341. // Install the modules specified by the testing profile.
  1342. module_enable($profile_details['dependencies'], FALSE);
  1343. // Install modules needed for this test. This could have been passed in as
  1344. // either a single array argument or a variable number of string arguments.
  1345. // @todo Remove this compatibility layer in Drupal 8, and only accept
  1346. // $modules as a single array argument.
  1347. $modules = func_get_args();
  1348. if (isset($modules[0]) && is_array($modules[0])) {
  1349. $modules = $modules[0];
  1350. }
  1351. if ($modules) {
  1352. $success = module_enable($modules, TRUE);
  1353. $this->assertTrue($success, t('Enabled modules: %modules', array('%modules' => implode(', ', $modules))));
  1354. }
  1355. // Run the profile tasks.
  1356. $install_profile_module_exists = db_query("SELECT 1 FROM {system} WHERE type = 'module' AND name = :name", array(
  1357. ':name' => $this->profile,
  1358. ))->fetchField();
  1359. if ($install_profile_module_exists) {
  1360. module_enable(array($this->profile), FALSE);
  1361. }
  1362. // Reset/rebuild all data structures after enabling the modules.
  1363. $this->resetAll();
  1364. // Run cron once in that environment, as install.php does at the end of
  1365. // the installation process.
  1366. drupal_cron_run();
  1367. // Ensure that the session is not written to the new environment and replace
  1368. // the global $user session with uid 1 from the new test site.
  1369. drupal_save_session(FALSE);
  1370. // Login as uid 1.
  1371. $user = user_load(1);
  1372. // Restore necessary variables.
  1373. variable_set('install_task', 'done');
  1374. variable_set('clean_url', $this->originalCleanUrl);
  1375. variable_set('site_mail', 'simpletest@example.com');
  1376. variable_set('date_default_timezone', date_default_timezone_get());
  1377. // Set up English language.
  1378. unset($conf['language_default']);
  1379. $language = language_default();
  1380. // Use the test mail class instead of the default mail handler class.
  1381. variable_set('mail_system', array('default-system' => 'TestingMailSystem'));
  1382. drupal_set_time_limit($this->timeLimit);
  1383. $this->setup = TRUE;
  1384. }
  1385. /**
  1386. * Preload the registry from the testing site.
  1387. *
  1388. * This method is called by DrupalWebTestCase::setUp(), and preloads the
  1389. * registry from the testing site to cut down on the time it takes to
  1390. * set up a clean environment for the current test run.
  1391. */
  1392. protected function preloadRegistry() {
  1393. // Use two separate queries, each with their own connections: copy the
  1394. // {registry} and {registry_file} tables over from the parent installation
  1395. // to the child installation.
  1396. $original_connection = Database::getConnection('default', 'simpletest_original_default');
  1397. $test_connection = Database::getConnection();
  1398. foreach (array('registry', 'registry_file') as $table) {
  1399. // Find the records from the parent database.
  1400. $source_query = $original_connection
  1401. ->select($table, array(), array('fetch' => PDO::FETCH_ASSOC))
  1402. ->fields($table);
  1403. $dest_query = $test_connection->insert($table);
  1404. $first = TRUE;
  1405. foreach ($source_query->execute() as $row) {
  1406. if ($first) {
  1407. $dest_query->fields(array_keys($row));
  1408. $first = FALSE;
  1409. }
  1410. // Insert the records into the child database.
  1411. $dest_query->values($row);
  1412. }
  1413. $dest_query->execute();
  1414. }
  1415. }
  1416. /**
  1417. * Reset all data structures after having enabled new modules.
  1418. *
  1419. * This method is called by DrupalWebTestCase::setUp() after enabling
  1420. * the requested modules. It must be called again when additional modules
  1421. * are enabled later.
  1422. */
  1423. protected function resetAll() {
  1424. // Reset all static variables.
  1425. drupal_static_reset();
  1426. // Reset the list of enabled modules.
  1427. module_list(TRUE);
  1428. // Reset cached schema for new database prefix. This must be done before
  1429. // drupal_flush_all_caches() so rebuilds can make use of the schema of
  1430. // modules enabled on the cURL side.
  1431. drupal_get_schema(NULL, TRUE);
  1432. // Perform rebuilds and flush remaining caches.
  1433. drupal_flush_all_caches();
  1434. // Reload global $conf array and permissions.
  1435. $this->refreshVariables();
  1436. $this->checkPermissions(array(), TRUE);
  1437. }
  1438. /**
  1439. * Refresh the in-memory set of variables. Useful after a page request is made
  1440. * that changes a variable in a different thread.
  1441. *
  1442. * In other words calling a settings page with $this->drupalPost() with a changed
  1443. * value would update a variable to reflect that change, but in the thread that
  1444. * made the call (thread running the test) the changed variable would not be
  1445. * picked up.
  1446. *
  1447. * This method clears the variables cache and loads a fresh copy from the database
  1448. * to ensure that the most up-to-date set of variables is loaded.
  1449. */
  1450. protected function refreshVariables() {
  1451. global $conf;
  1452. cache_clear_all('variables', 'cache_bootstrap');
  1453. $conf = variable_initialize();
  1454. }
  1455. /**
  1456. * Delete created files and temporary files directory, delete the tables created by setUp(),
  1457. * and reset the database prefix.
  1458. */
  1459. protected function tearDown() {
  1460. global $user, $language;
  1461. // In case a fatal error occurred that was not in the test process read the
  1462. // log to pick up any fatal errors.
  1463. simpletest_log_read($this->testId, $this->databasePrefix, get_class($this), TRUE);
  1464. $emailCount = count(variable_get('drupal_test_email_collector', array()));
  1465. if ($emailCount) {
  1466. $message = format_plural($emailCount, '1 e-mail was sent during this test.', '@count e-mails were sent during this test.');
  1467. $this->pass($message, t('E-mail'));
  1468. }
  1469. // Delete temporary files directory.
  1470. file_unmanaged_delete_recursive($this->originalFileDirectory . '/simpletest/' . substr($this->databasePrefix, 10));
  1471. // Remove all prefixed tables.
  1472. $tables = db_find_tables($this->databasePrefix . '%');
  1473. $connection_info = Database::getConnectionInfo('default');
  1474. $tables = db_find_tables($connection_info['default']['prefix']['default'] . '%');
  1475. if (empty($tables)) {
  1476. $this->fail('Failed to find test tables to drop.');
  1477. }
  1478. $prefix_length = strlen($connection_info['default']['prefix']['default']);
  1479. foreach ($tables as $table) {
  1480. if (db_drop_table(substr($table, $prefix_length))) {
  1481. unset($tables[$table]);
  1482. }
  1483. }
  1484. if (!empty($tables)) {
  1485. $this->fail('Failed to drop all prefixed tables.');
  1486. }
  1487. // Get back to the original connection.
  1488. Database::removeConnection('default');
  1489. Database::renameConnection('simpletest_original_default', 'default');
  1490. // Restore original shutdown callbacks array to prevent original
  1491. // environment of calling handlers from test run.
  1492. $callbacks = &drupal_register_shutdown_function();
  1493. $callbacks = $this->originalShutdownCallbacks;
  1494. // Return the user to the original one.
  1495. $user = $this->originalUser;
  1496. drupal_save_session(TRUE);
  1497. // Ensure that internal logged in variable and cURL options are reset.
  1498. $this->loggedInUser = FALSE;
  1499. $this->additionalCurlOptions = array();
  1500. // Reload module list and implementations to ensure that test module hooks
  1501. // aren't called after tests.
  1502. module_list(TRUE);
  1503. module_implements('', FALSE, TRUE);
  1504. // Reset the Field API.
  1505. field_cache_clear();
  1506. // Rebuild caches.
  1507. $this->refreshVariables();
  1508. // Reset public files directory.
  1509. $GLOBALS['conf']['file_public_path'] = $this->originalFileDirectory;
  1510. // Reset language.
  1511. $language = $this->originalLanguage;
  1512. if ($this->originalLanguageDefault) {
  1513. $GLOBALS['conf']['language_default'] = $this->originalLanguageDefault;
  1514. }
  1515. // Close the CURL handler.
  1516. $this->curlClose();
  1517. }
  1518. /**
  1519. * Initializes the cURL connection.
  1520. *
  1521. * If the simpletest_httpauth_credentials variable is set, this function will
  1522. * add HTTP authentication headers. This is necessary for testing sites that
  1523. * are protected by login credentials from public access.
  1524. * See the description of $curl_options for other options.
  1525. */
  1526. protected function curlInitialize() {
  1527. global $base_url;
  1528. if (!isset($this->curlHandle)) {
  1529. $this->curlHandle = curl_init();
  1530. // Some versions/configurations of cURL break on a NULL cookie jar, so
  1531. // supply a real file.
  1532. if (empty($this->cookieFile)) {
  1533. $this->cookieFile = $this->public_files_directory . '/cookie.jar';
  1534. }
  1535. $curl_options = array(
  1536. CURLOPT_COOKIEJAR => $this->cookieFile,
  1537. CURLOPT_URL => $base_url,
  1538. CURLOPT_FOLLOWLOCATION => FALSE,
  1539. CURLOPT_RETURNTRANSFER => TRUE,
  1540. CURLOPT_SSL_VERIFYPEER => FALSE, // Required to make the tests run on HTTPS.
  1541. CURLOPT_SSL_VERIFYHOST => FALSE, // Required to make the tests run on HTTPS.
  1542. CURLOPT_HEADERFUNCTION => array(&$this, 'curlHeaderCallback'),
  1543. CURLOPT_USERAGENT => $this->databasePrefix,
  1544. );
  1545. if (isset($this->httpauth_credentials)) {
  1546. $curl_options[CURLOPT_HTTPAUTH] = $this->httpauth_method;
  1547. $curl_options[CURLOPT_USERPWD] = $this->httpauth_credentials;
  1548. }
  1549. // curl_setopt_array() returns FALSE if any of the specified options
  1550. // cannot be set, and stops processing any further options.
  1551. $result = curl_setopt_array($this->curlHandle, $this->additionalCurlOptions + $curl_options);
  1552. if (!$result) {
  1553. throw new Exception('One or more cURL options could not be set.');
  1554. }
  1555. // By default, the child session name should be the same as the parent.
  1556. $this->session_name = session_name();
  1557. }
  1558. // We set the user agent header on each request so as to use the current
  1559. // time and a new uniqid.
  1560. if (preg_match('/simpletest\d+/', $this->databasePrefix, $matches)) {
  1561. curl_setopt($this->curlHandle, CURLOPT_USERAGENT, drupal_generate_test_ua($matches[0]));
  1562. }
  1563. }
  1564. /**
  1565. * Initializes and executes a cURL request.
  1566. *
  1567. * @param $curl_options
  1568. * An associative array of cURL options to set, where the keys are constants
  1569. * defined by the cURL library. For a list of valid options, see
  1570. * http://www.php.net/manual/function.curl-setopt.php
  1571. * @param $redirect
  1572. * FALSE if this is an initial request, TRUE if this request is the result
  1573. * of a redirect.
  1574. *
  1575. * @return
  1576. * The content returned from the call to curl_exec().
  1577. *
  1578. * @see curlInitialize()
  1579. */
  1580. protected function curlExec($curl_options, $redirect = FALSE) {
  1581. $this->curlInitialize();
  1582. if (!empty($curl_options[CURLOPT_URL])) {
  1583. // Forward XDebug activation if present.
  1584. if (isset($_COOKIE['XDEBUG_SESSION'])) {
  1585. $options = drupal_parse_url($curl_options[CURLOPT_URL]);
  1586. $options += array('query' => array());
  1587. $options['query'] += array('XDEBUG_SESSION_START' => $_COOKIE['XDEBUG_SESSION']);
  1588. $curl_options[CURLOPT_URL] = url($options['path'], $options);
  1589. }
  1590. // cURL incorrectly handles URLs with a fragment by including the
  1591. // fragment in the request to the server, causing some web servers
  1592. // to reject the request citing "400 - Bad Request". To prevent
  1593. // this, we strip the fragment from the request.
  1594. // TODO: Remove this for Drupal 8, since fixed in curl 7.20.0.
  1595. if (strpos($curl_options[CURLOPT_URL], '#')) {
  1596. $original_url = $curl_options[CURLOPT_URL];
  1597. $curl_options[CURLOPT_URL] = strtok($curl_options[CURLOPT_URL], '#');
  1598. }
  1599. }
  1600. $url = empty($curl_options[CURLOPT_URL]) ? curl_getinfo($this->curlHandle, CURLINFO_EFFECTIVE_URL) : $curl_options[CURLOPT_URL];
  1601. if (!empty($curl_options[CURLOPT_POST])) {
  1602. // This is a fix for the Curl library to prevent Expect: 100-continue
  1603. // headers in POST requests, that may cause unexpected HTTP response
  1604. // codes from some webservers (like lighttpd that returns a 417 error
  1605. // code). It is done by setting an empty "Expect" header field that is
  1606. // not overwritten by Curl.
  1607. $curl_options[CURLOPT_HTTPHEADER][] = 'Expect:';
  1608. }
  1609. curl_setopt_array($this->curlHandle, $this->additionalCurlOptions + $curl_options);
  1610. if (!$redirect) {
  1611. // Reset headers, the session ID and the redirect counter.
  1612. $this->session_id = NULL;
  1613. $this->headers = array();
  1614. $this->redirect_count = 0;
  1615. }
  1616. $content = curl_exec($this->curlHandle);
  1617. $status = curl_getinfo($this->curlHandle, CURLINFO_HTTP_CODE);
  1618. // cURL incorrectly handles URLs with fragments, so instead of
  1619. // letting cURL handle redirects we take of them ourselves to
  1620. // to prevent fragments being sent to the web server as part
  1621. // of the request.
  1622. // TODO: Remove this for Drupal 8, since fixed in curl 7.20.0.
  1623. if (in_array($status, array(300, 301, 302, 303, 305, 307)) && $this->redirect_count < variable_get('simpletest_maximum_redirects', 5)) {
  1624. if ($this->drupalGetHeader('location')) {
  1625. $this->redirect_count++;
  1626. $curl_options = array();
  1627. $curl_options[CURLOPT_URL] = $this->drupalGetHeader('location');
  1628. $curl_options[CURLOPT_HTTPGET] = TRUE;
  1629. return $this->curlExec($curl_options, TRUE);
  1630. }
  1631. }
  1632. $this->drupalSetContent($content, isset($original_url) ? $original_url : curl_getinfo($this->curlHandle, CURLINFO_EFFECTIVE_URL));
  1633. $message_vars = array(
  1634. '!method' => !empty($curl_options[CURLOPT_NOBODY]) ? 'HEAD' : (empty($curl_options[CURLOPT_POSTFIELDS]) ? 'GET' : 'POST'),
  1635. '@url' => isset($original_url) ? $original_url : $url,
  1636. '@status' => $status,
  1637. '!length' => format_size(strlen($this->drupalGetContent()))
  1638. );
  1639. $message = t('!method @url returned @status (!length).', $message_vars);
  1640. $this->assertTrue($this->drupalGetContent() !== FALSE, $message, t('Browser'));
  1641. return $this->drupalGetContent();
  1642. }
  1643. /**
  1644. * Reads headers and registers errors received from the tested site.
  1645. *
  1646. * @see _drupal_log_error().
  1647. *
  1648. * @param $curlHandler
  1649. * The cURL handler.
  1650. * @param $header
  1651. * An header.
  1652. */
  1653. protected function curlHeaderCallback($curlHandler, $header) {
  1654. // Header fields can be extended over multiple lines by preceding each
  1655. // extra line with at least one SP or HT. They should be joined on receive.
  1656. // Details are in RFC2616 section 4.
  1657. if ($header[0] == ' ' || $header[0] == "\t") {
  1658. // Normalize whitespace between chucks.
  1659. $this->headers[] = array_pop($this->headers) . ' ' . trim($header);
  1660. }
  1661. else {
  1662. $this->headers[] = $header;
  1663. }
  1664. // Errors are being sent via X-Drupal-Assertion-* headers,
  1665. // generated by _drupal_log_error() in the exact form required
  1666. // by DrupalWebTestCase::error().
  1667. if (preg_match('/^X-Drupal-Assertion-[0-9]+: (.*)$/', $header, $matches)) {
  1668. // Call DrupalWebTestCase::error() with the parameters from the header.
  1669. call_user_func_array(array(&$this, 'error'), unserialize(urldecode($matches[1])));
  1670. }
  1671. // Save cookies.
  1672. if (preg_match('/^Set-Cookie: ([^=]+)=(.+)/', $header, $matches)) {
  1673. $name = $matches[1];
  1674. $parts = array_map('trim', explode(';', $matches[2]));
  1675. $value = array_shift($parts);
  1676. $this->cookies[$name] = array('value' => $value, 'secure' => in_array('secure', $parts));
  1677. if ($name == $this->session_name) {
  1678. if ($value != 'deleted') {
  1679. $this->session_id = $value;
  1680. }
  1681. else {
  1682. $this->session_id = NULL;
  1683. }
  1684. }
  1685. }
  1686. // This is required by cURL.
  1687. return strlen($header);
  1688. }
  1689. /**
  1690. * Close the cURL handler and unset the handler.
  1691. */
  1692. protected function curlClose() {
  1693. if (isset($this->curlHandle)) {
  1694. curl_close($this->curlHandle);
  1695. unset($this->curlHandle);
  1696. }
  1697. }
  1698. /**
  1699. * Parse content returned from curlExec using DOM and SimpleXML.
  1700. *
  1701. * @return
  1702. * A SimpleXMLElement or FALSE on failure.
  1703. */
  1704. protected function parse() {
  1705. if (!$this->elements) {
  1706. // DOM can load HTML soup. But, HTML soup can throw warnings, suppress
  1707. // them.
  1708. $htmlDom = new DOMDocument();
  1709. @$htmlDom->loadHTML($this->drupalGetContent());
  1710. if ($htmlDom) {
  1711. $this->pass(t('Valid HTML found on "@path"', array('@path' => $this->getUrl())), t('Browser'));
  1712. // It's much easier to work with simplexml than DOM, luckily enough
  1713. // we can just simply import our DOM tree.
  1714. $this->elements = simplexml_import_dom($htmlDom);
  1715. }
  1716. }
  1717. if (!$this->elements) {
  1718. $this->fail(t('Parsed page successfully.'), t('Browser'));
  1719. }
  1720. return $this->elements;
  1721. }
  1722. /**
  1723. * Retrieves a Drupal path or an absolute path.
  1724. *
  1725. * @param $path
  1726. * Drupal path or URL to load into internal browser
  1727. * @param $options
  1728. * Options to be forwarded to url().
  1729. * @param $headers
  1730. * An array containing additional HTTP request headers, each formatted as
  1731. * "name: value".
  1732. * @return
  1733. * The retrieved HTML string, also available as $this->drupalGetContent()
  1734. */
  1735. protected function drupalGet($path, array $options = array(), array $headers = array()) {
  1736. $options['absolute'] = TRUE;
  1737. // We re-using a CURL connection here. If that connection still has certain
  1738. // options set, it might change the GET into a POST. Make sure we clear out
  1739. // previous options.
  1740. $out = $this->curlExec(array(CURLOPT_HTTPGET => TRUE, CURLOPT_URL => url($path, $options), CURLOPT_NOBODY => FALSE, CURLOPT_HTTPHEADER => $headers));
  1741. $this->refreshVariables(); // Ensure that any changes to variables in the other thread are picked up.
  1742. // Replace original page output with new output from redirected page(s).
  1743. if ($new = $this->checkForMetaRefresh()) {
  1744. $out = $new;
  1745. }
  1746. $this->verbose('GET request to: ' . $path .
  1747. '<hr />Ending URL: ' . $this->getUrl() .
  1748. '<hr />' . $out);
  1749. return $out;
  1750. }
  1751. /**
  1752. * Retrieve a Drupal path or an absolute path and JSON decode the result.
  1753. */
  1754. protected function drupalGetAJAX($path, array $options = array(), array $headers = array()) {
  1755. return drupal_json_decode($this->drupalGet($path, $options, $headers));
  1756. }
  1757. /**
  1758. * Execute a POST request on a Drupal page.
  1759. * It will be done as usual POST request with SimpleBrowser.
  1760. *
  1761. * @param $path
  1762. * Location of the post form. Either a Drupal path or an absolute path or
  1763. * NULL to post to the current page. For multi-stage forms you can set the
  1764. * path to NULL and have it post to the last received page. Example:
  1765. *
  1766. * @code
  1767. * // First step in form.
  1768. * $edit = array(...);
  1769. * $this->drupalPost('some_url', $edit, t('Save'));
  1770. *
  1771. * // Second step in form.
  1772. * $edit = array(...);
  1773. * $this->drupalPost(NULL, $edit, t('Save'));
  1774. * @endcode
  1775. * @param $edit
  1776. * Field data in an associative array. Changes the current input fields
  1777. * (where possible) to the values indicated. A checkbox can be set to
  1778. * TRUE to be checked and FALSE to be unchecked. Note that when a form
  1779. * contains file upload fields, other fields cannot start with the '@'
  1780. * character.
  1781. *
  1782. * Multiple select fields can be set using name[] and setting each of the
  1783. * possible values. Example:
  1784. * @code
  1785. * $edit = array();
  1786. * $edit['name[]'] = array('value1', 'value2');
  1787. * @endcode
  1788. * @param $submit
  1789. * Value of the submit button whose click is to be emulated. For example,
  1790. * t('Save'). The processing of the request depends on this value. For
  1791. * example, a form may have one button with the value t('Save') and another
  1792. * button with the value t('Delete'), and execute different code depending
  1793. * on which one is clicked.
  1794. *
  1795. * This function can also be called to emulate an Ajax submission. In this
  1796. * case, this value needs to be an array with the following keys:
  1797. * - path: A path to submit the form values to for Ajax-specific processing,
  1798. * which is likely different than the $path parameter used for retrieving
  1799. * the initial form. Defaults to 'system/ajax'.
  1800. * - triggering_element: If the value for the 'path' key is 'system/ajax' or
  1801. * another generic Ajax processing path, this needs to be set to the name
  1802. * of the element. If the name doesn't identify the element uniquely, then
  1803. * this should instead be an array with a single key/value pair,
  1804. * corresponding to the element name and value. The callback for the
  1805. * generic Ajax processing path uses this to find the #ajax information
  1806. * for the element, including which specific callback to use for
  1807. * processing the request.
  1808. *
  1809. * This can also be set to NULL in order to emulate an Internet Explorer
  1810. * submission of a form with a single text field, and pressing ENTER in that
  1811. * textfield: under these conditions, no button information is added to the
  1812. * POST data.
  1813. * @param $options
  1814. * Options to be forwarded to url().
  1815. * @param $headers
  1816. * An array containing additional HTTP request headers, each formatted as
  1817. * "name: value".
  1818. * @param $form_html_id
  1819. * (optional) HTML ID of the form to be submitted. On some pages
  1820. * there are many identical forms, so just using the value of the submit
  1821. * button is not enough. For example: 'trigger-node-presave-assign-form'.
  1822. * Note that this is not the Drupal $form_id, but rather the HTML ID of the
  1823. * form, which is typically the same thing but with hyphens replacing the
  1824. * underscores.
  1825. * @param $extra_post
  1826. * (optional) A string of additional data to append to the POST submission.
  1827. * This can be used to add POST data for which there are no HTML fields, as
  1828. * is done by drupalPostAJAX(). This string is literally appended to the
  1829. * POST data, so it must already be urlencoded and contain a leading "&"
  1830. * (e.g., "&extra_var1=hello+world&extra_var2=you%26me").
  1831. */
  1832. protected function drupalPost($path, $edit, $submit, array $options = array(), array $headers = array(), $form_html_id = NULL, $extra_post = NULL) {
  1833. $submit_matches = FALSE;
  1834. $ajax = is_array($submit);
  1835. if (isset($path)) {
  1836. $this->drupalGet($path, $options);
  1837. }
  1838. if ($this->parse()) {
  1839. $edit_save = $edit;
  1840. // Let's iterate over all the forms.
  1841. $xpath = "//form";
  1842. if (!empty($form_html_id)) {
  1843. $xpath .= "[@id='" . $form_html_id . "']";
  1844. }
  1845. $forms = $this->xpath($xpath);
  1846. foreach ($forms as $form) {
  1847. // We try to set the fields of this form as specified in $edit.
  1848. $edit = $edit_save;
  1849. $post = array();
  1850. $upload = array();
  1851. $submit_matches = $this->handleForm($post, $edit, $upload, $ajax ? NULL : $submit, $form);
  1852. $action = isset($form['action']) ? $this->getAbsoluteUrl((string) $form['action']) : $this->getUrl();
  1853. if ($ajax) {
  1854. $action = $this->getAbsoluteUrl(!empty($submit['path']) ? $submit['path'] : 'system/ajax');
  1855. // Ajax callbacks verify the triggering element if necessary, so while
  1856. // we may eventually want extra code that verifies it in the
  1857. // handleForm() function, it's not currently a requirement.
  1858. $submit_matches = TRUE;
  1859. }
  1860. // We post only if we managed to handle every field in edit and the
  1861. // submit button matches.
  1862. if (!$edit && ($submit_matches || !isset($submit))) {
  1863. $post_array = $post;
  1864. if ($upload) {
  1865. // TODO: cURL handles file uploads for us, but the implementation
  1866. // is broken. This is a less than elegant workaround. Alternatives
  1867. // are being explored at #253506.
  1868. foreach ($upload as $key => $file) {
  1869. $file = drupal_realpath($file);
  1870. if ($file && is_file($file)) {
  1871. // Use the new CurlFile class for file uploads when using PHP
  1872. // 5.5 or higher.
  1873. if (class_exists('CurlFile')) {
  1874. $post[$key] = curl_file_create($file);
  1875. }
  1876. else {
  1877. $post[$key] = '@' . $file;
  1878. }
  1879. }
  1880. }
  1881. }
  1882. else {
  1883. foreach ($post as $key => $value) {
  1884. // Encode according to application/x-www-form-urlencoded
  1885. // Both names and values needs to be urlencoded, according to
  1886. // http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1
  1887. $post[$key] = urlencode($key) . '=' . urlencode($value);
  1888. }
  1889. $post = implode('&', $post) . $extra_post;
  1890. }
  1891. $out = $this->curlExec(array(CURLOPT_URL => $action, CURLOPT_POST => TRUE, CURLOPT_POSTFIELDS => $post, CURLOPT_HTTPHEADER => $headers));
  1892. // Ensure that any changes to variables in the other thread are picked up.
  1893. $this->refreshVariables();
  1894. // Replace original page output with new output from redirected page(s).
  1895. if ($new = $this->checkForMetaRefresh()) {
  1896. $out = $new;
  1897. }
  1898. $this->verbose('POST request to: ' . $path .
  1899. '<hr />Ending URL: ' . $this->getUrl() .
  1900. '<hr />Fields: ' . highlight_string('<?php ' . var_export($post_array, TRUE), TRUE) .
  1901. '<hr />' . $out);
  1902. return $out;
  1903. }
  1904. }
  1905. // We have not found a form which contained all fields of $edit.
  1906. foreach ($edit as $name => $value) {
  1907. $this->fail(t('Failed to set field @name to @value', array('@name' => $name, '@value' => $value)));
  1908. }
  1909. if (!$ajax && isset($submit)) {
  1910. $this->assertTrue($submit_matches, t('Found the @submit button', array('@submit' => $submit)));
  1911. }
  1912. $this->fail(t('Found the requested form fields at @path', array('@path' => $path)));
  1913. }
  1914. }
  1915. /**
  1916. * Execute an Ajax submission.
  1917. *
  1918. * This executes a POST as ajax.js does. It uses the returned JSON data, an
  1919. * array of commands, to update $this->content using equivalent DOM
  1920. * manipulation as is used by ajax.js. It also returns the array of commands.
  1921. *
  1922. * @param $path
  1923. * Location of the form containing the Ajax enabled element to test. Can be
  1924. * either a Drupal path or an absolute path or NULL to use the current page.
  1925. * @param $edit
  1926. * Field data in an associative array. Changes the current input fields
  1927. * (where possible) to the values indicated.
  1928. * @param $triggering_element
  1929. * The name of the form element that is responsible for triggering the Ajax
  1930. * functionality to test. May be a string or, if the triggering element is
  1931. * a button, an associative array where the key is the name of the button
  1932. * and the value is the button label. i.e.) array('op' => t('Refresh')).
  1933. * @param $ajax_path
  1934. * (optional) Override the path set by the Ajax settings of the triggering
  1935. * element. In the absence of both the triggering element's Ajax path and
  1936. * $ajax_path 'system/ajax' will be used.
  1937. * @param $options
  1938. * (optional) Options to be forwarded to url().
  1939. * @param $headers
  1940. * (optional) An array containing additional HTTP request headers, each
  1941. * formatted as "name: value". Forwarded to drupalPost().
  1942. * @param $form_html_id
  1943. * (optional) HTML ID of the form to be submitted, use when there is more
  1944. * than one identical form on the same page and the value of the triggering
  1945. * element is not enough to identify the form. Note this is not the Drupal
  1946. * ID of the form but rather the HTML ID of the form.
  1947. * @param $ajax_settings
  1948. * (optional) An array of Ajax settings which if specified will be used in
  1949. * place of the Ajax settings of the triggering element.
  1950. *
  1951. * @return
  1952. * An array of Ajax commands.
  1953. *
  1954. * @see drupalPost()
  1955. * @see ajax.js
  1956. */
  1957. protected function drupalPostAJAX($path, $edit, $triggering_element, $ajax_path = NULL, array $options = array(), array $headers = array(), $form_html_id = NULL, $ajax_settings = NULL) {
  1958. // Get the content of the initial page prior to calling drupalPost(), since
  1959. // drupalPost() replaces $this->content.
  1960. if (isset($path)) {
  1961. $this->drupalGet($path, $options);
  1962. }
  1963. $content = $this->content;
  1964. $drupal_settings = $this->drupalSettings;
  1965. // Get the Ajax settings bound to the triggering element.
  1966. if (!isset($ajax_settings)) {
  1967. if (is_array($triggering_element)) {
  1968. $xpath = '//*[@name="' . key($triggering_element) . '" and @value="' . current($triggering_element) . '"]';
  1969. }
  1970. else {
  1971. $xpath = '//*[@name="' . $triggering_element . '"]';
  1972. }
  1973. if (isset($form_html_id)) {
  1974. $xpath = '//form[@id="' . $form_html_id . '"]' . $xpath;
  1975. }
  1976. $element = $this->xpath($xpath);
  1977. $element_id = (string) $element[0]['id'];
  1978. $ajax_settings = $drupal_settings['ajax'][$element_id];
  1979. }
  1980. // Add extra information to the POST data as ajax.js does.
  1981. $extra_post = '';
  1982. if (isset($ajax_settings['submit'])) {
  1983. foreach ($ajax_settings['submit'] as $key => $value) {
  1984. $extra_post .= '&' . urlencode($key) . '=' . urlencode($value);
  1985. }
  1986. }
  1987. foreach ($this->xpath('//*[@id]') as $element) {
  1988. $id = (string) $element['id'];
  1989. $extra_post .= '&' . urlencode('ajax_html_ids[]') . '=' . urlencode($id);
  1990. }
  1991. if (isset($drupal_settings['ajaxPageState'])) {
  1992. $extra_post .= '&' . urlencode('ajax_page_state[theme]') . '=' . urlencode($drupal_settings['ajaxPageState']['theme']);
  1993. $extra_post .= '&' . urlencode('ajax_page_state[theme_token]') . '=' . urlencode($drupal_settings['ajaxPageState']['theme_token']);
  1994. foreach ($drupal_settings['ajaxPageState']['css'] as $key => $value) {
  1995. $extra_post .= '&' . urlencode("ajax_page_state[css][$key]") . '=1';
  1996. }
  1997. foreach ($drupal_settings['ajaxPageState']['js'] as $key => $value) {
  1998. $extra_post .= '&' . urlencode("ajax_page_state[js][$key]") . '=1';
  1999. }
  2000. }
  2001. // Unless a particular path is specified, use the one specified by the
  2002. // Ajax settings, or else 'system/ajax'.
  2003. if (!isset($ajax_path)) {
  2004. $ajax_path = isset($ajax_settings['url']) ? $ajax_settings['url'] : 'system/ajax';
  2005. }
  2006. // Submit the POST request.
  2007. $return = drupal_json_decode($this->drupalPost(NULL, $edit, array('path' => $ajax_path, 'triggering_element' => $triggering_element), $options, $headers, $form_html_id, $extra_post));
  2008. // Change the page content by applying the returned commands.
  2009. if (!empty($ajax_settings) && !empty($return)) {
  2010. // ajax.js applies some defaults to the settings object, so do the same
  2011. // for what's used by this function.
  2012. $ajax_settings += array(
  2013. 'method' => 'replaceWith',
  2014. );
  2015. // DOM can load HTML soup. But, HTML soup can throw warnings, suppress
  2016. // them.
  2017. $dom = new DOMDocument();
  2018. @$dom->loadHTML($content);
  2019. // XPath allows for finding wrapper nodes better than DOM does.
  2020. $xpath = new DOMXPath($dom);
  2021. foreach ($return as $command) {
  2022. switch ($command['command']) {
  2023. case 'settings':
  2024. $drupal_settings = drupal_array_merge_deep($drupal_settings, $command['settings']);
  2025. break;
  2026. case 'insert':
  2027. $wrapperNode = NULL;
  2028. // When a command doesn't specify a selector, use the
  2029. // #ajax['wrapper'] which is always an HTML ID.
  2030. if (!isset($command['selector'])) {
  2031. $wrapperNode = $xpath->query('//*[@id="' . $ajax_settings['wrapper'] . '"]')->item(0);
  2032. }
  2033. // @todo Ajax commands can target any jQuery selector, but these are
  2034. // hard to fully emulate with XPath. For now, just handle 'head'
  2035. // and 'body', since these are used by ajax_render().
  2036. elseif (in_array($command['selector'], array('head', 'body'))) {
  2037. $wrapperNode = $xpath->query('//' . $command['selector'])->item(0);
  2038. }
  2039. if ($wrapperNode) {
  2040. // ajax.js adds an enclosing DIV to work around a Safari bug.
  2041. $newDom = new DOMDocument();
  2042. // DOM can load HTML soup. But, HTML soup can throw warnings,
  2043. // suppress them.
  2044. $newDom->loadHTML('<div>' . $command['data'] . '</div>');
  2045. // Suppress warnings thrown when duplicate HTML IDs are
  2046. // encountered. This probably means we are replacing an element
  2047. // with the same ID.
  2048. $newNode = @$dom->importNode($newDom->documentElement->firstChild->firstChild, TRUE);
  2049. $method = isset($command['method']) ? $command['method'] : $ajax_settings['method'];
  2050. // The "method" is a jQuery DOM manipulation function. Emulate
  2051. // each one using PHP's DOMNode API.
  2052. switch ($method) {
  2053. case 'replaceWith':
  2054. $wrapperNode->parentNode->replaceChild($newNode, $wrapperNode);
  2055. break;
  2056. case 'append':
  2057. $wrapperNode->appendChild($newNode);
  2058. break;
  2059. case 'prepend':
  2060. // If no firstChild, insertBefore() falls back to
  2061. // appendChild().
  2062. $wrapperNode->insertBefore($newNode, $wrapperNode->firstChild);
  2063. break;
  2064. case 'before':
  2065. $wrapperNode->parentNode->insertBefore($newNode, $wrapperNode);
  2066. break;
  2067. case 'after':
  2068. // If no nextSibling, insertBefore() falls back to
  2069. // appendChild().
  2070. $wrapperNode->parentNode->insertBefore($newNode, $wrapperNode->nextSibling);
  2071. break;
  2072. case 'html':
  2073. foreach ($wrapperNode->childNodes as $childNode) {
  2074. $wrapperNode->removeChild($childNode);
  2075. }
  2076. $wrapperNode->appendChild($newNode);
  2077. break;
  2078. }
  2079. }
  2080. break;
  2081. case 'updateBuildId':
  2082. $buildId = $xpath->query('//input[@name="form_build_id" and @value="' . $command['old'] . '"]')->item(0);
  2083. if ($buildId) {
  2084. $buildId->setAttribute('value', $command['new']);
  2085. }
  2086. break;
  2087. // @todo Add suitable implementations for these commands in order to
  2088. // have full test coverage of what ajax.js can do.
  2089. case 'remove':
  2090. break;
  2091. case 'changed':
  2092. break;
  2093. case 'css':
  2094. break;
  2095. case 'data':
  2096. break;
  2097. case 'restripe':
  2098. break;
  2099. case 'add_css':
  2100. break;
  2101. }
  2102. }
  2103. $content = $dom->saveHTML();
  2104. }
  2105. $this->drupalSetContent($content);
  2106. $this->drupalSetSettings($drupal_settings);
  2107. $verbose = 'AJAX POST request to: ' . $path;
  2108. $verbose .= '<br />AJAX callback path: ' . $ajax_path;
  2109. $verbose .= '<hr />Ending URL: ' . $this->getUrl();
  2110. $verbose .= '<hr />' . $this->content;
  2111. $this->verbose($verbose);
  2112. return $return;
  2113. }
  2114. /**
  2115. * Runs cron in the Drupal installed by Simpletest.
  2116. */
  2117. protected function cronRun() {
  2118. $this->drupalGet($GLOBALS['base_url'] . '/cron.php', array('external' => TRUE, 'query' => array('cron_key' => variable_get('cron_key', 'drupal'))));
  2119. }
  2120. /**
  2121. * Check for meta refresh tag and if found call drupalGet() recursively. This
  2122. * function looks for the http-equiv attribute to be set to "Refresh"
  2123. * and is case-sensitive.
  2124. *
  2125. * @return
  2126. * Either the new page content or FALSE.
  2127. */
  2128. protected function checkForMetaRefresh() {
  2129. if (strpos($this->drupalGetContent(), '<meta ') && $this->parse()) {
  2130. $refresh = $this->xpath('//meta[@http-equiv="Refresh"]');
  2131. if (!empty($refresh)) {
  2132. // Parse the content attribute of the meta tag for the format:
  2133. // "[delay]: URL=[page_to_redirect_to]".
  2134. if (preg_match('/\d+;\s*URL=(?P<url>.*)/i', $refresh[0]['content'], $match)) {
  2135. return $this->drupalGet($this->getAbsoluteUrl(decode_entities($match['url'])));
  2136. }
  2137. }
  2138. }
  2139. return FALSE;
  2140. }
  2141. /**
  2142. * Retrieves only the headers for a Drupal path or an absolute path.
  2143. *
  2144. * @param $path
  2145. * Drupal path or URL to load into internal browser
  2146. * @param $options
  2147. * Options to be forwarded to url().
  2148. * @param $headers
  2149. * An array containing additional HTTP request headers, each formatted as
  2150. * "name: value".
  2151. * @return
  2152. * The retrieved headers, also available as $this->drupalGetContent()
  2153. */
  2154. protected function drupalHead($path, array $options = array(), array $headers = array()) {
  2155. $options['absolute'] = TRUE;
  2156. $out = $this->curlExec(array(CURLOPT_NOBODY => TRUE, CURLOPT_URL => url($path, $options), CURLOPT_HTTPHEADER => $headers));
  2157. $this->refreshVariables(); // Ensure that any changes to variables in the other thread are picked up.
  2158. return $out;
  2159. }
  2160. /**
  2161. * Handle form input related to drupalPost(). Ensure that the specified fields
  2162. * exist and attempt to create POST data in the correct manner for the particular
  2163. * field type.
  2164. *
  2165. * @param $post
  2166. * Reference to array of post values.
  2167. * @param $edit
  2168. * Reference to array of edit values to be checked against the form.
  2169. * @param $submit
  2170. * Form submit button value.
  2171. * @param $form
  2172. * Array of form elements.
  2173. * @return
  2174. * Submit value matches a valid submit input in the form.
  2175. */
  2176. protected function handleForm(&$post, &$edit, &$upload, $submit, $form) {
  2177. // Retrieve the form elements.
  2178. $elements = $form->xpath('.//input[not(@disabled)]|.//textarea[not(@disabled)]|.//select[not(@disabled)]');
  2179. $submit_matches = FALSE;
  2180. foreach ($elements as $element) {
  2181. // SimpleXML objects need string casting all the time.
  2182. $name = (string) $element['name'];
  2183. // This can either be the type of <input> or the name of the tag itself
  2184. // for <select> or <textarea>.
  2185. $type = isset($element['type']) ? (string) $element['type'] : $element->getName();
  2186. $value = isset($element['value']) ? (string) $element['value'] : '';
  2187. $done = FALSE;
  2188. if (isset($edit[$name])) {
  2189. switch ($type) {
  2190. case 'text':
  2191. case 'tel':
  2192. case 'textarea':
  2193. case 'url':
  2194. case 'number':
  2195. case 'range':
  2196. case 'color':
  2197. case 'hidden':
  2198. case 'password':
  2199. case 'email':
  2200. case 'search':
  2201. $post[$name] = $edit[$name];
  2202. unset($edit[$name]);
  2203. break;
  2204. case 'radio':
  2205. if ($edit[$name] == $value) {
  2206. $post[$name] = $edit[$name];
  2207. unset($edit[$name]);
  2208. }
  2209. break;
  2210. case 'checkbox':
  2211. // To prevent checkbox from being checked.pass in a FALSE,
  2212. // otherwise the checkbox will be set to its value regardless
  2213. // of $edit.
  2214. if ($edit[$name] === FALSE) {
  2215. unset($edit[$name]);
  2216. continue 2;
  2217. }
  2218. else {
  2219. unset($edit[$name]);
  2220. $post[$name] = $value;
  2221. }
  2222. break;
  2223. case 'select':
  2224. $new_value = $edit[$name];
  2225. $options = $this->getAllOptions($element);
  2226. if (is_array($new_value)) {
  2227. // Multiple select box.
  2228. if (!empty($new_value)) {
  2229. $index = 0;
  2230. $key = preg_replace('/\[\]$/', '', $name);
  2231. foreach ($options as $option) {
  2232. $option_value = (string) $option['value'];
  2233. if (in_array($option_value, $new_value)) {
  2234. $post[$key . '[' . $index++ . ']'] = $option_value;
  2235. $done = TRUE;
  2236. unset($edit[$name]);
  2237. }
  2238. }
  2239. }
  2240. else {
  2241. // No options selected: do not include any POST data for the
  2242. // element.
  2243. $done = TRUE;
  2244. unset($edit[$name]);
  2245. }
  2246. }
  2247. else {
  2248. // Single select box.
  2249. foreach ($options as $option) {
  2250. if ($new_value == $option['value']) {
  2251. $post[$name] = $new_value;
  2252. unset($edit[$name]);
  2253. $done = TRUE;
  2254. break;
  2255. }
  2256. }
  2257. }
  2258. break;
  2259. case 'file':
  2260. $upload[$name] = $edit[$name];
  2261. unset($edit[$name]);
  2262. break;
  2263. }
  2264. }
  2265. if (!isset($post[$name]) && !$done) {
  2266. switch ($type) {
  2267. case 'textarea':
  2268. $post[$name] = (string) $element;
  2269. break;
  2270. case 'select':
  2271. $single = empty($element['multiple']);
  2272. $first = TRUE;
  2273. $index = 0;
  2274. $key = preg_replace('/\[\]$/', '', $name);
  2275. $options = $this->getAllOptions($element);
  2276. foreach ($options as $option) {
  2277. // For single select, we load the first option, if there is a
  2278. // selected option that will overwrite it later.
  2279. if ($option['selected'] || ($first && $single)) {
  2280. $first = FALSE;
  2281. if ($single) {
  2282. $post[$name] = (string) $option['value'];
  2283. }
  2284. else {
  2285. $post[$key . '[' . $index++ . ']'] = (string) $option['value'];
  2286. }
  2287. }
  2288. }
  2289. break;
  2290. case 'file':
  2291. break;
  2292. case 'submit':
  2293. case 'image':
  2294. if (isset($submit) && $submit == $value) {
  2295. $post[$name] = $value;
  2296. $submit_matches = TRUE;
  2297. }
  2298. break;
  2299. case 'radio':
  2300. case 'checkbox':
  2301. if (!isset($element['checked'])) {
  2302. break;
  2303. }
  2304. // Deliberate no break.
  2305. default:
  2306. $post[$name] = $value;
  2307. }
  2308. }
  2309. }
  2310. return $submit_matches;
  2311. }
  2312. /**
  2313. * Builds an XPath query.
  2314. *
  2315. * Builds an XPath query by replacing placeholders in the query by the value
  2316. * of the arguments.
  2317. *
  2318. * XPath 1.0 (the version supported by libxml2, the underlying XML library
  2319. * used by PHP) doesn't support any form of quotation. This function
  2320. * simplifies the building of XPath expression.
  2321. *
  2322. * @param $xpath
  2323. * An XPath query, possibly with placeholders in the form ':name'.
  2324. * @param $args
  2325. * An array of arguments with keys in the form ':name' matching the
  2326. * placeholders in the query. The values may be either strings or numeric
  2327. * values.
  2328. * @return
  2329. * An XPath query with arguments replaced.
  2330. */
  2331. protected function buildXPathQuery($xpath, array $args = array()) {
  2332. // Replace placeholders.
  2333. foreach ($args as $placeholder => $value) {
  2334. // XPath 1.0 doesn't support a way to escape single or double quotes in a
  2335. // string literal. We split double quotes out of the string, and encode
  2336. // them separately.
  2337. if (is_string($value)) {
  2338. // Explode the text at the quote characters.
  2339. $parts = explode('"', $value);
  2340. // Quote the parts.
  2341. foreach ($parts as &$part) {
  2342. $part = '"' . $part . '"';
  2343. }
  2344. // Return the string.
  2345. $value = count($parts) > 1 ? 'concat(' . implode(', \'"\', ', $parts) . ')' : $parts[0];
  2346. }
  2347. $xpath = preg_replace('/' . preg_quote($placeholder) . '\b/', $value, $xpath);
  2348. }
  2349. return $xpath;
  2350. }
  2351. /**
  2352. * Perform an xpath search on the contents of the internal browser. The search
  2353. * is relative to the root element (HTML tag normally) of the page.
  2354. *
  2355. * @param $xpath
  2356. * The xpath string to use in the search.
  2357. * @return
  2358. * The return value of the xpath search. For details on the xpath string
  2359. * format and return values see the SimpleXML documentation,
  2360. * http://us.php.net/manual/function.simplexml-element-xpath.php.
  2361. */
  2362. protected function xpath($xpath, array $arguments = array()) {
  2363. if ($this->parse()) {
  2364. $xpath = $this->buildXPathQuery($xpath, $arguments);
  2365. $result = $this->elements->xpath($xpath);
  2366. // Some combinations of PHP / libxml versions return an empty array
  2367. // instead of the documented FALSE. Forcefully convert any falsish values
  2368. // to an empty array to allow foreach(...) constructions.
  2369. return $result ? $result : array();
  2370. }
  2371. else {
  2372. return FALSE;
  2373. }
  2374. }
  2375. /**
  2376. * Get all option elements, including nested options, in a select.
  2377. *
  2378. * @param $element
  2379. * The element for which to get the options.
  2380. * @return
  2381. * Option elements in select.
  2382. */
  2383. protected function getAllOptions(SimpleXMLElement $element) {
  2384. $options = array();
  2385. // Add all options items.
  2386. foreach ($element->option as $option) {
  2387. $options[] = $option;
  2388. }
  2389. // Search option group children.
  2390. if (isset($element->optgroup)) {
  2391. foreach ($element->optgroup as $group) {
  2392. $options = array_merge($options, $this->getAllOptions($group));
  2393. }
  2394. }
  2395. return $options;
  2396. }
  2397. /**
  2398. * Pass if a link with the specified label is found, and optional with the
  2399. * specified index.
  2400. *
  2401. * @param $label
  2402. * Text between the anchor tags.
  2403. * @param $index
  2404. * Link position counting from zero.
  2405. * @param $message
  2406. * Message to display.
  2407. * @param $group
  2408. * The group this message belongs to, defaults to 'Other'.
  2409. * @return
  2410. * TRUE if the assertion succeeded, FALSE otherwise.
  2411. */
  2412. protected function assertLink($label, $index = 0, $message = '', $group = 'Other') {
  2413. $links = $this->xpath('//a[normalize-space(text())=:label]', array(':label' => $label));
  2414. $message = ($message ? $message : t('Link with label %label found.', array('%label' => $label)));
  2415. return $this->assert(isset($links[$index]), $message, $group);
  2416. }
  2417. /**
  2418. * Pass if a link with the specified label is not found.
  2419. *
  2420. * @param $label
  2421. * Text between the anchor tags.
  2422. * @param $message
  2423. * Message to display.
  2424. * @param $group
  2425. * The group this message belongs to, defaults to 'Other'.
  2426. * @return
  2427. * TRUE if the assertion succeeded, FALSE otherwise.
  2428. */
  2429. protected function assertNoLink($label, $message = '', $group = 'Other') {
  2430. $links = $this->xpath('//a[normalize-space(text())=:label]', array(':label' => $label));
  2431. $message = ($message ? $message : t('Link with label %label not found.', array('%label' => $label)));
  2432. return $this->assert(empty($links), $message, $group);
  2433. }
  2434. /**
  2435. * Pass if a link containing a given href (part) is found.
  2436. *
  2437. * @param $href
  2438. * The full or partial value of the 'href' attribute of the anchor tag.
  2439. * @param $index
  2440. * Link position counting from zero.
  2441. * @param $message
  2442. * Message to display.
  2443. * @param $group
  2444. * The group this message belongs to, defaults to 'Other'.
  2445. *
  2446. * @return
  2447. * TRUE if the assertion succeeded, FALSE otherwise.
  2448. */
  2449. protected function assertLinkByHref($href, $index = 0, $message = '', $group = 'Other') {
  2450. $links = $this->xpath('//a[contains(@href, :href)]', array(':href' => $href));
  2451. $message = ($message ? $message : t('Link containing href %href found.', array('%href' => $href)));
  2452. return $this->assert(isset($links[$index]), $message, $group);
  2453. }
  2454. /**
  2455. * Pass if a link containing a given href (part) is not found.
  2456. *
  2457. * @param $href
  2458. * The full or partial value of the 'href' attribute of the anchor tag.
  2459. * @param $message
  2460. * Message to display.
  2461. * @param $group
  2462. * The group this message belongs to, defaults to 'Other'.
  2463. *
  2464. * @return
  2465. * TRUE if the assertion succeeded, FALSE otherwise.
  2466. */
  2467. protected function assertNoLinkByHref($href, $message = '', $group = 'Other') {
  2468. $links = $this->xpath('//a[contains(@href, :href)]', array(':href' => $href));
  2469. $message = ($message ? $message : t('No link containing href %href found.', array('%href' => $href)));
  2470. return $this->assert(empty($links), $message, $group);
  2471. }
  2472. /**
  2473. * Follows a link by name.
  2474. *
  2475. * Will click the first link found with this link text by default, or a later
  2476. * one if an index is given. Match is case sensitive with normalized space.
  2477. * The label is translated label.
  2478. *
  2479. * If the link is discovered and clicked, the test passes. Fail otherwise.
  2480. *
  2481. * @param $label
  2482. * Text between the anchor tags.
  2483. * @param $index
  2484. * Link position counting from zero.
  2485. * @return
  2486. * Page contents on success, or FALSE on failure.
  2487. */
  2488. protected function clickLink($label, $index = 0) {
  2489. $url_before = $this->getUrl();
  2490. $urls = $this->xpath('//a[normalize-space(text())=:label]', array(':label' => $label));
  2491. if (isset($urls[$index])) {
  2492. $url_target = $this->getAbsoluteUrl($urls[$index]['href']);
  2493. $this->pass(t('Clicked link %label (@url_target) from @url_before', array('%label' => $label, '@url_target' => $url_target, '@url_before' => $url_before)), 'Browser');
  2494. return $this->drupalGet($url_target);
  2495. }
  2496. $this->fail(t('Link %label does not exist on @url_before', array('%label' => $label, '@url_before' => $url_before)), 'Browser');
  2497. return FALSE;
  2498. }
  2499. /**
  2500. * Takes a path and returns an absolute path.
  2501. *
  2502. * @param $path
  2503. * A path from the internal browser content.
  2504. * @return
  2505. * The $path with $base_url prepended, if necessary.
  2506. */
  2507. protected function getAbsoluteUrl($path) {
  2508. global $base_url, $base_path;
  2509. $parts = parse_url($path);
  2510. if (empty($parts['host'])) {
  2511. // Ensure that we have a string (and no xpath object).
  2512. $path = (string) $path;
  2513. // Strip $base_path, if existent.
  2514. $length = strlen($base_path);
  2515. if (substr($path, 0, $length) === $base_path) {
  2516. $path = substr($path, $length);
  2517. }
  2518. // Ensure that we have an absolute path.
  2519. if ($path[0] !== '/') {
  2520. $path = '/' . $path;
  2521. }
  2522. // Finally, prepend the $base_url.
  2523. $path = $base_url . $path;
  2524. }
  2525. return $path;
  2526. }
  2527. /**
  2528. * Get the current URL from the cURL handler.
  2529. *
  2530. * @return
  2531. * The current URL.
  2532. */
  2533. protected function getUrl() {
  2534. return $this->url;
  2535. }
  2536. /**
  2537. * Gets the HTTP response headers of the requested page. Normally we are only
  2538. * interested in the headers returned by the last request. However, if a page
  2539. * is redirected or HTTP authentication is in use, multiple requests will be
  2540. * required to retrieve the page. Headers from all requests may be requested
  2541. * by passing TRUE to this function.
  2542. *
  2543. * @param $all_requests
  2544. * Boolean value specifying whether to return headers from all requests
  2545. * instead of just the last request. Defaults to FALSE.
  2546. * @return
  2547. * A name/value array if headers from only the last request are requested.
  2548. * If headers from all requests are requested, an array of name/value
  2549. * arrays, one for each request.
  2550. *
  2551. * The pseudonym ":status" is used for the HTTP status line.
  2552. *
  2553. * Values for duplicate headers are stored as a single comma-separated list.
  2554. */
  2555. protected function drupalGetHeaders($all_requests = FALSE) {
  2556. $request = 0;
  2557. $headers = array($request => array());
  2558. foreach ($this->headers as $header) {
  2559. $header = trim($header);
  2560. if ($header === '') {
  2561. $request++;
  2562. }
  2563. else {
  2564. if (strpos($header, 'HTTP/') === 0) {
  2565. $name = ':status';
  2566. $value = $header;
  2567. }
  2568. else {
  2569. list($name, $value) = explode(':', $header, 2);
  2570. $name = strtolower($name);
  2571. }
  2572. if (isset($headers[$request][$name])) {
  2573. $headers[$request][$name] .= ',' . trim($value);
  2574. }
  2575. else {
  2576. $headers[$request][$name] = trim($value);
  2577. }
  2578. }
  2579. }
  2580. if (!$all_requests) {
  2581. $headers = array_pop($headers);
  2582. }
  2583. return $headers;
  2584. }
  2585. /**
  2586. * Gets the value of an HTTP response header. If multiple requests were
  2587. * required to retrieve the page, only the headers from the last request will
  2588. * be checked by default. However, if TRUE is passed as the second argument,
  2589. * all requests will be processed from last to first until the header is
  2590. * found.
  2591. *
  2592. * @param $name
  2593. * The name of the header to retrieve. Names are case-insensitive (see RFC
  2594. * 2616 section 4.2).
  2595. * @param $all_requests
  2596. * Boolean value specifying whether to check all requests if the header is
  2597. * not found in the last request. Defaults to FALSE.
  2598. * @return
  2599. * The HTTP header value or FALSE if not found.
  2600. */
  2601. protected function drupalGetHeader($name, $all_requests = FALSE) {
  2602. $name = strtolower($name);
  2603. $header = FALSE;
  2604. if ($all_requests) {
  2605. foreach (array_reverse($this->drupalGetHeaders(TRUE)) as $headers) {
  2606. if (isset($headers[$name])) {
  2607. $header = $headers[$name];
  2608. break;
  2609. }
  2610. }
  2611. }
  2612. else {
  2613. $headers = $this->drupalGetHeaders();
  2614. if (isset($headers[$name])) {
  2615. $header = $headers[$name];
  2616. }
  2617. }
  2618. return $header;
  2619. }
  2620. /**
  2621. * Gets the current raw HTML of requested page.
  2622. */
  2623. protected function drupalGetContent() {
  2624. return $this->content;
  2625. }
  2626. /**
  2627. * Gets the value of the Drupal.settings JavaScript variable for the currently loaded page.
  2628. */
  2629. protected function drupalGetSettings() {
  2630. return $this->drupalSettings;
  2631. }
  2632. /**
  2633. * Gets an array containing all e-mails sent during this test case.
  2634. *
  2635. * @param $filter
  2636. * An array containing key/value pairs used to filter the e-mails that are returned.
  2637. * @return
  2638. * An array containing e-mail messages captured during the current test.
  2639. */
  2640. protected function drupalGetMails($filter = array()) {
  2641. $captured_emails = variable_get('drupal_test_email_collector', array());
  2642. $filtered_emails = array();
  2643. foreach ($captured_emails as $message) {
  2644. foreach ($filter as $key => $value) {
  2645. if (!isset($message[$key]) || $message[$key] != $value) {
  2646. continue 2;
  2647. }
  2648. }
  2649. $filtered_emails[] = $message;
  2650. }
  2651. return $filtered_emails;
  2652. }
  2653. /**
  2654. * Sets the raw HTML content. This can be useful when a page has been fetched
  2655. * outside of the internal browser and assertions need to be made on the
  2656. * returned page.
  2657. *
  2658. * A good example would be when testing drupal_http_request(). After fetching
  2659. * the page the content can be set and page elements can be checked to ensure
  2660. * that the function worked properly.
  2661. */
  2662. protected function drupalSetContent($content, $url = 'internal:') {
  2663. $this->content = $content;
  2664. $this->url = $url;
  2665. $this->plainTextContent = FALSE;
  2666. $this->elements = FALSE;
  2667. $this->drupalSettings = array();
  2668. if (preg_match('/jQuery\.extend\(Drupal\.settings, (.*?)\);/', $content, $matches)) {
  2669. $this->drupalSettings = drupal_json_decode($matches[1]);
  2670. }
  2671. }
  2672. /**
  2673. * Sets the value of the Drupal.settings JavaScript variable for the currently loaded page.
  2674. */
  2675. protected function drupalSetSettings($settings) {
  2676. $this->drupalSettings = $settings;
  2677. }
  2678. /**
  2679. * Pass if the internal browser's URL matches the given path.
  2680. *
  2681. * @param $path
  2682. * The expected system path.
  2683. * @param $options
  2684. * (optional) Any additional options to pass for $path to url().
  2685. * @param $message
  2686. * Message to display.
  2687. * @param $group
  2688. * The group this message belongs to, defaults to 'Other'.
  2689. *
  2690. * @return
  2691. * TRUE on pass, FALSE on fail.
  2692. */
  2693. protected function assertUrl($path, array $options = array(), $message = '', $group = 'Other') {
  2694. if (!$message) {
  2695. $message = t('Current URL is @url.', array(
  2696. '@url' => var_export(url($path, $options), TRUE),
  2697. ));
  2698. }
  2699. $options['absolute'] = TRUE;
  2700. return $this->assertEqual($this->getUrl(), url($path, $options), $message, $group);
  2701. }
  2702. /**
  2703. * Pass if the raw text IS found on the loaded page, fail otherwise. Raw text
  2704. * refers to the raw HTML that the page generated.
  2705. *
  2706. * @param $raw
  2707. * Raw (HTML) string to look for.
  2708. * @param $message
  2709. * Message to display.
  2710. * @param $group
  2711. * The group this message belongs to, defaults to 'Other'.
  2712. * @return
  2713. * TRUE on pass, FALSE on fail.
  2714. */
  2715. protected function assertRaw($raw, $message = '', $group = 'Other') {
  2716. if (!$message) {
  2717. $message = t('Raw "@raw" found', array('@raw' => $raw));
  2718. }
  2719. return $this->assert(strpos($this->drupalGetContent(), $raw) !== FALSE, $message, $group);
  2720. }
  2721. /**
  2722. * Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text
  2723. * refers to the raw HTML that the page generated.
  2724. *
  2725. * @param $raw
  2726. * Raw (HTML) string to look for.
  2727. * @param $message
  2728. * Message to display.
  2729. * @param $group
  2730. * The group this message belongs to, defaults to 'Other'.
  2731. * @return
  2732. * TRUE on pass, FALSE on fail.
  2733. */
  2734. protected function assertNoRaw($raw, $message = '', $group = 'Other') {
  2735. if (!$message) {
  2736. $message = t('Raw "@raw" not found', array('@raw' => $raw));
  2737. }
  2738. return $this->assert(strpos($this->drupalGetContent(), $raw) === FALSE, $message, $group);
  2739. }
  2740. /**
  2741. * Pass if the text IS found on the text version of the page. The text version
  2742. * is the equivalent of what a user would see when viewing through a web browser.
  2743. * In other words the HTML has been filtered out of the contents.
  2744. *
  2745. * @param $text
  2746. * Plain text to look for.
  2747. * @param $message
  2748. * Message to display.
  2749. * @param $group
  2750. * The group this message belongs to, defaults to 'Other'.
  2751. * @return
  2752. * TRUE on pass, FALSE on fail.
  2753. */
  2754. protected function assertText($text, $message = '', $group = 'Other') {
  2755. return $this->assertTextHelper($text, $message, $group, FALSE);
  2756. }
  2757. /**
  2758. * Pass if the text is NOT found on the text version of the page. The text version
  2759. * is the equivalent of what a user would see when viewing through a web browser.
  2760. * In other words the HTML has been filtered out of the contents.
  2761. *
  2762. * @param $text
  2763. * Plain text to look for.
  2764. * @param $message
  2765. * Message to display.
  2766. * @param $group
  2767. * The group this message belongs to, defaults to 'Other'.
  2768. * @return
  2769. * TRUE on pass, FALSE on fail.
  2770. */
  2771. protected function assertNoText($text, $message = '', $group = 'Other') {
  2772. return $this->assertTextHelper($text, $message, $group, TRUE);
  2773. }
  2774. /**
  2775. * Helper for assertText and assertNoText.
  2776. *
  2777. * It is not recommended to call this function directly.
  2778. *
  2779. * @param $text
  2780. * Plain text to look for.
  2781. * @param $message
  2782. * Message to display.
  2783. * @param $group
  2784. * The group this message belongs to.
  2785. * @param $not_exists
  2786. * TRUE if this text should not exist, FALSE if it should.
  2787. * @return
  2788. * TRUE on pass, FALSE on fail.
  2789. */
  2790. protected function assertTextHelper($text, $message = '', $group, $not_exists) {
  2791. if ($this->plainTextContent === FALSE) {
  2792. $this->plainTextContent = filter_xss($this->drupalGetContent(), array());
  2793. }
  2794. if (!$message) {
  2795. $message = !$not_exists ? t('"@text" found', array('@text' => $text)) : t('"@text" not found', array('@text' => $text));
  2796. }
  2797. return $this->assert($not_exists == (strpos($this->plainTextContent, $text) === FALSE), $message, $group);
  2798. }
  2799. /**
  2800. * Pass if the text is found ONLY ONCE on the text version of the page.
  2801. *
  2802. * The text version is the equivalent of what a user would see when viewing
  2803. * through a web browser. In other words the HTML has been filtered out of
  2804. * the contents.
  2805. *
  2806. * @param $text
  2807. * Plain text to look for.
  2808. * @param $message
  2809. * Message to display.
  2810. * @param $group
  2811. * The group this message belongs to, defaults to 'Other'.
  2812. * @return
  2813. * TRUE on pass, FALSE on fail.
  2814. */
  2815. protected function assertUniqueText($text, $message = '', $group = 'Other') {
  2816. return $this->assertUniqueTextHelper($text, $message, $group, TRUE);
  2817. }
  2818. /**
  2819. * Pass if the text is found MORE THAN ONCE on the text version of the page.
  2820. *
  2821. * The text version is the equivalent of what a user would see when viewing
  2822. * through a web browser. In other words the HTML has been filtered out of
  2823. * the contents.
  2824. *
  2825. * @param $text
  2826. * Plain text to look for.
  2827. * @param $message
  2828. * Message to display.
  2829. * @param $group
  2830. * The group this message belongs to, defaults to 'Other'.
  2831. * @return
  2832. * TRUE on pass, FALSE on fail.
  2833. */
  2834. protected function assertNoUniqueText($text, $message = '', $group = 'Other') {
  2835. return $this->assertUniqueTextHelper($text, $message, $group, FALSE);
  2836. }
  2837. /**
  2838. * Helper for assertUniqueText and assertNoUniqueText.
  2839. *
  2840. * It is not recommended to call this function directly.
  2841. *
  2842. * @param $text
  2843. * Plain text to look for.
  2844. * @param $message
  2845. * Message to display.
  2846. * @param $group
  2847. * The group this message belongs to.
  2848. * @param $be_unique
  2849. * TRUE if this text should be found only once, FALSE if it should be found more than once.
  2850. * @return
  2851. * TRUE on pass, FALSE on fail.
  2852. */
  2853. protected function assertUniqueTextHelper($text, $message = '', $group, $be_unique) {
  2854. if ($this->plainTextContent === FALSE) {
  2855. $this->plainTextContent = filter_xss($this->drupalGetContent(), array());
  2856. }
  2857. if (!$message) {
  2858. $message = '"' . $text . '"' . ($be_unique ? ' found only once' : ' found more than once');
  2859. }
  2860. $first_occurance = strpos($this->plainTextContent, $text);
  2861. if ($first_occurance === FALSE) {
  2862. return $this->assert(FALSE, $message, $group);
  2863. }
  2864. $offset = $first_occurance + strlen($text);
  2865. $second_occurance = strpos($this->plainTextContent, $text, $offset);
  2866. return $this->assert($be_unique == ($second_occurance === FALSE), $message, $group);
  2867. }
  2868. /**
  2869. * Will trigger a pass if the Perl regex pattern is found in the raw content.
  2870. *
  2871. * @param $pattern
  2872. * Perl regex to look for including the regex delimiters.
  2873. * @param $message
  2874. * Message to display.
  2875. * @param $group
  2876. * The group this message belongs to.
  2877. * @return
  2878. * TRUE on pass, FALSE on fail.
  2879. */
  2880. protected function assertPattern($pattern, $message = '', $group = 'Other') {
  2881. if (!$message) {
  2882. $message = t('Pattern "@pattern" found', array('@pattern' => $pattern));
  2883. }
  2884. return $this->assert((bool) preg_match($pattern, $this->drupalGetContent()), $message, $group);
  2885. }
  2886. /**
  2887. * Will trigger a pass if the perl regex pattern is not present in raw content.
  2888. *
  2889. * @param $pattern
  2890. * Perl regex to look for including the regex delimiters.
  2891. * @param $message
  2892. * Message to display.
  2893. * @param $group
  2894. * The group this message belongs to.
  2895. * @return
  2896. * TRUE on pass, FALSE on fail.
  2897. */
  2898. protected function assertNoPattern($pattern, $message = '', $group = 'Other') {
  2899. if (!$message) {
  2900. $message = t('Pattern "@pattern" not found', array('@pattern' => $pattern));
  2901. }
  2902. return $this->assert(!preg_match($pattern, $this->drupalGetContent()), $message, $group);
  2903. }
  2904. /**
  2905. * Pass if the page title is the given string.
  2906. *
  2907. * @param $title
  2908. * The string the title should be.
  2909. * @param $message
  2910. * Message to display.
  2911. * @param $group
  2912. * The group this message belongs to.
  2913. * @return
  2914. * TRUE on pass, FALSE on fail.
  2915. */
  2916. protected function assertTitle($title, $message = '', $group = 'Other') {
  2917. $actual = (string) current($this->xpath('//title'));
  2918. if (!$message) {
  2919. $message = t('Page title @actual is equal to @expected.', array(
  2920. '@actual' => var_export($actual, TRUE),
  2921. '@expected' => var_export($title, TRUE),
  2922. ));
  2923. }
  2924. return $this->assertEqual($actual, $title, $message, $group);
  2925. }
  2926. /**
  2927. * Pass if the page title is not the given string.
  2928. *
  2929. * @param $title
  2930. * The string the title should not be.
  2931. * @param $message
  2932. * Message to display.
  2933. * @param $group
  2934. * The group this message belongs to.
  2935. * @return
  2936. * TRUE on pass, FALSE on fail.
  2937. */
  2938. protected function assertNoTitle($title, $message = '', $group = 'Other') {
  2939. $actual = (string) current($this->xpath('//title'));
  2940. if (!$message) {
  2941. $message = t('Page title @actual is not equal to @unexpected.', array(
  2942. '@actual' => var_export($actual, TRUE),
  2943. '@unexpected' => var_export($title, TRUE),
  2944. ));
  2945. }
  2946. return $this->assertNotEqual($actual, $title, $message, $group);
  2947. }
  2948. /**
  2949. * Asserts themed output.
  2950. *
  2951. * @param $callback
  2952. * The name of the theme function to invoke; e.g. 'links' for theme_links().
  2953. * @param $variables
  2954. * (optional) An array of variables to pass to the theme function.
  2955. * @param $expected
  2956. * The expected themed output string.
  2957. * @param $message
  2958. * (optional) A message to display with the assertion. Do not translate
  2959. * messages: use format_string() to embed variables in the message text, not
  2960. * t(). If left blank, a default message will be displayed.
  2961. * @param $group
  2962. * (optional) The group this message is in, which is displayed in a column
  2963. * in test output. Use 'Debug' to indicate this is debugging output. Do not
  2964. * translate this string. Defaults to 'Other'; most tests do not override
  2965. * this default.
  2966. *
  2967. * @return
  2968. * TRUE on pass, FALSE on fail.
  2969. */
  2970. protected function assertThemeOutput($callback, array $variables = array(), $expected, $message = '', $group = 'Other') {
  2971. $output = theme($callback, $variables);
  2972. $this->verbose('Variables:' . '<pre>' . check_plain(var_export($variables, TRUE)) . '</pre>'
  2973. . '<hr />' . 'Result:' . '<pre>' . check_plain(var_export($output, TRUE)) . '</pre>'
  2974. . '<hr />' . 'Expected:' . '<pre>' . check_plain(var_export($expected, TRUE)) . '</pre>'
  2975. . '<hr />' . $output
  2976. );
  2977. if (!$message) {
  2978. $message = '%callback rendered correctly.';
  2979. }
  2980. $message = format_string($message, array('%callback' => 'theme_' . $callback . '()'));
  2981. return $this->assertIdentical($output, $expected, $message, $group);
  2982. }
  2983. /**
  2984. * Asserts that a field exists in the current page by the given XPath.
  2985. *
  2986. * @param $xpath
  2987. * XPath used to find the field.
  2988. * @param $value
  2989. * (optional) Value of the field to assert. You may pass in NULL (default)
  2990. * to skip checking the actual value, while still checking that the field
  2991. * exists.
  2992. * @param $message
  2993. * (optional) Message to display.
  2994. * @param $group
  2995. * (optional) The group this message belongs to.
  2996. *
  2997. * @return
  2998. * TRUE on pass, FALSE on fail.
  2999. */
  3000. protected function assertFieldByXPath($xpath, $value = NULL, $message = '', $group = 'Other') {
  3001. $fields = $this->xpath($xpath);
  3002. // If value specified then check array for match.
  3003. $found = TRUE;
  3004. if (isset($value)) {
  3005. $found = FALSE;
  3006. if ($fields) {
  3007. foreach ($fields as $field) {
  3008. if (isset($field['value']) && $field['value'] == $value) {
  3009. // Input element with correct value.
  3010. $found = TRUE;
  3011. }
  3012. elseif (isset($field->option)) {
  3013. // Select element found.
  3014. if ($this->getSelectedItem($field) == $value) {
  3015. $found = TRUE;
  3016. }
  3017. else {
  3018. // No item selected so use first item.
  3019. $items = $this->getAllOptions($field);
  3020. if (!empty($items) && $items[0]['value'] == $value) {
  3021. $found = TRUE;
  3022. }
  3023. }
  3024. }
  3025. elseif ((string) $field == $value) {
  3026. // Text area with correct text.
  3027. $found = TRUE;
  3028. }
  3029. }
  3030. }
  3031. }
  3032. return $this->assertTrue($fields && $found, $message, $group);
  3033. }
  3034. /**
  3035. * Get the selected value from a select field.
  3036. *
  3037. * @param $element
  3038. * SimpleXMLElement select element.
  3039. * @return
  3040. * The selected value or FALSE.
  3041. */
  3042. protected function getSelectedItem(SimpleXMLElement $element) {
  3043. foreach ($element->children() as $item) {
  3044. if (isset($item['selected'])) {
  3045. return $item['value'];
  3046. }
  3047. elseif ($item->getName() == 'optgroup') {
  3048. if ($value = $this->getSelectedItem($item)) {
  3049. return $value;
  3050. }
  3051. }
  3052. }
  3053. return FALSE;
  3054. }
  3055. /**
  3056. * Asserts that a field doesn't exist or its value doesn't match, by XPath.
  3057. *
  3058. * @param $xpath
  3059. * XPath used to find the field.
  3060. * @param $value
  3061. * (optional) Value for the field, to assert that the field's value on the
  3062. * page doesn't match it. You may pass in NULL to skip checking the
  3063. * value, while still checking that the field doesn't exist.
  3064. * @param $message
  3065. * (optional) Message to display.
  3066. * @param $group
  3067. * (optional) The group this message belongs to.
  3068. *
  3069. * @return
  3070. * TRUE on pass, FALSE on fail.
  3071. */
  3072. protected function assertNoFieldByXPath($xpath, $value = NULL, $message = '', $group = 'Other') {
  3073. $fields = $this->xpath($xpath);
  3074. // If value specified then check array for match.
  3075. $found = TRUE;
  3076. if (isset($value)) {
  3077. $found = FALSE;
  3078. if ($fields) {
  3079. foreach ($fields as $field) {
  3080. if ($field['value'] == $value) {
  3081. $found = TRUE;
  3082. }
  3083. }
  3084. }
  3085. }
  3086. return $this->assertFalse($fields && $found, $message, $group);
  3087. }
  3088. /**
  3089. * Asserts that a field exists in the current page with the given name and value.
  3090. *
  3091. * @param $name
  3092. * Name of field to assert.
  3093. * @param $value
  3094. * (optional) Value of the field to assert. You may pass in NULL (default)
  3095. * to skip checking the actual value, while still checking that the field
  3096. * exists.
  3097. * @param $message
  3098. * Message to display.
  3099. * @param $group
  3100. * The group this message belongs to.
  3101. * @return
  3102. * TRUE on pass, FALSE on fail.
  3103. */
  3104. protected function assertFieldByName($name, $value = NULL, $message = NULL) {
  3105. if (!isset($message)) {
  3106. if (!isset($value)) {
  3107. $message = t('Found field with name @name', array(
  3108. '@name' => var_export($name, TRUE),
  3109. ));
  3110. }
  3111. else {
  3112. $message = t('Found field with name @name and value @value', array(
  3113. '@name' => var_export($name, TRUE),
  3114. '@value' => var_export($value, TRUE),
  3115. ));
  3116. }
  3117. }
  3118. return $this->assertFieldByXPath($this->constructFieldXpath('name', $name), $value, $message, t('Browser'));
  3119. }
  3120. /**
  3121. * Asserts that a field does not exist with the given name and value.
  3122. *
  3123. * @param $name
  3124. * Name of field to assert.
  3125. * @param $value
  3126. * (optional) Value for the field, to assert that the field's value on the
  3127. * page doesn't match it. You may pass in NULL to skip checking the
  3128. * value, while still checking that the field doesn't exist. However, the
  3129. * default value ('') asserts that the field value is not an empty string.
  3130. * @param $message
  3131. * (optional) Message to display.
  3132. * @param $group
  3133. * The group this message belongs to.
  3134. * @return
  3135. * TRUE on pass, FALSE on fail.
  3136. */
  3137. protected function assertNoFieldByName($name, $value = '', $message = '') {
  3138. return $this->assertNoFieldByXPath($this->constructFieldXpath('name', $name), $value, $message ? $message : t('Did not find field by name @name', array('@name' => $name)), t('Browser'));
  3139. }
  3140. /**
  3141. * Asserts that a field exists in the current page with the given ID and value.
  3142. *
  3143. * @param $id
  3144. * ID of field to assert.
  3145. * @param $value
  3146. * (optional) Value for the field to assert. You may pass in NULL to skip
  3147. * checking the value, while still checking that the field exists.
  3148. * However, the default value ('') asserts that the field value is an empty
  3149. * string.
  3150. * @param $message
  3151. * (optional) Message to display.
  3152. * @param $group
  3153. * The group this message belongs to.
  3154. * @return
  3155. * TRUE on pass, FALSE on fail.
  3156. */
  3157. protected function assertFieldById($id, $value = '', $message = '') {
  3158. return $this->assertFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ? $message : t('Found field by id @id', array('@id' => $id)), t('Browser'));
  3159. }
  3160. /**
  3161. * Asserts that a field does not exist with the given ID and value.
  3162. *
  3163. * @param $id
  3164. * ID of field to assert.
  3165. * @param $value
  3166. * (optional) Value for the field, to assert that the field's value on the
  3167. * page doesn't match it. You may pass in NULL to skip checking the value,
  3168. * while still checking that the field doesn't exist. However, the default
  3169. * value ('') asserts that the field value is not an empty string.
  3170. * @param $message
  3171. * (optional) Message to display.
  3172. * @param $group
  3173. * The group this message belongs to.
  3174. * @return
  3175. * TRUE on pass, FALSE on fail.
  3176. */
  3177. protected function assertNoFieldById($id, $value = '', $message = '') {
  3178. return $this->assertNoFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ? $message : t('Did not find field by id @id', array('@id' => $id)), t('Browser'));
  3179. }
  3180. /**
  3181. * Asserts that a checkbox field in the current page is checked.
  3182. *
  3183. * @param $id
  3184. * ID of field to assert.
  3185. * @param $message
  3186. * (optional) Message to display.
  3187. * @return
  3188. * TRUE on pass, FALSE on fail.
  3189. */
  3190. protected function assertFieldChecked($id, $message = '') {
  3191. $elements = $this->xpath('//input[@id=:id]', array(':id' => $id));
  3192. return $this->assertTrue(isset($elements[0]) && !empty($elements[0]['checked']), $message ? $message : t('Checkbox field @id is checked.', array('@id' => $id)), t('Browser'));
  3193. }
  3194. /**
  3195. * Asserts that a checkbox field in the current page is not checked.
  3196. *
  3197. * @param $id
  3198. * ID of field to assert.
  3199. * @param $message
  3200. * (optional) Message to display.
  3201. * @return
  3202. * TRUE on pass, FALSE on fail.
  3203. */
  3204. protected function assertNoFieldChecked($id, $message = '') {
  3205. $elements = $this->xpath('//input[@id=:id]', array(':id' => $id));
  3206. return $this->assertTrue(isset($elements[0]) && empty($elements[0]['checked']), $message ? $message : t('Checkbox field @id is not checked.', array('@id' => $id)), t('Browser'));
  3207. }
  3208. /**
  3209. * Asserts that a select option in the current page is checked.
  3210. *
  3211. * @param $id
  3212. * ID of select field to assert.
  3213. * @param $option
  3214. * Option to assert.
  3215. * @param $message
  3216. * (optional) Message to display.
  3217. * @return
  3218. * TRUE on pass, FALSE on fail.
  3219. *
  3220. * @todo $id is unusable. Replace with $name.
  3221. */
  3222. protected function assertOptionSelected($id, $option, $message = '') {
  3223. $elements = $this->xpath('//select[@id=:id]//option[@value=:option]', array(':id' => $id, ':option' => $option));
  3224. 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'));
  3225. }
  3226. /**
  3227. * Asserts that a select option in the current page is not checked.
  3228. *
  3229. * @param $id
  3230. * ID of select field to assert.
  3231. * @param $option
  3232. * Option to assert.
  3233. * @param $message
  3234. * (optional) Message to display.
  3235. * @return
  3236. * TRUE on pass, FALSE on fail.
  3237. */
  3238. protected function assertNoOptionSelected($id, $option, $message = '') {
  3239. $elements = $this->xpath('//select[@id=:id]//option[@value=:option]', array(':id' => $id, ':option' => $option));
  3240. 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'));
  3241. }
  3242. /**
  3243. * Asserts that a field exists with the given name or ID.
  3244. *
  3245. * @param $field
  3246. * Name or ID of field to assert.
  3247. * @param $message
  3248. * (optional) Message to display.
  3249. * @param $group
  3250. * The group this message belongs to.
  3251. * @return
  3252. * TRUE on pass, FALSE on fail.
  3253. */
  3254. protected function assertField($field, $message = '', $group = 'Other') {
  3255. return $this->assertFieldByXPath($this->constructFieldXpath('name', $field) . '|' . $this->constructFieldXpath('id', $field), NULL, $message, $group);
  3256. }
  3257. /**
  3258. * Asserts that a field does not exist with the given name or ID.
  3259. *
  3260. * @param $field
  3261. * Name or ID of field to assert.
  3262. * @param $message
  3263. * (optional) Message to display.
  3264. * @param $group
  3265. * The group this message belongs to.
  3266. * @return
  3267. * TRUE on pass, FALSE on fail.
  3268. */
  3269. protected function assertNoField($field, $message = '', $group = 'Other') {
  3270. return $this->assertNoFieldByXPath($this->constructFieldXpath('name', $field) . '|' . $this->constructFieldXpath('id', $field), NULL, $message, $group);
  3271. }
  3272. /**
  3273. * Asserts that each HTML ID is used for just a single element.
  3274. *
  3275. * @param $message
  3276. * Message to display.
  3277. * @param $group
  3278. * The group this message belongs to.
  3279. * @param $ids_to_skip
  3280. * An optional array of ids to skip when checking for duplicates. It is
  3281. * always a bug to have duplicate HTML IDs, so this parameter is to enable
  3282. * incremental fixing of core code. Whenever a test passes this parameter,
  3283. * it should add a "todo" comment above the call to this function explaining
  3284. * the legacy bug that the test wishes to ignore and including a link to an
  3285. * issue that is working to fix that legacy bug.
  3286. * @return
  3287. * TRUE on pass, FALSE on fail.
  3288. */
  3289. protected function assertNoDuplicateIds($message = '', $group = 'Other', $ids_to_skip = array()) {
  3290. $status = TRUE;
  3291. foreach ($this->xpath('//*[@id]') as $element) {
  3292. $id = (string) $element['id'];
  3293. if (isset($seen_ids[$id]) && !in_array($id, $ids_to_skip)) {
  3294. $this->fail(t('The HTML ID %id is unique.', array('%id' => $id)), $group);
  3295. $status = FALSE;
  3296. }
  3297. $seen_ids[$id] = TRUE;
  3298. }
  3299. return $this->assert($status, $message, $group);
  3300. }
  3301. /**
  3302. * Helper function: construct an XPath for the given set of attributes and value.
  3303. *
  3304. * @param $attribute
  3305. * Field attributes.
  3306. * @param $value
  3307. * Value of field.
  3308. * @return
  3309. * XPath for specified values.
  3310. */
  3311. protected function constructFieldXpath($attribute, $value) {
  3312. $xpath = '//textarea[@' . $attribute . '=:value]|//input[@' . $attribute . '=:value]|//select[@' . $attribute . '=:value]';
  3313. return $this->buildXPathQuery($xpath, array(':value' => $value));
  3314. }
  3315. /**
  3316. * Asserts the page responds with the specified response code.
  3317. *
  3318. * @param $code
  3319. * Response code. For example 200 is a successful page request. For a list
  3320. * of all codes see http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html.
  3321. * @param $message
  3322. * Message to display.
  3323. * @return
  3324. * Assertion result.
  3325. */
  3326. protected function assertResponse($code, $message = '') {
  3327. $curl_code = curl_getinfo($this->curlHandle, CURLINFO_HTTP_CODE);
  3328. $match = is_array($code) ? in_array($curl_code, $code) : $curl_code == $code;
  3329. return $this->assertTrue($match, $message ? $message : t('HTTP response expected !code, actual !curl_code', array('!code' => $code, '!curl_code' => $curl_code)), t('Browser'));
  3330. }
  3331. /**
  3332. * Asserts the page did not return the specified response code.
  3333. *
  3334. * @param $code
  3335. * Response code. For example 200 is a successful page request. For a list
  3336. * of all codes see http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html.
  3337. * @param $message
  3338. * Message to display.
  3339. *
  3340. * @return
  3341. * Assertion result.
  3342. */
  3343. protected function assertNoResponse($code, $message = '') {
  3344. $curl_code = curl_getinfo($this->curlHandle, CURLINFO_HTTP_CODE);
  3345. $match = is_array($code) ? in_array($curl_code, $code) : $curl_code == $code;
  3346. return $this->assertFalse($match, $message ? $message : t('HTTP response not expected !code, actual !curl_code', array('!code' => $code, '!curl_code' => $curl_code)), t('Browser'));
  3347. }
  3348. /**
  3349. * Asserts that the most recently sent e-mail message has the given value.
  3350. *
  3351. * The field in $name must have the content described in $value.
  3352. *
  3353. * @param $name
  3354. * Name of field or message property to assert. Examples: subject, body, id, ...
  3355. * @param $value
  3356. * Value of the field to assert.
  3357. * @param $message
  3358. * Message to display.
  3359. *
  3360. * @return
  3361. * TRUE on pass, FALSE on fail.
  3362. */
  3363. protected function assertMail($name, $value = '', $message = '') {
  3364. $captured_emails = variable_get('drupal_test_email_collector', array());
  3365. $email = end($captured_emails);
  3366. return $this->assertTrue($email && isset($email[$name]) && $email[$name] == $value, $message, t('E-mail'));
  3367. }
  3368. /**
  3369. * Asserts that the most recently sent e-mail message has the string in it.
  3370. *
  3371. * @param $field_name
  3372. * Name of field or message property to assert: subject, body, id, ...
  3373. * @param $string
  3374. * String to search for.
  3375. * @param $email_depth
  3376. * Number of emails to search for string, starting with most recent.
  3377. *
  3378. * @return
  3379. * TRUE on pass, FALSE on fail.
  3380. */
  3381. protected function assertMailString($field_name, $string, $email_depth) {
  3382. $mails = $this->drupalGetMails();
  3383. $string_found = FALSE;
  3384. for ($i = sizeof($mails) -1; $i >= sizeof($mails) - $email_depth && $i >= 0; $i--) {
  3385. $mail = $mails[$i];
  3386. // Normalize whitespace, as we don't know what the mail system might have
  3387. // done. Any run of whitespace becomes a single space.
  3388. $normalized_mail = preg_replace('/\s+/', ' ', $mail[$field_name]);
  3389. $normalized_string = preg_replace('/\s+/', ' ', $string);
  3390. $string_found = (FALSE !== strpos($normalized_mail, $normalized_string));
  3391. if ($string_found) {
  3392. break;
  3393. }
  3394. }
  3395. return $this->assertTrue($string_found, t('Expected text found in @field of email message: "@expected".', array('@field' => $field_name, '@expected' => $string)));
  3396. }
  3397. /**
  3398. * Asserts that the most recently sent e-mail message has the pattern in it.
  3399. *
  3400. * @param $field_name
  3401. * Name of field or message property to assert: subject, body, id, ...
  3402. * @param $regex
  3403. * Pattern to search for.
  3404. *
  3405. * @return
  3406. * TRUE on pass, FALSE on fail.
  3407. */
  3408. protected function assertMailPattern($field_name, $regex, $message) {
  3409. $mails = $this->drupalGetMails();
  3410. $mail = end($mails);
  3411. $regex_found = preg_match("/$regex/", $mail[$field_name]);
  3412. return $this->assertTrue($regex_found, t('Expected text found in @field of email message: "@expected".', array('@field' => $field_name, '@expected' => $regex)));
  3413. }
  3414. /**
  3415. * Outputs to verbose the most recent $count emails sent.
  3416. *
  3417. * @param $count
  3418. * Optional number of emails to output.
  3419. */
  3420. protected function verboseEmail($count = 1) {
  3421. $mails = $this->drupalGetMails();
  3422. for ($i = sizeof($mails) -1; $i >= sizeof($mails) - $count && $i >= 0; $i--) {
  3423. $mail = $mails[$i];
  3424. $this->verbose(t('Email:') . '<pre>' . print_r($mail, TRUE) . '</pre>');
  3425. }
  3426. }
  3427. }
  3428. /**
  3429. * Logs verbose message in a text file.
  3430. *
  3431. * If verbose mode is enabled then page requests will be dumped to a file and
  3432. * presented on the test result screen. The messages will be placed in a file
  3433. * located in the simpletest directory in the original file system.
  3434. *
  3435. * @param $message
  3436. * The verbose message to be stored.
  3437. * @param $original_file_directory
  3438. * The original file directory, before it was changed for testing purposes.
  3439. * @param $test_class
  3440. * The active test case class.
  3441. *
  3442. * @return
  3443. * The ID of the message to be placed in related assertion messages.
  3444. *
  3445. * @see DrupalTestCase->originalFileDirectory
  3446. * @see DrupalWebTestCase->verbose()
  3447. */
  3448. function simpletest_verbose($message, $original_file_directory = NULL, $test_class = NULL) {
  3449. static $file_directory = NULL, $class = NULL, $id = 1, $verbose = NULL;
  3450. // Will pass first time during setup phase, and when verbose is TRUE.
  3451. if (!isset($original_file_directory) && !$verbose) {
  3452. return FALSE;
  3453. }
  3454. if ($message && $file_directory) {
  3455. $message = '<hr />ID #' . $id . ' (<a href="' . $class . '-' . ($id - 1) . '.html">Previous</a> | <a href="' . $class . '-' . ($id + 1) . '.html">Next</a>)<hr />' . $message;
  3456. file_put_contents($file_directory . "/simpletest/verbose/$class-$id.html", $message, FILE_APPEND);
  3457. return $id++;
  3458. }
  3459. if ($original_file_directory) {
  3460. $file_directory = $original_file_directory;
  3461. $class = $test_class;
  3462. $verbose = variable_get('simpletest_verbose', TRUE);
  3463. $directory = $file_directory . '/simpletest/verbose';
  3464. $writable = file_prepare_directory($directory, FILE_CREATE_DIRECTORY);
  3465. if ($writable && !file_exists($directory . '/.htaccess')) {
  3466. file_put_contents($directory . '/.htaccess', "<IfModule mod_expires.c>\nExpiresActive Off\n</IfModule>\n");
  3467. }
  3468. return $writable;
  3469. }
  3470. return FALSE;
  3471. }