fat_free_crm 0.13.6 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fat_free_crm might be problematic. Click here for more details.

Files changed (534) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +5 -0
  3. data/.travis.yml +8 -5
  4. data/CHANGELOG +26 -0
  5. data/Gemfile +26 -26
  6. data/Gemfile.lock +280 -250
  7. data/Guardfile +0 -1
  8. data/README.md +7 -9
  9. data/Rakefile +1 -1
  10. data/app/assets/javascripts/application.js.erb +1 -0
  11. data/app/assets/javascripts/crm.js.coffee +6 -7
  12. data/app/assets/javascripts/search.js.coffee +7 -1
  13. data/app/assets/stylesheets/about.css.scss +10 -0
  14. data/app/assets/stylesheets/application.css.erb +2 -0
  15. data/app/assets/stylesheets/common.scss +1 -1
  16. data/app/controllers/admin/application_controller.rb +3 -3
  17. data/app/controllers/admin/field_groups_controller.rb +12 -7
  18. data/app/controllers/admin/fields_controller.rb +21 -17
  19. data/app/controllers/admin/groups_controller.rb +10 -4
  20. data/app/controllers/admin/plugins_controller.rb +1 -2
  21. data/app/controllers/admin/settings_controller.rb +1 -2
  22. data/app/controllers/admin/tags_controller.rb +10 -4
  23. data/app/controllers/admin/users_controller.rb +32 -12
  24. data/app/controllers/application_controller.rb +58 -38
  25. data/app/controllers/authentications_controller.rb +5 -8
  26. data/app/controllers/comments_controller.rb +15 -11
  27. data/app/controllers/emails_controller.rb +1 -2
  28. data/app/controllers/entities/accounts_controller.rb +20 -20
  29. data/app/controllers/entities/campaigns_controller.rb +25 -22
  30. data/app/controllers/entities/contacts_controller.rb +25 -24
  31. data/app/controllers/entities/leads_controller.rb +33 -31
  32. data/app/controllers/entities/opportunities_controller.rb +31 -28
  33. data/app/controllers/entities_controller.rb +26 -22
  34. data/app/controllers/home_controller.rb +18 -18
  35. data/app/controllers/lists_controller.rb +11 -7
  36. data/app/controllers/passwords_controller.rb +5 -6
  37. data/app/controllers/tasks_controller.rb +23 -18
  38. data/app/controllers/users_controller.rb +31 -7
  39. data/app/helpers/accounts_helper.rb +40 -42
  40. data/app/helpers/addresses_helper.rb +1 -3
  41. data/app/helpers/admin/application_helper.rb +4 -4
  42. data/app/helpers/admin/field_groups_helper.rb +5 -7
  43. data/app/helpers/admin/fields_helper.rb +2 -3
  44. data/app/helpers/admin/plugins_helper.rb +0 -1
  45. data/app/helpers/admin/settings_helper.rb +0 -1
  46. data/app/helpers/admin/tags_helper.rb +1 -1
  47. data/app/helpers/admin/users_helper.rb +16 -18
  48. data/app/helpers/application_helper.rb +127 -119
  49. data/app/helpers/authentications_helper.rb +0 -1
  50. data/app/helpers/campaigns_helper.rb +5 -7
  51. data/app/helpers/comments_helper.rb +0 -1
  52. data/app/helpers/contacts_helper.rb +0 -1
  53. data/app/helpers/home_helper.rb +14 -14
  54. data/app/helpers/javascript_helper.rb +30 -0
  55. data/app/helpers/leads_helper.rb +7 -7
  56. data/app/helpers/opportunities_helper.rb +8 -10
  57. data/app/helpers/passwords_helper.rb +0 -1
  58. data/app/helpers/tags_helper.rb +1 -3
  59. data/app/helpers/tasks_helper.rb +24 -26
  60. data/app/helpers/users_helper.rb +6 -7
  61. data/app/helpers/versions_helper.rb +3 -5
  62. data/app/inputs/date_pair_input.rb +6 -7
  63. data/app/inputs/date_time_input.rb +3 -4
  64. data/app/inputs/datetime_pair_input.rb +0 -1
  65. data/app/inputs/text_input.rb +2 -2
  66. data/app/mailers/dropbox_mailer.rb +4 -7
  67. data/app/mailers/subscription_mailer.rb +4 -5
  68. data/app/mailers/user_mailer.rb +7 -9
  69. data/app/models/entities/account.rb +31 -28
  70. data/app/models/entities/account_contact.rb +2 -1
  71. data/app/models/entities/account_opportunity.rb +1 -1
  72. data/app/models/entities/campaign.rb +22 -19
  73. data/app/models/entities/contact.rb +55 -53
  74. data/app/models/entities/contact_opportunity.rb +1 -1
  75. data/app/models/entities/lead.rb +49 -41
  76. data/app/models/entities/opportunity.rb +38 -38
  77. data/app/models/fields/custom_field.rb +21 -27
  78. data/app/models/fields/custom_field_date_pair.rb +7 -8
  79. data/app/models/fields/custom_field_datetime_pair.rb +0 -2
  80. data/app/models/fields/custom_field_pair.rb +8 -10
  81. data/app/models/fields/field.rb +29 -30
  82. data/app/models/fields/field_group.rb +4 -4
  83. data/app/models/list.rb +1 -1
  84. data/app/models/observers/entity_observer.rb +1 -1
  85. data/app/models/observers/lead_observer.rb +1 -1
  86. data/app/models/observers/opportunity_observer.rb +1 -1
  87. data/app/models/observers/task_observer.rb +1 -1
  88. data/app/models/polymorphic/address.rb +7 -7
  89. data/app/models/polymorphic/avatar.rb +8 -9
  90. data/app/models/polymorphic/comment.rb +16 -10
  91. data/app/models/polymorphic/email.rb +13 -6
  92. data/app/models/polymorphic/tag.rb +2 -2
  93. data/app/models/polymorphic/task.rb +45 -45
  94. data/{config/initializers/paper_trail.rb → app/models/polymorphic/version.rb} +26 -31
  95. data/app/models/setting.rb +12 -17
  96. data/app/models/users/ability.rb +5 -6
  97. data/app/models/users/authentication.rb +6 -5
  98. data/app/models/users/group.rb +1 -3
  99. data/app/models/users/permission.rb +3 -3
  100. data/app/models/users/preference.rb +7 -7
  101. data/app/models/users/user.rb +36 -43
  102. data/app/views/accounts/_top_section.html.haml +2 -2
  103. data/app/views/accounts/edit.js.haml +0 -1
  104. data/app/views/admin/fields/_field.html.haml +1 -1
  105. data/app/views/admin/tags/_tag.html.haml +1 -1
  106. data/app/views/admin/users/_user.html.haml +4 -4
  107. data/app/views/campaigns/_top_section.html.haml +1 -1
  108. data/app/views/campaigns/edit.js.haml +0 -2
  109. data/app/views/contacts/_top_section.html.haml +1 -1
  110. data/app/views/contacts/edit.js.haml +0 -1
  111. data/app/views/entities/_basic_search.html.haml +1 -1
  112. data/app/views/home/_account.html.haml +2 -2
  113. data/app/views/home/_opportunity.html.haml +2 -2
  114. data/app/views/layouts/_about.html.haml +1 -1
  115. data/app/views/leads/_top_section.html.haml +1 -1
  116. data/app/views/leads/edit.js.haml +0 -2
  117. data/app/views/lists/_sidebar.html.haml +1 -1
  118. data/app/views/opportunities/_top_section.html.haml +2 -2
  119. data/app/views/opportunities/edit.js.haml +0 -1
  120. data/app/views/shared/_tags.html.haml +2 -1
  121. data/app/views/tasks/_edit.html.haml +2 -3
  122. data/app/views/tasks/_top_section.html.haml +1 -1
  123. data/app/views/users/_user.html.haml +2 -1
  124. data/app/views/users/opportunities_overview.html.haml +2 -2
  125. data/bin/bundle +3 -0
  126. data/bin/rails +4 -0
  127. data/bin/rake +4 -0
  128. data/config/application.rb +16 -33
  129. data/config/boot.rb +1 -1
  130. data/config/database.mysql.mac.yml +1 -0
  131. data/config/database.mysql.yml +1 -0
  132. data/config/database.postgres.docker.yml +1 -1
  133. data/config/database.postgres.yml +1 -0
  134. data/config/database.sqlite.yml +1 -0
  135. data/config/deploy.example.rb +3 -5
  136. data/config/environments/development.rb +13 -14
  137. data/config/environments/production.rb +8 -7
  138. data/config/environments/staging.rb +43 -41
  139. data/config/environments/test.rb +12 -14
  140. data/config/initializers/assets.rb +14 -0
  141. data/config/initializers/backtrace_silencers.rb +7 -0
  142. data/config/initializers/cookies_serializer.rb +3 -0
  143. data/config/initializers/custom_field_ransack_translations.rb +1 -1
  144. data/config/initializers/filter_parameter_logging.rb +4 -0
  145. data/config/initializers/inflections.rb +16 -0
  146. data/config/initializers/mime_types.rb +0 -1
  147. data/config/initializers/paginate_arrays.rb +0 -1
  148. data/config/initializers/ransack.rb +5 -5
  149. data/config/initializers/session_store.rb +5 -0
  150. data/config/initializers/simple_form.rb +1 -1
  151. data/config/initializers/views.rb +33 -33
  152. data/config/initializers/wrap_parameters.rb +14 -0
  153. data/config/locales/cz_fat_free_crm.yml +1 -1
  154. data/config/locales/de_fat_free_crm.yml +2 -2
  155. data/config/locales/en-GB_fat_free_crm.yml +2 -3
  156. data/config/locales/en-US_fat_free_crm.yml +2 -3
  157. data/config/locales/en.yml +23 -0
  158. data/config/locales/es-CL.yml +227 -0
  159. data/config/locales/es-CL_fat_free_crm.yml +929 -0
  160. data/config/locales/es-CL_ransack.yml +91 -0
  161. data/config/locales/es.yml +53 -59
  162. data/config/locales/es_fat_free_crm.yml +708 -370
  163. data/config/locales/es_ransack.yml +91 -0
  164. data/config/locales/fr-CA_fat_free_crm.yml +7 -7
  165. data/config/locales/fr_fat_free_crm.yml +285 -81
  166. data/config/locales/it_fat_free_crm.yml +1 -1
  167. data/config/locales/ja_fat_free_crm.yml +1 -1
  168. data/config/locales/nl.yml +210 -0
  169. data/config/locales/nl_fat_free_crm.yml +920 -0
  170. data/config/locales/nl_ransack.yml +91 -0
  171. data/config/locales/pl_fat_free_crm.yml +1 -1
  172. data/config/locales/pt-BR_fat_free_crm.yml +111 -38
  173. data/config/locales/ru_fat_free_crm.yml +3 -4
  174. data/config/locales/sv-SE_fat_free_crm.yml +1 -1
  175. data/config/locales/th.rb +157 -158
  176. data/config/locales/th_fat_free_crm.yml +1 -1
  177. data/config/locales/zh-CN_fat_free_crm.yml +3 -4
  178. data/config/routes.rb +93 -94
  179. data/config/unicorn.rb +25 -2
  180. data/custom_plan.rb +0 -2
  181. data/db/demo/accounts.yml +4 -5
  182. data/db/demo/addresses.yml +5 -5
  183. data/db/demo/campaigns.yml +2 -2
  184. data/db/demo/comments.yml +1 -1
  185. data/db/demo/contacts.yml +8 -8
  186. data/db/demo/emails.yml +5 -5
  187. data/db/demo/leads.yml +10 -10
  188. data/db/demo/opportunities.yml +2 -2
  189. data/db/demo/tasks.yml +2 -2
  190. data/db/demo/users.yml +12 -16
  191. data/db/migrate/20100928030598_create_sessions.rb +1 -2
  192. data/db/migrate/20100928030599_create_users.rb +24 -25
  193. data/db/migrate/20100928030600_create_openid_tables.rb +11 -12
  194. data/db/migrate/20100928030601_create_accounts.rb +14 -15
  195. data/db/migrate/20100928030602_create_permissions.rb +2 -3
  196. data/db/migrate/20100928030603_create_settings.rb +4 -5
  197. data/db/migrate/20100928030604_create_preferences.rb +3 -4
  198. data/db/migrate/20100928030605_create_campaigns.rb +19 -20
  199. data/db/migrate/20100928030606_create_leads.rb +26 -27
  200. data/db/migrate/20100928030607_create_contacts.rb +26 -27
  201. data/db/migrate/20100928030608_create_opportunities.rb +15 -16
  202. data/db/migrate/20100928030609_create_account_contacts.rb +2 -3
  203. data/db/migrate/20100928030610_create_account_opportunities.rb +2 -3
  204. data/db/migrate/20100928030611_create_contact_opportunities.rb +3 -4
  205. data/db/migrate/20100928030612_create_tasks.rb +14 -15
  206. data/db/migrate/20100928030613_create_comments.rb +6 -7
  207. data/db/migrate/20100928030614_create_activities.rb +6 -7
  208. data/db/migrate/20100928030615_create_avatars.rb +5 -6
  209. data/db/migrate/20100928030616_rename_remember_token.rb +0 -1
  210. data/db/migrate/20100928030617_drop_openid_tables.rb +11 -11
  211. data/db/migrate/20100928030618_add_admin_to_users.rb +1 -2
  212. data/db/migrate/20100928030619_add_suspended_to_users.rb +0 -1
  213. data/db/migrate/20100928030620_remove_uuid.rb +3 -3
  214. data/db/migrate/20100928030621_add_email_to_accounts.rb +1 -2
  215. data/db/migrate/20100928030622_add_background_info_to_models.rb +0 -1
  216. data/db/migrate/20100928030623_create_addresses.rb +14 -16
  217. data/db/migrate/20100928030624_add_index_on_permissions.rb +2 -3
  218. data/db/migrate/20100928030625_create_emails.rb +15 -16
  219. data/db/migrate/20100928030626_add_state_to_timeline_objects.rb +2 -3
  220. data/db/migrate/20100928030627_acts_as_taggable_on_migration.rb +2 -3
  221. data/db/migrate/20101221123456_add_single_access_token_to_users.rb +0 -1
  222. data/db/migrate/20101221345678_add_rating_and_category_to_accounts.rb +2 -3
  223. data/db/migrate/20110719082054_add_skype_to_contacts_and_leads.rb +2 -3
  224. data/db/migrate/20111101083437_create_fields.rb +14 -15
  225. data/db/migrate/20111101090312_create_field_groups.rb +4 -5
  226. data/db/migrate/20111116091952_add_field_groups_tag_id.rb +0 -1
  227. data/db/migrate/20111117041311_change_fields_collection_to_text.rb +0 -1
  228. data/db/migrate/20111201030535_add_field_groups_klass_name.rb +4 -4
  229. data/db/migrate/20120121054235_create_lists.rb +1 -1
  230. data/db/migrate/20120216031616_create_versions.rb +5 -5
  231. data/db/migrate/20120216042541_is_paranoid_to_paper_trail.rb +1 -3
  232. data/db/migrate/20120224073107_remove_default_value_and_clear_settings.rb +1 -1
  233. data/db/migrate/20120316045804_activities_to_versions.rb +6 -6
  234. data/db/migrate/20120405080727_change_subscribed_users_to_set.rb +5 -5
  235. data/db/migrate/20120405080742_change_further_subscribed_users_to_set.rb +5 -5
  236. data/db/migrate/20120406082136_create_groups.rb +1 -1
  237. data/db/migrate/20120510025219_add_not_null_constraints_for_timestamp_columns.rb +2 -1
  238. data/db/migrate/20120528102124_increase_length_of_version_events.rb +2 -2
  239. data/db/migrate/20121003063155_add_settings_to_custom_fields.rb +1 -1
  240. data/db/migrate/20121221033947_fix_country_mapping.rb +0 -1
  241. data/db/migrate/20131207033244_add_user_id_to_lists.rb +1 -1
  242. data/db/migrate/20141126031837_increase_email_to254_chars.rb +14 -14
  243. data/db/migrate/20141230021159_add_transaction_id_column_to_versions.rb +11 -0
  244. data/db/migrate/20141230205453_add_missing_unique_indices.acts_as_taggable_on_engine.rb +20 -0
  245. data/db/migrate/20141230205454_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
  246. data/db/migrate/20141230205455_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
  247. data/db/migrate/20150123060900_convert_radio_to_radio_buttons.rb +10 -0
  248. data/db/migrate/20150227123054_remove_last_request_at_from_users.rb +5 -0
  249. data/db/migrate/20150427131956_create_index_related_type.rb +9 -0
  250. data/db/migrate/20160511053730_add_account_contacts_index.rb +5 -0
  251. data/db/schema.rb +236 -228
  252. data/db/seeds.rb +1 -2
  253. data/db/seeds/fields.rb +36 -37
  254. data/{fig.yml → docker-compose.yml} +0 -0
  255. data/fat_free_crm.gemspec +31 -18
  256. data/lib/development_tasks/license.rake +29 -29
  257. data/lib/fat_free_crm.rb +1 -5
  258. data/lib/fat_free_crm/callback.rb +28 -20
  259. data/lib/fat_free_crm/comment_extensions.rb +1 -1
  260. data/lib/fat_free_crm/core_ext.rb +1 -1
  261. data/lib/fat_free_crm/core_ext/nil.rb +0 -3
  262. data/lib/fat_free_crm/core_ext/string.rb +7 -21
  263. data/lib/fat_free_crm/custom_fields.rb +2 -2
  264. data/lib/fat_free_crm/engine.rb +14 -0
  265. data/lib/fat_free_crm/errors.rb +0 -2
  266. data/lib/fat_free_crm/exceptions.rb +3 -4
  267. data/lib/fat_free_crm/export_csv.rb +0 -2
  268. data/lib/fat_free_crm/exportable.rb +5 -7
  269. data/lib/fat_free_crm/fields.rb +7 -8
  270. data/lib/fat_free_crm/gem_dependencies.rb +4 -1
  271. data/lib/fat_free_crm/gem_ext/active_record/schema_dumper.rb +2 -2
  272. data/lib/fat_free_crm/gem_ext/active_support/buffered_logger.rb +0 -3
  273. data/lib/fat_free_crm/gem_ext/rails/engine.rb +5 -12
  274. data/lib/fat_free_crm/gem_ext/rake/task.rb +1 -1
  275. data/lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb +1 -2
  276. data/lib/fat_free_crm/i18n.rb +2 -3
  277. data/lib/fat_free_crm/load_settings.rb +0 -2
  278. data/lib/fat_free_crm/mail_processor/base.rb +15 -16
  279. data/lib/fat_free_crm/mail_processor/comment_replies.rb +5 -10
  280. data/lib/fat_free_crm/mail_processor/dropbox.rb +56 -59
  281. data/lib/fat_free_crm/permissions.rb +18 -15
  282. data/lib/fat_free_crm/renderers.rb +2 -2
  283. data/lib/fat_free_crm/secret_token_generator.rb +3 -9
  284. data/lib/fat_free_crm/sortable.rb +4 -8
  285. data/lib/fat_free_crm/version.rb +2 -2
  286. data/lib/fat_free_crm/view_factory.rb +3 -8
  287. data/lib/gravatar_image_tag.rb +19 -24
  288. data/lib/missing_translation_detector.rb +10 -10
  289. data/lib/tasks/ffcrm/comment_replies.rake +3 -5
  290. data/lib/tasks/ffcrm/config.rake +3 -5
  291. data/lib/tasks/ffcrm/demo.rake +14 -16
  292. data/lib/tasks/ffcrm/dropbox.rake +3 -5
  293. data/lib/tasks/ffcrm/missing_translations.rake +1 -1
  294. data/lib/tasks/ffcrm/secret.rake +1 -3
  295. data/lib/tasks/ffcrm/settings.rake +2 -4
  296. data/lib/tasks/ffcrm/setup.rake +3 -6
  297. data/lib/tasks/ffcrm/update_data.rake +110 -116
  298. data/spec/controllers/admin/groups_controller_spec.rb +0 -1
  299. data/spec/controllers/admin/users_controller_spec.rb +98 -102
  300. data/spec/controllers/applications_controller_spec.rb +17 -21
  301. data/spec/controllers/authentications_controller_spec.rb +57 -61
  302. data/spec/controllers/comments_controller_spec.rb +32 -39
  303. data/spec/controllers/emails_controller_spec.rb +6 -7
  304. data/spec/controllers/entities/accounts_controller_spec.rb +204 -214
  305. data/spec/controllers/entities/campaigns_controller_spec.rb +210 -224
  306. data/spec/controllers/entities/contacts_controller_spec.rb +250 -270
  307. data/spec/controllers/entities/leads_controller_spec.rb +415 -438
  308. data/spec/controllers/entities/opportunities_controller_spec.rb +344 -359
  309. data/spec/controllers/entities_controller_spec.rb +10 -14
  310. data/spec/controllers/home_controller_spec.rb +85 -92
  311. data/spec/controllers/lists_controller_spec.rb +0 -1
  312. data/spec/controllers/passwords_controller_spec.rb +5 -9
  313. data/spec/controllers/tasks_controller_spec.rb +193 -210
  314. data/spec/controllers/users_controller_spec.rb +137 -146
  315. data/spec/factories/account_factories.rb +11 -13
  316. data/spec/factories/campaign_factories.rb +6 -6
  317. data/spec/factories/contact_factories.rb +21 -22
  318. data/spec/factories/field_factories.rb +8 -10
  319. data/spec/factories/lead_factories.rb +16 -16
  320. data/spec/factories/list_factories.rb +2 -2
  321. data/spec/factories/opportunity_factories.rb +8 -10
  322. data/spec/factories/sequences.rb +8 -9
  323. data/spec/factories/setting_factories.rb +2 -2
  324. data/spec/factories/shared_factories.rb +26 -30
  325. data/spec/factories/tag_factories.rb +1 -1
  326. data/spec/factories/task_factories.rb +11 -11
  327. data/spec/factories/user_factories.rb +22 -27
  328. data/spec/features/acceptance_helper.rb +1 -1
  329. data/spec/features/accounts_spec.rb +65 -61
  330. data/spec/features/admin/groups_spec.rb +11 -12
  331. data/spec/features/admin/users_spec.rb +17 -19
  332. data/spec/features/campaigns_spec.rb +61 -57
  333. data/spec/features/contacts_spec.rb +90 -59
  334. data/spec/features/dashboard_spec.rb +20 -21
  335. data/spec/features/leads_spec.rb +88 -67
  336. data/spec/features/opportunities_overview_spec.rb +31 -31
  337. data/spec/features/opportunities_spec.rb +64 -60
  338. data/spec/features/support/browser.rb +2 -2
  339. data/spec/features/support/headless.rb +1 -1
  340. data/spec/features/support/helpers.rb +5 -6
  341. data/spec/features/support/paths.rb +1 -2
  342. data/spec/features/support/selector_helpers.rb +2 -2
  343. data/spec/features/tasks_spec.rb +60 -54
  344. data/spec/helpers/accounts_helper_spec.rb +2 -5
  345. data/spec/helpers/admin/field_groups_helper_spec.rb +4 -4
  346. data/spec/helpers/admin/plugins_helper_spec.rb +0 -1
  347. data/spec/helpers/admin/settings_helper_spec.rb +0 -1
  348. data/spec/helpers/admin/users_helper_spec.rb +0 -1
  349. data/spec/helpers/application_helper_spec.rb +30 -33
  350. data/spec/helpers/authentications_helper_spec.rb +2 -5
  351. data/spec/helpers/campaigns_helper_spec.rb +2 -5
  352. data/spec/helpers/comments_helper_spec.rb +2 -5
  353. data/spec/helpers/contacts_helper_spec.rb +2 -5
  354. data/spec/helpers/emails_helper_spec.rb +0 -1
  355. data/spec/helpers/fields_helper_spec.rb +0 -1
  356. data/spec/helpers/groups_helper_spec.rb +0 -1
  357. data/spec/helpers/home_helper_spec.rb +2 -5
  358. data/spec/helpers/leads_helper_spec.rb +2 -5
  359. data/spec/helpers/lists_helper_spec.rb +0 -1
  360. data/spec/helpers/opportunities_helper_spec.rb +2 -5
  361. data/spec/helpers/passwords_helper_spec.rb +2 -5
  362. data/spec/helpers/tasks_helper_spec.rb +1 -5
  363. data/spec/helpers/users_helper_spec.rb +9 -11
  364. data/spec/lib/comment_extensions_spec.rb +3 -3
  365. data/spec/lib/core_ext/string_spec.rb +1 -1
  366. data/spec/lib/errors_spec.rb +10 -10
  367. data/spec/lib/fields_spec.rb +23 -33
  368. data/spec/lib/mail_processor/base_spec.rb +41 -43
  369. data/spec/lib/mail_processor/comment_replies_spec.rb +17 -17
  370. data/spec/lib/mail_processor/dropbox_spec.rb +91 -95
  371. data/spec/lib/mail_processor/sample_emails/dropbox.rb +13 -14
  372. data/spec/lib/permissions_spec.rb +44 -47
  373. data/spec/lib/secret_token_generator_spec.rb +16 -28
  374. data/spec/lib/view_factory_spec.rb +18 -24
  375. data/spec/mailers/subscription_mailer_spec.rb +14 -16
  376. data/spec/mailers/user_mailer_spec.rb +33 -34
  377. data/spec/models/entities/account_contact_spec.rb +2 -3
  378. data/spec/models/entities/account_opportunity_spec.rb +2 -3
  379. data/spec/models/entities/account_spec.rb +52 -59
  380. data/spec/models/entities/campaign_spec.rb +32 -39
  381. data/spec/models/entities/contact_opportunity_spec.rb +2 -3
  382. data/spec/models/entities/contact_spec.rb +71 -72
  383. data/spec/models/entities/lead_spec.rb +15 -22
  384. data/spec/models/entities/opportunity_spec.rb +104 -103
  385. data/spec/models/fields/custom_field_date_pair_spec.rb +38 -44
  386. data/spec/models/fields/custom_field_pair_spec.rb +28 -36
  387. data/spec/models/fields/custom_field_spec.rb +50 -56
  388. data/spec/models/fields/field_group_spec.rb +1 -2
  389. data/spec/models/fields/field_spec.rb +13 -15
  390. data/spec/models/list_spec.rb +4 -4
  391. data/spec/models/observers/entity_observer_spec.rb +18 -21
  392. data/spec/models/polymorphic/address_spec.rb +1 -3
  393. data/spec/models/polymorphic/avatar_spec.rb +6 -8
  394. data/spec/models/polymorphic/comment_spec.rb +7 -9
  395. data/spec/models/polymorphic/email_spec.rb +1 -2
  396. data/spec/models/polymorphic/task_spec.rb +130 -142
  397. data/spec/models/polymorphic/version_spec.rb +84 -91
  398. data/spec/models/setting_spec.rb +17 -19
  399. data/spec/models/users/abilities/user_ability_spec.rb +25 -20
  400. data/spec/models/users/authentication_spec.rb +0 -1
  401. data/spec/models/users/group_spec.rb +0 -1
  402. data/spec/models/users/permission_spec.rb +12 -13
  403. data/spec/models/users/preference_spec.rb +15 -15
  404. data/spec/models/users/user_spec.rb +53 -55
  405. data/spec/routing/accounts_routing_spec.rb +12 -14
  406. data/spec/routing/admin/users_routing_spec.rb +7 -9
  407. data/spec/routing/campaigns_routing_spec.rb +13 -14
  408. data/spec/routing/comments_routing_spec.rb +5 -6
  409. data/spec/routing/contacts_routing_spec.rb +12 -14
  410. data/spec/routing/emails_routing_spec.rb +7 -8
  411. data/spec/routing/leads_routing_spec.rb +19 -21
  412. data/spec/routing/opportunities_routing_spec.rb +13 -15
  413. data/spec/routing/tasks_routing_spec.rb +14 -15
  414. data/spec/routing/users_routing_spec.rb +18 -19
  415. data/spec/shared/controllers.rb +35 -35
  416. data/spec/shared/models.rb +52 -55
  417. data/spec/spec_helper.rb +21 -42
  418. data/spec/support/assert_select.rb +19 -18
  419. data/spec/support/auth_macros.rb +3 -3
  420. data/spec/support/macros.rb +5 -6
  421. data/spec/support/mail_processor_mocks.rb +11 -11
  422. data/spec/views/accounts/_edit.haml_spec.rb +9 -9
  423. data/spec/views/accounts/_new.haml_spec.rb +8 -9
  424. data/spec/views/accounts/create.js.haml_spec.rb +11 -12
  425. data/spec/views/accounts/destroy.js.haml_spec.rb +6 -7
  426. data/spec/views/accounts/edit.js.haml_spec.rb +12 -13
  427. data/spec/views/accounts/index.haml_spec.rb +8 -8
  428. data/spec/views/accounts/index.js.haml_spec.rb +7 -8
  429. data/spec/views/accounts/new.js.haml_spec.rb +7 -8
  430. data/spec/views/accounts/show.haml_spec.rb +11 -12
  431. data/spec/views/accounts/update.js.haml_spec.rb +18 -18
  432. data/spec/views/admin/field_groups/create.js.haml_spec.rb +8 -10
  433. data/spec/views/admin/field_groups/destroy.js.haml_spec.rb +7 -9
  434. data/spec/views/admin/field_groups/edit.js.haml_spec.rb +5 -7
  435. data/spec/views/admin/field_groups/new.js.haml_spec.rb +6 -8
  436. data/spec/views/admin/field_groups/update.js.haml_spec.rb +7 -9
  437. data/spec/views/admin/users/_create.haml_spec.rb +4 -4
  438. data/spec/views/admin/users/create.js.haml_spec.rb +8 -9
  439. data/spec/views/admin/users/destroy.js.haml_spec.rb +6 -6
  440. data/spec/views/admin/users/edit.js.haml_spec.rb +7 -9
  441. data/spec/views/admin/users/index.haml_spec.rb +4 -5
  442. data/spec/views/admin/users/index.js.haml_spec.rb +6 -8
  443. data/spec/views/admin/users/new.js.haml_spec.rb +4 -6
  444. data/spec/views/admin/users/reactivate.js.haml_spec.rb +4 -4
  445. data/spec/views/admin/users/show.haml_spec.rb +0 -1
  446. data/spec/views/admin/users/suspend.js.haml_spec.rb +4 -4
  447. data/spec/views/admin/users/update.js.haml_spec.rb +6 -7
  448. data/spec/views/application/auto_complete.haml_spec.rb +12 -14
  449. data/spec/views/authentications/new.haml_spec.rb +6 -7
  450. data/spec/views/campaigns/_edit.haml_spec.rb +9 -9
  451. data/spec/views/campaigns/_new.haml_spec.rb +8 -8
  452. data/spec/views/campaigns/create.js.haml_spec.rb +11 -12
  453. data/spec/views/campaigns/destroy.js.haml_spec.rb +7 -8
  454. data/spec/views/campaigns/edit.js.haml_spec.rb +12 -20
  455. data/spec/views/campaigns/index.haml_spec.rb +6 -7
  456. data/spec/views/campaigns/index.js.haml_spec.rb +9 -10
  457. data/spec/views/campaigns/new.js.haml_spec.rb +7 -8
  458. data/spec/views/campaigns/show.haml_spec.rb +12 -13
  459. data/spec/views/campaigns/update.js.haml_spec.rb +16 -16
  460. data/spec/views/comments/edit.js.haml_spec.rb +7 -7
  461. data/spec/views/contacts/_edit.haml_spec.rb +21 -21
  462. data/spec/views/contacts/_new.haml_spec.rb +12 -13
  463. data/spec/views/contacts/create.js.haml_spec.rb +12 -13
  464. data/spec/views/contacts/destroy.js.haml_spec.rb +6 -7
  465. data/spec/views/contacts/edit.js.haml_spec.rb +15 -17
  466. data/spec/views/contacts/index.haml_spec.rb +6 -7
  467. data/spec/views/contacts/index.js.html_spec.rb +7 -8
  468. data/spec/views/contacts/new.js.haml_spec.rb +8 -9
  469. data/spec/views/contacts/show.haml_spec.rb +9 -10
  470. data/spec/views/contacts/update.js.haml_spec.rb +26 -26
  471. data/spec/views/home/index.haml_spec.rb +4 -5
  472. data/spec/views/home/index.js.haml_spec.rb +6 -7
  473. data/spec/views/home/options.js.haml_spec.rb +10 -10
  474. data/spec/views/leads/_convert.haml_spec.rb +5 -6
  475. data/spec/views/leads/_edit.haml_spec.rb +13 -13
  476. data/spec/views/leads/_new.haml_spec.rb +11 -11
  477. data/spec/views/leads/_sidebar_show.haml_spec.rb +9 -9
  478. data/spec/views/leads/convert.js.haml_spec.rb +16 -17
  479. data/spec/views/leads/create.js.haml_spec.rb +16 -17
  480. data/spec/views/leads/destroy.js.haml_spec.rb +10 -11
  481. data/spec/views/leads/edit.js.haml_spec.rb +16 -17
  482. data/spec/views/leads/index.haml_spec.rb +7 -8
  483. data/spec/views/leads/index.js.haml_spec.rb +10 -11
  484. data/spec/views/leads/new.js.haml_spec.rb +8 -9
  485. data/spec/views/leads/promote.js.haml_spec.rb +30 -31
  486. data/spec/views/leads/reject.js.haml_spec.rb +10 -11
  487. data/spec/views/leads/show.haml_spec.rb +7 -8
  488. data/spec/views/leads/update.js.haml_spec.rb +28 -29
  489. data/spec/views/opportunities/_edit.haml_spec.rb +19 -19
  490. data/spec/views/opportunities/_new.haml_spec.rb +10 -10
  491. data/spec/views/opportunities/create.js.haml_spec.rb +19 -20
  492. data/spec/views/opportunities/destroy.js.haml_spec.rb +14 -15
  493. data/spec/views/opportunities/edit.js.haml_spec.rb +14 -16
  494. data/spec/views/opportunities/index.haml_spec.rb +6 -7
  495. data/spec/views/opportunities/index.js.haml_spec.rb +7 -8
  496. data/spec/views/opportunities/new.js.haml_spec.rb +8 -9
  497. data/spec/views/opportunities/show.haml_spec.rb +9 -10
  498. data/spec/views/opportunities/update.js.haml_spec.rb +35 -35
  499. data/spec/views/tasks/_edit.haml_spec.rb +9 -9
  500. data/spec/views/tasks/complete.js.haml_spec.rb +11 -12
  501. data/spec/views/tasks/create.js.haml_spec.rb +29 -31
  502. data/spec/views/tasks/destroy.js.haml_spec.rb +8 -8
  503. data/spec/views/tasks/edit.js.haml_spec.rb +12 -15
  504. data/spec/views/tasks/index.haml_spec.rb +7 -7
  505. data/spec/views/tasks/new.js.haml_spec.rb +7 -8
  506. data/spec/views/tasks/uncomplete.js.haml_spec.rb +6 -6
  507. data/spec/views/tasks/update.js.haml_spec.rb +41 -44
  508. data/spec/views/users/avatar.js.haml_spec.rb +7 -8
  509. data/spec/views/users/change_password.js.haml_spec.rb +9 -10
  510. data/spec/views/users/edit.js.haml_spec.rb +7 -8
  511. data/spec/views/users/password.js.haml_spec.rb +8 -9
  512. data/spec/views/users/update.js.haml_spec.rb +6 -7
  513. data/spec/views/users/upload_avatar.js.haml_spec.rb +9 -9
  514. data/vendor/assets/javascripts/jquery_timeago/index.js +2 -0
  515. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.es-CL.js +18 -0
  516. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.nl.js +20 -0
  517. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-es-CL.js +20 -0
  518. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-es-CL.js +23 -0
  519. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-nl.js +21 -0
  520. data/vendor/assets/stylesheets/{jquery-ui.custom.css → jquery-ui.custom.scss} +52 -51
  521. data/vendor/gems/globby-0.1.2/LICENSE.txt +20 -0
  522. data/vendor/gems/globby-0.1.2/README.md +65 -0
  523. data/vendor/gems/globby-0.1.2/Rakefile +9 -0
  524. data/vendor/gems/globby-0.1.2/lib/globby.rb +47 -0
  525. data/vendor/gems/globby-0.1.2/lib/globby/glob.rb +90 -0
  526. data/vendor/gems/globby-0.1.2/lib/globby/globject.rb +18 -0
  527. data/vendor/gems/globby-0.1.2/lib/globby/result.rb +20 -0
  528. data/vendor/gems/globby-0.1.2/spec/gitignore_spec.rb +109 -0
  529. data/vendor/gems/globby-0.1.2/spec/globby_spec.rb +93 -0
  530. metadata +177 -55
  531. data/Gemfile.ci +0 -13
  532. data/config/initializers/sass.rb +0 -18
  533. data/lib/country_select.rb +0 -570
  534. data/lib/fat_free_crm/plugin.rb +0 -94
@@ -5,94 +5,125 @@
5
5
  #------------------------------------------------------------------------------
6
6
  require File.expand_path("../acceptance_helper.rb", __FILE__)
7
7
 
8
- feature 'Contacts', %q{
8
+ feature 'Contacts', '
9
9
  In order to increase customer satisfaction
10
10
  As a user
11
11
  I want to manage contacts
12
- } do
13
12
 
13
+ ' do
14
14
  before :each do
15
- do_login_if_not_already(:first_name => "Bill", :last_name => "Murray")
15
+ do_login_if_not_already(first_name: "Bill", last_name: "Murray")
16
16
  end
17
17
 
18
18
  scenario 'should view a list of contacts' do
19
- 4.times { |i| FactoryGirl.create(:contact, :first_name => "Test", :last_name => "Subject \##{i}") }
19
+ 4.times { |i| FactoryGirl.create(:contact, first_name: "Test", last_name: "Subject \##{i}") }
20
20
  visit contacts_page
21
- page.should have_content('Test Subject #0')
22
- page.should have_content('Test Subject #1')
23
- page.should have_content('Test Subject #2')
24
- page.should have_content('Test Subject #3')
25
- page.should have_content('Create Contact')
21
+ expect(contacts_element).to have_content('Test Subject #0')
22
+ expect(contacts_element).to have_content('Test Subject #1')
23
+ expect(contacts_element).to have_content('Test Subject #2')
24
+ expect(contacts_element).to have_content('Test Subject #3')
25
+ expect(page).to have_content('Create Contact')
26
26
  end
27
27
 
28
- scenario 'should create a contact', :js => true do
29
- visit contacts_page
30
- click_link 'Create Contact'
31
- page.should have_selector('#contact_first_name', :visible => true)
32
- fill_in 'contact_first_name', :with => 'Testy'
33
- fill_in 'contact_last_name', :with => 'McTest'
34
- fill_in 'contact_email', :with => "testy.mctest@example.com"
35
- fill_in 'contact_phone', :with => '+44 1234 567890'
36
- click_link 'Comment'
37
- fill_in 'comment_body', :with => 'This is a very important person.'
38
- click_button 'Create Contact'
39
- find('div#contacts').should have_content('Testy McTest')
40
- find('div#contacts').click_link 'Testy McTest'
41
- page.should have_content('This is a very important person.')
42
- click_link "Dashboard"
43
- page.should have_content('Bill Murray created contact Testy McTest')
44
- page.should have_content('Bill Murray created comment on Testy McTest')
28
+ scenario 'should create a contact', js: true do
29
+ with_versioning do
30
+ visit contacts_page
31
+ click_link 'Create Contact'
32
+ expect(page).to have_selector('#contact_first_name', visible: true)
33
+ fill_in 'contact_first_name', with: 'Testy'
34
+ fill_in 'contact_last_name', with: 'McTest'
35
+ fill_in 'contact_email', with: "testy.mctest@example.com"
36
+ fill_in 'contact_phone', with: '+44 1234 567890'
37
+ click_link 'Comment'
38
+ fill_in 'comment_body', with: 'This is a very important person.'
39
+ click_button 'Create Contact'
40
+ expect(contacts_element).to have_content('Testy McTest')
41
+
42
+ contacts_element.click_link 'Testy McTest'
43
+ expect(main_element).to have_content('This is a very important person.')
44
+
45
+ click_link "Dashboard"
46
+ expect(activities_element).to have_content('Bill Murray created contact Testy McTest')
47
+ expect(activities_element).to have_content('Bill Murray created comment on Testy McTest')
48
+ end
45
49
  end
46
50
 
47
- scenario "remembers the comment field when the creation was unsuccessful", :js => true do
51
+ scenario "remembers the comment field when the creation was unsuccessful", js: true do
48
52
  visit contacts_page
49
53
  click_link 'Create Contact'
50
54
 
51
55
  click_link 'Comment'
52
- fill_in 'comment_body', :with => 'This is a very important person.'
56
+ fill_in 'comment_body', with: 'This is a very important person.'
53
57
  click_button 'Create Contact'
54
58
 
55
- page.should have_field("comment_body", :with => 'This is a very important person.')
59
+ expect(page).to have_field("comment_body", with: 'This is a very important person.')
56
60
  end
57
61
 
58
- scenario 'should view and edit a contact', :js => true do
59
- FactoryGirl.create(:contact, :first_name => "Testy", :last_name => "McTest")
60
- visit contacts_page
61
- click_link 'Testy McTest'
62
- click_link 'Edit'
63
- fill_in 'contact_first_name', :with => 'Test'
64
- fill_in 'contact_last_name', :with => 'Subject'
65
- fill_in 'contact_email', :with => "test.subject@example.com"
66
- click_button 'Save Contact'
67
- page.should have_content('Test Subject')
68
- click_link 'Dashboard'
69
- page.should have_content("Bill Murray updated contact Test Subject")
62
+ scenario 'should view and edit a contact', js: true do
63
+ FactoryGirl.create(:contact, first_name: "Testy", last_name: "McTest")
64
+ with_versioning do
65
+ visit contacts_page
66
+ click_link 'Testy McTest'
67
+ click_link 'Edit'
68
+ fill_in 'contact_first_name', with: 'Test'
69
+ fill_in 'contact_last_name', with: 'Subject'
70
+ fill_in 'contact_email', with: "test.subject@example.com"
71
+ click_button 'Save Contact'
72
+ expect(summary_element).to have_content('Test Subject')
73
+
74
+ click_link 'Dashboard'
75
+ expect(activities_element).to have_content("Bill Murray updated contact Test Subject")
76
+ end
70
77
  end
71
78
 
72
- scenario 'should delete a contact', :js => true do
73
- FactoryGirl.create(:contact, :first_name => "Test", :last_name => "Subject")
79
+ scenario 'should delete a contact', js: true do
80
+ FactoryGirl.create(:contact, first_name: "Test", last_name: "Subject")
74
81
  visit contacts_page
75
82
  click_link 'Test Subject'
76
83
  click_link 'Delete?'
77
- page.should have_content('Are you sure you want to delete this contact?')
84
+ expect(menu_element).to have_content('Are you sure you want to delete this contact?')
78
85
  click_link 'Yes'
79
- page.should have_content('Test Subject has been deleted.')
80
- page.should_not have_content('Test Subject')
86
+ expect(flash_element).to have_content('Test Subject has been deleted.')
87
+ expect(contacts_element).not_to have_content('Test Subject')
81
88
  end
82
89
 
83
- scenario 'should search for a contact', :js => true do
84
- 2.times { |i| FactoryGirl.create(:contact, :first_name => "Test", :last_name => "Subject \##{i}") }
90
+ scenario 'should search for a contact', js: true do
91
+ 2.times { |i| FactoryGirl.create(:contact, first_name: "Test", last_name: "Subject \##{i}") }
85
92
  visit contacts_page
86
- find('#contacts').should have_content('Test Subject #0')
87
- find('#contacts').should have_content('Test Subject #1')
88
- fill_in 'query', :with => 'Test Subject #1'
89
- find('#contacts').should have_content('Test Subject #1')
90
- find('#contacts').should_not have_content('Test Subject #0')
91
- fill_in 'query', :with => 'Test Subject'
92
- find('#contacts').should have_content('Test Subject #0')
93
- find('#contacts').should have_content('Test Subject #1')
94
- fill_in 'query', :with => "Fake contact"
95
- find('#contacts').should_not have_content('Test Subject #0')
96
- find('#contacts').should_not have_content('Test Subject #1')
93
+ expect(contacts_element).to have_content('Test Subject #0')
94
+ expect(contacts_element).to have_content('Test Subject #1')
95
+ fill_in 'query', with: 'Test Subject #1'
96
+ expect(contacts_element).to have_content('Test Subject #1')
97
+ expect(contacts_element).not_to have_content('Test Subject #0')
98
+ fill_in 'query', with: 'Test Subject'
99
+ expect(contacts_element).to have_content('Test Subject #0')
100
+ expect(contacts_element).to have_content('Test Subject #1')
101
+ fill_in 'query', with: "Fake contact"
102
+ expect(contacts_element).not_to have_content('Test Subject #0')
103
+ expect(contacts_element).not_to have_content('Test Subject #1')
104
+ end
105
+
106
+ def main_element
107
+ find('#main')
108
+ end
109
+
110
+ def summary_element
111
+ find('#summary')
112
+ end
113
+
114
+ def menu_element
115
+ find('#menu')
116
+ end
117
+
118
+ def flash_element
119
+ find('#flash')
120
+ end
121
+
122
+ def contacts_element
123
+ find('#contacts')
124
+ end
125
+
126
+ def activities_element
127
+ find('#activities')
97
128
  end
98
129
  end
@@ -5,63 +5,62 @@
5
5
  #------------------------------------------------------------------------------
6
6
  require File.expand_path("../acceptance_helper.rb", __FILE__)
7
7
 
8
- feature 'Dashboard', %q{
8
+ feature 'Dashboard', '
9
9
  In order to monitor activity
10
10
  As a user
11
11
  I want to see a dashboard
12
- } do
13
12
 
13
+ ' do
14
14
  background do
15
15
  @me = FactoryGirl.create(:user)
16
16
  login_as_user(@me)
17
17
 
18
- FactoryGirl.create(:task, :name => 'Do your homework!', :assignee => @me)
19
- FactoryGirl.create(:opportunity, :name => 'Work with the Dolphins', :assignee => @me, :stage => 'proposal')
20
- FactoryGirl.create(:account, :name => 'Dolphin Manufacturer', :assignee => @me)
18
+ FactoryGirl.create(:task, name: 'Do your homework!', assignee: @me)
19
+ FactoryGirl.create(:opportunity, name: 'Work with the Dolphins', assignee: @me, stage: 'proposal')
20
+ FactoryGirl.create(:account, name: 'Dolphin Manufacturer', assignee: @me)
21
21
  end
22
22
 
23
23
  scenario "Viewing my dashboard" do
24
24
  visit homepage
25
25
 
26
- #My Tasks
26
+ # My Tasks
27
27
  within "#tasks" do
28
- page.should have_content("Do your homework!")
28
+ expect(page).to have_content("Do your homework!")
29
29
  end
30
30
 
31
- #My Opportunities
31
+ # My Opportunities
32
32
  within "#opportunities" do
33
- page.should have_content("Work with the Dolphins")
33
+ expect(page).to have_content("Work with the Dolphins")
34
34
  end
35
35
 
36
- #My Accounts
36
+ # My Accounts
37
37
  within "#accounts" do
38
- page.should have_content("Dolphin Manufacturer")
38
+ expect(page).to have_content("Dolphin Manufacturer")
39
39
  end
40
40
  end
41
41
 
42
42
  scenario "Only show a maximum of 10 entities" do
43
43
  10.times do
44
- FactoryGirl.create(:task, :assignee => @me)
45
- FactoryGirl.create(:opportunity, :assignee => @me, :stage => 'proposal')
46
- FactoryGirl.create(:account, :assignee => @me)
44
+ FactoryGirl.create(:task, assignee: @me)
45
+ FactoryGirl.create(:opportunity, assignee: @me, stage: 'proposal')
46
+ FactoryGirl.create(:account, assignee: @me)
47
47
  end
48
48
 
49
49
  visit homepage
50
50
 
51
- #My Tasks
51
+ # My Tasks
52
52
  within "#tasks" do
53
- page.should have_content("Not showing 1 hidden task.")
53
+ expect(page).to have_content("Not showing 1 hidden task.")
54
54
  end
55
55
 
56
- #My Opportunities
56
+ # My Opportunities
57
57
  within "#opportunities" do
58
- page.should have_content("Not showing 1 hidden opportunity.")
58
+ expect(page).to have_content("Not showing 1 hidden opportunity.")
59
59
  end
60
60
 
61
- #My Accounts
61
+ # My Accounts
62
62
  within "#accounts" do
63
- page.should have_content("Not showing 1 hidden account.")
63
+ expect(page).to have_content("Not showing 1 hidden account.")
64
64
  end
65
-
66
65
  end
67
66
  end
@@ -5,104 +5,125 @@
5
5
  #------------------------------------------------------------------------------
6
6
  require File.expand_path("../acceptance_helper.rb", __FILE__)
7
7
 
8
- feature 'Leads', %q{
8
+ feature 'Leads', '
9
9
  In order to increase sales
10
10
  As a user
11
11
  I want to manage leads
12
- } do
13
12
 
13
+ ' do
14
14
  before(:each) do
15
- do_login_if_not_already(:first_name => 'Bill', :last_name => 'Murray')
15
+ do_login_if_not_already(first_name: 'Bill', last_name: 'Murray')
16
16
  end
17
17
 
18
18
  scenario 'should view a list of leads' do
19
- 4.times { |i| FactoryGirl.create(:lead, :first_name => "L", :last_name => "Ead #{i}") }
19
+ 4.times { |i| FactoryGirl.create(:lead, first_name: "L", last_name: "Ead #{i}") }
20
20
  visit leads_page
21
- page.should have_content('L Ead 0')
22
- page.should have_content('L Ead 1')
23
- page.should have_content('L Ead 2')
24
- page.should have_content('L Ead 3')
25
- page.should have_content('Create Lead')
21
+ expect(leads_element).to have_content('L Ead 0')
22
+ expect(leads_element).to have_content('L Ead 1')
23
+ expect(leads_element).to have_content('L Ead 2')
24
+ expect(leads_element).to have_content('L Ead 3')
25
+ expect(page).to have_content('Create Lead')
26
26
  end
27
27
 
28
- scenario 'should create a new lead', :js => true do
29
- visit leads_page
30
- click_link 'Create Lead'
31
- page.should have_selector('#lead_first_name', :visible => true)
32
- fill_in 'lead_first_name', :with => 'Mr'
33
- fill_in 'lead_last_name', :with => 'Lead'
34
- fill_in 'lead_email', :with => 'mr_lead@example.com'
35
- fill_in 'lead_phone', :with => '+44 1234 567890'
36
- click_link 'Comment'
37
- fill_in 'comment_body', :with => 'This is an important lead.'
38
- click_link('Status')
39
- select 'Contacted', :from => 'lead_status'
40
- click_button 'Create Lead'
41
- page.should have_content('Mr Lead')
28
+ scenario 'should create a new lead', js: true do
29
+ with_versioning do
30
+ visit leads_page
31
+ click_link 'Create Lead'
32
+ expect(page).to have_selector('#lead_first_name', visible: true)
33
+ fill_in 'lead_first_name', with: 'Mr'
34
+ fill_in 'lead_last_name', with: 'Lead'
35
+ fill_in 'lead_email', with: 'mr_lead@example.com'
36
+ fill_in 'lead_phone', with: '+44 1234 567890'
37
+ click_link 'Comment'
38
+ fill_in 'comment_body', with: 'This is an important lead.'
39
+ click_link('Status')
40
+ select 'Contacted', from: 'lead_status'
41
+ click_button 'Create Lead'
42
+ expect(leads_element).to have_content('Mr Lead')
42
43
 
43
- find('#leads').click_link('Mr Lead')
44
- page.should have_content('Contacted')
45
- page.should have_content('mr_lead@example.com')
46
- page.should have_content('+44 1234 567890')
47
- page.should have_content('This is an important lead.')
44
+ leads_element.click_link('Mr Lead')
45
+ expect(summary_element).to have_content('Contacted')
46
+ expect(summary_element).to have_content('mr_lead@example.com')
47
+ expect(summary_element).to have_content('+44 1234 567890')
48
+ expect(main_element).to have_content('This is an important lead.')
48
49
 
49
- click_link "Dashboard"
50
- page.should have_content("Bill Murray created lead Mr Lead")
51
- page.should have_content("Bill Murray created comment on Mr Lead")
50
+ click_link "Dashboard"
51
+ expect(activities_element).to have_content("Bill Murray created lead Mr Lead")
52
+ expect(activities_element).to have_content("Bill Murray created comment on Mr Lead")
53
+ end
52
54
  end
53
55
 
54
- scenario "remembers the comment field when the creation was unsuccessful", :js => true do
56
+ scenario "remembers the comment field when the creation was unsuccessful", js: true do
55
57
  visit leads_page
56
58
  click_link 'Create Lead'
57
59
 
58
60
  click_link 'Comment'
59
- fill_in 'comment_body', :with => 'This is an important lead.'
61
+ fill_in 'comment_body', with: 'This is an important lead.'
60
62
  click_button 'Create Lead'
61
63
 
62
- page.should have_field('comment_body', :with => 'This is an important lead.')
64
+ expect(page).to have_field('comment_body', with: 'This is an important lead.')
63
65
  end
64
66
 
65
- scenario 'should view and edit a lead', :js => true do
66
- FactoryGirl.create(:lead, :first_name => "Mr", :last_name => "Lead", :email => "mr_lead@example.com")
67
- visit leads_page
68
- click_link 'Mr Lead'
69
- page.should have_content('Mr Lead')
70
- click_link('Edit')
71
- fill_in 'lead_first_name', :with => 'Mrs'
72
- fill_in 'lead_phone', :with => '+44 0987 654321'
73
- click_link('Status')
74
- select 'Rejected', :from => 'lead_status'
75
- click_button 'Save Lead'
76
- find('#title').should have_content('Mrs Lead')
77
- click_link "Dashboard"
78
- page.should have_content("Bill Murray updated lead Mrs Lead")
67
+ scenario 'should view and edit a lead', js: true do
68
+ FactoryGirl.create(:lead, first_name: "Mr", last_name: "Lead", email: "mr_lead@example.com")
69
+ with_versioning do
70
+ visit leads_page
71
+ click_link 'Mr Lead'
72
+ expect(page).to have_content('Mr Lead')
73
+ click_link('Edit')
74
+ fill_in 'lead_first_name', with: 'Mrs'
75
+ fill_in 'lead_phone', with: '+44 0987 654321'
76
+ click_link('Status')
77
+ select 'Rejected', from: 'lead_status'
78
+ click_button 'Save Lead'
79
+ expect(summary_element).to have_content('Mrs Lead')
80
+
81
+ click_link "Dashboard"
82
+ expect(activities_element).to have_content("Bill Murray updated lead Mrs Lead")
83
+ end
79
84
  end
80
85
 
81
- scenario 'should delete a lead', :js => true do
82
- FactoryGirl.create(:lead, :first_name => "Mr", :last_name => "Lead", :email => "mr_lead@example.com")
86
+ scenario 'should delete a lead', js: true do
87
+ FactoryGirl.create(:lead, first_name: "Mr", last_name: "Lead", email: "mr_lead@example.com")
83
88
  visit leads_page
84
89
  click_link 'Mr Lead'
85
90
  click_link 'Delete?'
86
- page.should have_content('Are you sure you want to delete this lead?')
91
+ expect(page).to have_content('Are you sure you want to delete this lead?')
87
92
  click_link 'Yes'
88
- page.should have_content('Mr Lead has been deleted.')
89
- page.should_not have_content('Mr Lead')
90
- page.should_not have_content('mr_lead@example.com')
93
+ expect(page).to have_content('Mr Lead has been deleted.')
94
+ expect(page).not_to have_content('Mr Lead')
95
+ expect(page).not_to have_content('mr_lead@example.com')
91
96
  end
92
97
 
93
- scenario 'should search for a lead', :js => true do
94
- 2.times { |i| FactoryGirl.create(:lead, :first_name => "Lead", :last_name => "\##{i}", :email => "lead#{i}@example.com") }
98
+ scenario 'should search for a lead', js: true do
99
+ 2.times { |i| FactoryGirl.create(:lead, first_name: "Lead", last_name: "\##{i}", email: "lead#{i}@example.com") }
95
100
  visit leads_page
96
- find('#leads').should have_content('Lead #0')
97
- find('#leads').should have_content('Lead #1')
98
- fill_in 'query', :with => 'Lead #0'
99
- find('#leads').should have_content('Lead #0')
100
- find('#leads').should_not have_content('Lead #1')
101
- fill_in 'query', :with => 'Lead'
102
- find('#leads').should have_content('Lead #0')
103
- find('#leads').should have_content('Lead #1')
104
- fill_in 'query', :with => 'Non-existant lead'
105
- find('#leads').should_not have_content('Lead #0')
106
- find('#leads').should_not have_content('Lead #1')
101
+ expect(leads_element).to have_content('Lead #0')
102
+ expect(leads_element).to have_content('Lead #1')
103
+ fill_in 'query', with: 'Lead #0'
104
+ expect(leads_element).to have_content('Lead #0')
105
+ expect(leads_element).not_to have_content('Lead #1')
106
+ fill_in 'query', with: 'Lead'
107
+ expect(leads_element).to have_content('Lead #0')
108
+ expect(leads_element).to have_content('Lead #1')
109
+ fill_in 'query', with: 'Non-existant lead'
110
+ expect(leads_element).not_to have_content('Lead #0')
111
+ expect(leads_element).not_to have_content('Lead #1')
112
+ end
113
+
114
+ def main_element
115
+ find('#main')
116
+ end
117
+
118
+ def summary_element
119
+ find('#summary')
120
+ end
121
+
122
+ def leads_element
123
+ find('#leads')
124
+ end
125
+
126
+ def activities_element
127
+ find('#activities')
107
128
  end
108
129
  end