generate-d7-content.sh

#!/usr/bin/env php
<?php

/**
 * Generate content for a Drupal 7 database to test the upgrade process.
 *
 * Run this script at the root of an existing Drupal 6 installation.
 * Steps to use this generation script:
 * - Install drupal 7.
 * - Run this script from your Drupal ROOT directory.
 * - Use the dump-database-d7.sh to generate the D7 file
 *   modules/simpletest/tests/upgrade/database.filled.php
 */

// Define settings.
$cmd = 'index.php';
define('DRUPAL_ROOT', getcwd());
$_SERVER['HTTP_HOST']       = 'default';
$_SERVER['PHP_SELF']        = '/index.php';
$_SERVER['REMOTE_ADDR']     = '127.0.0.1';
$_SERVER['SERVER_SOFTWARE'] = NULL;
$_SERVER['REQUEST_METHOD']  = 'GET';
$_SERVER['QUERY_STRING']    = '';
$_SERVER['PHP_SELF']        = $_SERVER['REQUEST_URI'] = '/';
$_SERVER['HTTP_USER_AGENT'] = 'console';
$modules_to_enable          = array('path', 'poll', 'taxonomy');

// Bootstrap Drupal.
include_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

// Enable requested modules
include_once './modules/system/system.admin.inc';
$form = system_modules();
foreach ($modules_to_enable as $module) {
  $form_state['values']['status'][$module] = TRUE;
}
$form_state['values']['disabled_modules'] = $form['disabled_modules'];
system_modules_submit(NULL, $form_state);
unset($form_state);

// Run cron after installing
drupal_cron_run();

// Create six users
$query = db_insert('users')->fields(array('uid', 'name', 'pass', 'mail', 'status', 'created', 'access'));
$password_hasher = drupal_container()->get('password');
for ($i = 0; $i < 6; $i++) {
  $name = "test user $i";
  $pass = md5("test PassW0rd $i !(.)");
  $mail = "test$i@example.com";
  $now = mktime(0, 0, 0, 1, $i + 1, 2010);
  $query->values(array(db_next_id(), $name, $password_hasher->hash($pass), $mail, 1, $now, $now));
}
$query->execute();

// Create vocabularies and terms

$terms = array();

// All possible combinations of these vocabulary properties.
$hierarchy = array(0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2);
$multiple  = array(0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1);
$required  = array(0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1);

$voc_id = 0;
$term_id = 0;
for ($i = 0; $i < 24; $i++) {
  ++$voc_id;
  $vocabulary = entity_create('taxonomy_vocabulary', array(
    'name' => "vocabulary $voc_id (i=$i)",
    'machine_name' => 'vocabulary_' . $voc_id . '_' . $i,
    'description' => "description of " . $vocabulary->name,
    'multiple' => $multiple[$i % 12],
    'required' => $required[$i % 12],
    'relations' => 1,
    'hierarchy' => $hierarchy[$i % 12],
    'weight' => $i,
  ));
  taxonomy_vocabulary_save($vocabulary);
  $field = array(
    'field_name' => 'taxonomy_'. $vocabulary->machine_name,
    'module' => 'taxonomy',
    'type' => 'taxonomy_term_reference',
    'cardinality' => $vocabulary->multiple || $vocabulary->tags ? FIELD_CARDINALITY_UNLIMITED : 1,
    'settings' => array(
      'required' => $vocabulary->required ? TRUE : FALSE,
      'allowed_values' => array(
        array(
          'vocabulary' => $vocabulary->machine_name,
          'parent' => 0,
        ),
      ),
    ),
  );
  field_create_field($field);
  $node_types = $i > 11 ? array('page') : array_keys(node_type_get_types());
  foreach ($node_types as $bundle) {
    $instance = array(
      'label' => $vocabulary->name,
      'field_name' => $field['field_name'],
      'bundle' => $bundle,
      'entity_type' => 'node',
      'settings' => array(),
      'description' => $vocabulary->help,
      'required' => $vocabulary->required,
      'widget' => array(),
      'display' => array(
        'default' => array(
          'type' => 'taxonomy_term_reference_link',
          'weight' => 10,
        ),
        'teaser' => array(
          'type' => 'taxonomy_term_reference_link',
          'weight' => 10,
        ),
      ),
    );
    if ($vocabulary->tags) {
      $instance['widget'] = array(
        'type' => 'taxonomy_autocomplete',
        'module' => 'taxonomy',
        'settings' => array(
          'size' => 60,
          'autocomplete_path' => 'taxonomy/autocomplete',
        ),
      );
    }
    else {
      $instance['widget'] = array(
        'type' => 'options_select',
        'settings' => array(),
      );
    }
    field_create_instance($instance);
  }
  $parents = array();
  // Vocabularies without hierarchy get one term, single parent vocabularies get
  // one parent and one child term. Multiple parent vocabularies get three
  // terms: t0, t1, t2 where t0 is a parent of both t1 and t2.
  for ($j = 0; $j < $vocabulary->hierarchy + 1; $j++) {
    ++$term_id;
    $term = entity_create('taxonomy_term', array(
      'vocabulary_machine_name' => $vocabulary->machine_name,
      // For multiple parent vocabularies, omit the t0-t1 relation, otherwise
      // every parent in the vocabulary is a parent.
      'parent' => $vocabulary->hierarchy == 2 && i == 1 ? array() : $parents,
      'name' => "term $term_id of vocabulary $voc_id (j=$j)",
      'description' => 'description of ' . $term->name,
      'format' => 'filtered_html',
      'weight' => $i * 3 + $j,
    ));
    taxonomy_term_save($term);
    $terms[] = $term->tid;
    $term_vocabs[$term->tid] = 'taxonomy_' . $vocabulary->machine_name;
    $parents[] = $term->tid;
  }
}
$node_id = 0;
$revision_id = 0;
module_load_include('inc', 'node', 'node.pages');
for ($i = 0; $i < 36; $i++) {
  $uid = intval($i / 8) + 3;
  $user = user_load($uid);
  $node = new stdClass();
  $node->uid = $uid;
  $node->type = 'page';
  if ($i < 12) {
    $node->type = 'page';
  }
  else if ($i < 24) {
    $node->type = 'story';
  }
  else if (module_exists('blog')) {
    $node->type = 'blog';
  }
  $node->sticky = 0;
  ++$node_id;
  ++$revision_id;
  $node->title = "node title $node_id rev $revision_id (i=$i)";
  $node->language = LANGUAGE_NONE;
  $body_text =  str_repeat("node body ($node->type) - $i", 100);
  $node->body[$node->language][0]['value'] = $body_text;
  $node->body[$node->language][0]['summary'] = text_summary($body_text);
  $node->body[$node->language][0]['format'] = 'filtered_html';
  $node->status = intval($i / 4) % 2;
  $node->revision = $i < 12;
  $node->promote = $i % 2;
  $node->created = $now + $i * 86400;
  $node->log = "added $i node";
  // Make every term association different a little. For nodes with revisions,
  // make the initial revision have a different set of terms than the
  // newest revision.
  $items = array();
  if ($node->revision) {
    $node_terms = array($terms[$i], $terms[47-$i]);
  }
  else {
    $node_terms = $terms;
    unset($node_terms[$i], $node_terms[47 - $i]);
  }
  foreach ($node_terms as $tid) {
    $field_name = $term_vocabs[$tid];
    $node->{$field_name}[LANGUAGE_NONE][] = array('tid' => $tid);
  }
  $node->path = array('alias' => "content/$node->created");
  node_save($node);
  if ($node->revision) {
    $user = user_load($uid + 3);
    ++$revision_id;
    $node->title .= " rev2 $revision_id";
    $body_text =  str_repeat("node revision body ($node->type) - $i", 100);
    $node->body[$node->language][0]['value'] = $body_text;
    $node->body[$node->language][0]['summary'] = text_summary($body_text);
    $node->body[$node->language][0]['format'] = 'filtered_html';
    $node->log = "added $i revision";
    $node_terms = $terms;
    unset($node_terms[$i], $node_terms[47 - $i]);
    foreach ($node_terms as $tid) {
      $field_name = $term_vocabs[$tid];
      $node->{$field_name}[LANGUAGE_NONE][] = array('tid' => $tid);
    }
    node_save($node);
  }
}

// Create poll content
for ($i = 0; $i < 12; $i++) {
  $uid = intval($i / 4) + 3;
  $user = user_load($uid);
  $node = new stdClass();
  $node->uid = $uid;
  $node->type = 'poll';
  $node->sticky = 0;
  $node->title = "poll title $i";
  $node->language = LANGUAGE_NONE;
  $node->status = intval($i / 2) % 2;
  $node->revision = 1;
  $node->promote = $i % 2;
  $node->created = REQUEST_TIME + $i * 43200;
  $node->runtime = 0;
  $node->active = 1;
  $node->log = "added $i poll";
  $node->path = array('alias' => "content/poll/$i");

  $nbchoices = ($i % 4) + 2;
  for ($c = 0; $c < $nbchoices; $c++) {
    $node->choice[] = array('chtext' => "Choice $c for poll $i", 'chvotes' => 0, 'weight' => 0);
  }
  node_save($node);
  $path = array(
    'alias' => "content/poll/$i/results",
    'source' => "node/$node->nid/results",
  );
  drupal_container()->get('path.crud')->save($path['source'], $path['alias']);

  // Add some votes
  $node = node_load($node->nid);
  $choices = array_keys($node->choice);
  $original_user = $GLOBALS['user'];
  for ($v = 0; $v < ($i % 4); $v++) {
    drupal_static_reset('ip_address');
    $_SERVER['REMOTE_ADDR'] = "127.0.$v.1";
    $GLOBALS['user'] = drupal_anonymous_user();// We should have already allowed anon to vote.
    $c = $v % $nbchoices;
    $form_state = array();
    $form_state['values']['choice'] = $choices[$c];
    $form_state['values']['op'] = t('Vote');
    drupal_form_submit('poll_view_voting', $form_state, $node);
  }
}

$uid = 6;
$node_type = 'broken';
$user = user_load($uid);
$node = new stdClass();
$node->uid = $uid;
$node->type = 'article';
$body_text = str_repeat("node body ($node_type) - 37", 100);
$node->sticky = 0;
$node->title = "node title 24";
$node->language = LANGUAGE_NONE;
$node->body[$node->language][0]['value'] = $body_text;
$node->body[$node->language][0]['summary'] = text_summary($body_text);
$node->body[$node->language][0]['format']  = 'filtered_html';
$node->status = 1;
$node->revision = 0;
$node->promote = 0;
$node->created = 1263769200;
$node->log = "added a broken node";
$node->path = array('alias' => "content/1263769200");
node_save($node);
db_update('node')
  ->fields(array(
    'type' => $node_type,
  ))
  ->condition('nid', $node->nid)
  ->execute();
db_update('field_data_body')
  ->fields(array(
    'bundle' => $node_type,
  ))
  ->condition('entity_id', $node->nid)
  ->condition('entity_type', 'node')
  ->execute();
db_update('field_revision_body')
  ->fields(array(
    'bundle' => $node_type,
  ))
  ->condition('entity_id', $node->nid)
  ->condition('entity_type', 'node')
  ->execute();
db_update('field_config_instance')
  ->fields(array(
    'bundle' => $node_type,
  ))
  ->condition('bundle', 'article')
  ->execute();

File

drupal/core/scripts/generate-d7-content.sh
View source
  1. #!/usr/bin/env php
  2. /**
  3. * Generate content for a Drupal 7 database to test the upgrade process.
  4. *
  5. * Run this script at the root of an existing Drupal 6 installation.
  6. * Steps to use this generation script:
  7. * - Install drupal 7.
  8. * - Run this script from your Drupal ROOT directory.
  9. * - Use the dump-database-d7.sh to generate the D7 file
  10. * modules/simpletest/tests/upgrade/database.filled.php
  11. */
  12. // Define settings.
  13. $cmd = 'index.php';
  14. define('DRUPAL_ROOT', getcwd());
  15. $_SERVER['HTTP_HOST'] = 'default';
  16. $_SERVER['PHP_SELF'] = '/index.php';
  17. $_SERVER['REMOTE_ADDR'] = '127.0.0.1';
  18. $_SERVER['SERVER_SOFTWARE'] = NULL;
  19. $_SERVER['REQUEST_METHOD'] = 'GET';
  20. $_SERVER['QUERY_STRING'] = '';
  21. $_SERVER['PHP_SELF'] = $_SERVER['REQUEST_URI'] = '/';
  22. $_SERVER['HTTP_USER_AGENT'] = 'console';
  23. $modules_to_enable = array('path', 'poll', 'taxonomy');
  24. // Bootstrap Drupal.
  25. include_once './includes/bootstrap.inc';
  26. drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
  27. // Enable requested modules
  28. include_once './modules/system/system.admin.inc';
  29. $form = system_modules();
  30. foreach ($modules_to_enable as $module) {
  31. $form_state['values']['status'][$module] = TRUE;
  32. }
  33. $form_state['values']['disabled_modules'] = $form['disabled_modules'];
  34. system_modules_submit(NULL, $form_state);
  35. unset($form_state);
  36. // Run cron after installing
  37. drupal_cron_run();
  38. // Create six users
  39. $query = db_insert('users')->fields(array('uid', 'name', 'pass', 'mail', 'status', 'created', 'access'));
  40. $password_hasher = drupal_container()->get('password');
  41. for ($i = 0; $i < 6; $i++) {
  42. $name = "test user $i";
  43. $pass = md5("test PassW0rd $i !(.)");
  44. $mail = "test$i@example.com";
  45. $now = mktime(0, 0, 0, 1, $i + 1, 2010);
  46. $query->values(array(db_next_id(), $name, $password_hasher->hash($pass), $mail, 1, $now, $now));
  47. }
  48. $query->execute();
  49. // Create vocabularies and terms
  50. $terms = array();
  51. // All possible combinations of these vocabulary properties.
  52. $hierarchy = array(0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2);
  53. $multiple = array(0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1);
  54. $required = array(0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1);
  55. $voc_id = 0;
  56. $term_id = 0;
  57. for ($i = 0; $i < 24; $i++) {
  58. ++$voc_id;
  59. $vocabulary = entity_create('taxonomy_vocabulary', array(
  60. 'name' => "vocabulary $voc_id (i=$i)",
  61. 'machine_name' => 'vocabulary_' . $voc_id . '_' . $i,
  62. 'description' => "description of " . $vocabulary->name,
  63. 'multiple' => $multiple[$i % 12],
  64. 'required' => $required[$i % 12],
  65. 'relations' => 1,
  66. 'hierarchy' => $hierarchy[$i % 12],
  67. 'weight' => $i,
  68. ));
  69. taxonomy_vocabulary_save($vocabulary);
  70. $field = array(
  71. 'field_name' => 'taxonomy_'. $vocabulary->machine_name,
  72. 'module' => 'taxonomy',
  73. 'type' => 'taxonomy_term_reference',
  74. 'cardinality' => $vocabulary->multiple || $vocabulary->tags ? FIELD_CARDINALITY_UNLIMITED : 1,
  75. 'settings' => array(
  76. 'required' => $vocabulary->required ? TRUE : FALSE,
  77. 'allowed_values' => array(
  78. array(
  79. 'vocabulary' => $vocabulary->machine_name,
  80. 'parent' => 0,
  81. ),
  82. ),
  83. ),
  84. );
  85. field_create_field($field);
  86. $node_types = $i > 11 ? array('page') : array_keys(node_type_get_types());
  87. foreach ($node_types as $bundle) {
  88. $instance = array(
  89. 'label' => $vocabulary->name,
  90. 'field_name' => $field['field_name'],
  91. 'bundle' => $bundle,
  92. 'entity_type' => 'node',
  93. 'settings' => array(),
  94. 'description' => $vocabulary->help,
  95. 'required' => $vocabulary->required,
  96. 'widget' => array(),
  97. 'display' => array(
  98. 'default' => array(
  99. 'type' => 'taxonomy_term_reference_link',
  100. 'weight' => 10,
  101. ),
  102. 'teaser' => array(
  103. 'type' => 'taxonomy_term_reference_link',
  104. 'weight' => 10,
  105. ),
  106. ),
  107. );
  108. if ($vocabulary->tags) {
  109. $instance['widget'] = array(
  110. 'type' => 'taxonomy_autocomplete',
  111. 'module' => 'taxonomy',
  112. 'settings' => array(
  113. 'size' => 60,
  114. 'autocomplete_path' => 'taxonomy/autocomplete',
  115. ),
  116. );
  117. }
  118. else {
  119. $instance['widget'] = array(
  120. 'type' => 'options_select',
  121. 'settings' => array(),
  122. );
  123. }
  124. field_create_instance($instance);
  125. }
  126. $parents = array();
  127. // Vocabularies without hierarchy get one term, single parent vocabularies get
  128. // one parent and one child term. Multiple parent vocabularies get three
  129. // terms: t0, t1, t2 where t0 is a parent of both t1 and t2.
  130. for ($j = 0; $j < $vocabulary->hierarchy + 1; $j++) {
  131. ++$term_id;
  132. $term = entity_create('taxonomy_term', array(
  133. 'vocabulary_machine_name' => $vocabulary->machine_name,
  134. // For multiple parent vocabularies, omit the t0-t1 relation, otherwise
  135. // every parent in the vocabulary is a parent.
  136. 'parent' => $vocabulary->hierarchy == 2 && i == 1 ? array() : $parents,
  137. 'name' => "term $term_id of vocabulary $voc_id (j=$j)",
  138. 'description' => 'description of ' . $term->name,
  139. 'format' => 'filtered_html',
  140. 'weight' => $i * 3 + $j,
  141. ));
  142. taxonomy_term_save($term);
  143. $terms[] = $term->tid;
  144. $term_vocabs[$term->tid] = 'taxonomy_' . $vocabulary->machine_name;
  145. $parents[] = $term->tid;
  146. }
  147. }
  148. $node_id = 0;
  149. $revision_id = 0;
  150. module_load_include('inc', 'node', 'node.pages');
  151. for ($i = 0; $i < 36; $i++) {
  152. $uid = intval($i / 8) + 3;
  153. $user = user_load($uid);
  154. $node = new stdClass();
  155. $node->uid = $uid;
  156. $node->type = 'page';
  157. if ($i < 12) {
  158. $node->type = 'page';
  159. }
  160. else if ($i < 24) {
  161. $node->type = 'story';
  162. }
  163. else if (module_exists('blog')) {
  164. $node->type = 'blog';
  165. }
  166. $node->sticky = 0;
  167. ++$node_id;
  168. ++$revision_id;
  169. $node->title = "node title $node_id rev $revision_id (i=$i)";
  170. $node->language = LANGUAGE_NONE;
  171. $body_text = str_repeat("node body ($node->type) - $i", 100);
  172. $node->body[$node->language][0]['value'] = $body_text;
  173. $node->body[$node->language][0]['summary'] = text_summary($body_text);
  174. $node->body[$node->language][0]['format'] = 'filtered_html';
  175. $node->status = intval($i / 4) % 2;
  176. $node->revision = $i < 12;
  177. $node->promote = $i % 2;
  178. $node->created = $now + $i * 86400;
  179. $node->log = "added $i node";
  180. // Make every term association different a little. For nodes with revisions,
  181. // make the initial revision have a different set of terms than the
  182. // newest revision.
  183. $items = array();
  184. if ($node->revision) {
  185. $node_terms = array($terms[$i], $terms[47-$i]);
  186. }
  187. else {
  188. $node_terms = $terms;
  189. unset($node_terms[$i], $node_terms[47 - $i]);
  190. }
  191. foreach ($node_terms as $tid) {
  192. $field_name = $term_vocabs[$tid];
  193. $node->{$field_name}[LANGUAGE_NONE][] = array('tid' => $tid);
  194. }
  195. $node->path = array('alias' => "content/$node->created");
  196. node_save($node);
  197. if ($node->revision) {
  198. $user = user_load($uid + 3);
  199. ++$revision_id;
  200. $node->title .= " rev2 $revision_id";
  201. $body_text = str_repeat("node revision body ($node->type) - $i", 100);
  202. $node->body[$node->language][0]['value'] = $body_text;
  203. $node->body[$node->language][0]['summary'] = text_summary($body_text);
  204. $node->body[$node->language][0]['format'] = 'filtered_html';
  205. $node->log = "added $i revision";
  206. $node_terms = $terms;
  207. unset($node_terms[$i], $node_terms[47 - $i]);
  208. foreach ($node_terms as $tid) {
  209. $field_name = $term_vocabs[$tid];
  210. $node->{$field_name}[LANGUAGE_NONE][] = array('tid' => $tid);
  211. }
  212. node_save($node);
  213. }
  214. }
  215. // Create poll content
  216. for ($i = 0; $i < 12; $i++) {
  217. $uid = intval($i / 4) + 3;
  218. $user = user_load($uid);
  219. $node = new stdClass();
  220. $node->uid = $uid;
  221. $node->type = 'poll';
  222. $node->sticky = 0;
  223. $node->title = "poll title $i";
  224. $node->language = LANGUAGE_NONE;
  225. $node->status = intval($i / 2) % 2;
  226. $node->revision = 1;
  227. $node->promote = $i % 2;
  228. $node->created = REQUEST_TIME + $i * 43200;
  229. $node->runtime = 0;
  230. $node->active = 1;
  231. $node->log = "added $i poll";
  232. $node->path = array('alias' => "content/poll/$i");
  233. $nbchoices = ($i % 4) + 2;
  234. for ($c = 0; $c < $nbchoices; $c++) {
  235. $node->choice[] = array('chtext' => "Choice $c for poll $i", 'chvotes' => 0, 'weight' => 0);
  236. }
  237. node_save($node);
  238. $path = array(
  239. 'alias' => "content/poll/$i/results",
  240. 'source' => "node/$node->nid/results",
  241. );
  242. drupal_container()->get('path.crud')->save($path['source'], $path['alias']);
  243. // Add some votes
  244. $node = node_load($node->nid);
  245. $choices = array_keys($node->choice);
  246. $original_user = $GLOBALS['user'];
  247. for ($v = 0; $v < ($i % 4); $v++) {
  248. drupal_static_reset('ip_address');
  249. $_SERVER['REMOTE_ADDR'] = "127.0.$v.1";
  250. $GLOBALS['user'] = drupal_anonymous_user();// We should have already allowed anon to vote.
  251. $c = $v % $nbchoices;
  252. $form_state = array();
  253. $form_state['values']['choice'] = $choices[$c];
  254. $form_state['values']['op'] = t('Vote');
  255. drupal_form_submit('poll_view_voting', $form_state, $node);
  256. }
  257. }
  258. $uid = 6;
  259. $node_type = 'broken';
  260. $user = user_load($uid);
  261. $node = new stdClass();
  262. $node->uid = $uid;
  263. $node->type = 'article';
  264. $body_text = str_repeat("node body ($node_type) - 37", 100);
  265. $node->sticky = 0;
  266. $node->title = "node title 24";
  267. $node->language = LANGUAGE_NONE;
  268. $node->body[$node->language][0]['value'] = $body_text;
  269. $node->body[$node->language][0]['summary'] = text_summary($body_text);
  270. $node->body[$node->language][0]['format'] = 'filtered_html';
  271. $node->status = 1;
  272. $node->revision = 0;
  273. $node->promote = 0;
  274. $node->created = 1263769200;
  275. $node->log = "added a broken node";
  276. $node->path = array('alias' => "content/1263769200");
  277. node_save($node);
  278. db_update('node')
  279. ->fields(array(
  280. 'type' => $node_type,
  281. ))
  282. ->condition('nid', $node->nid)
  283. ->execute();
  284. db_update('field_data_body')
  285. ->fields(array(
  286. 'bundle' => $node_type,
  287. ))
  288. ->condition('entity_id', $node->nid)
  289. ->condition('entity_type', 'node')
  290. ->execute();
  291. db_update('field_revision_body')
  292. ->fields(array(
  293. 'bundle' => $node_type,
  294. ))
  295. ->condition('entity_id', $node->nid)
  296. ->condition('entity_type', 'node')
  297. ->execute();
  298. db_update('field_config_instance')
  299. ->fields(array(
  300. 'bundle' => $node_type,
  301. ))
  302. ->condition('bundle', 'article')
  303. ->execute();