From c4d28df9e9a8b8b673da55ada37583a51418f340 Mon Sep 17 00:00:00 2001
From: Alex Barth <alex_b@53995.no-reply.drupal.org>
Date: Thu, 9 Sep 2010 22:56:55 +0000
Subject: [PATCH] Add test for term processor.

---
 tests/feeds_processor_term.test | 93 +++++++++++++++++++++++++++++++++
 1 file changed, 93 insertions(+)
 create mode 100644 tests/feeds_processor_term.test

diff --git a/tests/feeds_processor_term.test b/tests/feeds_processor_term.test
new file mode 100644
index 00000000..1ebebd64
--- /dev/null
+++ b/tests/feeds_processor_term.test
@@ -0,0 +1,93 @@
+<?php
+// $Id$
+
+/**
+ * @file
+ * Tests for plugins/FeedsTermProcessor.inc
+ */
+
+// Require FeedsWebTestCase class definition.
+require_once(dirname(__FILE__) .'/feeds.test.inc');
+
+/**
+ * Test aggregating a feed as data records.
+ */
+class FeedsCSVtoTermsTest extends FeedsWebTestCase {
+
+  /**
+   * Describe this test.
+   */
+  public function getInfo() {
+    return array(
+      'name' => t('CSV import to taxonomy'),
+      'description' => t('Tests a standalone import configuration that uses file fetcher and CSV parser to import taxonomy terms from a CSV file.'),
+      'group' => t('Feeds'),
+    );
+  }
+
+  /**
+   * Set up test.
+   */
+  public function setUp() {
+    parent::setUp('feeds', 'feeds_ui', 'ctools');
+
+    $this->drupalLogin(
+      $this->drupalCreateUser(
+        array(
+          'administer feeds', 'administer taxonomy',
+        )
+      )
+    );
+  }
+
+  /**
+   * Test node creation, refreshing/deleting feeds and feed items.
+   */
+  public function test() {
+
+    // Create an importer.
+    $this->createImporterConfiguration('Term import', 'term_import');
+
+    // Set and configure plugins and mappings.
+    $this->setPlugin('term_import', 'FeedsFileFetcher');
+    $this->setPlugin('term_import', 'FeedsCSVParser');
+    $this->setPlugin('term_import', 'FeedsTermProcessor');
+    $mappings = array(
+      '0' => array(
+        'source' => 'name',
+        'target' => 'name',
+        'unique' => 1,
+      ),
+    );
+    $this->addMappings('term_import', $mappings);
+
+    // Use standalone form.
+    $edit = array(
+      'content_type' => '',
+    );
+    $this->drupalPost('admin/build/feeds/edit/term_import/settings', $edit, 'Save');
+
+    $edit = array(
+      'name' => 'Addams vocabulary',
+    );
+    $this->drupalPost('admin/content/taxonomy/add/vocabulary', $edit, t('Save'));
+
+    $edit = array(
+      'vocabulary' => 1,
+    );
+    $this->drupalPost('admin/build/feeds/edit/term_import/settings/FeedsTermProcessor', $edit, t('Save'));
+
+    // Import and assert.
+    $this->importFile('term_import', $this->absolutePath() .'/tests/feeds/users.csv');
+    $this->assertText('Created 5 terms in Addams vocabulary.');
+    $this->drupalGet('admin/content/taxonomy/1');
+    $this->assertText('Morticia');
+    $this->assertText('Fester');
+    $this->assertText('Gomez');
+    $this->assertText('Pugsley');
+
+    // Import again.
+    $this->importFile('term_import', $this->absolutePath() .'/tests/feeds/users.csv');
+    $this->assertText('There are no new terms.');
+  }
+}
-- 
GitLab