You are here

public function RecipeNodeTest::testRecipeMultipleExport in Recipe 7.2

Same name and namespace in other branches
  1. 7 src/Tests/RecipeNodeTest.php \Drupal\recipe\Tests\RecipeNodeTest::testRecipeMultipleExport()

Tests exporting recipes with the multiple export page.

File

src/Tests/RecipeNodeTest.php, line 334

Class

RecipeNodeTest
Tests the functionality of the Recipe content type and Recipe blocks.

Namespace

Drupal\recipe\Tests

Code

public function testRecipeMultipleExport() {

  // Create two recipe nodes.
  $node_title_1 = $this
    ->randomName(16);
  $source_1 = $this
    ->randomName(16);
  $yield_1 = 10;
  $yield_unit_1 = $this
    ->randomName(10);
  $description_1 = $this
    ->randomName(32);
  $instructions_1 = $this
    ->randomName(32);
  $notes_1 = $this
    ->randomName(32);
  $preptime_1 = 30;
  $cooktime_1 = 90;
  $quantity_1 = 2;
  $unit_key_1 = 'cup';
  $ingredient_name_1 = $this
    ->randomName(16);
  $ingredient_note_1 = $this
    ->randomName(16);
  $edit = array(
    'type' => 'recipe',
    'title' => $node_title_1,
    'recipe_source' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $source_1,
        ),
      ),
    ),
    'recipe_yield' => $yield_1,
    'recipe_yield_unit' => $yield_unit_1,
    'recipe_description' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $description_1,
        ),
      ),
    ),
    'recipe_instructions' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $instructions_1,
        ),
      ),
    ),
    'recipe_notes' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $notes_1,
        ),
      ),
    ),
    'recipe_prep_time' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $preptime_1,
        ),
      ),
    ),
    'recipe_cook_time' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $cooktime_1,
        ),
      ),
    ),
    'recipe_ingredient' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'iid' => recipe_ingredient_id_from_name($ingredient_name_1),
          'quantity' => $quantity_1,
          'unit_key' => $unit_key_1,
          'note' => $ingredient_note_1,
        ),
      ),
    ),
  );
  $this
    ->drupalCreateNode($edit);
  $node_title_2 = $this
    ->randomName(16);
  $source_2 = $this
    ->randomName(16);
  $yield_2 = 10;
  $yield_unit_2 = $this
    ->randomName(10);
  $description_2 = $this
    ->randomName(32);
  $instructions_2 = $this
    ->randomName(32);
  $notes_2 = $this
    ->randomName(32);
  $preptime_2 = 15;
  $cooktime_2 = 45;
  $quantity_2 = 2;
  $unit_key_2 = 'cup';
  $ingredient_name_2 = $this
    ->randomName(16);
  $ingredient_note_2 = $this
    ->randomName(16);
  $edit = array(
    'type' => 'recipe',
    'title' => $node_title_2,
    'recipe_source' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $source_2,
        ),
      ),
    ),
    'recipe_yield' => $yield_2,
    'recipe_yield_unit' => $yield_unit_2,
    'recipe_description' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $description_2,
        ),
      ),
    ),
    'recipe_instructions' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $instructions_2,
        ),
      ),
    ),
    'recipe_notes' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $notes_2,
        ),
      ),
    ),
    'recipe_prep_time' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $preptime_2,
        ),
      ),
    ),
    'recipe_cook_time' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'value' => $cooktime_2,
        ),
      ),
    ),
    'recipe_ingredient' => array(
      LANGUAGE_NONE => array(
        0 => array(
          'iid' => recipe_ingredient_id_from_name($ingredient_name_2),
          'quantity' => $quantity_2,
          'unit_key' => $unit_key_2,
          'note' => $ingredient_note_2,
        ),
      ),
    ),
  );
  $this
    ->drupalCreateNode($edit);

  // Check for links to all the export formats on the bulk export page.
  $this
    ->drupalGet('admin/structure/recipe');
  $this
    ->assertLink('MasterCook4');
  $this
    ->assertLink('Plain Text');
  $this
    ->assertLink('recipeML');

  // Check for the recipe data on the MasterCook4 bulk export page.
  $this
    ->drupalGet('admin/structure/recipe/export_multi/mastercook4');
  $this
    ->assertRaw($node_title_1);

  // The MasterCook4 format does not output the description.
  $this
    ->assertRaw(format_string('Serving Size  : @yield', array(
    '@yield' => $yield_1,
  )), 'Found the recipe yield.');

  // The MasterCook4 format does not output the yield unit.
  $this
    ->assertRaw(format_string('Recipe By     : @source', array(
    '@source' => $source_1,
  )), 'Found the recipe source.');
  $this
    ->assertRaw($notes_1, 'Found the recipe notes.');
  $this
    ->assertRaw($instructions_1, 'Found the recipe instructions');
  $this
    ->assertRaw('Preparation Time : 0:30', 'Found the recipe prep time.');

  // The MasterCook4 format does not output the cook time.
  // The MasterCook4 format does not output the total time.
  $this
    ->assertRaw(format_string('@quantity  @unit             @name -- @note', array(
    '@quantity' => $quantity_1,
    '@unit' => $this->unitList[$unit_key_1]['abbreviation'],
    '@name' => $ingredient_name_1,
    '@note' => $ingredient_note_1,
  )), 'Found ingredient 0.');
  $this
    ->assertRaw($node_title_2);

  // The MasterCook4 format does not output the description.
  $this
    ->assertRaw(format_string('Serving Size  : @yield', array(
    '@yield' => $yield_2,
  )), 'Found the recipe yield.');

  // The MasterCook4 format does not output the yield unit.
  $this
    ->assertRaw(format_string('Recipe By     : @source', array(
    '@source' => $source_2,
  )), 'Found the recipe source.');
  $this
    ->assertRaw($notes_2, 'Found the recipe notes.');
  $this
    ->assertRaw($instructions_2, 'Found the recipe instructions');
  $this
    ->assertRaw('Preparation Time : 0:15', 'Found the recipe prep time.');

  // The MasterCook4 format does not output the cook time.
  // The MasterCook4 format does not output the total time.
  $this
    ->assertRaw(format_string('@quantity  @unit             @name -- @note', array(
    '@quantity' => $quantity_2,
    '@unit' => $this->unitList[$unit_key_2]['abbreviation'],
    '@name' => $ingredient_name_2,
    '@note' => $ingredient_note_2,
  )), 'Found ingredient 0.');

  // Check for the recipe data on the plain text export page.
  $this
    ->drupalGet('admin/structure/recipe/export_multi/plaintext');
  $this
    ->assertRaw($node_title_1);
  $this
    ->assertRaw($description_1, 'Found the recipe description.');

  // The plain text format does not output the yield.
  // The plain text format does not output the yield unit.
  // The plain text format does not output the source.
  $this
    ->assertRaw($notes_1, 'Found the recipe notes.');
  $this
    ->assertRaw($instructions_1, 'Found the recipe instructions');

  // The plain text format does not output the prep time.
  // The plain text format does not output the cook time.
  // The plain text format does not output the total time.
  $this
    ->assertRaw(format_string('@quantity @unit @name (@note)', array(
    '@quantity' => $quantity_1,
    '@unit' => $this->unitList[$unit_key_1]['abbreviation'],
    '@name' => $ingredient_name_1,
    '@note' => $ingredient_note_1,
  )), 'Found ingredient 0.');
  $this
    ->assertRaw($node_title_2);
  $this
    ->assertRaw($description_2, 'Found the recipe description.');

  // The plain text format does not output the yield.
  // The plain text format does not output the yield unit.
  // The plain text format does not output the source.
  $this
    ->assertRaw($notes_2, 'Found the recipe notes.');
  $this
    ->assertRaw($instructions_2, 'Found the recipe instructions');

  // The plain text format does not output the prep time.
  // The plain text format does not output the cook time.
  // The plain text format does not output the total time.
  $this
    ->assertRaw(format_string('@quantity @unit @name (@note)', array(
    '@quantity' => $quantity_2,
    '@unit' => $this->unitList[$unit_key_2]['abbreviation'],
    '@name' => $ingredient_name_2,
    '@note' => $ingredient_note_2,
  )), 'Found ingredient 0.');

  // Check for the recipe data on the recipeML export page.
  $this
    ->drupalGet('admin/structure/recipe/export_multi/recipeml');
  $this
    ->assertRaw($node_title_1);
  $this
    ->assertRaw(format_string('<description>@description</description>', array(
    '@description' => $description_1,
  )), 'Found the recipe description.');
  $this
    ->assertRaw(format_string('<yield><qty>@yield</qty><unit>@yield_unit</unit></yield>', array(
    '@yield' => $yield_1,
    '@yield_unit' => $yield_unit_1,
  )), 'Found the recipe yield and yield unit.');
  $this
    ->assertRaw(format_string('<source>@source</source>', array(
    '@source' => $source_1,
  )), 'Found the recipe source.');
  $this
    ->assertRaw(format_string('<note>@notes</note>', array(
    '@notes' => $notes_1,
  )), 'Found the recipe notes.');
  $this
    ->assertRaw(format_string('<directions>@instructions</directions>', array(
    '@instructions' => $instructions_1,
  )), 'Found the recipe instructions');
  $this
    ->assertRaw(format_string('<preptime type="cooking"><time><qty>@preptime</qty><timeunit>minutes</timeunit></time></preptime>', array(
    '@preptime' => $preptime_1,
  )), 'Found the recipe prep time.');

  // The recipeML format does not output the cook time.
  // The recipeML format does not output the total time.
  $this
    ->assertRaw(format_string('<ing><amt><qty>@quantity</qty><unit>@unit</unit></amt><item>@name</item><prep>@note</prep></ing>', array(
    '@quantity' => $quantity_1,
    '@unit' => $this->unitList[$unit_key_1]['abbreviation'],
    '@name' => $ingredient_name_1,
    '@note' => $ingredient_note_1,
  )), 'Found ingredient 0.');
  $this
    ->assertRaw($node_title_2);
  $this
    ->assertRaw(format_string('<description>@description</description>', array(
    '@description' => $description_2,
  )), 'Found the recipe description.');
  $this
    ->assertRaw(format_string('<yield><qty>@yield</qty><unit>@yield_unit</unit></yield>', array(
    '@yield' => $yield_2,
    '@yield_unit' => $yield_unit_2,
  )), 'Found the recipe yield and yield unit.');
  $this
    ->assertRaw(format_string('<source>@source</source>', array(
    '@source' => $source_2,
  )), 'Found the recipe source.');
  $this
    ->assertRaw(format_string('<note>@notes</note>', array(
    '@notes' => $notes_2,
  )), 'Found the recipe notes.');
  $this
    ->assertRaw(format_string('<directions>@instructions</directions>', array(
    '@instructions' => $instructions_2,
  )), 'Found the recipe instructions');
  $this
    ->assertRaw(format_string('<preptime type="cooking"><time><qty>@preptime</qty><timeunit>minutes</timeunit></time></preptime>', array(
    '@preptime' => $preptime_2,
  )), 'Found the recipe prep time.');

  // The recipeML format does not output the cook time.
  // The recipeML format does not output the total time.
  $this
    ->assertRaw(format_string('<ing><amt><qty>@quantity</qty><unit>@unit</unit></amt><item>@name</item><prep>@note</prep></ing>', array(
    '@quantity' => $quantity_2,
    '@unit' => $this->unitList[$unit_key_2]['abbreviation'],
    '@name' => $ingredient_name_2,
    '@note' => $ingredient_note_2,
  )), 'Found ingredient 0.');
}