Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feeds
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
feeds
Commits
c4d28df9
Commit
c4d28df9
authored
14 years ago
by
Alex Barth
Browse files
Options
Downloads
Patches
Plain Diff
Add test for term processor.
parent
0dafefd3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/feeds_processor_term.test
+93
-0
93 additions, 0 deletions
tests/feeds_processor_term.test
with
93 additions
and
0 deletions
tests/feeds_processor_term.test
0 → 100644
+
93
−
0
View file @
c4d28df9
<?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.'
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment