zena 1.0.0.beta3 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (418) hide show
  1. data/History.txt +29 -0
  2. data/Rakefile +2 -0
  3. data/TODO_ZENA_1_0 +13 -23
  4. data/app/controllers/columns_controller.rb +1 -1
  5. data/app/controllers/comments_controller.rb +4 -3
  6. data/app/controllers/documents_controller.rb +8 -11
  7. data/app/controllers/nodes_controller.rb +39 -21
  8. data/app/controllers/users_controller.rb +8 -3
  9. data/app/controllers/versions_controller.rb +2 -2
  10. data/app/controllers/virtual_classes_controller.rb +17 -11
  11. data/app/helpers/documents_helper.rb +0 -3
  12. data/app/helpers/users_helper.rb +17 -0
  13. data/app/models/cache.rb +36 -31
  14. data/app/models/column.rb +48 -5
  15. data/app/models/comment.rb +14 -5
  16. data/app/models/data_entry.rb +2 -2
  17. data/app/models/document.rb +23 -33
  18. data/app/models/idx_nodes_datetime.rb +4 -0
  19. data/app/models/idx_nodes_float.rb +4 -0
  20. data/app/models/idx_project.rb +3 -0
  21. data/app/models/node.rb +372 -308
  22. data/app/models/page.rb +1 -31
  23. data/app/models/relation.rb +4 -4
  24. data/app/models/relation_proxy.rb +128 -17
  25. data/app/models/role.rb +27 -2
  26. data/app/models/site.rb +64 -56
  27. data/app/models/template.rb +11 -12
  28. data/app/models/text_document.rb +6 -7
  29. data/app/models/user.rb +95 -46
  30. data/app/models/version.rb +2 -2
  31. data/app/models/virtual_class.rb +418 -73
  32. data/app/views/columns/_form.html.erb +1 -1
  33. data/app/views/columns/_li.html.erb +1 -1
  34. data/app/views/comments/_form.rhtml +1 -1
  35. data/app/views/comments/_li.rhtml +1 -1
  36. data/app/views/comments/_li_simple.rhtml +1 -1
  37. data/app/views/groups/_form.rhtml +1 -1
  38. data/app/views/links/_li.rhtml +1 -1
  39. data/app/views/nodes/_groups.rhtml +1 -1
  40. data/app/views/nodes/_import_results.rhtml +1 -1
  41. data/app/views/nodes/_parent.rhtml +1 -1
  42. data/app/views/nodes/_results.rhtml +1 -1
  43. data/app/views/nodes/create.rjs +4 -2
  44. data/app/views/relations/_li.erb +2 -2
  45. data/app/views/templates/document_create_tabs/_file.rhtml +1 -1
  46. data/app/views/templates/document_create_tabs/_template.rhtml +2 -2
  47. data/app/views/templates/document_create_tabs/_text_document.rhtml +2 -2
  48. data/app/views/templates/edit_tabs/_help.rhtml +1 -1
  49. data/app/views/templates/edit_tabs/_title.rhtml +0 -3
  50. data/app/views/users/_form.rhtml +2 -6
  51. data/app/views/users/_li.rhtml +1 -3
  52. data/app/views/users/create.rjs +4 -4
  53. data/app/views/users/preferences.html.erb +1 -4
  54. data/app/views/versions/custom_tab.rhtml +5 -0
  55. data/app/views/virtual_classes/_form.erb +20 -10
  56. data/app/views/virtual_classes/_li.erb +21 -8
  57. data/app/views/zafu/default/Node-+search.zafu +1 -1
  58. data/app/views/zafu/default/Node.zafu +3 -3
  59. data/bricks/captcha/lib/bricks/captcha.rb +1 -1
  60. data/bricks/mongrel/zena/deploy.rb +14 -0
  61. data/bricks/{data2pdf → pdf}/.document +0 -0
  62. data/bricks/pdf/README +33 -0
  63. data/bricks/{data2pdf → pdf}/Rakefile +0 -0
  64. data/bricks/pdf/VERSION +1 -0
  65. data/bricks/pdf/lib/bricks/pdf.rb +110 -0
  66. data/bricks/pdf/lib/bricks/pdf/engine/prince.rb +38 -0
  67. data/bricks/pdf/lib/bricks/pdf/engine/xhtml2pdf.rb +9 -0
  68. data/bricks/pdf/lib/bricks/pdf/install.rb +121 -0
  69. data/bricks/pdf/test/engines/test_prince.rb +15 -0
  70. data/bricks/pdf/test/engines/test_xhtml2pdf.rb +15 -0
  71. data/bricks/{data2pdf → pdf}/test/fixtures/application.css +0 -0
  72. data/bricks/{data2pdf → pdf}/test/fixtures/contact.html +0 -0
  73. data/bricks/{data2pdf → pdf}/test/fixtures/pisa-default.css +0 -0
  74. data/bricks/{data2pdf → pdf}/test/fixtures/sheet1.css +0 -0
  75. data/bricks/{data2pdf → pdf}/test/fixtures/sheet2.css +0 -0
  76. data/bricks/{data2pdf → pdf}/test/fixtures/simple-html.html +0 -0
  77. data/bricks/{data2pdf → pdf}/test/fixtures/simple-text.txt +0 -0
  78. data/bricks/{data2pdf → pdf}/test/helper.rb +4 -5
  79. data/bricks/pdf/test/shoulda_macros/shoulda_pdf.rb +72 -0
  80. data/bricks/pdf/zena/init.rb +5 -0
  81. data/bricks/pdf/zena/tasks.rb +17 -0
  82. data/bricks/sphinx/lib/{use_sphinx.rb → bricks/sphinx.rb} +1 -1
  83. data/bricks/tags/zena/init.rb +2 -2
  84. data/bricks/tags/zena/test/zafu/tags.yml +4 -4
  85. data/bricks/zena/zena/migrate/01_base.rb +482 -0
  86. data/config/bricks.yml +22 -6
  87. data/config/gems.yml +8 -6
  88. data/db/20100628074512_zena0x_to1x.rb +6 -1
  89. data/db/fix/024_correct_vclass_kpath.rb +11 -0
  90. data/db/fix/025_move_tag_into_vclass.rb +13 -0
  91. data/db/{migrate → fix}/026_rename_templates.rb +0 -0
  92. data/db/{migrate → fix}/045_avoid_star_in_templates.rb +0 -0
  93. data/db/{migrate → fix}/046_fix_zazen_image_tag.rb +0 -0
  94. data/db/{migrate → fix}/047_change_default_link_id_to_zero.rb +1 -3
  95. data/db/{migrate → fix}/049_fix_publish_from_is_null.rb +0 -0
  96. data/db/{migrate → fix}/20090924141459_zafu_fix_sept09.rb +0 -0
  97. data/db/{migrate → fix}/20091013100351_rename_publish_group_to_drive_group.rb +1 -3
  98. data/db/{migrate → fix}/20091124161608_rebuild_fullpath.rb +0 -1
  99. data/db/{migrate → fix}/20100115134729_rebuild_fullpath_after_fix.rb +0 -0
  100. data/db/{migrate → fix}/20100526090140_renamed_contact_model_to_base_contact.rb +2 -4
  101. data/db/{migrate → fix/old_migrations}/001_create_base.rb +0 -1
  102. data/db/{migrate → fix/old_migrations}/002_add_time_zone_to_users.rb +0 -0
  103. data/db/{migrate → fix/old_migrations}/003_add_custom_base_flag.rb +0 -0
  104. data/db/{migrate → fix/old_migrations}/004_rename_template_skin.rb +0 -0
  105. data/db/{migrate → fix/old_migrations}/005_create_cached_pages.rb +0 -0
  106. data/db/{migrate → fix/old_migrations}/006_create_sites.rb +0 -0
  107. data/db/{migrate → fix/old_migrations}/007_replace_id_by_zip.rb +0 -0
  108. data/db/{migrate → fix/old_migrations}/008_user_status.rb +0 -0
  109. data/db/{migrate → fix/old_migrations}/009_fulltext.rb +0 -0
  110. data/db/fix/old_migrations/010_create_template_content.rb +17 -0
  111. data/db/{migrate → fix/old_migrations}/011_project_to_section.rb +0 -0
  112. data/db/{migrate → fix/old_migrations}/012_add_project_id.rb +0 -0
  113. data/db/{migrate → fix/old_migrations}/013_remove_defaults.rb +0 -0
  114. data/db/{migrate → fix/old_migrations}/014_add_sort_field.rb +0 -0
  115. data/db/{migrate → fix/old_migrations}/015_add_dyn_attributes.rb +0 -0
  116. data/db/{migrate → fix/old_migrations}/016_remove_translations.rb +0 -0
  117. data/db/{migrate → fix/old_migrations}/017_rename_authorize.rb +0 -0
  118. data/db/{migrate → fix/old_migrations}/018_add_auth_option.rb +0 -0
  119. data/db/{migrate → fix/old_migrations}/019_remove_user_status.rb +0 -0
  120. data/db/{migrate → fix/old_migrations}/020_create_participation.rb +0 -0
  121. data/db/{migrate → fix/old_migrations}/021_create_relations.rb +0 -0
  122. data/db/{migrate → fix/old_migrations}/022_create_virtual_classes.rb +0 -0
  123. data/db/{migrate → fix/old_migrations}/023_ip_on_anonymous_comment.rb +0 -0
  124. data/db/{migrate → fix/old_migrations}/027_add_country_to_contacts.rb +0 -0
  125. data/db/{migrate → fix/old_migrations}/028_change_size_of_conten_type_field.rb +0 -0
  126. data/db/{migrate → fix/old_migrations}/029_create_data_entries.rb +0 -0
  127. data/db/{migrate → fix/old_migrations}/030_redit_auto_publish_site_settings.rb +0 -0
  128. data/db/{migrate → fix/old_migrations}/031_create_iformats.rb +0 -0
  129. data/db/{migrate → fix/old_migrations}/032_caches_context_as_hash.rb +0 -0
  130. data/db/{migrate → fix/old_migrations}/033_documents_kpath_change.rb +0 -0
  131. data/db/{migrate → fix/old_migrations}/034_change_file_storage.rb +0 -0
  132. data/db/{migrate → fix/old_migrations}/035_add_status_to_link.rb +0 -0
  133. data/db/{migrate → fix/old_migrations}/036_add_flag_fields_on_nodes.rb +0 -0
  134. data/db/{migrate → fix/old_migrations}/037_add_auto_create_discussion_to_v_class.rb +0 -0
  135. data/db/{migrate → fix/old_migrations}/038_create_site_attributes.rb +0 -0
  136. data/db/{migrate → fix/old_migrations}/039_default_position.rb +0 -0
  137. data/db/{migrate → fix/old_migrations}/040_second_value_for_data_entry.rb +0 -0
  138. data/db/{migrate → fix/old_migrations}/041_add_attributes_to_v_class.rb +0 -0
  139. data/db/{migrate → fix/old_migrations}/042_fix_position_should_be_float.rb +0 -0
  140. data/db/{migrate → fix/old_migrations}/043_move_user_lang_into_participation.rb +0 -0
  141. data/db/{migrate → fix/old_migrations}/044_remove_monolingual_site_option.rb +0 -0
  142. data/db/{migrate → fix/old_migrations}/048_link_source_target_can_be_null.rb +0 -0
  143. data/db/{migrate → fix/old_migrations}/050_date_in_links.rb +0 -0
  144. data/db/{migrate → fix/old_migrations}/051_add_exif_tags_to_images.rb +0 -0
  145. data/db/{migrate → fix/old_migrations}/20090825201159_insert_zero_link.rb +0 -0
  146. data/db/{migrate → fix/old_migrations}/20090825201200_merge_bricks_migrations_with_std_migrations.rb +0 -0
  147. data/db/{migrate → fix/old_migrations}/20090927125912_allow_null_in_text_fields.rb +0 -0
  148. data/db/{migrate → fix/old_migrations}/20090928133440_no_more_private_nodes.rb +0 -0
  149. data/db/{migrate → fix/old_migrations}/20090928143754_version_status_change.rb +0 -0
  150. data/db/{migrate → fix/old_migrations}/20091001084025_change_status_values_for_comments.rb +0 -0
  151. data/db/{migrate → fix/old_migrations}/20091009084057_add_vhash_in_node.rb +0 -0
  152. data/db/{migrate → fix/old_migrations}/20091014130833_fix_template_title.rb +0 -0
  153. data/db/{migrate → fix/old_migrations}/20091014183726_merge_participation_into_users.rb +0 -0
  154. data/db/{migrate → fix/old_migrations}/20091018200734_add_popup_info_to_image_format.rb +0 -0
  155. data/db/{migrate → fix/old_migrations}/20091026161708_add_persistence_token.rb +0 -0
  156. data/db/{migrate → fix/old_migrations}/20091101184952_add_session_table.rb +0 -0
  157. data/db/{migrate → fix/old_migrations}/20091123175137_add_single_access_token.rb +0 -0
  158. data/db/{migrate → fix/old_migrations}/20100125062254_add_dynamo_to_version.rb +0 -0
  159. data/db/{migrate → fix/old_migrations}/20100201133242_remove_default_status_on_version.rb +0 -0
  160. data/db/{migrate → fix/old_migrations}/20100208194210_create_attachments.rb +0 -0
  161. data/db/{migrate → fix/old_migrations}/20100210112319_change_dynamo_to_property.rb +0 -0
  162. data/db/{migrate → fix/old_migrations}/20100320145726_transform_template_contents_into_index.rb +0 -0
  163. data/db/{migrate → fix/old_migrations}/20100328125634_change_skin_name_to_id.rb +0 -0
  164. data/db/{migrate → fix/old_migrations}/20100417061257_add_properties_to_sites.rb +0 -0
  165. data/db/{migrate → fix/old_migrations}/20100419163149_rename_name_to_node_name.rb +0 -0
  166. data/db/{migrate → fix/old_migrations}/20100422091606_change_v_class_table_into_roles.rb +0 -0
  167. data/db/{migrate → fix/old_migrations}/20100422094048_node_habtm_roles.rb +0 -0
  168. data/db/{migrate → fix/old_migrations}/20100422115935_create_columns.rb +0 -0
  169. data/db/{migrate → fix/old_migrations}/20100513181529_add_site_id_to_columns.rb +0 -0
  170. data/db/{migrate → fix/old_migrations}/20100519091711_add_index_definition_to_columns.rb +0 -0
  171. data/db/{migrate → fix/old_migrations}/20100519091940_create_idx_nodes_string.rb +0 -0
  172. data/db/{migrate → fix/old_migrations}/20100519232432_create_idx_nodes_ml_string.rb +0 -0
  173. data/db/{migrate → fix/old_migrations}/20100525113858_add_porperties_to_users.rb +0 -0
  174. data/db/{migrate → fix/old_migrations}/20100527130937_change_column_index_to_string.rb +0 -0
  175. data/db/{migrate → fix/old_migrations}/20100531135128_add_fulltext_builder_fields.rb +0 -0
  176. data/db/{migrate → fix/old_migrations}/20100915062903_add_api_group_id_to_site.rb +0 -0
  177. data/db/fix/old_migrations/20100923154807_remove_base_contact.rb +84 -0
  178. data/db/fix/old_migrations/20100926192223_remove_su_user.rb +8 -0
  179. data/db/fix/old_migrations/20100927141658_add_eval_attributes_to_v_class.rb +12 -0
  180. data/db/fix/old_migrations/20100928185257_add_obvious_idx.rb +52 -0
  181. data/db/fix/old_migrations/20100929143111_remove_node_name.rb +11 -0
  182. data/db/fix/old_migrations/20101006090454_store_properties_in_long_text.rb +9 -0
  183. data/db/fix/old_migrations/20101014185753_remove_user_prototype_id.rb +9 -0
  184. data/db/fix/old_migrations/20101101084318_create_scope_index.rb +35 -0
  185. data/db/fix/old_migrations/20101109074232_create_idx_nodes_tables.rb +65 -0
  186. data/db/fix/old_migrations/20101110184235_add_role_update_to_site.rb +9 -0
  187. data/db/fix/old_migrations/20101116103920_change_scope_index.rb +31 -0
  188. data/db/fix/old_migrations/20101123125822_add_integer_idx.rb +17 -0
  189. data/db/fix/old_migrations/20101130134522_add_index_field.rb +13 -0
  190. data/db/fix/old_migrations/20101213133816_add_group_to_relation.rb +9 -0
  191. data/db/init/base/help.fr.zml +1 -1
  192. data/db/init/base/skins/default.zml +0 -1
  193. data/db/init/base/skins/default/Node-+search.zafu +1 -1
  194. data/db/init/base/skins/default/Node-tree.zafu +3 -3
  195. data/db/init/base/skins/default/Node.zafu +3 -3
  196. data/lib/bricks/loader.rb +4 -1
  197. data/lib/bricks/requirements_validation.rb +11 -6
  198. data/lib/log_recorder/lib/log_recorder.rb +2 -2
  199. data/lib/tasks/zena.rake +25 -15
  200. data/lib/zena.rb +42 -9
  201. data/lib/zena/acts/enrollable.rb +81 -99
  202. data/lib/zena/acts/secure.rb +27 -23
  203. data/lib/zena/acts/secure_node.rb +10 -55
  204. data/lib/zena/acts/serializable.rb +9 -10
  205. data/lib/zena/app.rb +0 -2
  206. data/lib/zena/code_syntax.rb +1 -1
  207. data/lib/zena/controller/test_case.rb +0 -5
  208. data/lib/zena/core_ext/string.rb +48 -20
  209. data/lib/zena/db.rb +10 -442
  210. data/lib/zena/db_helper/abstract_db.rb +184 -0
  211. data/lib/zena/db_helper/mysql.rb +150 -0
  212. data/lib/zena/db_helper/postgresql.rb +79 -0
  213. data/lib/zena/db_helper/sqlite3.rb +135 -0
  214. data/lib/zena/deploy.rb +4 -1
  215. data/lib/zena/deploy/httpd.rhtml +3 -3
  216. data/lib/zena/deploy/vhost.rhtml +1 -1
  217. data/lib/zena/foxy_parser.rb +37 -18
  218. data/lib/zena/info.rb +3 -13
  219. data/lib/zena/migrator.rb +0 -1
  220. data/lib/zena/parser/zafu_rules.rb +9 -4
  221. data/lib/zena/parser/zazen_rules.rb +5 -5
  222. data/lib/zena/parser/zena_rules.rb +1 -1
  223. data/lib/zena/remote/interface.rb +1 -1
  224. data/lib/zena/site_worker.rb +3 -3
  225. data/lib/zena/test_controller.rb +10 -10
  226. data/lib/zena/use/action.rb +66 -6
  227. data/lib/zena/use/ajax.rb +39 -13
  228. data/lib/zena/use/ancestry.rb +210 -0
  229. data/lib/zena/use/authlogic.rb +30 -1
  230. data/lib/zena/use/calendar.rb +158 -0
  231. data/lib/zena/use/conditional.rb +3 -2
  232. data/lib/zena/use/context.rb +42 -12
  233. data/lib/zena/use/dates.rb +15 -14
  234. data/lib/zena/use/display.rb +54 -7
  235. data/lib/zena/use/error_rendering.rb +1 -0
  236. data/lib/zena/use/field_index.rb +20 -0
  237. data/lib/zena/use/fixtures.rb +12 -9
  238. data/lib/zena/use/forms.rb +230 -106
  239. data/lib/zena/use/fulltext.rb +28 -14
  240. data/lib/zena/use/html_tags.rb +1 -24
  241. data/lib/zena/use/i18n.rb +69 -14
  242. data/lib/zena/use/kpath.rb +60 -0
  243. data/lib/zena/use/ml_index.rb +6 -4
  244. data/lib/zena/use/node_context.rb +63 -0
  245. data/lib/zena/use/prop_eval.rb +90 -0
  246. data/lib/zena/use/query_builder.rb +159 -29
  247. data/lib/zena/use/query_comment.rb +1 -1
  248. data/lib/zena/use/query_node.rb +147 -56
  249. data/lib/zena/use/recursion.rb +2 -2
  250. data/lib/zena/use/relations.rb +31 -19
  251. data/lib/zena/use/rendering.rb +111 -121
  252. data/lib/zena/use/scope_index.rb +230 -0
  253. data/lib/zena/use/search.rb +7 -7
  254. data/lib/zena/use/urls.rb +87 -25
  255. data/lib/zena/use/version_hash.rb +113 -113
  256. data/lib/zena/use/workflow.rb +5 -1
  257. data/lib/zena/use/zafu_attributes.rb +11 -14
  258. data/lib/zena/use/zafu_eval.rb +1 -1
  259. data/lib/zena/use/zafu_safe_definitions.rb +91 -9
  260. data/lib/zena/use/zafu_templates.rb +146 -102
  261. data/lib/zena/use/zazen.rb +5 -4
  262. data/lib/zena/zafu_compiler.rb +1 -0
  263. data/locale/en/LC_MESSAGES/zena.mo +0 -0
  264. data/locale/en/zena.po +0 -1
  265. data/locale/fr/LC_MESSAGES/zena.mo +0 -0
  266. data/locale/fr/zena.mo +0 -0
  267. data/locale/fr/zena.po +4 -4
  268. data/misc/zena +35 -0
  269. data/misc/zena_init +41 -0
  270. data/public/images/ext/{basecontact.png → contact.png} +0 -0
  271. data/public/javascripts/zena.js +35 -7
  272. data/public/stylesheets/admin.css +5 -2
  273. data/public/stylesheets/default.css +2 -1
  274. data/public/stylesheets/popup.css +1 -1
  275. data/public/stylesheets/zena.css +2 -2
  276. data/test/custom_queries/complex.host.yml +12 -5
  277. data/test/fixtures/files/Node-test.zafu +3 -3
  278. data/test/fixtures/files/translations_fr.yml +4 -2
  279. data/test/functional/documents_controller_test.rb +31 -0
  280. data/test/functional/nodes_controller_commit_test.rb +1 -5
  281. data/test/functional/nodes_controller_test.rb +92 -12
  282. data/test/functional/user_sessions_controller_test.rb +2 -2
  283. data/test/functional/users_controller_test.rb +31 -29
  284. data/test/functional/versions_controller_test.rb +2 -2
  285. data/test/functional/virtual_classes_controller_test.rb +2 -2
  286. data/test/integration/multiple_hosts_test.rb +19 -8
  287. data/test/integration/navigation_test.rb +91 -12
  288. data/test/integration/query_node/basic.yml +40 -37
  289. data/test/integration/query_node/complex.yml +23 -18
  290. data/test/integration/query_node/dates.yml +3 -3
  291. data/test/integration/query_node/errors.yml +7 -1
  292. data/test/integration/query_node/filters.yml +41 -35
  293. data/test/integration/query_node/idx_fields.yml +11 -0
  294. data/test/integration/query_node/idx_key_value.yml +77 -0
  295. data/test/integration/query_node/idx_scope.yml +33 -0
  296. data/test/integration/query_node/relations.yml +13 -13
  297. data/test/integration/query_node_test.rb +6 -10
  298. data/test/integration/zafu_compiler/action.yml +19 -6
  299. data/test/integration/zafu_compiler/ajax.yml +111 -51
  300. data/test/integration/zafu_compiler/apphelper.yml +1 -1
  301. data/test/integration/zafu_compiler/asset.yml +1 -1
  302. data/test/integration/zafu_compiler/basic.yml +42 -52
  303. data/test/integration/zafu_compiler/calendar.yml +3 -3
  304. data/test/integration/zafu_compiler/complex.yml +16 -16
  305. data/test/integration/zafu_compiler/complex_ok.yml +2 -2
  306. data/test/integration/zafu_compiler/conditional.yml +42 -33
  307. data/test/integration/zafu_compiler/data.yml +3 -3
  308. data/test/integration/zafu_compiler/dates.yml +25 -10
  309. data/test/integration/zafu_compiler/display.yml +49 -12
  310. data/test/integration/zafu_compiler/errors.yml +26 -6
  311. data/test/integration/zafu_compiler/eval.yml +4 -4
  312. data/test/integration/zafu_compiler/forms.yml +89 -15
  313. data/test/integration/zafu_compiler/i18n.yml +23 -18
  314. data/test/integration/zafu_compiler/idx_scope.yml +7 -0
  315. data/test/integration/zafu_compiler/later.yml +10 -16
  316. data/test/integration/zafu_compiler/off/off.yml +2 -2
  317. data/test/integration/zafu_compiler/query.yml +207 -0
  318. data/test/integration/zafu_compiler/recursion.yml +2 -2
  319. data/test/integration/zafu_compiler/relations.yml +144 -168
  320. data/test/integration/zafu_compiler/roles.yml +86 -10
  321. data/test/integration/zafu_compiler/rubyless.yml +49 -6
  322. data/test/integration/zafu_compiler/safe_definitions.yml +35 -6
  323. data/test/integration/zafu_compiler/search.yml +1 -1
  324. data/test/integration/zafu_compiler/security.yml +37 -0
  325. data/test/integration/zafu_compiler/urls.yml +50 -40
  326. data/test/integration/zafu_compiler/user.yml +21 -6
  327. data/test/integration/zafu_compiler/version.yml +6 -6
  328. data/test/integration/zafu_compiler/zafu_attributes.yml +43 -34
  329. data/test/integration/zafu_compiler/zazen.yml +10 -10
  330. data/test/integration/zafu_compiler_test.rb +19 -13
  331. data/test/sites/complex/nodes.yml +0 -2
  332. data/test/sites/complex/roles.yml +9 -1
  333. data/test/sites/complex/sites.yml +0 -1
  334. data/test/sites/complex/users.yml +2 -5
  335. data/test/sites/ocean/nodes.yml +2 -5
  336. data/test/sites/ocean/roles.yml +8 -0
  337. data/test/sites/ocean/sites.yml +0 -1
  338. data/test/sites/ocean/users.yml +0 -13
  339. data/test/sites/zena/columns.yml +27 -5
  340. data/test/sites/zena/idx_projects.yml +5 -0
  341. data/test/sites/zena/nodes.yml +8 -32
  342. data/test/sites/zena/relations.yml +5 -0
  343. data/test/sites/zena/roles.yml +25 -3
  344. data/test/sites/zena/sites.yml +2 -2
  345. data/test/sites/zena/users.yml +1 -21
  346. data/test/sites/zena/versions.yml +35 -12
  347. data/test/test_helper.rb +7 -0
  348. data/test/unit/after_commit_test.rb +7 -7
  349. data/test/unit/cache_test.rb +32 -0
  350. data/test/unit/cached_page_test.rb +1 -1
  351. data/test/unit/column_test.rb +31 -7
  352. data/test/unit/comment_test.rb +2 -2
  353. data/test/unit/core_ext_test.rb +38 -7
  354. data/test/unit/document_test.rb +14 -42
  355. data/test/unit/node_test.rb +311 -324
  356. data/test/unit/note_test.rb +23 -31
  357. data/test/unit/page_test.rb +16 -58
  358. data/test/unit/project_test.rb +2 -2
  359. data/test/unit/relation_proxy_test.rb +148 -21
  360. data/test/unit/relation_test.rb +23 -3
  361. data/test/unit/remote_test.rb +15 -9
  362. data/test/unit/role_test.rb +9 -0
  363. data/test/unit/site_test.rb +49 -47
  364. data/test/unit/skin_test.rb +16 -0
  365. data/test/unit/template_test.rb +60 -69
  366. data/test/unit/text_document_test.rb +15 -14
  367. data/test/unit/user_test.rb +101 -41
  368. data/test/unit/version_test.rb +4 -4
  369. data/test/unit/virtual_class_test.rb +577 -36
  370. data/test/unit/workflow_test.rb +58 -21
  371. data/test/unit/zena/acts/enrollable_test.rb +36 -127
  372. data/test/unit/zena/acts/secure_test.rb +6 -22
  373. data/test/unit/zena/acts/serializable_test.rb +18 -0
  374. data/test/unit/zena/db_test.rb +14 -14
  375. data/test/unit/zena/parser/zafu.yml +5 -3
  376. data/test/unit/zena/use/ancestry_test.rb +198 -0
  377. data/test/unit/zena/use/calendar_test.rb +8 -8
  378. data/test/unit/zena/use/dates_test.rb +2 -0
  379. data/test/unit/zena/use/fulltext_test.rb +9 -1
  380. data/test/unit/zena/use/html_tags_test.rb +2 -16
  381. data/test/unit/zena/use/i18n_test.rb +2 -2
  382. data/test/unit/zena/use/kpath_test.rb +13 -0
  383. data/test/unit/zena/use/ml_index_test.rb +60 -12
  384. data/test/unit/zena/use/prop_eval_test.rb +170 -0
  385. data/test/unit/zena/use/query_node_test.rb +9 -2
  386. data/test/unit/zena/use/rendering_test.rb +98 -1
  387. data/test/unit/zena/use/scope_index_test.rb +464 -0
  388. data/test/unit/zena/use/urls_test.rb +23 -13
  389. data/test/unit/zena/use/version_hash_test.rb +2 -2
  390. data/test/unit/zena/use/zafu_template_test.rb +21 -8
  391. data/test/unit/zena/use/zazen_test.rb +47 -47
  392. data/zena.gemspec +177 -143
  393. metadata +222 -141
  394. data/app/models/base_contact.rb +0 -79
  395. data/app/models/book.rb +0 -242
  396. data/app/models/contact_content.rb +0 -70
  397. data/app/models/contact_version.rb +0 -40
  398. data/app/models/reference.rb +0 -18
  399. data/app/views/templates/edit_tabs/_basecontact.rhtml +0 -8
  400. data/bricks/data2pdf/README +0 -19
  401. data/bricks/data2pdf/VERSION +0 -1
  402. data/bricks/data2pdf/lib/data2pdf.rb +0 -60
  403. data/bricks/data2pdf/lib/engines/prince.rb +0 -39
  404. data/bricks/data2pdf/lib/engines/xhtml2pdf.rb +0 -41
  405. data/bricks/data2pdf/lib/install.rb +0 -111
  406. data/bricks/data2pdf/test/engines/test_prince.rb +0 -14
  407. data/bricks/data2pdf/test/engines/test_xhtml2pdf.rb +0 -14
  408. data/bricks/data2pdf/test/shoulda_macros/shoulda_data2pdf.rb +0 -91
  409. data/bricks/data2pdf/test/unit/test_rendering.rb +0 -37
  410. data/config/routes.rb +0 -3
  411. data/db/migrate/010_create_template_content.rb +0 -17
  412. data/db/migrate/024_correct_vclass_kpath.rb +0 -13
  413. data/db/migrate/025_move_tag_into_vclass.rb +0 -15
  414. data/lib/version_off.rb +0 -323
  415. data/lib/zena/use/node_name.rb +0 -94
  416. data/test/integration/query_node/properties.yml +0 -41
  417. data/test/unit/base_contact_test.rb +0 -242
  418. data/test/unit/node_name_test.rb +0 -137
@@ -3,7 +3,7 @@ require 'test_helper'
3
3
  class MLIndexTest < Zena::Unit::TestCase
4
4
  context 'A visitor with write access' do
5
5
  setup do
6
- login(:tiger)
6
+ login(:lion)
7
7
  end
8
8
 
9
9
  context 'creating a node' do
@@ -22,21 +22,31 @@ class MLIndexTest < Zena::Unit::TestCase
22
22
  end
23
23
 
24
24
  context 'with non ML indices' do
25
+ setup do
26
+ buz = VirtualClass.create(:superclass => 'Node', :name => 'Buz', :create_group_id => groups_id(:public))
27
+ assert !buz.new_record?
28
+ col = Column.create(:role_id => buz.id, :ptype => 'string', :name => 'foo', :index => 'string')
29
+ assert !col.new_record?
30
+ end
31
+
32
+ teardown do
33
+ # avoid test leakage
34
+ VirtualClass.expire_cache!
35
+ end
36
+
25
37
  subject do
26
- k = Class.new(Node) do
27
- property.string 'foo', :index => true
28
- end
29
- secure(k) { k.create(
38
+ secure(Node) { Node.create_node(
39
+ :class => 'Buz',
30
40
  :title => 'Zanzibar',
31
41
  :foo => 'bar',
32
- :parent_id => nodes_id(:cleanWater)
42
+ :parent_id => nodes_zip(:cleanWater)
33
43
  )}
34
44
  end
35
45
 
36
46
  should 'insert single value' do
37
47
  assert_difference('IdxNodesString.count', 1) do
38
- # title = 4, name = 1
39
- assert subject
48
+ # title = 4, foo = 1
49
+ assert !subject.new_record?
40
50
  end
41
51
  end
42
52
  end # with non ML indices
@@ -52,6 +62,16 @@ class MLIndexTest < Zena::Unit::TestCase
52
62
  secure(Node) { nodes(:news) }
53
63
  end
54
64
 
65
+ should 'rebuild index for current lang' do
66
+ assert_difference('IdxNodesMlString.count', 0) do
67
+ subject.update_attributes(:title => 'fabula', :v_status => Zena::Status[:pub])
68
+ end
69
+ idx = IdxNodesMlString.find(:first,
70
+ :conditions => {:node_id => subject.id, :lang => visitor.lang, :key => 'title'}
71
+ )
72
+ assert_equal 'fabula', idx.value
73
+ end
74
+
55
75
  context 'with std indices removed' do
56
76
  setup do
57
77
  IdxNodesString.connection.execute 'DELETE from idx_nodes_strings'
@@ -77,6 +97,34 @@ class MLIndexTest < Zena::Unit::TestCase
77
97
  end
78
98
  end
79
99
  end # with multi lingual indices removed
100
+
101
+ context 'in a class with evaluated properties' do
102
+ subject do
103
+ secure(Node) { nodes(:ant) }
104
+ end
105
+
106
+ should 'index commputed value' do
107
+ assert subject.update_attributes(:first_name => 'Superman')
108
+ assert_equal 'Superman Invicta', subject.title
109
+ idx = IdxNodesMlString.find(:first, :conditions => ["lang = ? AND `key` = ? AND node_id = ?", visitor.lang, 'title', subject.id])
110
+ assert_equal 'Superman Invicta', idx.value
111
+ end
112
+
113
+ context 'with changes overwritten by computed values' do
114
+ should 'not touch index' do
115
+ assert_difference('IdxNodesMlString.count', 0) do
116
+ subject.update_attributes(:title => 'fabula', :v_status => Zena::Status[:pub])
117
+ end
118
+ idx = IdxNodesMlString.find(:first,
119
+ :conditions => {:node_id => subject.id, :lang => visitor.lang, :key => 'title'}
120
+ )
121
+
122
+ assert_equal 'Solenopsis Invicta', idx.value
123
+ end
124
+ end # with changes overwritten by computed values
125
+
126
+ end # in a class with evaluated properties
127
+
80
128
  end # updating a node
81
129
 
82
130
  context 'on a node' do
@@ -105,17 +153,17 @@ class MLIndexTest < Zena::Unit::TestCase
105
153
  'en'=>'status title'], ml_indices
106
154
  end
107
155
 
108
- context 'with idx_text_high defined for vclass' do
156
+ context 'with prop_eval defined for vclass' do
109
157
  subject do
110
158
  secure(Node) { nodes(:letter) }
111
159
  end
112
160
 
113
- should 'set title index from idx_text_high' do
161
+ should 'set index from computed value' do
114
162
  subject.rebuild_index!
115
- ml_indices = Hash[*IdxNodesMlString.find(:all, :conditions => {:node_id => subject.id, :key => 'title'}).map {|r| [r.lang, r.value]}.flatten]
163
+ ml_indices = Hash[*IdxNodesMlString.find(:all, :conditions => {:node_id => subject.id, :key => 'search'}).map {|r| [r.lang, r.value]}.flatten]
116
164
  assert_equal Hash[
117
- 'de'=>'zena enhancements paper:Kraft',
118
165
  'fr'=>'zena enhancements paper:Kraft',
166
+ 'de'=>'zena enhancements paper:Kraft',
119
167
  'es'=>'zena enhancements paper:Kraft',
120
168
  'en'=>'zena enhancements paper:Kraft'], ml_indices
121
169
  end
@@ -0,0 +1,170 @@
1
+ require 'test_helper'
2
+
3
+ class PropEvalTest < Zena::Unit::TestCase
4
+
5
+ class NodesRoles < ActiveRecord::Base
6
+ set_table_name :nodes_roles
7
+ end
8
+
9
+ context 'A visitor with admin rights' do
10
+ setup do
11
+ login(:lion)
12
+ end
13
+
14
+ context 'updating a virtual_class' do
15
+ subject do
16
+ secure(VirtualClass) { virtual_classes(:Letter) }
17
+ end
18
+
19
+ context 'with valid code' do
20
+ should 'succeed' do
21
+ # TODO: support queries as safe method directly on nodes (also change zena/use/query_builder.rb).
22
+ # subject.update_attributes(:prop_eval => %q[{'title' => "#{paper} #{recipient.name}"}])
23
+ subject.update_attributes(:prop_eval => %q[{'paper' => (paper.blank? ? 'Chiyogami' : paper), 'title' => 'booh'}])
24
+ end
25
+ end # with valid code
26
+
27
+ context 'with syntax errors' do
28
+ should 'fail' do
29
+ assert !subject.update_attributes(:prop_eval => %q[{foo:#{tit}le} paper:#{paper}}])
30
+ assert_match %r{parse error}, subject.errors[:prop_eval]
31
+ end
32
+ end # with syntax errors
33
+
34
+ context 'with invalid final type' do
35
+ should 'fail' do
36
+ assert !subject.update_attributes(:prop_eval => %q[45])
37
+ assert_equal 'Compilation should produce a Hash (Found Number).', subject.errors[:prop_eval]
38
+ end
39
+ end # with syntax errors
40
+ end # updating a virtual_class
41
+ end # A visitor with admin rights
42
+
43
+ context 'A visitor with write access' do
44
+ setup do
45
+ login(:lion)
46
+ end
47
+
48
+ context 'creating a node from a class with prop eval' do
49
+ subject do
50
+ secure(Node) { Node.create_node(:class => 'Contact', :name => 'foo', :parent_id => nodes_zip(:projects)) }
51
+ end
52
+
53
+ should 'set evaluated prop on create' do
54
+ assert_difference('Node.count', 1) do
55
+ node = subject
56
+ assert_equal ' foo', node.title
57
+ end
58
+ end
59
+ end # creating a node from a class with prop eval
60
+
61
+
62
+ context 'unpublishing a node from a class with prop eval' do
63
+ subject do
64
+ secure(Node) { nodes(:ant) }
65
+ end
66
+
67
+ should 'succeed' do
68
+ assert subject.unpublish
69
+ end
70
+ end # unpublishing a node from a class with prop eval
71
+
72
+ context 'on a node' do
73
+ setup do
74
+ VirtualClass.expire_cache!
75
+ end
76
+
77
+ context 'from a class with evaluated properties' do
78
+ subject do
79
+ secure(Node) { nodes(:ant) }.tap do |n|
80
+ n.update_attributes(:first_name => 'Dan', :name => 'Simmons')
81
+ end
82
+ end
83
+
84
+ context 'updating attributes' do
85
+ should 'update evaluated prop on save' do
86
+ assert_equal 'Dan Simmons', subject.title
87
+ end
88
+
89
+ should 'use evaluated prop in fulltext indices' do
90
+ assert_equal 'Dan Simmons', subject.version.idx_text_high
91
+ end
92
+
93
+ context 'with property indices' do
94
+ subject do
95
+ secure(Node) { nodes(:letter) }.tap do |n|
96
+ assert n.update_attributes(:paper => 'Origami', :v_status => Zena::Status[:pub])
97
+ end
98
+ end
99
+
100
+ should 'use evaluated prop in ml prop indices' do
101
+ idx = IdxNodesMlString.find(:first,
102
+ :conditions => {:node_id => subject.id, :lang => visitor.lang, :key => 'search'}
103
+ )
104
+ assert_equal 'zena enhancements paper:Origami', idx.value
105
+ end
106
+
107
+ should 'use evaluated prop in prop indices' do
108
+ idx = IdxNodesString.find(:first,
109
+ :conditions => {:node_id => subject.id, :key => 'search_mono'}
110
+ )
111
+ assert_equal 'Origami mono', idx.value
112
+ end
113
+ end # with property indices
114
+
115
+ end # updating attributes
116
+ end # from a class with evaluated properties
117
+
118
+ context 'from a class with prop eval used as default' do
119
+ setup do
120
+ vclass = secure(Role) { roles(:Contact) }
121
+ assert vclass.update_attributes(:prop_eval => %q[{'title' => (title.blank? ? 'Bikura' : title)}])
122
+ end
123
+
124
+ subject do
125
+ secure(Node) { nodes(:ant) }
126
+ end
127
+
128
+ should 'not set default if not blank' do
129
+ assert subject.update_attributes(:title => 'Super Man')
130
+ assert_equal 'Super Man', subject.title
131
+ end
132
+
133
+ should 'set default if blank' do
134
+ assert subject.update_attributes(:title => '')
135
+ assert_equal 'Bikura', subject.title
136
+ end
137
+ end # from a class with prop eval used as default
138
+
139
+ context 'from a class with query in prop eval' do
140
+ setup do
141
+ vclass = secure(Role) { roles(:Contact) }
142
+ assert vclass.update_attributes(:prop_eval => %q[{'title' => first('project in site').title}])
143
+ end
144
+
145
+ subject do
146
+ secure(Node) { nodes(:ant) }
147
+ end
148
+
149
+ should 'execute query to set property' do
150
+ assert subject.update_attributes(:title => '')
151
+ assert_equal 'Zena the wild CMS', subject.title
152
+ end
153
+ end # from a class with prop eval used as default
154
+
155
+ context 'from a native class' do
156
+ subject do
157
+ secure(Node) { nodes(:projects) }
158
+ end
159
+
160
+ should 'not raise on save' do
161
+ assert_nothing_raised do
162
+ assert subject.update_attributes(:title => 'Hyperion')
163
+ end
164
+ assert_equal 'Hyperion', subject.title
165
+ end
166
+ end # from a native class
167
+
168
+ end # on a node
169
+ end # A visitor with write access
170
+ end
@@ -29,6 +29,12 @@ class QueryNodeTest < Zena::Unit::TestCase
29
29
  assert_equal Hash[:class => Zena::Use::QueryNode::StringDictionary, :method => 'db_attr'],
30
30
  subject.safe_method_type(['db_attr'])
31
31
  end
32
+
33
+ should 'declare first as safe RubyLess' do
34
+ assert_equal Hash[:class => Node, :method => 'safe_first', :nil => true],
35
+ subject.safe_method_type(['first', String])
36
+ assert_kind_of Image, subject.new.safe_eval('first("image in site")')
37
+ end
32
38
  end # A class with QueryNode::ModelMethods included
33
39
 
34
40
  context 'An object with QueryNode::ModelMethods' do
@@ -81,7 +87,7 @@ class QueryNodeTest < Zena::Unit::TestCase
81
87
  end
82
88
 
83
89
  should 'set main_class' do
84
- assert subject.main_class < Document
90
+ assert_equal VirtualClass['Document'], subject.main_class
85
91
  end
86
92
  end # with a real class filter
87
93
 
@@ -91,7 +97,7 @@ class QueryNodeTest < Zena::Unit::TestCase
91
97
  end
92
98
 
93
99
  should 'set main_class to Project' do
94
- assert subject.main_class < Project
100
+ assert subject.main_class <= Project
95
101
  end
96
102
  end # with a real class filter
97
103
 
@@ -101,6 +107,7 @@ class QueryNodeTest < Zena::Unit::TestCase
101
107
  end
102
108
 
103
109
  should 'set main_class with real_class' do
110
+ assert_equal VirtualClass['Letter'], subject.main_class
104
111
  assert subject.main_class < Note
105
112
  end
106
113
 
@@ -18,7 +18,7 @@ class RenderingTest < Zena::View::TestCase
18
18
  end
19
19
 
20
20
  should 'return a relative path on admin_layout' do
21
- assert_equal "/test.host/zafu/default/Node-+adminLayout/en/_main.erb", controller.admin_layout
21
+ assert_equal "/test.host/zafu/Default skin/Node-%2BadminLayout/en/_main.erb", controller.admin_layout
22
22
  end
23
23
  end # Rendering
24
24
 
@@ -28,4 +28,101 @@ class RenderingTest < Zena::View::TestCase
28
28
  end
29
29
  end # compiling a template
30
30
  end # With a node and skin
31
+ end
32
+
33
+ class RenderingInControllerTest < Zena::Controller::TestCase
34
+ tests NodesController
35
+
36
+ class MockSession < ActiveRecord::Base
37
+ set_table_name :sessions
38
+ before_save :set_session_id
39
+ def set_session_id
40
+ self[:session_id] = UUIDTools::UUID.random_create.to_s
41
+ end
42
+ end
43
+
44
+ context 'A custom rendering engine' do
45
+ setup do
46
+ login(:anon)
47
+ self.session.session_id = MockSession.create.session_id
48
+ class << @controller
49
+ attr_reader :custom_rendering
50
+ def render_to_xml(opts)
51
+ @custom_rendering = true
52
+ {
53
+ :type => 'text/html',
54
+ :data => render_to_string(:inline => %Q{<%= zazen(%q{Hello !30! "a link":30}) %>}),
55
+ }
56
+ end
57
+ end
58
+ end
59
+
60
+ subject do
61
+ {:action => 'show', :controller => 'nodes', :path => ["page#{nodes_zip(:projects)}.xml"], :prefix => 'en'}
62
+ end
63
+
64
+ should 'call render_to_format' do
65
+ get_subject
66
+ assert @controller.custom_rendering
67
+ end
68
+
69
+ context 'with debug' do
70
+ subject do
71
+ {:action => 'show', :controller => 'nodes', :path => ["page#{nodes_zip(:projects)}.xml"], :prefix => 'en', :debug => 'true'}
72
+ end
73
+
74
+ should 'not call render_to_format on debug' do
75
+ get_subject
76
+ assert_nil @controller.custom_rendering
77
+ end
78
+ end # with debug
79
+
80
+ end # A custom rendering engine
81
+
82
+ context 'Custom rendering options' do
83
+ subject do
84
+ login(:lion)
85
+ # create template for 'special' mode
86
+ t = secure(Template) { Template.create(:parent_id => nodes_id(:default), :title => 'Node--csv.zafu', :text => @zafu, :v_status => Zena::Status[:pub]) }
87
+ login(:anon)
88
+ {:action => 'show', :controller => 'nodes', :path => ["section#{nodes_zip(:people)}.csv"], :prefix => 'en'}
89
+ end
90
+
91
+ should 'set type and disposition headers' do
92
+ @zafu = %q{<r:headers X-Foobar='my thing' Content-Type='text/css' Content-Disposition='attachment; filename=special_#{title}.csv'/>}
93
+ get_subject
94
+ assert_response :success
95
+ {
96
+ "X-Foobar" => "my thing",
97
+ "Content-Type" => "text/css; charset=utf-8",
98
+ "Content-Disposition" => "attachment; filename=special_people.csv",
99
+ }.each do |k, v|
100
+ assert_equal v, @response.headers[k]
101
+ end
102
+ end
103
+ end # Custom rendering options
104
+
105
+ context 'Custom rendering options on html' do
106
+ subject do
107
+ login(:lion)
108
+ # create template for 'special' mode
109
+ t = secure(Template) { Template.create(:parent_id => nodes_id(:default), :title => 'Node-bar.zafu', :text => @zafu, :v_status => Zena::Status[:pub]) }
110
+ login(:anon)
111
+ {:action => 'show', :controller => 'nodes', :path => ["section#{nodes_zip(:people)}_bar.html"], :prefix => 'en'}
112
+ end
113
+
114
+ should 'type and disposition headers' do
115
+ @zafu = %q{<r:headers X-Foobar='my thing' Content-Type='text/css' Content-Disposition='attachment; filename=special_#{title}.csv'/>}
116
+ get_subject
117
+ assert_response :success
118
+ {
119
+ "X-Foobar" => "my thing",
120
+ "Content-Type" => "text/css; charset=utf-8",
121
+ "Content-Disposition" => "attachment; filename=special_people.csv",
122
+ }.each do |k, v|
123
+ assert_equal v, @response.headers[k]
124
+ end
125
+ end
126
+ end # Custom rendering options
127
+
31
128
  end
@@ -0,0 +1,464 @@
1
+ require 'test_helper'
2
+
3
+ class ScopeIndexTest < Zena::Unit::TestCase
4
+ context 'Creating a scope indexed blog' do
5
+ setup do
6
+ login(:lion)
7
+ end
8
+
9
+ subject do
10
+ secure(Node) { Node.create_node(:title => 'NewThoughts', :klass => 'Blog', :parent_id => nodes_zip(:zena), :v_status => Zena::Status[:pub]) }
11
+ end
12
+
13
+ should 'create' do
14
+ assert !subject.new_record?
15
+ end
16
+
17
+ should 'create index entry with values from project' do
18
+ assert_difference('IdxProject.count', 1) do
19
+ subject
20
+ end
21
+ end
22
+
23
+ should 'insert entries related to project' do
24
+ subject
25
+ index = subject.scope_index
26
+ assert_equal 'NewThoughts', index.blog_title
27
+ assert_equal subject.id, index.blog_id
28
+ end
29
+ end # Creating a scope indexed project
30
+
31
+ context 'In an indexed project' do
32
+ setup do
33
+ login(:lion)
34
+ @project = secure(Node) { nodes(:wiki) }
35
+ end
36
+
37
+ context 'inserting a sub node without publishing' do
38
+ subject do
39
+ secure(Node) { Node.create_node(:klass => 'Tag', :title => 'Knock Knock', :parent_id => @project.zip)}
40
+ end
41
+
42
+ should 'not update project index' do
43
+ assert_difference('IdxProject.count', 0) do
44
+ subject
45
+ assert_nil IdxProject.find(@project.scope_index).tag_created_at
46
+ end
47
+ end
48
+ end # inserting a sub node
49
+
50
+ context 'creating a sub node' do
51
+ subject do
52
+ secure(Node) { Node.create_node(:klass => 'Contact', :name => 'Gods', :first_name => 'Young', :parent_id => @project.zip, :v_status => Zena::Status[:pub])}
53
+ end
54
+
55
+ should 'update project index through relation' do
56
+ assert_difference('IdxProject.count', 0) do
57
+ subject
58
+ idx = IdxProject.find(@project.scope_index)
59
+ assert_equal 'Young', idx.contact_first_name
60
+ assert_equal 'Gods', idx.contact_name
61
+ end
62
+ end
63
+
64
+ should 'not update other relations' do
65
+ assert_difference('IdxProject.count', 0) do
66
+ subject
67
+ idx = IdxProject.find(@project.scope_index)
68
+ assert_equal 'ref', idx.reference_name
69
+ assert_nil idx.reference_title
70
+ assert_nil idx.reference_id
71
+ end
72
+ end
73
+
74
+ should 'set group key id' do
75
+ assert_equal subject.id, IdxProject.find(@project.scope_index).contact_id
76
+ end
77
+ end # creating a sub node
78
+
79
+ context 'moving a sub node' do
80
+ subject do
81
+ secure(Node) { VirtualClass['Contact'].create_instance(:first_name => 'Friedrich', :name => 'Hölderlin', :parent_id => nodes_id(:zena), :v_status => Zena::Status[:pub]) }
82
+ end
83
+
84
+ should 'update project index' do
85
+ assert_equal 'cont', @project.scope_index.contact_name
86
+ assert subject.update_attributes(:parent_id => @project.id)
87
+ assert_equal 'Hölderlin', IdxProject.find(@project.scope_index).contact_name
88
+ end
89
+ end # moving a sub node
90
+
91
+ context 'linking a remote node' do
92
+ subject do
93
+ secure(Node) { VirtualClass['Contact'].create_instance(:first_name => 'Friedrich', :name => 'Hölderlin', :parent_id => nodes_id(:zena), :v_status => Zena::Status[:pub]) }
94
+ end
95
+
96
+ should 'update project index' do
97
+ assert_equal 'ref', @project.scope_index.reference_name
98
+ assert subject.update_attributes(:reference_id => @project.id)
99
+ assert_equal 'Hölderlin', IdxProject.find(@project.scope_index).reference_name
100
+ end
101
+ end # linking a remote node
102
+
103
+ context 'reverse linking a remote node' do
104
+ subject do
105
+ secure(Node) { VirtualClass['Contact'].create_instance(:first_name => 'Friedrich', :name => 'Hölderlin', :parent_id => nodes_id(:zena), :v_status => Zena::Status[:pub]) }
106
+ end
107
+
108
+ should 'trigger remote update idx' do
109
+ assert_equal 'ref', @project.scope_index.reference_name
110
+ assert @project.update_attributes(:reference_for_id => subject.id)
111
+ assert_equal 'Hölderlin', IdxProject.find(@project.scope_index).reference_name
112
+ end
113
+ end # reverse linking a remote node
114
+
115
+ context 'updating a sub node' do
116
+ setup do
117
+ @old_tag = secure(Node) { Node.create_node(:klass => 'Contact', :title => 'Tadam', :parent_id => @project.zip, :v_status => Zena::Status[:pub])}
118
+ @tag = secure(Node) { Node.create_node(:klass => 'Tag', :title => 'Friendly ghosts', :parent_id => @project.zip, :v_status => Zena::Status[:pub])}
119
+ end
120
+
121
+ subject do
122
+ @tag
123
+ end
124
+
125
+ should 'update project index through relation' do
126
+ subject.update_attributes(:title => 'Mean ghosts', :v_status => Zena::Status[:pub])
127
+ assert_equal 'Mean ghosts', IdxProject.find(@project.scope_index).tag_title
128
+ end
129
+
130
+ should 'keep group key id' do
131
+ subject.update_attributes(:title => 'Mean ghosts', :v_status => Zena::Status[:pub])
132
+ assert_equal @tag.id, IdxProject.find(@project.scope_index).tag_id
133
+ end
134
+
135
+ should 'not update project index if not published' do
136
+ subject.update_attributes(:title => 'Mean ghosts')
137
+ assert_equal 'Friendly ghosts', IdxProject.find(@project.scope_index).tag_title
138
+ end
139
+
140
+ should 'update project index on publish' do
141
+ subject.update_attributes(:title => 'Mean ghosts')
142
+ assert_equal 'Friendly ghosts', IdxProject.find(@project.scope_index).tag_title
143
+ subject.publish
144
+ assert_equal 'Mean ghosts', IdxProject.find(@project.scope_index).tag_title
145
+ end
146
+
147
+ context 'that is not the latest of its kind' do
148
+ subject do
149
+ @old_tag
150
+ end
151
+
152
+ should 'not update project index' do
153
+ subject.update_attributes(:title => 'China', :v_status => Zena::Status[:pub])
154
+ assert_equal 'Friendly ghosts', IdxProject.find(@project.scope_index).tag_title
155
+ end
156
+
157
+ should 'not change group id' do
158
+ subject.update_attributes(:title => 'China', :v_status => Zena::Status[:pub])
159
+ assert_equal @tag.id, IdxProject.find(@project.scope_index).tag_id
160
+ end
161
+ end # that is not the latest of its kind
162
+
163
+ end # updating a sub node
164
+
165
+ context 'creating a related node' do
166
+ subject do
167
+ secure(Node) { Node.create_node(:klass => 'Contact', :name => 'Gods', :first_name => 'Young', :parent_id => nodes_zip(:zena), :reference_id => @project.zip, :v_status => Zena::Status[:pub])}
168
+ end
169
+
170
+ should 'update related index' do
171
+ assert_difference('IdxProject.count', 0) do
172
+ subject
173
+ idx = IdxProject.find(@project.scope_index)
174
+ assert_equal 'Gods', idx.reference_name
175
+ assert_equal 'Young Gods', idx.reference_title
176
+ end
177
+ end
178
+
179
+ should 'not update other relations' do
180
+ assert_difference('IdxProject.count', 0) do
181
+ subject
182
+ idx = IdxProject.find(@project.scope_index)
183
+ assert_nil idx.contact_first_name
184
+ assert_equal 'cont', idx.contact_name
185
+ assert_nil idx.contact_id
186
+ end
187
+ end
188
+
189
+ should 'set group key id' do
190
+ assert_equal subject.id, IdxProject.find(@project.scope_index).reference_id
191
+ end
192
+ end # creating a related node
193
+
194
+ context 'updating a related node' do
195
+ subject do
196
+ secure(Node) { Node.create_node(:klass => 'Contact', :name => 'Gods', :first_name => 'Young', :parent_id => nodes_zip(:zena), :reference_id => @project.zip, :v_status => Zena::Status[:pub])}
197
+ end
198
+
199
+ should 'update all entries in related index' do
200
+ assert_difference('IdxProject.count', 0) do
201
+ subject.update_attributes(:first_name => 'Old', :v_status => Zena::Status[:pub])
202
+ assert_equal 'Old Gods', IdxProject.find(@project.scope_index).reference_title
203
+ assert_equal 'Gods', IdxProject.find(@project.scope_index).reference_name
204
+ end
205
+ end
206
+
207
+ context 'without publishing' do
208
+ should 'not update related index' do
209
+ assert_difference('IdxProject.count', 0) do
210
+ subject.update_attributes(:first_name => 'Old')
211
+ assert_equal 'Young Gods', IdxProject.find(@project.scope_index).reference_title
212
+ end
213
+ end
214
+ end # without publishing
215
+
216
+ context 'without all attributes' do
217
+ subject do
218
+ secure(Node) { Node.create_node(:klass => 'Reference', :title => 'Burn these tests', :parent_id => nodes_zip(:zena), :reference_id => @project.zip, :v_status => Zena::Status[:pub])}
219
+ end
220
+
221
+ should 'update related index' do
222
+ assert_difference('IdxProject.count', 0) do
223
+ assert subject.update_attributes(:title => 'Ashes', :v_status => Zena::Status[:pub])
224
+ assert_equal 'Ashes', IdxProject.find(@project.scope_index).reference_title
225
+ assert_equal 'ref', IdxProject.find(@project.scope_index).reference_name
226
+ end
227
+ end
228
+ end # without all attributes
229
+
230
+ end # updating a related node
231
+
232
+ context 'updating the project' do
233
+ subject do
234
+ @project
235
+ end
236
+
237
+ should 'update index' do
238
+ subject.update_attributes(:title => 'Wacky', :v_status => Zena::Status[:pub])
239
+ assert_equal 'Wacky', IdxProject.find(@project.scope_index).blog_title
240
+ end
241
+ end # updating the project
242
+ end # In an indexed project
243
+
244
+ context 'In a non-indexed project' do
245
+ setup do
246
+ login(:lion)
247
+ end
248
+
249
+ subject do
250
+ secure(Node) { nodes(:cleanWater) }
251
+ end
252
+
253
+ should 'return nil on scope_index' do
254
+ assert_nil subject.scope_index
255
+ end
256
+ end # In a non-indexed project
257
+
258
+ context 'With an index class' do
259
+ subject do
260
+ IdxProject
261
+ end
262
+
263
+ should 'build key groups' do
264
+ assert_equal Hash['reference' => %w{id name title}, 'blog' => %w{id title}, 'tag' => %w{id created_at title}, 'contact' => %w{id first_name name}], subject.groups
265
+ end
266
+ end # With an index model
267
+
268
+ context 'Using RubyLess with an indexed model' do
269
+ subject do
270
+ VirtualClass['Blog']
271
+ end
272
+
273
+ should 'return model class on scope_index' do
274
+ code = RubyLess.translate(subject, 'scope_index')
275
+ assert_equal 'scope_index', code.to_s
276
+ assert_equal IdxProject, code.klass
277
+ end
278
+
279
+ should 'allow index access on scope_index object' do
280
+ code = RubyLess.translate(subject, 'scope_index.tag_title')
281
+ assert_equal '(scope_index ? scope_index.tag_title : nil)', code.to_s
282
+ assert_equal String, code.klass
283
+ end
284
+ end # Using RubyLess with an indexed model
285
+
286
+ context 'Using RubyLess without an indexed model' do
287
+ subject do
288
+ VirtualClass['Project']
289
+ end
290
+
291
+ should 'raise an error' do
292
+ assert_raise(::RubyLess::NoMethodError) do
293
+ RubyLess.translate(subject, 'scope_index')
294
+ end
295
+ end
296
+ end # Using RubyLess with an indexed model
297
+
298
+ context 'Using RubyLess not on a Project or Section' do
299
+ subject do
300
+ VirtualClass['Page']
301
+ end
302
+
303
+ should 'raise an error' do
304
+ assert_raise(::RubyLess::NoMethodError) do
305
+ RubyLess.translate(subject, 'scope_index')
306
+ end
307
+ end
308
+ end # Using RubyLess with an indexed model
309
+
310
+ context 'Creating a virtual class' do
311
+ setup do
312
+ login(:lion)
313
+ end
314
+
315
+ context 'with a valid idx_class' do
316
+ subject do
317
+ {:name => 'Concert', :superclass => 'Project', :idx_class => 'IdxProject', :create_group_id => groups_id(:public) }
318
+ end
319
+
320
+ should 'create' do
321
+ assert_difference('VirtualClass.count', 1) do
322
+ VirtualClass.create(subject)
323
+ end
324
+ end
325
+ end # with a valid idx_class
326
+
327
+ context 'with an invalid idx_class' do
328
+ subject do
329
+ {:name => 'Concert', :superclass => 'Project', :idx_class => 'Page', :create_group_id => groups_id(:public) }
330
+ end
331
+
332
+ should 'not create' do
333
+ assert_difference('VirtualClass.count', 0) do
334
+ VirtualClass.create(subject)
335
+ end
336
+ end
337
+
338
+ should 'add errors to idx_class' do
339
+ vclass = VirtualClass.create(subject)
340
+ assert_equal 'invalid class (should include ScopeIndex::IndexMethods)', vclass.errors[:idx_class]
341
+ end
342
+
343
+ should 'not evaluate bad idx_class' do
344
+ vclass = VirtualClass.create(subject.merge(:idx_class => 'puts "BAD!"'))
345
+ assert_equal 'invalid class name', vclass.errors[:idx_class]
346
+ end
347
+ end # with an invalid idx_class
348
+
349
+
350
+ context 'with a valid idx_scope' do
351
+ subject do
352
+ {:name => 'Song', :superclass => 'Post', :idx_scope => "{'reference' => 'project'}", :create_group_id => groups_id(:public) }
353
+ end
354
+
355
+ should 'create' do
356
+ assert_difference('VirtualClass.count', 1) do
357
+ VirtualClass.create(subject)
358
+ end
359
+ end
360
+
361
+ context 'containing array keys' do
362
+ subject do
363
+ {:name => 'Song', :superclass => 'Post', :idx_scope => "{'reference,baz' => 'project'}", :create_group_id => groups_id(:public) }
364
+ end
365
+
366
+ should 'create' do
367
+ assert_difference('VirtualClass.count', 1) do
368
+ # RubyLess does not allow Array as key (%w{reference baz}).
369
+ VirtualClass.create(subject)
370
+ end
371
+ end
372
+ end # containing array keys
373
+
374
+ context 'containing array scopes' do
375
+ subject do
376
+ {:name => 'Song', :superclass => 'Post', :idx_scope => "{'reference' => %w{project self}}", :create_group_id => groups_id(:public) }
377
+ end
378
+
379
+ should 'create' do
380
+ assert_difference('VirtualClass.count', 1) do
381
+ VirtualClass.create(subject)
382
+ end
383
+ end
384
+ end # containing array keys
385
+
386
+ context 'containing array keys and scopes' do
387
+ subject do
388
+ {:name => 'Song', :superclass => 'Post', :idx_scope => "{'reference,baz' => %w{project self}}", :create_group_id => groups_id(:public) }
389
+ end
390
+
391
+ should 'create' do
392
+ assert_difference('VirtualClass.count', 1) do
393
+ # RubyLess does not allow Array as key (%w{reference baz}).
394
+ VirtualClass.create(subject)
395
+ end
396
+ end
397
+ end # containing array keys
398
+ end # with a valid idx_scope
399
+
400
+ context 'with an invalid idx_scope' do
401
+ subject do
402
+ {:name => 'Song', :superclass => 'Post', :idx_scope => "{1 => 'project'}", :create_group_id => groups_id(:public) }
403
+ end
404
+
405
+ should 'not create' do
406
+ assert_difference('VirtualClass.count', 0) do
407
+ VirtualClass.create(subject)
408
+ end
409
+ end
410
+
411
+ should 'add errors to idx_scope' do
412
+ vclass = VirtualClass.create(subject)
413
+ assert_equal "Invalid entry: keys should be a String and query should be a String or an Array of strings (1 => \"project\")", vclass.errors[:idx_scope]
414
+ end
415
+
416
+ context 'with array keys' do
417
+ subject do
418
+ {:name => 'Song', :superclass => 'Post', :idx_scope => "{%w{self project} => 'project'}", :create_group_id => groups_id(:public) }
419
+ end
420
+
421
+ should 'add errors to idx_scope' do
422
+ vclass = VirtualClass.create(subject)
423
+ assert_equal "Invalid rubyless: Invalid key type for hash (should be a literal value, was :array)", vclass.errors[:idx_scope]
424
+ end
425
+ end # with array keys
426
+
427
+ end # with an invalid idx_scope
428
+
429
+ context 'with an invalid idx_scope type' do
430
+ subject do
431
+ {:name => 'Song', :superclass => 'Post', :idx_scope => "project", :create_group_id => groups_id(:public) }
432
+ end
433
+
434
+ should 'not create' do
435
+ assert_difference('VirtualClass.count', 0) do
436
+ VirtualClass.create(subject)
437
+ end
438
+ end
439
+
440
+ should 'add errors to idx_scope' do
441
+ vclass = VirtualClass.create(subject)
442
+ assert_equal "Invalid type: should be a hash.", vclass.errors[:idx_scope]
443
+ end
444
+ end # with an invalid idx_scope type
445
+
446
+ context 'with an invalid query in idx_scope' do
447
+ subject do
448
+ {:name => 'Song', :superclass => 'Post', :idx_scope => "{'reference' => 'project where foo is null'}", :create_group_id => groups_id(:public) }
449
+ end
450
+
451
+ should 'not create' do
452
+ assert_difference('VirtualClass.count', 0) do
453
+ VirtualClass.create(subject)
454
+ end
455
+ end
456
+
457
+ should 'add errors to idx_scope' do
458
+ vclass = VirtualClass.create(subject)
459
+ assert_equal "Invalid query: Unknown field 'foo'.", vclass.errors[:idx_scope]
460
+ end
461
+ end # with an invalid query in idx_scope
462
+ end # Creating a virtual class
463
+
464
+ end