You are here

feeds_mapper_locale.test in Feeds 7

Same filename and directory in other branches
  1. 6 tests/feeds_mapper_locale.test

File

tests/feeds_mapper_locale.test
View source
<?php

/**
 * @file
 * Test case for locale (language) mapper mappers/locale.inc.
 */
require_once drupal_get_path('module', 'feeds') . '/tests/feeds_mapper_test.inc';

/**
 * Class for testing Feeds <em>locale</em> mapper.
 */
class FeedsMapperLocaleTestCase extends FeedsMapperTestCase {
  public static function getInfo() {
    return array(
      'name' => t('Mapper: Locale'),
      'description' => t('Test Feeds Mapper support for Locale (Language).'),
      'group' => t('Feeds'),
    );
  }

  /**
   * Set up the test.
   */
  function setUp() {

    // Call parent setup with required modules.
    parent::setUp('feeds', 'feeds_ui', 'ctools', 'job_scheduler', 'locale');

    // Create user and login.
    $this
      ->drupalLogin($this
      ->drupalCreateUser(array(
      'administer content types',
      'administer feeds',
      'administer nodes',
      'administer site configuration',
      'administer languages',
    )));

    // Add an additional language and enable it for page and article.
    $edit = array(
      'langcode' => 'zh-hans',
    );
    $this
      ->drupalPost('admin/settings/language/add', $edit, t('Add language'));
    $this
      ->assertText('The language Chinese, Simplified has been created and can now be used.');
    $edit = array(
      'language_content_type' => TRUE,
    );
    foreach (array(
      'article',
      'page',
    ) as $type) {
      $this
        ->drupalPost("admin/content/node-type/{$type}", $edit, t('Save content type'));
    }

    // Create an importer configuration with basic mapping.
    $this
      ->createImporterConfiguration('Syndication', 'syndication');
    $this
      ->addMappings('syndication', array(
      array(
        'source' => 'title',
        'target' => 'title',
        'unique' => FALSE,
      ),
      array(
        'source' => 'description',
        'target' => 'body',
        'unique' => FALSE,
      ),
      array(
        'source' => 'timestamp',
        'target' => 'created',
        'unique' => FALSE,
      ),
      array(
        'source' => 'url',
        'target' => 'url',
        'unique' => TRUE,
      ),
      array(
        'source' => 'guid',
        'target' => 'guid',
        'unique' => TRUE,
      ),
    ));
  }

  /**
   * Test inheriting language from the feed node.
   */
  function testInheritLanguage() {

    // Map feed node's language to feed item node's language.
    $this
      ->addMappings('syndication', array(
      array(
        'source' => 'parent:language',
        'target' => 'language',
      ),
    ));

    // Turn off import on create, create feed node, add language, import.
    $edit = array(
      'import_on_create' => FALSE,
    );
    $this
      ->drupalPost('admin/structure/feeds/edit/syndication/settings', $edit, 'Save');
    $this
      ->assertText('Do not import on create');
    $nid = $this
      ->createFeedNode();
    $edit = array(
      'language' => 'zh-hans',
    );
    $this
      ->drupalPost("node/{$nid}/edit", $edit, t('Save'));
    $this
      ->drupalPost('node/' . $nid . '/import', array(), 'Import');
    $count = db_query("SELECT COUNT(*) FROM {node} WHERE language = 'zh-hans'")
      ->fetchField();
    $this
      ->assertEqual(11, $count, 'Found correct number of nodes.');
  }

}

Classes

Namesort descending Description
FeedsMapperLocaleTestCase Class for testing Feeds <em>locale</em> mapper.