You are here

Drupal7Test.php in Realistic Dummy Content 7.2

Same filename and directory in other branches
  1. 8.2 api/src/test/Framework/Drupal7Test.php

File

api/src/test/Framework/Drupal7Test.php
View source
<?php

namespace Drupal\realistic_dummy_content_api\Framework;


/**
 * Required interface.
 */
interface FrameworkInterface {

}

/**
 * Required dummy parent class.
 */
class Framework {

}
namespace Drupal\realistic_dummy_content_api\Test;

require_once './api/src/Framework/Drupal7.php';

/**
 * Tests for \Drupal\realistic_dummy_content_api\Framework\Drupal7.
 *
 * @group realistic_dummy_content
 */
class Drupal7Test extends \PHPUnit_Framework_TestCase {

  /**
   * Tests Drupal7::entityIsDummy().
   *
   * @dataProvider providerTestEntityIsDummy
   */
  public function testEntityIsDummy($account, $type, $expected) {
    $framework = $this
      ->getMockBuilder('Drupal\\realistic_dummy_content_api\\Framework\\Drupal7')
      ->setMethods(array(
      'drupalSubstr',
    ))
      ->getMock();
    $framework
      ->method('drupalSubstr')
      ->will($this
      ->returnCallback('substr'));
    $result = $framework
      ->entityIsDummy($account, $type);
    $this
      ->assertTrue($result === $expected, 'Account ' . serialize($account) . ' returned ' . serialize($result) . ' (expected result is ' . $expected . ')');
  }

  /**
   * Data provider for $this->testEntityIsDummy().
   */
  public function providerTestEntityIsDummy() {
    return array(
      array(
        (object) array(
          'mail' => 'whatever@example.com.invalid',
        ),
        'user',
        TRUE,
      ),
      array(
        (object) array(
          'mail' => 'whatever@example.com',
          'devel_generate' => TRUE,
        ),
        'user',
        TRUE,
      ),
      array(
        (object) array(
          'mail' => 'whatever@example.com',
        ),
        'user',
        FALSE,
      ),
      array(
        (object) array(
          'devel_generate' => TRUE,
        ),
        'node',
        TRUE,
      ),
      array(
        (object) array(),
        'node',
        FALSE,
      ),
    );
  }

}

Classes

Namesort descending Description
Drupal7Test Tests for \Drupal\realistic_dummy_content_api\Framework\Drupal7.
Framework Required dummy parent class.

Interfaces

Namesort descending Description
FrameworkInterface Required interface.