|
|
Drupal example source code file (xmlsitemap_taxonomy.test)
The xmlsitemap_taxonomy.test Drupal example source code<?php // $Id: xmlsitemap_taxonomy.test,v 1.1.2.3 2010/11/13 04:37:28 davereid Exp $ /** * @file * Unit tests for the xmlsitemap_taxonomy module. */ class XMLSitemapTaxonomyFunctionalTest extends XMLSitemapTestHelper { protected $normal_user; protected $terms = array(); public static function getInfo() { return array( 'name' => 'XML sitemap taxonomy', 'description' => 'Functional tests for the XML sitemap taxonomy module.', 'group' => 'XML sitemap', ); } function setUp($modules = array()) { $modules[] = 'xmlsitemap_taxonomy'; $modules[] = 'taxonomy'; parent::setUp($modules); $this->admin_user = $this->drupalCreateUser(array('administer taxonomy', 'administer xmlsitemap')); $this->normal_user = $this->drupalCreateUser(array('access content')); } function testTaxonomySettings() { $this->drupalLogin($this->admin_user); $edit = array( 'name' => $this->randomName(), 'xmlsitemap[status]' => '1', 'xmlsitemap[priority]' => '1.0', ); $this->drupalPost('admin/content/taxonomy/add/vocabulary', $edit, 'Save'); $this->assertText("Created new vocabulary {$edit['name']}."); $vid = db_result(db_query("SELECT vid FROM {vocabulary} WHERE name = '%s'", $edit['name'])); $vocabulary = taxonomy_vocabulary_load($vid); $edit = array( 'name' => $this->randomName(), 'xmlsitemap[status]' => 'default', 'xmlsitemap[priority]' => 'default', ); $this->drupalPost("admin/content/taxonomy/$vid/add/term", $edit, 'Save'); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal xmlsitemap_taxonomy.test source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.