PageRenderTime 54ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 0ms

/web/core/scripts/generate-d7-content.sh

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