You are here

function realistic_dummy_content_UnitTestCase::testFiles in Realistic Dummy Content 7

Test that file names are properly parsed and combined.

File

api/tests/realistic_dummy_content_api.unit.test, line 114
This file contains the testing code for this module

Class

realistic_dummy_content_UnitTestCase
The test case

Code

function testFiles() {
  module_load_include('inc', 'realistic_dummy_content_api', 'includes/RealisticDummyContentEnvironment');
  $data = array(
    'one.txt' => new stdClass(),
    'reAdme.txt' => new stdClass(),
    'README.md' => new stdClass(),
    'readme.jpg' => new stdClass(),
    'two.txt' => new stdClass(),
    'two.notanattribute.txt' => new stdClass(),
    'two.txt.attribute.txt' => new stdClass(),
    'two.txt.attribute1.txt' => new stdClass(),
    'three.png' => new stdClass(),
    'three.png.alt.txt' => new stdClass(),
  );
  try {
    $parsed = RealisticDummyContentEnvironment::SortCandidateFiles($data);
    $parsed_images = RealisticDummyContentEnvironment::SortCandidateFiles($data, array(
      'png',
    ));
  } catch (Exception $e) {
    $this
      ->assertFalse(TRUE, 'Got exception ' . $e
      ->getMessage());
  }
  $this
    ->assertTrue(count($parsed) == 4, '4 parsed files are returned, which excludes the readme riles (4 == ' . count($parsed) . ')');
  $this
    ->assertTrue(is_object($parsed['one.txt']['file']));
  $this
    ->assertTrue(is_object($parsed['two.txt']['file']));
  $this
    ->assertTrue(is_object($parsed['two.txt']['attributes']['attribute']));
  $this
    ->assertTrue(is_object($parsed['two.txt']['attributes']['attribute1']));
  $this
    ->assertTrue(is_object($parsed['three.png']['file']));
  $this
    ->assertTrue(is_object($parsed['three.png']['attributes']['alt']));
  $this
    ->assertFalse(isset($parsed_images['two.txt']['attributes']['attribute1']));
  $this
    ->assertTrue(is_object($parsed_images['three.png']['file']));
  $this
    ->assertTrue(is_object($parsed_images['three.png']['attributes']['alt']));
  $this
    ->assertTrue(is_object($parsed['two.notanattribute.txt']['file']));
}