2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
$this->admin_user=$this->drupalCreateUser(array('create new books','create book content','edit own book content','add content to books','administer blocks'));
}
/**
* Create a new book with a page hierarchy.
*/
...
...
@@ -52,7 +55,7 @@ class BookTestCase extends DrupalWebTestCase {
@@ -63,7 +66,7 @@ class BookTestCase extends DrupalWebTestCase {
// Create new book.
$nodes=$this->createBook();
$book=$this->book;
$this->drupalLogin($this->web_user);
// Check that book pages display along with the correct outlines and
...
...
@@ -211,68 +214,63 @@ class BookTestCase extends DrupalWebTestCase {
return$node;
}
/**
* Tests book export ("printer-friendly version") functionality.
*/
functiontestBookExport(){
// Create a book.
$nodes=$this->createBook();
// Login as web user and view printer-friendly version.
$this->drupalLogin($this->web_user);
$this->drupalGet('node/'.$this->book->nid);
$this->clickLink(t('Printer-friendly version'));
// Make sure each part of the book is there.
foreach($nodesas$node){
$this->assertText($node->title,t('Node title found in printer friendly version.'));
$this->assertRaw(check_markup($node->body[LANGUAGE_NONE][0]['value'],$node->body[LANGUAGE_NONE][0]['format']),t('Node body found in printer friendly version.'));
}
// Make sure we can't export an unsupported format.