Hallo,

I have problems when I let simpletest create a content type and want to go to its admin page afterwards:


function testContentType() {
  
  // Create admin user
  $admin_user = $this->drupalCreateUser(array('access content', 'administer content types', 'administer nodes', 'access administration pages'));
  $this->drupalLogin($admin_user);
        
  // Create test content type
  $content_type = $this->drupalCreateContentType();
  
  // Go to admin page of it
  $content_type_url = str_replace('_', '-', $content_type->type);
  $this->drupalGet('admin/content/node-type/'. $content_type_url);
  $this->assertText($content_type->name, 'content type name ('. $content_type->name .') is present on page');
}

This small test fails, the simpletest browser does not fetch the specific content type page but the general content management page (admin/content). Is this intended behavior or is this a bug? Am I doing something wrong?

I have attached the simpletest file to reproduce this failure, just copy it to the "tests" subfolder in your simpletest module directory and it will apear on the Testing page in the group Simpletest.

CommentFileSizeAuthor
content_type.test1.09 KBklausi
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

hass’s picture

boombatower’s picture

Status: Active » Fixed

Complete backport of Drupal 7.x SimpleTest module. (voids all backports). (SimpleTest 2.6)

Please re-open if still an issue.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.