Issue #2009632 by tim.plunkett, dawehner, giammi: Switch CommentPreviewTest from standard profile to testing.

8.0.x
webchick 2013-08-11 23:59:56 -07:00
parent 2a4e466139
commit c4131e2924
1 changed files with 29 additions and 3 deletions

View File

@ -17,11 +17,11 @@ use Drupal\Core\Language\Language;
class CommentPreviewTest extends CommentTestBase { class CommentPreviewTest extends CommentTestBase {
/** /**
* Use the standard profile. * Modules to enable.
* *
* @var string * @var array
*/ */
protected $profile = 'standard'; public static $modules = array('image');
public static function getInfo() { public static function getInfo() {
return array( return array(
@ -31,6 +31,32 @@ class CommentPreviewTest extends CommentTestBase {
); );
} }
function setUp() {
parent::setUp();
// Create user picture field.
module_load_install('user');
user_install_picture_field();
// Add the basic_html filter format from the standard install profile.
$filter_format_storage_controller = $this->container->get('plugin.manager.entity')->getStorageController('filter_format');
$filter_format = $filter_format_storage_controller->create(array(
'format' => 'basic_html',
'name' => 'Basic HTML',
'status' => '1',
'roles' => array('authenticated'),
), 'filter_format');
$filter_format->setFilterConfig('filter_html', array(
'module' => 'filter',
'status' => '1',
'settings' => array(
'allowed_html' => '<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <h4> <h5> <h6> <p> <span> <img>',
),
));
$filter_format->save();
}
/** /**
* Tests comment preview. * Tests comment preview.
*/ */