You are here

class CDNOriginPullFarFutureTestCase in CDN 7.2

Hierarchy

Expanded class hierarchy of CDNOriginPullFarFutureTestCase

File

tests/cdn.test, line 342
Test CDN.

View source
class CDNOriginPullFarFutureTestCase extends CDNUnitTestCase {
  public static function getInfo() {
    return array(
      'name' => 'Origin Pull mode — Far Future expiration',
      'description' => 'Verify Origin Pull mode\'s Far Future expiration functionality.',
      'group' => 'CDN',
    );
  }
  function setUp() {
    parent::setUp();
    $this
      ->loadFile('cdn.basic.inc');
    $this
      ->loadFile('cdn.basic.farfuture.inc');
    $this
      ->variableSet(CDN_MODE_VARIABLE, CDN_MODE_BASIC);
    $this
      ->variableSet(CDN_BASIC_FARFUTURE_VARIABLE, TRUE);
  }

  /**
   * Assert a UFI mapping (and optionally set a mapping).
   *
   * @param $mapping
   *   The mapping to set; if FALSE, no new mapping will be set.
   * @param $parsed_reference
   *   The reference the parsed mapping will be compared to.
   * @param $message
   */
  function assertUFIMapping($mapping, $parsed_reference, $message = NULL) {
    if (is_null($message)) {
      $message = 'UFI mapping parsed correctly.';
    }
    if ($mapping !== FALSE) {
      $this
        ->variableSet(CDN_BASIC_FARFUTURE_UNIQUE_IDENTIFIER_MAPPING_VARIABLE, $mapping);
    }
    $parsed = _cdn_basic_farfuture_parse_raw_mapping(variable_get(CDN_BASIC_FARFUTURE_UNIQUE_IDENTIFIER_MAPPING_VARIABLE, CDN_BASIC_FARFUTURE_UNIQUE_IDENTIFIER_MAPPING_DEFAULT));
    $this
      ->assertEqual($parsed_reference, $parsed, $message);
  }

  /**
   * Assert a UFI method. Must be run after a UFI mapping is asserted (and
   * set) by assertUFIMapping().
   *
   * @param $path
   *   The path to get a UFI for.
   * @param $ufi_method_reference
   *   The reference the resulting UFI method will be compared to.
   */
  function assertUFIMethod($path, $ufi_method_reference) {
    $ufi_mapping = _cdn_basic_farfuture_parse_raw_mapping(variable_get(CDN_BASIC_FARFUTURE_UNIQUE_IDENTIFIER_MAPPING_VARIABLE, CDN_BASIC_FARFUTURE_UNIQUE_IDENTIFIER_MAPPING_DEFAULT));
    $this
      ->assertEqual($ufi_method_reference, cdn_basic_farfuture_get_ufi_method($path, $ufi_mapping), 'Correct UFI method applied.');
  }
  function testUFIMapping() {
    $default = CDN_BASIC_FARFUTURE_UNIQUE_IDENTIFIER_MAPPING_DEFAULT;
    $parsed_mapping = _cdn_basic_farfuture_parse_raw_mapping($default);
    $this
      ->assertUFIMapping(FALSE, $parsed_mapping, 'The default UFI mapping is set to sensible defaults.');

    // Growing complexity for a single-directory UFI.
    $this
      ->assertUFIMapping("sites/*|mtime", array(
      'sites/*' => array(
        '*' => array(
          'ufi method' => 'mtime',
          'specificity' => 20,
        ),
      ),
    ), 'Simple single-directory UFI mapping (step 1).');
    $this
      ->assertUFIMethod('sites/foo', 'mtime');
    $this
      ->assertUFIMapping("sites/*|mtime\nsites/*|.woff .ttf|md5_hash", array(
      'sites/*' => array(
        '*' => array(
          'ufi method' => 'mtime',
          'specificity' => 20,
        ),
        'woff' => array(
          'ufi method' => 'md5_hash',
          'specificity' => 21,
        ),
        'ttf' => array(
          'ufi method' => 'md5_hash',
          'specificity' => 21,
        ),
      ),
    ), 'Simple single-directory UFI mapping (step 2).');
    $this
      ->assertUFIMethod('sites/foo', 'mtime');
    $this
      ->assertUFIMethod('sites/foobambamb.woff', 'md5_hash');
    $this
      ->assertUFIMethod('sites/foo/bar/baz.ttf', 'md5_hash');
    $this
      ->assertUFIMapping("sites/*|mtime\nsites/*|.woff .ttf|md5_hash\nsites/*|.mov .mp4|perpetual", array(
      'sites/*' => array(
        '*' => array(
          'ufi method' => 'mtime',
          'specificity' => 20,
        ),
        'woff' => array(
          'ufi method' => 'md5_hash',
          'specificity' => 21,
        ),
        'ttf' => array(
          'ufi method' => 'md5_hash',
          'specificity' => 21,
        ),
        'mov' => array(
          'ufi method' => 'perpetual',
          'specificity' => 21,
        ),
        'mp4' => array(
          'ufi method' => 'perpetual',
          'specificity' => 21,
        ),
      ),
    ), 'Simple single-directory UFI mapping (step 2).');
    $this
      ->assertUFIMethod('sites/foo', 'mtime');
    $this
      ->assertUFIMethod('sites/foobambamb.woff', 'md5_hash');
    $this
      ->assertUFIMethod('sites/foo/bar/baz.ttf', 'md5_hash');
    $this
      ->assertUFIMethod('sites/movies/foo.mov', 'perpetual');
    $this
      ->assertUFIMethod('sites/movies/bar.mp4', 'perpetual');
  }
  function testFileUrlAlterHook() {

    // We don't want to test the UFI functionality here.
    $this
      ->variableSet(CDN_BASIC_FARFUTURE_UNIQUE_IDENTIFIER_MAPPING_VARIABLE, '*|perpetual');

    // Provide a very basic CDN mapping.
    $this
      ->variableSet(CDN_BASIC_MAPPING_VARIABLE, 'http://cdn-a.com');
    $filename = 'újjáépítésérol — 100% in B&W.jpg';
    $uri = "public://{$filename}";
    $this
      ->touchFile($uri);
    cdn_file_url_alter($uri);
    $path_info = pathinfo($filename);
    $expected = implode('/', array(
      'http://cdn-a.com' . base_path() . 'cdn/farfuture',
      drupal_hmac_base64('perpetual:forever' . $path_info['filename'], drupal_get_private_key() . drupal_get_hash_salt()),
      'perpetual:forever',
      variable_get('file_public_path', conf_path() . '/files'),
      drupal_encode_path($filename),
    ));
    $this
      ->assertIdentical($uri, $expected, 'cdn_file_url_alter() works correctly.');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CDNOriginPullFarFutureTestCase::assertUFIMapping function Assert a UFI mapping (and optionally set a mapping).
CDNOriginPullFarFutureTestCase::assertUFIMethod function Assert a UFI method. Must be run after a UFI mapping is asserted (and set) by assertUFIMapping().
CDNOriginPullFarFutureTestCase::getInfo public static function
CDNOriginPullFarFutureTestCase::setUp function Sets up unit test environment. Overrides CDNUnitTestCase::setUp
CDNOriginPullFarFutureTestCase::testFileUrlAlterHook function
CDNOriginPullFarFutureTestCase::testUFIMapping function
CDNUnitTestCase::configureHTTPS function Configure HTTPS-related settings.
CDNUnitTestCase::getExpandedFilePath function Given a file URI, get the expanded file path.
CDNUnitTestCase::loadFile function
CDNUnitTestCase::setRequestProtocol function Set the protocol of the current "request".
CDNUnitTestCase::setUserAgent function Set the User-Agent of the current "request".
CDNUnitTestCase::tearDown function Overrides DrupalUnitTestCase::tearDown
CDNUnitTestCase::touchFile function Given a file URI, get its path, create the file and ensure it exists.
CDNUnitTestCase::variableSet function Mock function for variable_set().
CDNUnitTestCase::variableSetDefaults function Set the default variable values for the CDN module.
DrupalTestCase::$assertions protected property Assertions thrown in that test case.
DrupalTestCase::$databasePrefix protected property The database prefix of this test run.
DrupalTestCase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
DrupalTestCase::$results public property Current results of this test case.
DrupalTestCase::$setup protected property Flag to indicate whether the test has been set up.
DrupalTestCase::$setupDatabasePrefix protected property
DrupalTestCase::$setupEnvironment protected property
DrupalTestCase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
DrupalTestCase::$testId protected property The test run ID.
DrupalTestCase::$timeLimit protected property Time limit for the test.
DrupalTestCase::$useSetupInstallationCache public property Whether to cache the installation part of the setUp() method.
DrupalTestCase::$useSetupModulesCache public property Whether to cache the modules installation part of the setUp() method.
DrupalTestCase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
DrupalTestCase::assert protected function Internal helper: stores the assert.
DrupalTestCase::assertEqual protected function Check to see if two values are equal.
DrupalTestCase::assertFalse protected function Check to see if a value is false (an empty string, 0, NULL, or FALSE).
DrupalTestCase::assertIdentical protected function Check to see if two values are identical.
DrupalTestCase::assertNotEqual protected function Check to see if two values are not equal.
DrupalTestCase::assertNotIdentical protected function Check to see if two values are not identical.
DrupalTestCase::assertNotNull protected function Check to see if a value is not NULL.
DrupalTestCase::assertNull protected function Check to see if a value is NULL.
DrupalTestCase::assertTrue protected function Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
DrupalTestCase::deleteAssert public static function Delete an assertion record by message ID.
DrupalTestCase::error protected function Fire an error assertion. 1
DrupalTestCase::errorHandler public function Handle errors during test runs. 1
DrupalTestCase::exceptionHandler protected function Handle exceptions.
DrupalTestCase::fail protected function Fire an assertion that is always negative.
DrupalTestCase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
DrupalTestCase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
DrupalTestCase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
DrupalTestCase::insertAssert public static function Store an assertion from outside the testing context.
DrupalTestCase::pass protected function Fire an assertion that is always positive.
DrupalTestCase::randomName public static function Generates a random string containing letters and numbers.
DrupalTestCase::randomString public static function Generates a random string of ASCII characters of codes 32 to 126.
DrupalTestCase::run public function Run all tests in this class.
DrupalTestCase::verbose protected function Logs a verbose message in a text file.
DrupalUnitTestCase::__construct function Constructor for DrupalUnitTestCase. Overrides DrupalTestCase::__construct