From d66f31305389aa0fa7ab0dbdc6b7c28266810615 Mon Sep 17 00:00:00 2001
From: Chris Leppanen <chris.leppanen@gmail.com>
Date: Tue, 4 Feb 2014 23:40:13 -0500
Subject: [PATCH] Issue #1305698 by dman: Additional validation when creating
 terms - assert the Vocabulary is valid.

---
 tests/feeds_processor_term.test | 30 +++++++++++++++++++++++++++++-
 1 file changed, 29 insertions(+), 1 deletion(-)

diff --git a/tests/feeds_processor_term.test b/tests/feeds_processor_term.test
index 571222ce..3e9c5cd0 100644
--- a/tests/feeds_processor_term.test
+++ b/tests/feeds_processor_term.test
@@ -11,7 +11,7 @@
 class FeedsCSVtoTermsTest extends FeedsWebTestCase {
   public static function getInfo() {
     return array(
-      'name' => 'CSV import to taxonomy',
+      'name' => 'Processor: Taxonomy',
       'description' => 'Tests a standalone import configuration that uses file fetcher and CSV parser to import taxonomy terms from a CSV file.',
       'group' => 'Feeds',
     );
@@ -92,4 +92,32 @@ class FeedsCSVtoTermsTest extends FeedsWebTestCase {
     $this->assertNoText('Gomez');
     $this->assertNoText('Pugsley');
   }
+
+  /**
+   * Test that saving an invalid vocabulary throws an exception.
+   */
+  public function testInvalidVocabulary() {
+
+    $mappings = array(
+      0 => array(
+        'source' => 'name',
+        'target' => 'name',
+        'unique' => 1,
+      ),
+    );
+    $this->addMappings('term_import', $mappings);
+
+    // Force configuration to be invalid.
+    $config = unserialize(db_query("SELECT config FROM {feeds_importer} WHERE id = :id", array(':id' => 'term_import'))->fetchField());
+    $config['processor']['config']['bundle'] = 'does_not_exist';
+    db_update('feeds_importer')
+      ->fields(array('config' => serialize($config)))
+      ->condition('id', 'term_import')
+      ->execute();
+
+    // Import and assert.
+    $this->importFile('term_import', $this->absolutePath() . '/tests/feeds/users.csv');
+    $this->assertText(t('No vocabulary defined for Taxonomy Term processor.'));
+  }
+
 }
-- 
GitLab