browsercms 3.1.5 → 3.3.0.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (425) hide show
  1. data/app/controllers/cms/base_controller.rb +3 -3
  2. data/app/controllers/cms/content_block_controller.rb +2 -2
  3. data/app/controllers/cms/content_controller.rb +5 -4
  4. data/app/controllers/cms/error_handling.rb +1 -1
  5. data/app/controllers/cms/routes_controller.rb +4 -5
  6. data/app/controllers/cms/section_nodes_controller.rb +1 -6
  7. data/app/controllers/cms/sections_controller.rb +2 -3
  8. data/app/controllers/cms/tasks_controller.rb +3 -0
  9. data/app/controllers/cms/users_controller.rb +1 -1
  10. data/app/helpers/cms/application_helper.rb +137 -34
  11. data/app/helpers/cms/form_builder.rb +33 -21
  12. data/app/helpers/cms/page_helper.rb +43 -10
  13. data/app/helpers/cms/path_helper.rb +1 -1
  14. data/app/helpers/cms/rendering_helper.rb +3 -4
  15. data/app/helpers/cms/section_nodes_helper.rb +5 -43
  16. data/app/models/abstract_file_block.rb +1 -16
  17. data/app/models/attachment.rb +57 -22
  18. data/app/models/category.rb +4 -4
  19. data/app/models/category_type.rb +2 -2
  20. data/app/models/cms/view_context.rb +46 -0
  21. data/app/models/connector.rb +7 -6
  22. data/app/models/content_type.rb +3 -3
  23. data/app/models/dynamic_view.rb +1 -1
  24. data/app/models/email_message.rb +2 -2
  25. data/app/models/file_block.rb +12 -0
  26. data/app/models/group.rb +4 -4
  27. data/app/models/group_type.rb +4 -4
  28. data/app/models/html_block.rb +1 -1
  29. data/app/models/image_block.rb +12 -0
  30. data/app/models/link.rb +22 -5
  31. data/app/models/page.rb +87 -46
  32. data/app/models/page_route.rb +61 -6
  33. data/app/models/permission.rb +1 -1
  34. data/app/models/portlet.rb +14 -4
  35. data/app/models/section.rb +48 -86
  36. data/app/models/section_node.rb +25 -40
  37. data/app/models/site.rb +1 -1
  38. data/app/models/tag.rb +1 -1
  39. data/app/models/task.rb +8 -7
  40. data/app/models/user.rb +2 -7
  41. data/app/portlets/forgot_password_portlet.rb +6 -2
  42. data/app/portlets/reset_password_portlet.rb +1 -1
  43. data/app/views/cms/blocks/_toolbar.html.erb +1 -1
  44. data/app/views/cms/blocks/_toolbar_for_collection.html.erb +3 -6
  45. data/app/views/cms/blocks/_toolbar_for_member.html.erb +3 -5
  46. data/app/views/cms/blocks/edit.html.erb +4 -4
  47. data/app/views/cms/blocks/index.html.erb +7 -7
  48. data/app/views/cms/blocks/new.html.erb +4 -4
  49. data/app/views/cms/blocks/show.html.erb +2 -2
  50. data/app/views/cms/blocks/usages.html.erb +2 -2
  51. data/app/views/cms/blocks/versions.html.erb +4 -4
  52. data/app/views/cms/cache/show.html.erb +2 -2
  53. data/app/views/cms/categories/_form.html.erb +2 -2
  54. data/app/views/cms/connectors/new.html.erb +6 -8
  55. data/app/views/cms/content/no_page.html.erb +1 -1
  56. data/app/views/cms/content/show.html.erb +2 -7
  57. data/app/views/cms/dashboard/_page_drafts.html.erb +1 -1
  58. data/app/views/cms/dashboard/_tasks.html.erb +1 -1
  59. data/app/views/cms/dashboard/index.html.erb +1 -1
  60. data/app/views/cms/dynamic_views/_form.html.erb +2 -2
  61. data/app/views/cms/dynamic_views/index.html.erb +7 -10
  62. data/app/views/cms/email_messages/show.html.erb +2 -2
  63. data/app/views/cms/file_blocks/_form.html.erb +4 -4
  64. data/app/views/cms/form_builder/_cms_fancy_drop_down.html.erb +2 -2
  65. data/app/views/cms/form_builder/_cms_file_field.html.erb +2 -2
  66. data/app/views/cms/form_builder/_cms_tag_list.html.erb +2 -2
  67. data/app/views/cms/form_builder/_cms_text_editor.html.erb +2 -2
  68. data/app/views/cms/groups/_form.html.erb +5 -5
  69. data/app/views/cms/groups/_permissions.html.erb +4 -4
  70. data/app/views/cms/groups/_sections.html.erb +1 -2
  71. data/app/views/cms/groups/index.html.erb +1 -1
  72. data/app/views/cms/html_blocks/render.html.erb +1 -1
  73. data/app/views/cms/image_blocks/_form.html.erb +4 -5
  74. data/app/views/cms/links/_form.html.erb +1 -1
  75. data/app/views/cms/links/edit.html.erb +2 -2
  76. data/app/views/cms/links/new.html.erb +2 -2
  77. data/app/views/cms/page_routes/_form.html.erb +2 -2
  78. data/app/views/cms/page_routes/index.html.erb +6 -9
  79. data/app/views/cms/page_routes/show.html.erb +5 -8
  80. data/app/views/cms/pages/_edit_connector.html.erb +1 -1
  81. data/app/views/cms/pages/_form.html.erb +3 -3
  82. data/app/views/cms/pages/edit.html.erb +2 -2
  83. data/app/views/cms/pages/new.html.erb +7 -7
  84. data/app/views/cms/pages/versions.html.erb +4 -4
  85. data/app/views/cms/redirects/_form.html.erb +2 -2
  86. data/app/views/cms/redirects/index.html.erb +8 -7
  87. data/app/views/cms/routes/index.html.erb +2 -2
  88. data/app/views/cms/section_nodes/_link.html.erb +3 -6
  89. data/app/views/cms/section_nodes/_node.html.erb +4 -13
  90. data/app/views/cms/section_nodes/_page.html.erb +7 -13
  91. data/app/views/cms/section_nodes/_section.html.erb +8 -24
  92. data/app/views/cms/section_nodes/_section_node.html.erb +10 -0
  93. data/app/views/cms/section_nodes/index.html.erb +18 -30
  94. data/app/views/cms/sections/_form.html.erb +4 -6
  95. data/app/views/cms/sections/edit.html.erb +2 -2
  96. data/app/views/cms/sections/index.html.erb +3 -3
  97. data/app/views/cms/sections/new.html.erb +3 -3
  98. data/app/views/cms/sessions/new.html.erb +3 -3
  99. data/app/views/cms/shared/_pagination.html.erb +1 -1
  100. data/app/views/cms/shared/error.html.erb +1 -1
  101. data/app/views/cms/tags/render.html.erb +2 -2
  102. data/app/views/cms/tasks/new.html.erb +4 -4
  103. data/app/views/cms/users/_form.html.erb +3 -3
  104. data/app/views/cms/users/_toolbar.html.erb +3 -3
  105. data/app/views/cms/users/change_password.html.erb +5 -5
  106. data/app/views/cms/users/edit.html.erb +2 -2
  107. data/app/views/cms/users/index.html.erb +4 -4
  108. data/app/views/cms/users/new.html.erb +2 -2
  109. data/app/views/cms/users/show.html.erb +16 -16
  110. data/app/views/layouts/_cms_toolbar.html.erb +5 -5
  111. data/app/views/layouts/_page_toolbar.html.erb +11 -11
  112. data/app/views/layouts/cms/_footer.erb +1 -1
  113. data/app/views/layouts/cms/_head.html.erb +2 -6
  114. data/app/views/layouts/cms/administration.html.erb +32 -32
  115. data/app/views/layouts/cms/content_library.html.erb +5 -5
  116. data/app/views/layouts/cms/toolbar.html.erb +1 -1
  117. data/app/views/portlets/email_page/render.html.erb +2 -2
  118. data/app/views/portlets/forgot_password/render.html.erb +1 -1
  119. data/app/views/portlets/login/render.html.erb +4 -2
  120. data/app/views/portlets/reset_password/render.html.erb +1 -1
  121. data/app/views/tests/pretend/open_with_layout.html.erb +1 -1
  122. data/bin/bcms +0 -0
  123. data/bin/bcms-upgrade +232 -0
  124. data/bin/browsercms +2 -2
  125. data/browsercms.gemspec +16 -14
  126. data/db/migrate/20100705083859_browsercms_3_3_0.rb +56 -0
  127. data/db/seeds.rb +58 -0
  128. data/doc/guides/html/authentication.html +448 -192
  129. data/doc/guides/html/build_it_yourself.html +454 -175
  130. data/doc/guides/html/building_modules.html +451 -220
  131. data/doc/guides/html/building_templates.html +448 -498
  132. data/doc/guides/html/content_blocks.html +450 -470
  133. data/doc/guides/html/customizing_browsercms.html +453 -169
  134. data/doc/guides/html/deployment_guide.html +443 -82
  135. data/doc/guides/html/files/bcmsorg.js +28 -0
  136. data/doc/guides/html/files/clearfix.css +8 -0
  137. data/doc/guides/html/files/cufon.js +7 -0
  138. data/doc/guides/html/files/global.css +190 -0
  139. data/doc/guides/html/files/helvetica.js +91 -0
  140. data/doc/guides/html/files/jquery.js +11 -0
  141. data/doc/guides/html/getting_started.html +454 -213
  142. data/doc/guides/html/index.html +454 -174
  143. data/doc/guides/html/installing_modules.html +454 -186
  144. data/doc/guides/html/portlets.html +451 -232
  145. data/doc/guides/html/user_guide.html +452 -270
  146. data/doc/guides/html/writing_guides.html +454 -161
  147. data/lib/acts_as_list.rb +1 -1
  148. data/lib/browsercms.rb +10 -6
  149. data/lib/cms/acts.rb +7 -0
  150. data/lib/cms/authentication.rb +4 -0
  151. data/lib/cms/authentication/controller.rb +1 -1
  152. data/lib/cms/behaviors.rb +1 -1
  153. data/lib/cms/behaviors/archiving.rb +2 -2
  154. data/lib/cms/behaviors/attaching.rb +28 -43
  155. data/lib/cms/behaviors/categorizing.rb +1 -1
  156. data/lib/cms/behaviors/connecting.rb +27 -12
  157. data/lib/cms/behaviors/dynamic_attributes.rb +8 -5
  158. data/lib/cms/behaviors/hiding.rb +2 -2
  159. data/lib/cms/behaviors/publishing.rb +32 -22
  160. data/lib/cms/behaviors/rendering.rb +41 -18
  161. data/lib/cms/behaviors/searching.rb +1 -1
  162. data/lib/cms/behaviors/soft_deleting.rb +58 -29
  163. data/lib/cms/behaviors/taggable.rb +1 -1
  164. data/lib/cms/behaviors/userstamping.rb +5 -4
  165. data/lib/cms/behaviors/versioning.rb +192 -111
  166. data/lib/cms/content_rendering_support.rb +3 -3
  167. data/lib/cms/date_picker.rb +23 -0
  168. data/lib/cms/engine.rb +46 -0
  169. data/lib/cms/extensions.rb +1 -1
  170. data/lib/cms/extensions/active_record/errors.rb +2 -2
  171. data/lib/cms/extensions/hash.rb +4 -2
  172. data/lib/cms/extensions/string.rb +7 -2
  173. data/lib/cms/init.rb +32 -21
  174. data/lib/cms/module.rb +22 -0
  175. data/lib/cms/module_installation.rb +38 -0
  176. data/lib/cms/routes.rb +127 -115
  177. data/lib/cms/version.rb +2 -2
  178. data/lib/generators/browser_cms.rb +12 -0
  179. data/lib/generators/browser_cms/cms/USAGE +2 -0
  180. data/lib/generators/browser_cms/cms/cms_generator.rb +36 -0
  181. data/{rails_generators/browser_cms → lib/generators/browser_cms/cms}/templates/README +0 -0
  182. data/{rails_generators/browser_cms_demo_site → lib/generators/browser_cms/demo_site}/USAGE +0 -0
  183. data/lib/generators/browser_cms/demo_site/demo_site_generator.rb +138 -0
  184. data/lib/generators/browser_cms/demo_site/templates/demo_site.rake +11 -0
  185. data/{rails_generators/browser_cms_demo_site/templates/migration.rb → lib/generators/browser_cms/demo_site/templates/migration.erb} +2 -8
  186. data/lib/generators/cms/content_block/USAGE +22 -0
  187. data/lib/generators/cms/content_block/content_block_generator.rb +55 -0
  188. data/{rails_generators → lib/generators/cms}/content_block/templates/_form.html.erb +0 -0
  189. data/{rails_generators → lib/generators/cms}/content_block/templates/content_block.rb +0 -0
  190. data/{rails_generators → lib/generators/cms}/content_block/templates/controller.rb +0 -0
  191. data/{rails_generators → lib/generators/cms}/content_block/templates/functional_test.erb +0 -0
  192. data/{rails_generators/content_block/templates/migration.rb → lib/generators/cms/content_block/templates/migration.erb} +1 -1
  193. data/{rails_generators → lib/generators/cms}/content_block/templates/render.html.erb +0 -0
  194. data/{rails_generators → lib/generators/cms}/content_block/templates/unit_test.erb +0 -0
  195. data/lib/generators/cms/install/USAGE +8 -0
  196. data/lib/generators/cms/install/install_generator.rb +20 -0
  197. data/{rails_generators → lib/generators/cms}/portlet/USAGE +3 -16
  198. data/lib/generators/cms/portlet/portlet_generator.rb +38 -0
  199. data/{rails_generators → lib/generators/cms}/portlet/templates/_form.html.erb +0 -0
  200. data/{rails_generators → lib/generators/cms}/portlet/templates/portlet.rb +0 -0
  201. data/{rails_generators → lib/generators/cms}/portlet/templates/portlet_helper.rb +0 -0
  202. data/{rails_generators → lib/generators/cms}/portlet/templates/render.html.erb +0 -0
  203. data/{rails_generators → lib/generators/cms}/portlet/templates/unit_test.erb +0 -0
  204. data/{rails_generators → lib/generators/cms}/template/USAGE +1 -1
  205. data/lib/generators/cms/template/template_generator.rb +18 -0
  206. data/lib/generators/cms/template/templates/template.erb +2 -0
  207. data/lib/generators/cms/upgrade_module/README.txt +3 -0
  208. data/lib/generators/cms/upgrade_module/templates/20100705083859_browsercms_3_3_0.rb +56 -0
  209. data/lib/generators/cms/upgrade_module/templates/README +1 -0
  210. data/lib/generators/cms/upgrade_module/templates/USAGE.erb +10 -0
  211. data/lib/generators/cms/upgrade_module/templates/build_gem.rake +5 -0
  212. data/lib/generators/cms/upgrade_module/templates/engine.erb +7 -0
  213. data/lib/generators/cms/upgrade_module/templates/gemspec.erb +25 -0
  214. data/lib/generators/cms/upgrade_module/templates/gitignore.erb +11 -0
  215. data/lib/generators/cms/upgrade_module/templates/install.erb +9 -0
  216. data/lib/generators/cms/upgrade_module/templates/module_file.erb +3 -0
  217. data/lib/generators/cms/upgrade_module/templates/routes.erb +7 -0
  218. data/lib/generators/cms/upgrade_module/upgrade_module_generator.rb +61 -0
  219. data/lib/tasks/build_gem.rake +1 -0
  220. data/lib/tasks/cms.rake +34 -6
  221. data/lib/tasks/cucumber.rake +53 -0
  222. data/lib/tasks/db.rake +2 -2
  223. data/public/javascripts/cms/application.js +144 -135
  224. data/public/javascripts/cms/sitemap.js +383 -357
  225. data/public/javascripts/jquery-ui.js +782 -591
  226. data/public/javascripts/jquery.cookie.js +38 -43
  227. data/public/javascripts/jquery.js +13 -8
  228. data/public/javascripts/jquery.taglist.js +7 -0
  229. data/public/stylesheets/cms/date_picker.css +49 -40
  230. data/rails/init.rb +2 -3
  231. data/templates/blank.rb +13 -7
  232. data/templates/demo.rb +15 -7
  233. data/templates/module.rb +12 -75
  234. metadata +87 -407
  235. data/app/helpers/cms/content_block_helper.rb +0 -27
  236. data/app/views/layouts/cms/thickbox.html.erb +0 -24
  237. data/db/migrate/20120117144039_browsercms315.rb +0 -94
  238. data/db/migrate/20121114172307_load_seeds.rb +0 -70
  239. data/lib/cms/addressable.rb +0 -83
  240. data/lib/cms/error_pages.rb +0 -8
  241. data/public/images/cms/thickbox/loadingAnimation.gif +0 -0
  242. data/public/images/cms/thickbox/macFFBgHack.png +0 -0
  243. data/public/javascripts/jquery.contextMenu.js +0 -211
  244. data/public/javascripts/jquery.dimensions.js +0 -119
  245. data/public/javascripts/jquery.thickbox.js +0 -10
  246. data/public/stylesheets/cms/jquery.contextMenu.css +0 -61
  247. data/public/stylesheets/cms/thickbox.css +0 -163
  248. data/rails_generators/browser_cms/USAGE +0 -2
  249. data/rails_generators/browser_cms/browser_cms_generator.rb +0 -35
  250. data/rails_generators/browser_cms_demo_site/browser_cms_demo_site_generator.rb +0 -63
  251. data/rails_generators/content_block/USAGE +0 -32
  252. data/rails_generators/content_block/content_block_generator.rb +0 -69
  253. data/rails_generators/portlet/portlet_generator.rb +0 -35
  254. data/rails_generators/template/template_generator.rb +0 -18
  255. data/rails_generators/template/templates/template.erb +0 -3
  256. data/test/custom_assertions.rb +0 -74
  257. data/test/factories.rb +0 -111
  258. data/test/factories/sitemap_factories.rb +0 -28
  259. data/test/fixtures/connectors.yml +0 -97
  260. data/test/fixtures/content_type_groups.yml +0 -13
  261. data/test/fixtures/content_types.yml +0 -50
  262. data/test/fixtures/dynamic_view_versions.yml +0 -26
  263. data/test/fixtures/dynamic_views.yml +0 -26
  264. data/test/fixtures/group_permissions.yml +0 -16
  265. data/test/fixtures/group_sections.yml +0 -31
  266. data/test/fixtures/group_type_permissions.yml +0 -11
  267. data/test/fixtures/group_types.yml +0 -25
  268. data/test/fixtures/groups.yml +0 -25
  269. data/test/fixtures/html_block_versions.yml +0 -67
  270. data/test/fixtures/html_blocks.yml +0 -63
  271. data/test/fixtures/page_versions.yml +0 -265
  272. data/test/fixtures/pages.yml +0 -85
  273. data/test/fixtures/permissions.yml +0 -28
  274. data/test/fixtures/section_nodes.yml +0 -46
  275. data/test/fixtures/sections.yml +0 -19
  276. data/test/fixtures/sites.yml +0 -9
  277. data/test/fixtures/user_group_memberships.yml +0 -11
  278. data/test/fixtures/users.yml +0 -15
  279. data/test/functional/cms/cache_controller_test.rb +0 -14
  280. data/test/functional/cms/categories_controller_test.rb +0 -25
  281. data/test/functional/cms/connectors_controller_test.rb +0 -60
  282. data/test/functional/cms/content_block_controller_test.rb +0 -120
  283. data/test/functional/cms/content_controller_test.rb +0 -439
  284. data/test/functional/cms/content_types_controller_test.rb +0 -18
  285. data/test/functional/cms/dashboard_controller_test.rb +0 -16
  286. data/test/functional/cms/dynamic_views_controller_test.rb +0 -52
  287. data/test/functional/cms/file_blocks_controller_test.rb +0 -52
  288. data/test/functional/cms/groups_controller_test.rb +0 -50
  289. data/test/functional/cms/home_controller_test.rb +0 -156
  290. data/test/functional/cms/html_blocks_controller_test.rb +0 -164
  291. data/test/functional/cms/image_blocks_controller_test.rb +0 -82
  292. data/test/functional/cms/links_controller_test.rb +0 -148
  293. data/test/functional/cms/pages_controller_test.rb +0 -227
  294. data/test/functional/cms/portlets_controller_test.rb +0 -67
  295. data/test/functional/cms/section_nodes_controller_test.rb +0 -112
  296. data/test/functional/cms/sections_controller_test.rb +0 -227
  297. data/test/functional/cms/sessions_controller_test.rb +0 -76
  298. data/test/functional/cms/toolbar_controller_test.rb +0 -64
  299. data/test/functional/cms/users_controller_test.rb +0 -231
  300. data/test/functional/tests/pretend_controller_test.rb +0 -57
  301. data/test/integration/cms/ckeditor_test.rb +0 -30
  302. data/test/integration/cms/password_management_test.rb +0 -56
  303. data/test/integration/login_test.rb +0 -14
  304. data/test/integration/sitemap_performance_test.rb +0 -26
  305. data/test/selenium-core/Blank.html +0 -7
  306. data/test/selenium-core/InjectedRemoteRunner.html +0 -8
  307. data/test/selenium-core/RemoteRunner.html +0 -110
  308. data/test/selenium-core/SeleniumLog.html +0 -109
  309. data/test/selenium-core/TestPrompt.html +0 -145
  310. data/test/selenium-core/TestRunner-splash.html +0 -55
  311. data/test/selenium-core/TestRunner.hta +0 -176
  312. data/test/selenium-core/TestRunner.html +0 -176
  313. data/test/selenium-core/domviewer/butmin.gif +0 -0
  314. data/test/selenium-core/domviewer/butplus.gif +0 -0
  315. data/test/selenium-core/domviewer/domviewer.css +0 -298
  316. data/test/selenium-core/domviewer/domviewer.html +0 -16
  317. data/test/selenium-core/domviewer/selenium-domviewer.js +0 -205
  318. data/test/selenium-core/icons/all.png +0 -0
  319. data/test/selenium-core/icons/continue.png +0 -0
  320. data/test/selenium-core/icons/continue_disabled.png +0 -0
  321. data/test/selenium-core/icons/pause.png +0 -0
  322. data/test/selenium-core/icons/pause_disabled.png +0 -0
  323. data/test/selenium-core/icons/selected.png +0 -0
  324. data/test/selenium-core/icons/step.png +0 -0
  325. data/test/selenium-core/icons/step_disabled.png +0 -0
  326. data/test/selenium-core/iedoc-core.xml +0 -1515
  327. data/test/selenium-core/iedoc.xml +0 -1469
  328. data/test/selenium-core/lib/cssQuery/cssQuery-p.js +0 -6
  329. data/test/selenium-core/lib/cssQuery/src/cssQuery-level2.js +0 -142
  330. data/test/selenium-core/lib/cssQuery/src/cssQuery-level3.js +0 -150
  331. data/test/selenium-core/lib/cssQuery/src/cssQuery-standard.js +0 -53
  332. data/test/selenium-core/lib/cssQuery/src/cssQuery.js +0 -356
  333. data/test/selenium-core/lib/prototype.js +0 -2006
  334. data/test/selenium-core/lib/scriptaculous/builder.js +0 -101
  335. data/test/selenium-core/lib/scriptaculous/controls.js +0 -815
  336. data/test/selenium-core/lib/scriptaculous/dragdrop.js +0 -915
  337. data/test/selenium-core/lib/scriptaculous/effects.js +0 -958
  338. data/test/selenium-core/lib/scriptaculous/scriptaculous.js +0 -47
  339. data/test/selenium-core/lib/scriptaculous/slider.js +0 -283
  340. data/test/selenium-core/lib/scriptaculous/unittest.js +0 -383
  341. data/test/selenium-core/scripts/find_matching_child.js +0 -69
  342. data/test/selenium-core/scripts/htmlutils.js +0 -894
  343. data/test/selenium-core/scripts/injection.html +0 -72
  344. data/test/selenium-core/scripts/js2html.js +0 -70
  345. data/test/selenium-core/scripts/narcissus-defs.js +0 -175
  346. data/test/selenium-core/scripts/narcissus-exec.js +0 -1054
  347. data/test/selenium-core/scripts/narcissus-parse.js +0 -1003
  348. data/test/selenium-core/scripts/se2html.js +0 -63
  349. data/test/selenium-core/scripts/selenium-api.js +0 -2409
  350. data/test/selenium-core/scripts/selenium-browserbot.js +0 -2203
  351. data/test/selenium-core/scripts/selenium-browserdetect.js +0 -150
  352. data/test/selenium-core/scripts/selenium-commandhandlers.js +0 -377
  353. data/test/selenium-core/scripts/selenium-executionloop.js +0 -175
  354. data/test/selenium-core/scripts/selenium-logging.js +0 -147
  355. data/test/selenium-core/scripts/selenium-remoterunner.js +0 -571
  356. data/test/selenium-core/scripts/selenium-testrunner.js +0 -1333
  357. data/test/selenium-core/scripts/selenium-version.js +0 -5
  358. data/test/selenium-core/scripts/user-extensions.js +0 -3
  359. data/test/selenium-core/scripts/user-extensions.js.sample +0 -75
  360. data/test/selenium-core/scripts/xmlextras.js +0 -153
  361. data/test/selenium-core/selenium-logo.png +0 -0
  362. data/test/selenium-core/selenium-test.css +0 -43
  363. data/test/selenium-core/selenium.css +0 -299
  364. data/test/selenium-core/xpath/dom.js +0 -428
  365. data/test/selenium-core/xpath/misc.js +0 -252
  366. data/test/selenium-core/xpath/xpath.js +0 -2223
  367. data/test/selenium/_login_as_cmsadmin.rsel +0 -4
  368. data/test/selenium/dashboard.rsel +0 -5
  369. data/test/selenium/html_blocks.rsel +0 -4
  370. data/test/selenium/login/failed_login.rsel +0 -8
  371. data/test/selenium/login/successful_login.rsel +0 -9
  372. data/test/selenium/page_templates.rsel +0 -12
  373. data/test/selenium/pages/edit_properties.rsel +0 -5
  374. data/test/selenium/site/view_home_page.rsel +0 -4
  375. data/test/selenium/sitemap/move_page.rsel +0 -9
  376. data/test/selenium/sitemap/open_section.rsel +0 -6
  377. data/test/selenium/sitemap/select_page.rsel +0 -12
  378. data/test/selenium/sitemap/select_section.rsel +0 -17
  379. data/test/test_helper.rb +0 -193
  380. data/test/test_logging.rb +0 -67
  381. data/test/unit/behaviors/attaching_test.rb +0 -357
  382. data/test/unit/behaviors/connectable_test.rb +0 -29
  383. data/test/unit/behaviors/dynamic_attributes_test.rb +0 -38
  384. data/test/unit/behaviors/publishable_test.rb +0 -84
  385. data/test/unit/behaviors/searching_test.rb +0 -102
  386. data/test/unit/behaviors/taggable_test.rb +0 -109
  387. data/test/unit/behaviors/versioning_test.rb +0 -36
  388. data/test/unit/extensions/active_record/base_test.rb +0 -10
  389. data/test/unit/extensions/hash_test.rb +0 -17
  390. data/test/unit/extensions/integer_test.rb +0 -10
  391. data/test/unit/helpers/application_helper_test.rb +0 -77
  392. data/test/unit/helpers/form_builder_test.rb +0 -36
  393. data/test/unit/helpers/menu_helper_test.rb +0 -242
  394. data/test/unit/helpers/page_helper_test.rb +0 -67
  395. data/test/unit/helpers/path_helper_test.rb +0 -57
  396. data/test/unit/lib/acts_as_content_page_test.rb +0 -72
  397. data/test/unit/lib/cms/authentication/controller_test.rb +0 -20
  398. data/test/unit/lib/cms/sitemap_test.rb +0 -206
  399. data/test/unit/lib/cms_domain_support_test.rb +0 -43
  400. data/test/unit/lib/command_line_test.rb +0 -70
  401. data/test/unit/lib/content_block_test.rb +0 -203
  402. data/test/unit/lib/content_rendering_support_test.rb +0 -40
  403. data/test/unit/lib/generators_test.rb +0 -40
  404. data/test/unit/lib/routes_test.rb +0 -57
  405. data/test/unit/models/attachment_test.rb +0 -116
  406. data/test/unit/models/category_test.rb +0 -40
  407. data/test/unit/models/category_type_test.rb +0 -8
  408. data/test/unit/models/connector_test.rb +0 -152
  409. data/test/unit/models/content_type_test.rb +0 -56
  410. data/test/unit/models/email_page_portlet_test.rb +0 -14
  411. data/test/unit/models/file_block_test.rb +0 -230
  412. data/test/unit/models/group_test.rb +0 -13
  413. data/test/unit/models/html_block_test.rb +0 -102
  414. data/test/unit/models/link_test.rb +0 -52
  415. data/test/unit/models/page_partial_test.rb +0 -29
  416. data/test/unit/models/page_route_test.rb +0 -29
  417. data/test/unit/models/page_template_test.rb +0 -40
  418. data/test/unit/models/page_test.rb +0 -792
  419. data/test/unit/models/permission_test.rb +0 -10
  420. data/test/unit/models/portlet_test.rb +0 -69
  421. data/test/unit/models/sections_test.rb +0 -264
  422. data/test/unit/models/site_test.rb +0 -50
  423. data/test/unit/models/task_test.rb +0 -141
  424. data/test/unit/models/user_test.rb +0 -352
  425. data/test/unit/schema_statements_test.rb +0 -41
@@ -1,150 +0,0 @@
1
- /*
2
- * Copyright 2004 ThoughtWorks, Inc
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- *
16
- */
17
-
18
- // Although it's generally better web development practice not to use
19
- // browser-detection (feature detection is better), the subtle browser
20
- // differences that Selenium has to work around seem to make it
21
- // necessary. Maybe as we learn more about what we need, we can do this in
22
- // a more "feature-centric" rather than "browser-centric" way.
23
-
24
- var BrowserVersion = function() {
25
- this.name = navigator.appName;
26
-
27
- if (navigator.userAgent.indexOf('Mac OS X') != -1) {
28
- this.isOSX = true;
29
- }
30
-
31
- if (navigator.userAgent.indexOf('Windows NT 6') != -1) {
32
- this.isVista = true;
33
- }
34
-
35
- if (window.opera != null) {
36
- this.browser = BrowserVersion.OPERA;
37
- this.isOpera = true;
38
- return;
39
- }
40
-
41
- var _getQueryParameter = function(searchKey) {
42
- var str = location.search.substr(1);
43
- if (str == null) return null;
44
- var clauses = str.split('&');
45
- for (var i = 0; i < clauses.length; i++) {
46
- var keyValuePair = clauses[i].split('=', 2);
47
- var key = unescape(keyValuePair[0]);
48
- if (key == searchKey) {
49
- return unescape(keyValuePair[1]);
50
- }
51
- }
52
- return null;
53
- };
54
-
55
- var self = this;
56
-
57
- var checkChrome = function() {
58
- var loc = window.document.location.href;
59
- try {
60
- loc = window.top.document.location.href;
61
- if (/^chrome:\/\//.test(loc)) {
62
- self.isChrome = true;
63
- } else {
64
- self.isChrome = false;
65
- }
66
- } catch (e) {
67
- // can't see the top (that means we might be chrome, but it's impossible to be sure)
68
- self.isChromeDetectable = "no, top location couldn't be read in this window";
69
- if (_getQueryParameter('thisIsChrome')) {
70
- self.isChrome = true;
71
- } else {
72
- self.isChrome = false;
73
- }
74
- }
75
-
76
-
77
- }
78
-
79
-
80
-
81
- if (this.name == "Microsoft Internet Explorer") {
82
- this.browser = BrowserVersion.IE;
83
- this.isIE = true;
84
- try {
85
- if (window.top.SeleniumHTARunner && window.top.document.location.pathname.match(/.hta$/i)) {
86
- this.isHTA = true;
87
- }
88
- } catch (e) {
89
- this.isHTADetectable = "no, top location couldn't be read in this window";
90
- if (_getQueryParameter('thisIsHTA')) {
91
- self.isHTA = true;
92
- } else {
93
- self.isHTA = false;
94
- }
95
- }
96
- if ("0" == navigator.appMinorVersion) {
97
- this.preSV1 = true;
98
- if (navigator.appVersion.match(/MSIE 6.0/)) {
99
- this.appearsToBeBrokenInitialIE6 = true;
100
- }
101
- }
102
- return;
103
- }
104
-
105
- if (navigator.userAgent.indexOf('Safari') != -1) {
106
- this.browser = BrowserVersion.SAFARI;
107
- this.isSafari = true;
108
- this.khtml = true;
109
- return;
110
- }
111
-
112
- if (navigator.userAgent.indexOf('Konqueror') != -1) {
113
- this.browser = BrowserVersion.KONQUEROR;
114
- this.isKonqueror = true;
115
- this.khtml = true;
116
- return;
117
- }
118
-
119
- if (navigator.userAgent.indexOf('Firefox') != -1) {
120
- this.browser = BrowserVersion.FIREFOX;
121
- this.isFirefox = true;
122
- this.isGecko = true;
123
- var result = /.*Firefox\/([\d\.]+).*/.exec(navigator.userAgent);
124
- if (result) {
125
- this.firefoxVersion = result[1];
126
- }
127
- checkChrome();
128
- return;
129
- }
130
-
131
- if (navigator.userAgent.indexOf('Gecko') != -1) {
132
- this.browser = BrowserVersion.MOZILLA;
133
- this.isMozilla = true;
134
- this.isGecko = true;
135
- checkChrome();
136
- return;
137
- }
138
-
139
- this.browser = BrowserVersion.UNKNOWN;
140
- }
141
-
142
- BrowserVersion.OPERA = "Opera";
143
- BrowserVersion.IE = "IE";
144
- BrowserVersion.KONQUEROR = "Konqueror";
145
- BrowserVersion.SAFARI = "Safari";
146
- BrowserVersion.FIREFOX = "Firefox";
147
- BrowserVersion.MOZILLA = "Mozilla";
148
- BrowserVersion.UNKNOWN = "Unknown";
149
-
150
- var browserVersion = new BrowserVersion();
@@ -1,377 +0,0 @@
1
- /*
2
- * Copyright 2004 ThoughtWorks, Inc
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
-
17
- // A naming convention used in this file:
18
- //
19
- //
20
- // - a "seleniumApi" is an instance of the Selenium object, defined in selenium-api.js.
21
- //
22
- // - a "Method" is an unbound function whose target must be supplied when it's called, ie.
23
- // it should be invoked using Function.call() or Function.apply()
24
- //
25
- // - a "Block" is a function that has been bound to a target object, so can be called invoked directly
26
- // (or with a null target)
27
- //
28
- // - "CommandHandler" is effectively an abstract base for
29
- // various handlers including ActionHandler, AccessorHandler and AssertHandler.
30
- // Subclasses need to implement an execute(seleniumApi, command) function,
31
- // where seleniumApi is the Selenium object, and command a SeleniumCommand object.
32
- //
33
- // - Handlers will return a "result" object (ActionResult, AccessorResult, AssertResult).
34
- // ActionResults may contain a .terminationCondition function which is run by
35
- // -executionloop.js after the command is run; we'll run it over and over again
36
- // until it returns true or the .terminationCondition throws an exception.
37
- // AccessorResults will contain the results of running getter (e.g. getTitle returns
38
- // the title as a string).
39
-
40
- var CommandHandlerFactory = classCreate();
41
- objectExtend(CommandHandlerFactory.prototype, {
42
-
43
- initialize: function() {
44
- this.handlers = {};
45
- },
46
-
47
- registerAction: function(name, actionBlock, wait, dontCheckAlertsAndConfirms) {
48
- this.handlers[name] = new ActionHandler(actionBlock, wait, dontCheckAlertsAndConfirms);
49
- },
50
-
51
- registerAccessor: function(name, accessBlock) {
52
- this.handlers[name] = new AccessorHandler(accessBlock);
53
- },
54
-
55
- registerAssert: function(name, assertBlock, haltOnFailure) {
56
- this.handlers[name] = new AssertHandler(assertBlock, haltOnFailure);
57
- },
58
-
59
- getCommandHandler: function(name) {
60
- return this.handlers[name];
61
- },
62
-
63
- _registerAllAccessors: function(seleniumApi) {
64
- // Methods of the form getFoo(target) result in commands:
65
- // getFoo, assertFoo, verifyFoo, assertNotFoo, verifyNotFoo
66
- // storeFoo, waitForFoo, and waitForNotFoo.
67
- for (var functionName in seleniumApi) {
68
- var match = /^(get|is)([A-Z].+)$/.exec(functionName);
69
- if (match) {
70
- var accessMethod = seleniumApi[functionName];
71
- var accessBlock = fnBind(accessMethod, seleniumApi);
72
- var baseName = match[2];
73
- var isBoolean = (match[1] == "is");
74
- var requiresTarget = (accessMethod.length == 1);
75
-
76
- this.registerAccessor(functionName, accessBlock);
77
- this._registerStoreCommandForAccessor(baseName, accessBlock, requiresTarget);
78
-
79
- var predicateBlock = this._predicateForAccessor(accessBlock, requiresTarget, isBoolean);
80
- this._registerAssertionsForPredicate(baseName, predicateBlock);
81
- this._registerWaitForCommandsForPredicate(seleniumApi, baseName, predicateBlock);
82
- }
83
- }
84
- },
85
-
86
- _registerAllActions: function(seleniumApi) {
87
- for (var functionName in seleniumApi) {
88
- var match = /^do([A-Z].+)$/.exec(functionName);
89
- if (match) {
90
- var actionName = match[1].lcfirst();
91
- var actionMethod = seleniumApi[functionName];
92
- var dontCheckPopups = actionMethod.dontCheckAlertsAndConfirms;
93
- var actionBlock = fnBind(actionMethod, seleniumApi);
94
- this.registerAction(actionName, actionBlock, false, dontCheckPopups);
95
- this.registerAction(actionName + "AndWait", actionBlock, true, dontCheckPopups);
96
- }
97
- }
98
- },
99
-
100
- _registerAllAsserts: function(seleniumApi) {
101
- for (var functionName in seleniumApi) {
102
- var match = /^assert([A-Z].+)$/.exec(functionName);
103
- if (match) {
104
- var assertBlock = fnBind(seleniumApi[functionName], seleniumApi);
105
-
106
- // Register the assert with the "assert" prefix, and halt on failure.
107
- var assertName = functionName;
108
- this.registerAssert(assertName, assertBlock, true);
109
-
110
- // Register the assert with the "verify" prefix, and do not halt on failure.
111
- var verifyName = "verify" + match[1];
112
- this.registerAssert(verifyName, assertBlock, false);
113
- }
114
- }
115
- },
116
-
117
- registerAll: function(seleniumApi) {
118
- this._registerAllAccessors(seleniumApi);
119
- this._registerAllActions(seleniumApi);
120
- this._registerAllAsserts(seleniumApi);
121
- },
122
-
123
- _predicateForAccessor: function(accessBlock, requiresTarget, isBoolean) {
124
- if (isBoolean) {
125
- return this._predicateForBooleanAccessor(accessBlock);
126
- }
127
- if (requiresTarget) {
128
- return this._predicateForSingleArgAccessor(accessBlock);
129
- }
130
- return this._predicateForNoArgAccessor(accessBlock);
131
- },
132
-
133
- _predicateForSingleArgAccessor: function(accessBlock) {
134
- // Given an accessor function getBlah(target),
135
- // return a "predicate" equivalient to isBlah(target, value) that
136
- // is true when the value returned by the accessor matches the specified value.
137
- return function(target, value) {
138
- var accessorResult = accessBlock(target);
139
- accessorResult = selArrayToString(accessorResult);
140
- if (PatternMatcher.matches(value, accessorResult)) {
141
- return new PredicateResult(true, "Actual value '" + accessorResult + "' did match '" + value + "'");
142
- } else {
143
- return new PredicateResult(false, "Actual value '" + accessorResult + "' did not match '" + value + "'");
144
- }
145
- };
146
- },
147
-
148
- _predicateForNoArgAccessor: function(accessBlock) {
149
- // Given a (no-arg) accessor function getBlah(),
150
- // return a "predicate" equivalient to isBlah(value) that
151
- // is true when the value returned by the accessor matches the specified value.
152
- return function(value) {
153
- var accessorResult = accessBlock();
154
- accessorResult = selArrayToString(accessorResult);
155
- if (PatternMatcher.matches(value, accessorResult)) {
156
- return new PredicateResult(true, "Actual value '" + accessorResult + "' did match '" + value + "'");
157
- } else {
158
- return new PredicateResult(false, "Actual value '" + accessorResult + "' did not match '" + value + "'");
159
- }
160
- };
161
- },
162
-
163
- _predicateForBooleanAccessor: function(accessBlock) {
164
- // Given a boolean accessor function isBlah(),
165
- // return a "predicate" equivalient to isBlah() that
166
- // returns an appropriate PredicateResult value.
167
- return function() {
168
- var accessorResult;
169
- if (arguments.length > 2) throw new SeleniumError("Too many arguments! " + arguments.length);
170
- if (arguments.length == 2) {
171
- accessorResult = accessBlock(arguments[0], arguments[1]);
172
- } else if (arguments.length == 1) {
173
- accessorResult = accessBlock(arguments[0]);
174
- } else {
175
- accessorResult = accessBlock();
176
- }
177
- if (accessorResult) {
178
- return new PredicateResult(true, "true");
179
- } else {
180
- return new PredicateResult(false, "false");
181
- }
182
- };
183
- },
184
-
185
- _invertPredicate: function(predicateBlock) {
186
- // Given a predicate, return the negation of that predicate.
187
- // Leaves the message unchanged.
188
- // Used to create assertNot, verifyNot, and waitForNot commands.
189
- return function(target, value) {
190
- var result = predicateBlock(target, value);
191
- result.isTrue = !result.isTrue;
192
- return result;
193
- };
194
- },
195
-
196
- createAssertionFromPredicate: function(predicateBlock) {
197
- // Convert an isBlahBlah(target, value) function into an assertBlahBlah(target, value) function.
198
- return function(target, value) {
199
- var result = predicateBlock(target, value);
200
- if (!result.isTrue) {
201
- Assert.fail(result.message);
202
- }
203
- };
204
- },
205
-
206
- _invertPredicateName: function(baseName) {
207
- var matchResult = /^(.*)Present$/.exec(baseName);
208
- if (matchResult != null) {
209
- return matchResult[1] + "NotPresent";
210
- }
211
- return "Not" + baseName;
212
- },
213
-
214
- _registerAssertionsForPredicate: function(baseName, predicateBlock) {
215
- // Register an assertion, a verification, a negative assertion,
216
- // and a negative verification based on the specified accessor.
217
- var assertBlock = this.createAssertionFromPredicate(predicateBlock);
218
- this.registerAssert("assert" + baseName, assertBlock, true);
219
- this.registerAssert("verify" + baseName, assertBlock, false);
220
-
221
- var invertedPredicateBlock = this._invertPredicate(predicateBlock);
222
- var negativeassertBlock = this.createAssertionFromPredicate(invertedPredicateBlock);
223
- this.registerAssert("assert" + this._invertPredicateName(baseName), negativeassertBlock, true);
224
- this.registerAssert("verify" + this._invertPredicateName(baseName), negativeassertBlock, false);
225
- },
226
-
227
- _waitForActionForPredicate: function(predicateBlock) {
228
- // Convert an isBlahBlah(target, value) function into a waitForBlahBlah(target, value) function.
229
- return function(target, value) {
230
- var terminationCondition = function () {
231
- try {
232
- return predicateBlock(target, value).isTrue;
233
- } catch (e) {
234
- // Treat exceptions as meaning the condition is not yet met.
235
- // Useful, for example, for waitForValue when the element has
236
- // not even been created yet.
237
- // TODO: possibly should rethrow some types of exception.
238
- return false;
239
- }
240
- };
241
- return Selenium.decorateFunctionWithTimeout(terminationCondition, this.defaultTimeout);
242
- };
243
- },
244
-
245
- _registerWaitForCommandsForPredicate: function(seleniumApi, baseName, predicateBlock) {
246
- // Register a waitForBlahBlah and waitForNotBlahBlah based on the specified accessor.
247
- var waitForActionMethod = this._waitForActionForPredicate(predicateBlock);
248
- var waitForActionBlock = fnBind(waitForActionMethod, seleniumApi);
249
-
250
- var invertedPredicateBlock = this._invertPredicate(predicateBlock);
251
- var waitForNotActionMethod = this._waitForActionForPredicate(invertedPredicateBlock);
252
- var waitForNotActionBlock = fnBind(waitForNotActionMethod, seleniumApi);
253
-
254
- this.registerAction("waitFor" + baseName, waitForActionBlock, false, true);
255
- this.registerAction("waitFor" + this._invertPredicateName(baseName), waitForNotActionBlock, false, true);
256
- //TODO decide remove "waitForNot.*Present" action name or not
257
- //for the back compatiblity issues we still make waitForNot.*Present availble
258
- this.registerAction("waitForNot" + baseName, waitForNotActionBlock, false, true);
259
- },
260
-
261
- _registerStoreCommandForAccessor: function(baseName, accessBlock, requiresTarget) {
262
- var action;
263
- if (requiresTarget) {
264
- action = function(target, varName) {
265
- storedVars[varName] = accessBlock(target);
266
- };
267
- } else {
268
- action = function(varName) {
269
- storedVars[varName] = accessBlock();
270
- };
271
- }
272
- this.registerAction("store" + baseName, action, false, true);
273
- }
274
-
275
- });
276
-
277
- function PredicateResult(isTrue, message) {
278
- this.isTrue = isTrue;
279
- this.message = message;
280
- }
281
-
282
- // NOTE: The CommandHandler is effectively an abstract base for
283
- // various handlers including ActionHandler, AccessorHandler and AssertHandler.
284
- // Subclasses need to implement an execute(seleniumApi, command) function,
285
- // where seleniumApi is the Selenium object, and command a SeleniumCommand object.
286
- function CommandHandler(type, haltOnFailure) {
287
- this.type = type;
288
- this.haltOnFailure = haltOnFailure;
289
- }
290
-
291
- // An ActionHandler is a command handler that executes the sepcified action,
292
- // possibly checking for alerts and confirmations (if checkAlerts is set), and
293
- // possibly waiting for a page load if wait is set.
294
- function ActionHandler(actionBlock, wait, dontCheckAlerts) {
295
- this.actionBlock = actionBlock;
296
- CommandHandler.call(this, "action", true);
297
- if (wait) {
298
- this.wait = true;
299
- }
300
- // note that dontCheckAlerts could be undefined!!!
301
- this.checkAlerts = (dontCheckAlerts) ? false : true;
302
- }
303
- ActionHandler.prototype = new CommandHandler;
304
- ActionHandler.prototype.execute = function(seleniumApi, command) {
305
- if (this.checkAlerts && (null == /(Alert|Confirmation)(Not)?Present/.exec(command.command))) {
306
- // todo: this conditional logic is ugly
307
- seleniumApi.ensureNoUnhandledPopups();
308
- }
309
- var terminationCondition = this.actionBlock(command.target, command.value);
310
- // If the handler didn't return a wait flag, check to see if the
311
- // handler was registered with the wait flag.
312
- if (terminationCondition == undefined && this.wait) {
313
- terminationCondition = seleniumApi.makePageLoadCondition();
314
- }
315
- return new ActionResult(terminationCondition);
316
- };
317
-
318
- function ActionResult(terminationCondition) {
319
- this.terminationCondition = terminationCondition;
320
- }
321
-
322
- function AccessorHandler(accessBlock) {
323
- this.accessBlock = accessBlock;
324
- CommandHandler.call(this, "accessor", true);
325
- }
326
- AccessorHandler.prototype = new CommandHandler;
327
- AccessorHandler.prototype.execute = function(seleniumApi, command) {
328
- var returnValue = this.accessBlock(command.target, command.value);
329
- return new AccessorResult(returnValue);
330
- };
331
-
332
- function AccessorResult(result) {
333
- this.result = result;
334
- }
335
-
336
- /**
337
- * Handler for assertions and verifications.
338
- */
339
- function AssertHandler(assertBlock, haltOnFailure) {
340
- this.assertBlock = assertBlock;
341
- CommandHandler.call(this, "assert", haltOnFailure || false);
342
- }
343
- AssertHandler.prototype = new CommandHandler;
344
- AssertHandler.prototype.execute = function(seleniumApi, command) {
345
- var result = new AssertResult();
346
- try {
347
- this.assertBlock(command.target, command.value);
348
- } catch (e) {
349
- // If this is not a AssertionFailedError, or we should haltOnFailure, rethrow.
350
- if (!e.isAssertionFailedError) {
351
- throw e;
352
- }
353
- if (this.haltOnFailure) {
354
- var error = new SeleniumError(e.failureMessage);
355
- throw error;
356
- }
357
- result.setFailed(e.failureMessage);
358
- }
359
- return result;
360
- };
361
-
362
- function AssertResult() {
363
- this.passed = true;
364
- }
365
- AssertResult.prototype.setFailed = function(message) {
366
- this.passed = null;
367
- this.failed = true;
368
- this.failureMessage = message;
369
- }
370
-
371
- function SeleniumCommand(command, target, value, isBreakpoint) {
372
- this.command = command;
373
- this.target = target;
374
- this.value = value;
375
- this.isBreakpoint = isBreakpoint;
376
- }
377
-