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->assertText(t('The block settings have been updated.'),t('[New forum topics] Forum block was enabled'));
$this->assertText(t('The block settings have been updated.'),'[New forum topics] Forum block was enabled');
// Retrieve forum menu id.
$mlid=db_query_range("SELECT mlid FROM {menu_links} WHERE link_path = 'forum' AND menu_name = 'navigation' AND module = 'system' ORDER BY mlid ASC",0,1)->fetchField();
...
...
@@ -280,13 +280,13 @@ private function doAdminTests($user) {
// Verify "edit container" link exists and functions correctly.
$this->drupalGet('admin/structure/forum');
$this->clickLink('edit container');
$this->assertRaw('Edit container',t('Followed the link to edit the container'));
$this->assertRaw('Edit container','Followed the link to edit the container');
$this->assertRaw(t('Created new @type %term.',array('%term'=>$name,'@type'=>t($type))),t(ucfirst($type).' was created'));
$this->assertRaw(
t(
'Created new @type %term.',
array('%term'=>$name,'@type'=>t($type))
),
format_string('@type was created',array('@type'=>ucfirst($type)))
);
// Verify forum.
$term=db_query("SELECT * FROM {taxonomy_term_data} t WHERE t.vid = :vid AND t.name = :name AND t.description = :desc",array(':vid'=>config('forum.settings')->get('vocabulary'),':name'=>$name,':desc'=>$description))->fetchAssoc();
...
...
@@ -479,24 +485,24 @@ function createForumTopic($forum, $container = FALSE) {
$type=t('Forum topic');
if($container){
$this->assertNoRaw(t('@type %title has been created.',array('@type'=>$type,'%title'=>$title)),t('Forum topic was not created'));
$this->assertRaw(t('The item %title is a forum container, not a forum.',array('%title'=>$forum['name'])),t('Error message was shown'));
$this->assertNoRaw(t('@type %title has been created.',array('@type'=>$type,'%title'=>$title)),'Forum topic was not created');
$this->assertRaw(t('The item %title is a forum container, not a forum.',array('%title'=>$forum['name'])),'Error message was shown');
return;
}
else{
$this->assertRaw(t('@type %title has been created.',array('@type'=>$type,'%title'=>$title)),t('Forum topic was created'));
$this->assertNoRaw(t('The item %title is a forum container, not a forum.',array('%title'=>$forum['name'])),t('No error message was shown'));
$this->assertRaw(t('@type %title has been created.',array('@type'=>$type,'%title'=>$title)),'Forum topic was created');
$this->assertNoRaw(t('The item %title is a forum container, not a forum.',array('%title'=>$forum['name'])),'No error message was shown');
}
// Retrieve node object, ensure that the topic was created and in the proper forum.
$node=$this->drupalGetNodeByTitle($title);
$this->assertTrue($node!=NULL,t('Node @title was loaded',array('@title'=>$title)));
$this->assertTrue($node!=NULL,format_string('Node @title was loaded',array('@title'=>$title)));
$this->assertEqual($node->taxonomy_forums[LANGUAGE_NOT_SPECIFIED][0]['tid'],$tid,'Saved forum topic was in the expected forum');