hssc_surveyor 1.4.1.pre

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (212) hide show
  1. data/.gitignore +28 -0
  2. data/.rspec +1 -0
  3. data/CHANGELOG.md +198 -0
  4. data/Gemfile +5 -0
  5. data/Gemfile.rails_version +19 -0
  6. data/MIT-LICENSE +20 -0
  7. data/README.md +186 -0
  8. data/Rakefile +105 -0
  9. data/app/controllers/surveyor_controller.rb +6 -0
  10. data/app/helpers/results_helper.rb +20 -0
  11. data/app/helpers/survey_form_builder.rb +37 -0
  12. data/app/helpers/surveyor_helper.rb +3 -0
  13. data/app/inputs/quiet_input.rb +5 -0
  14. data/app/inputs/surveyor_check_boxes_input.rb +35 -0
  15. data/app/inputs/surveyor_radio_input.rb +18 -0
  16. data/app/models/answer.rb +4 -0
  17. data/app/models/dependency.rb +4 -0
  18. data/app/models/dependency_condition.rb +4 -0
  19. data/app/models/question.rb +4 -0
  20. data/app/models/question_group.rb +5 -0
  21. data/app/models/response.rb +5 -0
  22. data/app/models/response_set.rb +4 -0
  23. data/app/models/survey.rb +4 -0
  24. data/app/models/survey_section.rb +5 -0
  25. data/app/models/survey_section_sweeper.rb +15 -0
  26. data/app/models/survey_translation.rb +5 -0
  27. data/app/models/validation.rb +4 -0
  28. data/app/models/validation_condition.rb +4 -0
  29. data/app/views/layouts/results.html.erb +13 -0
  30. data/app/views/layouts/surveyor_default.html.erb +12 -0
  31. data/app/views/partials/_answer.html.haml +25 -0
  32. data/app/views/partials/_dependents.html.haml +5 -0
  33. data/app/views/partials/_question.html.haml +41 -0
  34. data/app/views/partials/_question_group.html.haml +44 -0
  35. data/app/views/partials/_section.html.haml +12 -0
  36. data/app/views/partials/_section_menu.html.haml +12 -0
  37. data/app/views/surveyor/edit.html.haml +24 -0
  38. data/app/views/surveyor/export.json.rabl +85 -0
  39. data/app/views/surveyor/new.html.haml +24 -0
  40. data/app/views/surveyor/show.html.haml +74 -0
  41. data/app/views/surveyor/show.json.rabl +15 -0
  42. data/ci-exec.sh +56 -0
  43. data/config/routes.rb +8 -0
  44. data/cucumber.yml +10 -0
  45. data/doc/REPRESENTATIONS.md +34 -0
  46. data/doc/api_id_schema.json +7 -0
  47. data/doc/question types.png +0 -0
  48. data/doc/response_set_schema.json +54 -0
  49. data/doc/surveyor question combinations.png +0 -0
  50. data/doc/surveyor reject or delete decision matrix.png +0 -0
  51. data/doc/surveyor_models.png +0 -0
  52. data/doc/surveyor_models2.png +0 -0
  53. data/doc/surveyor_timestamp_schema.json +9 -0
  54. data/features/ajax_submissions.feature +140 -0
  55. data/features/export_to_json.feature +344 -0
  56. data/features/internationalization.feature +121 -0
  57. data/features/no_duplicates.feature +110 -0
  58. data/features/show_survey.feature +71 -0
  59. data/features/step_definitions/parser_steps.rb +145 -0
  60. data/features/step_definitions/surveyor_steps.rb +325 -0
  61. data/features/step_definitions/ui_steps.rb +25 -0
  62. data/features/step_definitions/web_steps.rb +225 -0
  63. data/features/support/REDCapDemoDatabase_DataDictionary.csv +127 -0
  64. data/features/support/database_cleaner.rb +16 -0
  65. data/features/support/env.rb +56 -0
  66. data/features/support/hooks.rb +4 -0
  67. data/features/support/paths.rb +39 -0
  68. data/features/support/redcap_new_headers.csv +1 -0
  69. data/features/support/redcap_siblings.csv +1 -0
  70. data/features/support/redcap_whitespace.csv +1 -0
  71. data/features/support/selectors.rb +39 -0
  72. data/features/support/simultaneous_ajax.rb +101 -0
  73. data/features/support/single_quit_selenium_driver.rb +23 -0
  74. data/features/support/slow_updates.rb +18 -0
  75. data/features/surveyor.feature +895 -0
  76. data/features/surveyor_dependencies.feature +476 -0
  77. data/features/surveyor_parser.feature +504 -0
  78. data/features/z_redcap_parser.feature +62 -0
  79. data/lib/assets/images/surveyor/next.gif +0 -0
  80. data/lib/assets/images/surveyor/prev.gif +0 -0
  81. data/lib/assets/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  82. data/lib/assets/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  83. data/lib/assets/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  84. data/lib/assets/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  85. data/lib/assets/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  86. data/lib/assets/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  87. data/lib/assets/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  88. data/lib/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  89. data/lib/assets/images/ui-icons_222222_256x240.png +0 -0
  90. data/lib/assets/images/ui-icons_2e83ff_256x240.png +0 -0
  91. data/lib/assets/images/ui-icons_454545_256x240.png +0 -0
  92. data/lib/assets/images/ui-icons_888888_256x240.png +0 -0
  93. data/lib/assets/images/ui-icons_cd0a0a_256x240.png +0 -0
  94. data/lib/assets/javascripts/surveyor/jquery-1.9.0.js +9555 -0
  95. data/lib/assets/javascripts/surveyor/jquery-ui-1.10.0.custom.js +14850 -0
  96. data/lib/assets/javascripts/surveyor/jquery-ui-timepicker-addon.js +1919 -0
  97. data/lib/assets/javascripts/surveyor/jquery.maskedinput.js +338 -0
  98. data/lib/assets/javascripts/surveyor/jquery.selectToUISlider.js +240 -0
  99. data/lib/assets/javascripts/surveyor/jquery.surveyor.js +156 -0
  100. data/lib/assets/stylesheets/surveyor/jquery-ui-1.10.0.custom.css +1174 -0
  101. data/lib/assets/stylesheets/surveyor/jquery-ui-timepicker-addon.css +11 -0
  102. data/lib/assets/stylesheets/surveyor/reset.css +48 -0
  103. data/lib/assets/stylesheets/surveyor/results.css +125 -0
  104. data/lib/assets/stylesheets/surveyor/ui.slider.extras.css +110 -0
  105. data/lib/assets/stylesheets/surveyor.sass +132 -0
  106. data/lib/generators/surveyor/custom_generator.rb +18 -0
  107. data/lib/generators/surveyor/install_generator.rb +102 -0
  108. data/lib/generators/surveyor/templates/app/assets/javascripts/surveyor_all.js +6 -0
  109. data/lib/generators/surveyor/templates/app/assets/stylesheets/surveyor_all.css +9 -0
  110. data/lib/generators/surveyor/templates/app/controllers/surveyor_controller.rb +40 -0
  111. data/lib/generators/surveyor/templates/app/views/layouts/surveyor_custom.html.erb +13 -0
  112. data/lib/generators/surveyor/templates/config/locales/surveyor_en.yml +19 -0
  113. data/lib/generators/surveyor/templates/config/locales/surveyor_es.yml +19 -0
  114. data/lib/generators/surveyor/templates/config/locales/surveyor_he.yml +19 -0
  115. data/lib/generators/surveyor/templates/config/locales/surveyor_ko.yml +19 -0
  116. data/lib/generators/surveyor/templates/db/migrate/add_api_id_to_question_groups.rb +10 -0
  117. data/lib/generators/surveyor/templates/db/migrate/add_api_ids.rb +14 -0
  118. data/lib/generators/surveyor/templates/db/migrate/add_api_ids_to_response_sets_and_responses.rb +12 -0
  119. data/lib/generators/surveyor/templates/db/migrate/add_attachment_to_response.rb +5 -0
  120. data/lib/generators/surveyor/templates/db/migrate/add_correct_answer_id_to_questions.rb +10 -0
  121. data/lib/generators/surveyor/templates/db/migrate/add_default_value_to_answers.rb +10 -0
  122. data/lib/generators/surveyor/templates/db/migrate/add_display_order_to_surveys.rb +10 -0
  123. data/lib/generators/surveyor/templates/db/migrate/add_display_type_to_answers.rb +14 -0
  124. data/lib/generators/surveyor/templates/db/migrate/add_index_to_response_sets.rb +10 -0
  125. data/lib/generators/surveyor/templates/db/migrate/add_index_to_surveys.rb +10 -0
  126. data/lib/generators/surveyor/templates/db/migrate/add_input_mask_attributes_to_answer.rb +12 -0
  127. data/lib/generators/surveyor/templates/db/migrate/add_section_id_to_responses.rb +12 -0
  128. data/lib/generators/surveyor/templates/db/migrate/add_unique_index_on_access_code_and_version_in_surveys.rb +10 -0
  129. data/lib/generators/surveyor/templates/db/migrate/add_unique_indicies.rb +18 -0
  130. data/lib/generators/surveyor/templates/db/migrate/add_version_to_surveys.rb +10 -0
  131. data/lib/generators/surveyor/templates/db/migrate/api_ids_must_be_unique.rb +23 -0
  132. data/lib/generators/surveyor/templates/db/migrate/create_answers.rb +38 -0
  133. data/lib/generators/surveyor/templates/db/migrate/create_dependencies.rb +23 -0
  134. data/lib/generators/surveyor/templates/db/migrate/create_dependency_conditions.rb +30 -0
  135. data/lib/generators/surveyor/templates/db/migrate/create_question_groups.rb +28 -0
  136. data/lib/generators/surveyor/templates/db/migrate/create_questions.rb +37 -0
  137. data/lib/generators/surveyor/templates/db/migrate/create_response_sets.rb +23 -0
  138. data/lib/generators/surveyor/templates/db/migrate/create_responses.rb +34 -0
  139. data/lib/generators/surveyor/templates/db/migrate/create_survey_sections.rb +30 -0
  140. data/lib/generators/surveyor/templates/db/migrate/create_survey_translations.rb +19 -0
  141. data/lib/generators/surveyor/templates/db/migrate/create_surveys.rb +32 -0
  142. data/lib/generators/surveyor/templates/db/migrate/create_validation_conditions.rb +33 -0
  143. data/lib/generators/surveyor/templates/db/migrate/create_validations.rb +21 -0
  144. data/lib/generators/surveyor/templates/db/migrate/drop_unique_index_on_access_code_in_surveys.rb +10 -0
  145. data/lib/generators/surveyor/templates/db/migrate/update_blank_api_ids_on_question_group.rb +22 -0
  146. data/lib/generators/surveyor/templates/db/migrate/update_blank_versions_on_surveys.rb +13 -0
  147. data/lib/generators/surveyor/templates/surveys/EXTENDING_SURVEYOR.md +52 -0
  148. data/lib/generators/surveyor/templates/surveys/MODIFYING_SURVEYOR.md +91 -0
  149. data/lib/generators/surveyor/templates/surveys/date_survey.rb +16 -0
  150. data/lib/generators/surveyor/templates/surveys/kitchen_sink_survey.rb +284 -0
  151. data/lib/generators/surveyor/templates/surveys/languages.rb +14 -0
  152. data/lib/generators/surveyor/templates/surveys/quiz.rb +11 -0
  153. data/lib/generators/surveyor/templates/surveys/translations/languages.es.yml +18 -0
  154. data/lib/generators/surveyor/templates/surveys/translations/languages.he.yml +18 -0
  155. data/lib/generators/surveyor/templates/surveys/translations/languages.ko.yml +18 -0
  156. data/lib/generators/surveyor/templates/vendor/assets/stylesheets/custom.sass +5 -0
  157. data/lib/surveyor/acts_as_response.rb +17 -0
  158. data/lib/surveyor/common.rb +59 -0
  159. data/lib/surveyor/engine.rb +10 -0
  160. data/lib/surveyor/helpers/asset_pipeline.rb +13 -0
  161. data/lib/surveyor/helpers/formtastic_custom_input.rb +13 -0
  162. data/lib/surveyor/helpers/surveyor_helper_methods.rb +103 -0
  163. data/lib/surveyor/models/answer_methods.rb +86 -0
  164. data/lib/surveyor/models/dependency_condition_methods.rb +72 -0
  165. data/lib/surveyor/models/dependency_methods.rb +60 -0
  166. data/lib/surveyor/models/question_group_methods.rb +61 -0
  167. data/lib/surveyor/models/question_methods.rb +115 -0
  168. data/lib/surveyor/models/response_methods.rb +132 -0
  169. data/lib/surveyor/models/response_set_methods.rb +196 -0
  170. data/lib/surveyor/models/survey_methods.rb +103 -0
  171. data/lib/surveyor/models/survey_section_methods.rb +56 -0
  172. data/lib/surveyor/models/survey_translation_methods.rb +33 -0
  173. data/lib/surveyor/models/validation_condition_methods.rb +56 -0
  174. data/lib/surveyor/models/validation_methods.rb +48 -0
  175. data/lib/surveyor/mustache_context.rb +11 -0
  176. data/lib/surveyor/parser.rb +428 -0
  177. data/lib/surveyor/redcap_parser.rb +289 -0
  178. data/lib/surveyor/surveyor_controller_methods.rb +237 -0
  179. data/lib/surveyor/unparser.rb +147 -0
  180. data/lib/surveyor/version.rb +3 -0
  181. data/lib/surveyor.rb +13 -0
  182. data/lib/tasks/surveyor_tasks.rake +88 -0
  183. data/rails/init.rb +1 -0
  184. data/spec/controllers/surveyor_controller_spec.rb +307 -0
  185. data/spec/factories.rb +161 -0
  186. data/spec/helpers/formtastic_custom_input_spec.rb +15 -0
  187. data/spec/helpers/surveyor_helper_spec.rb +118 -0
  188. data/spec/lib/benchmark_spec.rb +22 -0
  189. data/spec/lib/chinese_survey.rb +14 -0
  190. data/spec/lib/common_spec.rb +34 -0
  191. data/spec/lib/parser_spec.rb +204 -0
  192. data/spec/lib/rake_kitchen_sink.rb +40 -0
  193. data/spec/lib/redcap_parser_spec.rb +75 -0
  194. data/spec/lib/tasks_spec.rake +26 -0
  195. data/spec/lib/unparser_spec.rb +126 -0
  196. data/spec/models/answer_spec.rb +175 -0
  197. data/spec/models/dependency_condition_spec.rb +439 -0
  198. data/spec/models/dependency_spec.rb +101 -0
  199. data/spec/models/question_group_spec.rb +93 -0
  200. data/spec/models/question_spec.rb +207 -0
  201. data/spec/models/response_set_spec.rb +477 -0
  202. data/spec/models/response_spec.rb +218 -0
  203. data/spec/models/survey_section_spec.rb +85 -0
  204. data/spec/models/survey_spec.rb +191 -0
  205. data/spec/models/validation_condition_spec.rb +113 -0
  206. data/spec/models/validation_spec.rb +74 -0
  207. data/spec/rcov.opts +2 -0
  208. data/spec/spec.opts +4 -0
  209. data/spec/spec_helper.rb +56 -0
  210. data/stacktests.sh +65 -0
  211. data/surveyor.gemspec +45 -0
  212. metadata +657 -0
@@ -0,0 +1,225 @@
1
+ # TL;DR: YOU SHOULD DELETE THIS FILE
2
+ #
3
+ # This file was generated by Cucumber-Rails and is only here to get you a head start
4
+ # These step definitions are thin wrappers around the Capybara/Webrat API that lets you
5
+ # visit pages, interact with widgets and make assertions about page content.
6
+ #
7
+ # If you use these step definitions as basis for your features you will quickly end up
8
+ # with features that are:
9
+ #
10
+ # * Hard to maintain
11
+ # * Verbose to read
12
+ #
13
+ # A much better approach is to write your own higher level step definitions, following
14
+ # the advice in the following blog posts:
15
+ #
16
+ # * http://benmabey.com/2008/05/19/imperative-vs-declarative-scenarios-in-user-stories.html
17
+ # * http://dannorth.net/2011/01/31/whose-domain-is-it-anyway/
18
+ # * http://elabs.se/blog/15-you-re-cuking-it-wrong
19
+ #
20
+
21
+
22
+ require 'uri'
23
+ require 'cgi'
24
+ require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
25
+ require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "selectors"))
26
+
27
+ module WithinHelpers
28
+ def with_scope(locator)
29
+ locator ? within(*selector_for(locator)) { yield } : yield
30
+ end
31
+ end
32
+ World(WithinHelpers)
33
+
34
+ # Single-line step scoper
35
+ When /^(.*) within (.*[^:])$/ do |step, parent|
36
+ with_scope(parent) { When step }
37
+ end
38
+
39
+ # Multi-line step scoper
40
+ When /^(.*) within (.*[^:]):$/ do |step, parent, table_or_string|
41
+ with_scope(parent) { When "#{step}:", table_or_string }
42
+ end
43
+
44
+ Given /^(?:|I )am on (.+)$/ do |page_name|
45
+ visit path_to(page_name)
46
+ end
47
+
48
+ When /^(?:|I )go to (.+)$/ do |page_name|
49
+ visit path_to(page_name)
50
+ end
51
+
52
+ When /^(?:|I )press "([^"]*)"$/ do |button|
53
+ click_button(button)
54
+ end
55
+
56
+ When /^(?:|I )follow "([^"]*)"$/ do |link|
57
+ click_link(link)
58
+ end
59
+
60
+ When /^(?:|I )fill in "([^"]*)" with "([^"]*)"$/ do |field, value|
61
+ fill_in(field, :with => value)
62
+ end
63
+
64
+ When /^(?:|I )fill in "([^"]*)" for "([^"]*)"$/ do |value, field|
65
+ fill_in(field, :with => value)
66
+ end
67
+
68
+ # Use this to fill in an entire form with data from a table. Example:
69
+ #
70
+ # When I fill in the following:
71
+ # | Account Number | 5002 |
72
+ # | Expiry date | 2009-11-01 |
73
+ # | Note | Nice guy |
74
+ # | Wants Email? | |
75
+ #
76
+ # TODO: Add support for checkbox, select og option
77
+ # based on naming conventions.
78
+ #
79
+ When /^(?:|I )fill in the following:$/ do |fields|
80
+ fields.rows_hash.each do |name, value|
81
+ When %{I fill in "#{name}" with "#{value}"}
82
+ end
83
+ end
84
+
85
+ When /^(?:|I )select "([^"]*)" from "([^"]*)"$/ do |value, field|
86
+ select(value, :from => field)
87
+ end
88
+
89
+ When /^(?:|I )check "([^"]*)"$/ do |field|
90
+ check(field)
91
+ end
92
+
93
+ When /^(?:|I )uncheck "([^"]*)"$/ do |field|
94
+ uncheck(field)
95
+ end
96
+
97
+ When /^(?:|I )choose "([^"]*)"$/ do |field|
98
+ choose(field)
99
+ end
100
+
101
+ When /^(?:|I )attach the file "([^"]*)" to "([^"]*)"$/ do |path, field|
102
+ attach_file(field, File.expand_path(path))
103
+ end
104
+
105
+ When /^(?:|I )click "([^"]*)"$/ do |field|
106
+ find_field(field).click
107
+ end
108
+
109
+ When /^(?:|I )change "([^"]*)" to "([^"]*)"$/ do |field, value|
110
+ fill_in(field, :with => value)
111
+ id = "#" + find_field(field)[:id]
112
+ page.execute_script("$('#{id}').trigger('change');")
113
+ end
114
+
115
+ Then /^(?:|I )should see "([^"]*)"$/ do |text|
116
+ if page.respond_to? :should
117
+ page.should have_content(text)
118
+ else
119
+ assert page.has_content?(text)
120
+ end
121
+ end
122
+
123
+ Then /^(?:|I )should see \/([^\/]*)\/$/ do |regexp|
124
+ regexp = Regexp.new(regexp)
125
+
126
+ if page.respond_to? :should
127
+ page.should have_xpath('//*', :text => regexp)
128
+ else
129
+ assert page.has_xpath?('//*', :text => regexp)
130
+ end
131
+ end
132
+
133
+ Then /^(?:|I )should not see "([^"]*)"$/ do |text|
134
+ if page.respond_to? :should
135
+ page.should have_no_content(text)
136
+ else
137
+ assert page.has_no_content?(text)
138
+ end
139
+ end
140
+
141
+ Then /^(?:|I )should not see \/([^\/]*)\/$/ do |regexp|
142
+ regexp = Regexp.new(regexp)
143
+
144
+ if page.respond_to? :should
145
+ page.should have_no_xpath('//*', :text => regexp)
146
+ else
147
+ assert page.has_no_xpath?('//*', :text => regexp)
148
+ end
149
+ end
150
+
151
+ Then /^the "([^"]*)" field(?: within (.*))? should contain "([^"]*)"$/ do |field, parent, value|
152
+ with_scope(parent) do
153
+ field = find_field(field)
154
+ field_value = (field.tag_name == 'textarea') ? field.text : field.value
155
+ if field_value.respond_to? :should
156
+ field_value.should =~ /#{value}/
157
+ else
158
+ assert_match(/#{value}/, field_value)
159
+ end
160
+ end
161
+ end
162
+
163
+ Then /^the "([^"]*)" field(?: within (.*))? should not contain "([^"]*)"$/ do |field, parent, value|
164
+ with_scope(parent) do
165
+ field = find_field(field)
166
+ field_value = (field.tag_name == 'textarea') ? field.text : field.value
167
+ if field_value.respond_to? :should_not
168
+ field_value.should_not =~ /#{value}/
169
+ else
170
+ assert_no_match(/#{value}/, field_value)
171
+ end
172
+ end
173
+ end
174
+
175
+ Then /^the "([^"]*)" (checkbox|radiobutton)(?: within (.*))? should be checked$/ do |label, _, parent|
176
+ with_scope(parent) do
177
+ field_checked = find_field(label)['checked']
178
+ if field_checked.respond_to? :should
179
+ field_checked.should be_true
180
+ else
181
+ assert field_checked
182
+ end
183
+ end
184
+ end
185
+
186
+ Then /^the "([^"]*)" (checkbox|radiobutton)(?: within (.*))? should not be checked$/ do |label, _, parent|
187
+ with_scope(parent) do
188
+ field_checked = find_field(label)['checked']
189
+ if field_checked.respond_to? :should
190
+ field_checked.should be_false
191
+ else
192
+ assert !field_checked
193
+ end
194
+ end
195
+ end
196
+
197
+ Then /^(?:|I )should be on (.+)$/ do |page_name|
198
+ current_path = URI.parse(current_url).path
199
+ if current_path.respond_to? :should
200
+ current_path.should == path_to(page_name)
201
+ else
202
+ assert_equal path_to(page_name), current_path
203
+ end
204
+ end
205
+
206
+ Then /^(?:|I )should have the following query string:$/ do |expected_pairs|
207
+ query = URI.parse(current_url).query
208
+ actual_params = query ? CGI.parse(query) : {}
209
+ expected_params = {}
210
+ expected_pairs.rows_hash.each_pair{|k,v| expected_params[k] = v.split(',')}
211
+
212
+ if actual_params.respond_to? :should
213
+ actual_params.should == expected_params
214
+ else
215
+ assert_equal expected_params, actual_params
216
+ end
217
+ end
218
+
219
+ Then /^show me the page$/ do
220
+ save_and_open_page
221
+ end
222
+
223
+ Then /^I should get a "(\d+)" response$/ do |http_status|
224
+ page.status_code.should == http_status.to_i
225
+ end
@@ -0,0 +1,127 @@
1
+ "Variable / Field Name","Form Name","Field Units","Section Header","Field Type","Field Label","Choices OR Calculations","Field Note","Text Validation Type","Text Validation Min","Text Validation Max",Identifier?,"Branching Logic (Show field only if...)","Required Field?"
2
+ study_id,demographics,,,text,"Study ID",,,,,,,,
3
+ date_enrolled,demographics,,"Demographic Characteristics",text,"Date subject signed consent",,YYYY-MM-DD,date,,,,,
4
+ first_name,demographics,,,text,"First Name",,,,,,y,,
5
+ last_name,demographics,,,text,"Last Name",,,,,,y,,
6
+ address,demographics,,"Contact Information",notes,"Street, City, State, ZIP",,,,,,y,,
7
+ telephone_1,demographics,,,text,"Phone number",,"Include Area Code",phone,,,y,,
8
+ telephone_2,demographics,,,text,"Second phone number",,"Include Area Code",phone,,,y,,
9
+ email,demographics,,,text,E-mail,,,email,,,y,,
10
+ sex,demographics,,,dropdown,Gender,"0, Female | 1, Male",,,,,,,y
11
+ given_birth,demographics,,,dropdown,"Has the subject given birth before?","0, No | 1, Yes",,,,,,"[sex] = ""0""",
12
+ num_children,demographics,,,text,"How many times has the subject given birth?",,,integer,0,,,"[sex] = ""0"" and [given_birth] = ""1""",
13
+ ethnicity,demographics,,,radio,Ethnicity,"0, Hispanic or Latino | 1, NOT Hispanic or Latino | 2, Unknown / Not Reported",,,,,,,
14
+ race,demographics,,,radio,Race,"0, American Indian/Alaska Native | 1, Asian | 2, Native Hawaiian or Other Pacific Islander | 3, Black or African American | 4, White | 5, More Than One Race | 6, Unknown / Not Reported",,,,,,,
15
+ dob,demographics,,,text,"Date of birth",,,date,,,y,,
16
+ age,demographics,,,calc,"Age (years)","round(datediff([dob],'today','y'),1)",,,,,,,
17
+ height,demographics,cm,,text,"Height (cm)",,,number,130,215,,,
18
+ weight,demographics,kilograms,,text,"Weight (kilograms)",,,integer,35,200,,,
19
+ bmi,demographics,kilograms,,calc,BMI,"round(([weight]*10000)/(([height])^(2)),1)",,,,,,,
20
+ patient_document,demographics,,,file,"Patient document",,,,,,,,
21
+ meds,demographics,,,checkbox,"Is patient taking any of the following medications? (check all that apply)","1, Lexapro | 2, Celexa | 3, Prozac | 4, Paxil | 5, Zoloft",,,,,,,
22
+ diabetes,demographics,,,dropdown,"Patient has a diagnosis of diabetes mellitus?","0, No | 1, Yes",,,,,,,
23
+ diabetes_type,demographics,,,dropdown,"Type of Diabetes Mellitus","0, Type 1 insulin-dependent | 1, Type 2 insulin-dependent | 2, Type 2 non insulin-dependent",,,,,,,
24
+ dialysis_initiation,demographics,,"Dialysis Information",text,"Date of first outpatient dialysis treatment",,,date,,,,,
25
+ access_type,demographics,,,dropdown,"Type of vascular access","0, Graft | 1, Fistula | 2, Catheter with maturing graft | 3, Catheter with maturing fistula",,,,,,,
26
+ access_location,demographics,,,dropdown,"Location of currently used vascular access","0, Forearm | 1, Upper arm | 2, Internal jugular vein | 3, Subclavian vein | 4, Other",,,,,,,
27
+ dialysis_unit_name,demographics,,,text,"Name of dialysis unit",,,,,,,,
28
+ dialysis_unit_phone,demographics,,,text,"Phone number",,"Include Area Code",phone,,,,,
29
+ dialysis_schedule_days,demographics,,,radio,"Days of the week patient is dialyzed","0, Monday-Wednesday-Friday | 1, Tuesday-Thursday-Saturday | 2, Other",,,,,,,
30
+ dialysis_schedule_time,demographics,,,dropdown,"Shift patient is dialyzed","0, First shift | 1, Second shift | 2, Third shift | 3, Fourth shift",,,,,,,
31
+ etiology_esrd,demographics,,,dropdown,"Etiology of ESRD","0, Diabetes | 1, Hypertension | 2, Glomerulonephritis | 3, Polycystic Kidney Disease | 4, Interstitial Nephritis | 5, Hereditary Nephritis | 6, Other",,,,,,,
32
+ subject_comments,demographics,,"General Comments",notes,Comments,,,,,,,,
33
+ date_visit_b,baseline_data,,"Baseline Measurements",text,"Date of baseline visit",,,date,,,,,
34
+ date_blood_b,baseline_data,,,text,"Date blood was drawn",,,date,,,,,
35
+ alb_b,baseline_data,g/dL,,text,"Serum Albumin (g/dL)",,,integer,3,5,,,
36
+ prealb_b,baseline_data,mg/dL,,text,"Serum Prealbumin (mg/dL)",,,number,10,40,,,
37
+ creat_b,baseline_data,mg/dL,,text,"Creatinine (mg/dL)",,,number,0.5,20,,,
38
+ npcr_b,baseline_data,g/kg/d,,text,"Normalized Protein Catabolic Rate (g/kg/d)",,,number,0.5,2,,,
39
+ chol_b,baseline_data,mg/dL,,text,"Cholesterol (mg/dL)",,,number,100,300,,,
40
+ transferrin_b,baseline_data,mg/dL,,text,"Transferrin (mg/dL)",,,number,100,300,,,
41
+ kt_v_b,baseline_data,,,text,Kt/V,,,number,0.9,3,,,
42
+ drywt_b,baseline_data,kilograms,,text,"Dry weight (kilograms)",,,number,35,200,,,
43
+ plasma1_b,baseline_data,,,dropdown,"Collected Plasma 1?","0, No | 1, Yes",,,,,,,
44
+ plasma2_b,baseline_data,,,dropdown,"Collected Plasma 2?","0, No | 1, Yes",,,,,,,
45
+ plasma3_b,baseline_data,,,dropdown,"Collected Plasma 3?","0, No | 1, Yes",,,,,,,
46
+ serum1_b,baseline_data,,,dropdown,"Collected Serum 1?","0, No | 1, Yes",,,,,,,
47
+ serum2_b,baseline_data,,,dropdown,"Collected Serum 2?","0, No | 1, Yes",,,,,,,
48
+ serum3_b,baseline_data,,,dropdown,"Collected Serum 3?","0, No | 1, Yes",,,,,,,
49
+ sga_b,baseline_data,,,text,"Subject Global Assessment (score = 1-7)",,,number,0.9,7.1,,,
50
+ date_supplement_dispensed,baseline_data,,,text,"Date patient begins supplement",,,date,,,,,
51
+ date_visit_1,month_1_data,,"Month 1",text,"Date of Month 1 visit",,,date,,,,,
52
+ alb_1,month_1_data,g/dL,,text,"Serum Albumin (g/dL)",,,number,3,5,,,
53
+ prealb_1,month_1_data,mg/dL,,text,"Serum Prealbumin (mg/dL)",,,number,10,40,,,
54
+ creat_1,month_1_data,mg/dL,,text,"Creatinine (mg/dL)",,,number,0.5,20,,,
55
+ npcr_1,month_1_data,g/kg/d,,text,"Normalized Protein Catabolic Rate (g/kg/d)",,,number,0.5,2,,,
56
+ chol_1,month_1_data,mg/dL,,text,"Cholesterol (mg/dL)",,,number,100,300,,,
57
+ transferrin_1,month_1_data,mg/dL,,text,"Transferrin (mg/dL)",,,number,100,300,,,
58
+ kt_v_1,month_1_data,,,text,Kt/V,,,number,0.9,3,,,
59
+ drywt_1,month_1_data,kilograms,,text,"Dry weight (kilograms)",,,number,35,200,,,
60
+ no_show_1,month_1_data,,,text,"Number of treatments missed",,,number,0,7,,,
61
+ compliance_1,month_1_data,,,dropdown,"How compliant was the patient in drinking the supplement?","0, 100 percent | 1, 99-75 percent | 2, 74-50 percent | 3, 49-25 percent | 4, 0-24 percent",,,,,,,
62
+ hospit_1,month_1_data,,"Hospitalization Data",dropdown,"Was patient hospitalized since last visit?","0, No | 1, Yes",,,,,,,
63
+ cause_hosp_1,month_1_data,,,dropdown,"What was the cause of hospitalization?","1, Vascular access related events | 2, CVD events | 3, Other",,,,,,,
64
+ admission_date_1,month_1_data,,,text,"Date of hospital admission",,,date,,,,,
65
+ discharge_date_1,month_1_data,,,text,"Date of hospital discharge",,,date,,,,,
66
+ discharge_summary_1,month_1_data,,,dropdown,"Discharge summary in patients binder?","0, No | 1, Yes",,,,,,,
67
+ death_1,month_1_data,,"Mortality Data",dropdown,"Has patient died since last visit?","0, No | 1, Yes",,,,,,,
68
+ date_death_1,month_1_data,,,text,"Date of death",,,date,,,,,
69
+ cause_death_1,month_1_data,,,dropdown,"What was the cause of death?","1, All-cause | 2, Cardiovascular",,,,,,,
70
+ date_visit_2,month_2_data,,"Month 2",text,"Date of Month 2 visit",,,date,,,,,
71
+ alb_2,month_2_data,g/dL,,text,"Serum Albumin (g/dL)",,,number,3,5,,,
72
+ prealb_2,month_2_data,mg/dL,,text,"Serum Prealbumin (mg/dL)",,,number,10,40,,,
73
+ creat_2,month_2_data,mg/dL,,text,"Creatinine (mg/dL)",,,number,0.5,20,,,
74
+ npcr_2,month_2_data,g/kg/d,,text,"Normalized Protein Catabolic Rate (g/kg/d)",,,number,0.5,2,,,
75
+ chol_2,month_2_data,mg/dL,,text,"Cholesterol (mg/dL)",,,number,100,300,,,
76
+ transferrin_2,month_2_data,mg/dL,,text,"Transferrin (mg/dL)",,,number,100,300,,,
77
+ kt_v_2,month_2_data,,,text,Kt/V,,,number,0.9,3,,,
78
+ drywt_2,month_2_data,kilograms,,text,"Dry weight (kilograms)",,,number,35,200,,,
79
+ no_show_2,month_2_data,,,text,"Number of treatments missed",,,number,0,7,,,
80
+ compliance_2,month_2_data,,,dropdown,"How compliant was the patient in drinking the supplement?","0, 100 percent | 1, 99-75 percent | 2, 74-50 percent | 3, 49-25 percent | 4, 0-24 percent",,,,,,,
81
+ hospit_2,month_2_data,,"Hospitalization Data",dropdown,"Was patient hospitalized since last visit?","0, No | 1, Yes",,,,,,,
82
+ cause_hosp_2,month_2_data,,,dropdown,"What was the cause of hospitalization?","1, Vascular access related events | 2, CVD events | 3, Other",,,,,,,
83
+ admission_date_2,month_2_data,,,text,"Date of hospital admission",,,date,,,,,
84
+ discharge_date_2,month_2_data,,,text,"Date of hospital discharge",,,date,,,,,
85
+ discharge_summary_2,month_2_data,,,dropdown,"Discharge summary in patients binder?","0, No | 1, Yes",,,,,,,
86
+ death_2,month_2_data,,"Mortality Data",dropdown,"Has patient died since last visit?","0, No | 1, Yes",,,,,,,
87
+ date_death_2,month_2_data,,,text,"Date of death",,,date,,,,,
88
+ cause_death_2,month_2_data,,,dropdown,"What was the cause of death?","1, All-cause | 2, Cardiovascular",,,,,,,
89
+ date_visit_3,month_3_data,,"Month 3",text,"Date of Month 3 visit",,,date,,,,,
90
+ date_blood_3,month_3_data,,,text,"Date blood was drawn",,,date,,,,,
91
+ alb_3,month_3_data,g/dL,,text,"Serum Albumin (g/dL)",,,number,3,5,,,
92
+ prealb_3,month_3_data,mg/dL,,text,"Serum Prealbumin (mg/dL)",,,number,10,40,,,
93
+ creat_3,month_3_data,mg/dL,,text,"Creatinine (mg/dL)",,,number,0.5,20,,,
94
+ npcr_3,month_3_data,g/kg/d,,text,"Normalized Protein Catabolic Rate (g/kg/d)",,,number,0.5,2,,,
95
+ chol_3,month_3_data,mg/dL,,text,"Cholesterol (mg/dL)",,,number,100,300,,,
96
+ transferrin_3,month_3_data,mg/dL,,text,"Transferrin (mg/dL)",,,number,100,300,,,
97
+ kt_v_3,month_3_data,,,text,Kt/V,,,number,0.9,3,,,
98
+ drywt_3,month_3_data,kilograms,,text,"Dry weight (kilograms)",,,number,35,200,,,
99
+ plasma1_3,month_3_data,,,dropdown,"Collected Plasma 1?","0, No | 1, Yes",,,,,,,
100
+ plasma2_3,month_3_data,,,dropdown,"Collected Plasma 2?","0, No | 1, Yes",,,,,,,
101
+ plasma3_3,month_3_data,,,dropdown,"Collected Plasma 3?","0, No | 1, Yes",,,,,,,
102
+ serum1_3,month_3_data,,,dropdown,"Collected Serum 1?","0, No | 1, Yes",,,,,,,
103
+ serum2_3,month_3_data,,,dropdown,"Collected Serum 2?","0, No | 1, Yes",,,,,,,
104
+ serum3_3,month_3_data,,,dropdown,"Collected Serum 3?","0, No | 1, Yes",,,,,,,
105
+ sga_3,month_3_data,,,text,"Subject Global Assessment (score = 1-7)",,,number,0.9,7.1,,,
106
+ no_show_3,month_3_data,,,text,"Number of treatments missed",,,number,0,7,,,
107
+ compliance_3,month_3_data,,,dropdown,"How compliant was the patient in drinking the supplement?","0, 100 percent | 1, 99-75 percent | 2, 74-50 percent | 3, 49-25 percent | 4, 0-24 percent",,,,,,,
108
+ hospit_3,month_3_data,,"Hospitalization Data",dropdown,"Was patient hospitalized since last visit?","0, No | 1, Yes",,,,,,,
109
+ cause_hosp_3,month_3_data,,,dropdown,"What was the cause of hospitalization?","1, Vascular access related events | 2, CVD events | 3, Other",,,,,,,
110
+ admission_date_3,month_3_data,,,text,"Date of hospital admission",,,date,,,,,
111
+ discharge_date_3,month_3_data,,,text,"Date of hospital discharge",,,date,,,,,
112
+ discharge_summary_3,month_3_data,,,dropdown,"Discharge summary in patients binder?","0, No | 1, Yes",,,,,,,
113
+ death_3,month_3_data,,"Mortality Data",dropdown,"Has patient died since last visit?","0, No | 1, Yes",,,,,,,
114
+ date_death_3,month_3_data,,,text,"Date of death",,,date,,,,,
115
+ cause_death_3,month_3_data,,,dropdown,"What was the cause of death?","1, All-cause | 2, Cardiovascular",,,,,,,
116
+ complete_study,completion_data,,"Study Completion Information",dropdown,"Has patient completed study?","0, No | 1, Yes",,,,,,,
117
+ withdraw_date,completion_data,,,text,"Put a date if patient withdrew study",,,date,,,,,
118
+ withdraw_reason,completion_data,,,dropdown,"Reason patient withdrew from study","0, Non-compliance | 1, Did not wish to continue in study | 2, Could not tolerate the supplement | 3, Hospitalization | 4, Other",,,,,,,
119
+ complete_study_date,completion_data,,,text,"Date of study completion",,,date,,,,,
120
+ study_comments,completion_data,,"General Comments",notes,Comments,,,,,,,,
121
+ fatexp20_0d31d8,promis_fatigue__short_form_7a,,"Please respond to each item by marking one answer per question.<br><br>In the past 7 days...",radio,"How often did you feel tired?...","1, 1 Never | 2, 2 Rarely | 3, 3 Sometimes | 4, 4 Often | 5, 5 Always",,,,,,,
122
+ fatexp5_d80a4c,promis_fatigue__short_form_7a,,,radio,"How often did you experience extreme exhaustion?...","1, 1 Never | 2, 2 Rarely | 3, 3 Sometimes | 4, 4 Often | 5, 5 Always",,,,,,,
123
+ fatexp18_396fe5,promis_fatigue__short_form_7a,,,radio,"How often did you run out of energy?...","1, 1 Never | 2, 2 Rarely | 3, 3 Sometimes | 4, 4 Often | 5, 5 Always",,,,,,,
124
+ fatimp33_a9e236,promis_fatigue__short_form_7a,,,radio,"How often did your fatigue limit you at work (include work at home)?...","1, 1 Never | 2, 2 Rarely | 3, 3 Sometimes | 4, 4 Often | 5, 5 Always",,,,,,,
125
+ fatimp30_5f4d82,promis_fatigue__short_form_7a,,,radio,"How often were you too tired to think clearly?...","1, 1 Never | 2, 2 Rarely | 3, 3 Sometimes | 4, 4 Often | 5, 5 Always",,,,,,,
126
+ fatimp21_de19f3,promis_fatigue__short_form_7a,,,radio,"How often were you too tired to take a bath or shower?...","1, 1 Never | 2, 2 Rarely | 3, 3 Sometimes | 4, 4 Often | 5, 5 Always",,,,,,,
127
+ fatimp40_f7e5db,promis_fatigue__short_form_7a,,,radio,"How often did you have enough energy to exercise strenuously?...","5, 5 Never | 4, 4 Rarely | 3, 3 Sometimes | 2, 2 Often | 1, 1 Always",,,,,,,
@@ -0,0 +1,16 @@
1
+ require 'database_cleaner'
2
+
3
+ # Use transaction cleaning for performance by default
4
+ DatabaseCleaner.strategy = :transaction
5
+ # Clean to start so that manual testing data in testbed can't cause false
6
+ # test results.
7
+ DatabaseCleaner.clean_with(:truncation)
8
+
9
+ # use truncation to allow direct DB checks in Selenium tests
10
+ Before('@javascript') do
11
+ DatabaseCleaner.strategy = :truncation
12
+ end
13
+
14
+ After('@javascript') do
15
+ DatabaseCleaner.strategy = :transaction
16
+ end
@@ -0,0 +1,56 @@
1
+ # IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
2
+ # It is recommended to regenerate this file in the future when you upgrade to a
3
+ # newer version of cucumber-rails. Consider adding your own code to a new file
4
+ # instead of editing this one. Cucumber will automatically load all features/**/*.rb
5
+ # files.
6
+ ENV["RAILS_ROOT"] ||= File.expand_path(File.dirname(__FILE__) + '/../../testbed')
7
+ require 'cucumber/rails'
8
+
9
+ # For Rails 3.0
10
+ include Surveyor::Helpers::AssetPipeline
11
+
12
+ # require File.expand_path(File.dirname(__FILE__) + '/../../testbed/config/environment.rb')
13
+ # Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
14
+ # order to ease the transition to Capybara we set the default here. If you'd
15
+ # prefer to use XPath just remove this line and adjust any selectors in your
16
+ # steps to use the XPath syntax.
17
+ Capybara.default_selector = :css
18
+
19
+ # By default, any exception happening in your Rails application will bubble up
20
+ # to Cucumber so that your scenario will fail. This is a different from how
21
+ # your application behaves in the production environment, where an error page will
22
+ # be rendered instead.
23
+ #
24
+ # Sometimes we want to override this default behaviour and allow Rails to rescue
25
+ # exceptions and display an error page (just like when the app is running in production).
26
+ # Typical scenarios where you want to do this is when you test your error pages.
27
+ # There are two ways to allow Rails to rescue exceptions:
28
+ #
29
+ # 1) Tag your scenario (or feature) with @allow-rescue
30
+ #
31
+ # 2) Set the value below to true. Beware that doing this globally is not
32
+ # recommended as it will mask a lot of errors for you!
33
+ #
34
+ ActionController::Base.allow_rescue = false
35
+
36
+ # Use chrome for Selenium by default. This is because of Firefox's bug 566671
37
+ # (https://bugzilla.mozilla.org/show_bug.cgi?id=566671): any test that relies on
38
+ # blur or change events will not work when Firefox is in the background.
39
+ ENV['SELENIUM_BROWSER'] ||= 'chrome'
40
+
41
+ # Wait for AJAX requests to complete in selenium
42
+ # n.b.: Capybara 2.0 will change the way this works.
43
+ # http://groups.google.com/group/ruby-capybara/browse_thread/thread/6d955173ce413b0a/d0682d47a915dfbd
44
+ Capybara.register_driver :selenium do |app|
45
+ SingleQuitSeleniumDriver.new(app, :browser => ENV['SELENIUM_BROWSER'].to_sym,
46
+ :resynchronize => true)
47
+ end
48
+
49
+ Before do |scenario|
50
+ Rails.logger.info "\n\nBeginning scenario #{scenario.file_colon_line} \"#{scenario.title}\""
51
+ end
52
+
53
+ require "json_spec/cucumber"
54
+ JsonSpec.configure do
55
+ exclude_keys "id", "created_at", "updated_at", "uuid", "modified_at", "completed_at"
56
+ end
@@ -0,0 +1,4 @@
1
+ AfterStep('@pause') do
2
+ print "Press Return to continue..."
3
+ STDIN.getc
4
+ end
@@ -0,0 +1,39 @@
1
+ module NavigationHelpers
2
+ # Maps a name to a path. Used by the
3
+ #
4
+ # When /^I go to (.+)$/ do |page_name|
5
+ #
6
+ # step definition in web_steps.rb
7
+ #
8
+ def path_to(page_name)
9
+ case page_name
10
+
11
+ when /^the home\s?page$/
12
+ '/'
13
+ when /^the surveys page$/
14
+ '/surveys'
15
+ when /the surveys page in "(.*)"$/
16
+ "/surveys?locale=#{$1}"
17
+ when /the last response set show page/
18
+ "/surveys/#{ResponseSet.last.survey.access_code}/#{ResponseSet.last.access_code}"
19
+
20
+ # Add more mappings here.
21
+ # Here is an example that pulls values out of the Regexp:
22
+ #
23
+ # when /^(.*)'s profile page$/i
24
+ # user_profile_path(User.find_by_login($1))
25
+
26
+ else
27
+ begin
28
+ page_name =~ /^the (.*) page$/
29
+ path_components = $1.split(/\s+/)
30
+ self.send(path_components.push('path').join('_').to_sym)
31
+ rescue NoMethodError, ArgumentError
32
+ raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
33
+ "Now, go and add a mapping in #{__FILE__}"
34
+ end
35
+ end
36
+ end
37
+ end
38
+
39
+ World(NavigationHelpers)
@@ -0,0 +1 @@
1
+ Variable / Field Name,Form Name,Field Units,Section Header,Field Type,Field Label,Choices Calculations OR Slider Labels,Field Note,Text Validation Type OR Show Slider Number,Text Validation Min,Text Validation Max,Identifier?,Branching Logic (Show field only if...),Required Field?
@@ -0,0 +1 @@
1
+ Variable / Field Name,Form Name,Field Units,Section Header,Field Type,Field Label,Choices OR Calculations,Field Note,Text Validation Type,Text Validation Min,Text Validation Max,Identifier?,Branching Logic (Show field only if...),Required Field?
@@ -0,0 +1 @@
1
+ Variable / Field Name,Form Name,Field Units,Section Header,Field Type,Field Label,Choices OR Calculations,Field Note,Text Validation Type,Text Validation Min,Text Validation Max,Identifier?,Branching Logic (Show field only if...),Required Field?
@@ -0,0 +1,39 @@
1
+ module HtmlSelectorsHelpers
2
+ # Maps a name to a selector. Used primarily by the
3
+ #
4
+ # When /^(.+) within (.+)$/ do |step, scope|
5
+ #
6
+ # step definitions in web_steps.rb
7
+ #
8
+ def selector_for(locator)
9
+ case locator
10
+
11
+ when "the page"
12
+ "html > body"
13
+
14
+ # Add more mappings here.
15
+ # Here is an example that pulls values out of the Regexp:
16
+ #
17
+ # when /^the (notice|error|info) flash$/
18
+ # ".flash.#{$1}"
19
+
20
+ # You can also return an array to use a different selector
21
+ # type, like:
22
+ #
23
+ # when /the header/
24
+ # [:xpath, "//header"]
25
+
26
+ # This allows you to provide a quoted selector as the scope
27
+ # for "within" steps as was previously the default for the
28
+ # web steps:
29
+ when /^"(.+)"$/
30
+ $1
31
+
32
+ else
33
+ raise "Can't find mapping from \"#{locator}\" to a selector.\n" +
34
+ "Now, go and add a mapping in #{__FILE__}"
35
+ end
36
+ end
37
+ end
38
+
39
+ World(HtmlSelectorsHelpers)
@@ -0,0 +1,101 @@
1
+ require 'selenium/webdriver'
2
+
3
+ Before('~@simultaneous_ajax') do
4
+ evict_capybara_session :selenium_nowait
5
+ end
6
+
7
+ Before('@simultaneous_ajax') do
8
+ evict_capybara_session :selenium
9
+
10
+ @simultaneous_ajax = true
11
+ Capybara.javascript_driver = Capybara.current_driver = :selenium_nowait
12
+ end
13
+
14
+ After('@simultaneous_ajax') do
15
+ Capybara.javascript_driver = nil
16
+ @simultaneous_ajax = false
17
+ end
18
+
19
+ # Evict the "other" selenium driver's session when switching drivers because it
20
+ # seems that WebDriver can't handle having two different browsers open
21
+ # simultaneously. Specifically, if you:
22
+ #
23
+ # * Run a test with driver A, then
24
+ # * Run set of tests with driver B, then
25
+ # * Attempt to run a test with driver A
26
+ #
27
+ # ... the final driver A test will hang attempting to contact some piece of the
28
+ # webdriver infrastructure. It will hang until it times out, or until you
29
+ # kill the browser associated with driver B. This code does the killing for
30
+ # you.
31
+ def evict_capybara_session(driver_name)
32
+ Capybara.instance_eval do
33
+ key = session_pool.keys.grep(/^#{driver_name}\:/).first
34
+ if key
35
+ session = session_pool.delete(key)
36
+ puts "key=#{key} evicting session #{session.object_id} driver #{session.driver.object_id}"
37
+ session.driver.quit
38
+ end
39
+ end
40
+ end
41
+
42
+ class AjaxRefCountListener < Selenium::WebDriver::Support::AbstractEventListener
43
+ def refcount_key
44
+ 'surveyorIntegratedTestsRequestsOutstanding'
45
+ end
46
+
47
+ def call(*args)
48
+ event = args.unshift
49
+ driver = args.pop
50
+ unless event.to_s =~ /script/ # prevent infinite recursion
51
+ enable_ajax_call_refcount_if_necessary(driver)
52
+ end
53
+ end
54
+
55
+ def enable_ajax_call_refcount_if_necessary(driver)
56
+ unless driver.execute_script "return window.hasOwnProperty('#{refcount_key}')"
57
+ enable_ajax_call_refcount(driver)
58
+ end
59
+ end
60
+
61
+ # Taken wholesale from the resynchronize code in Capybara's Selenium driver.
62
+ # Replicated here because the Capybara implementation doesn't let you make
63
+ # multiple interactions issuing separate AJAX calls and then wait for all of
64
+ # them — it can only wait for those AJAX requests issued in the context of a
65
+ # single interaction (a click, etc.).
66
+ def enable_ajax_call_refcount(driver)
67
+ driver.execute_script <<-JS
68
+ window.#{refcount_key} = 0;
69
+ (function() { // Overriding XMLHttpRequest
70
+ var oldXHR = window.XMLHttpRequest;
71
+
72
+ function newXHR() {
73
+ var realXHR = new oldXHR();
74
+
75
+ window.#{refcount_key}++;
76
+ realXHR.addEventListener("readystatechange", function() {
77
+ if( realXHR.readyState == 4 ) {
78
+ setTimeout( function() {
79
+ window.#{refcount_key}--;
80
+ if(window.#{refcount_key} < 0) {
81
+ window.#{refcount_key} = 0;
82
+ }
83
+ }, 500 );
84
+ }
85
+ }, false);
86
+
87
+ return realXHR;
88
+ }
89
+
90
+ window.XMLHttpRequest = newXHR;
91
+ })();
92
+ JS
93
+ end
94
+ end
95
+
96
+ # Provides an alternative selenium driver with resync off and refcounting on.
97
+ # This allows for simulation of competing AJAX requests.
98
+ Capybara.register_driver :selenium_nowait do |app|
99
+ SingleQuitSeleniumDriver.new(app, :browser => ENV['SELENIUM_BROWSER'].to_sym,
100
+ :resynchronize => false, :listener => AjaxRefCountListener.new)
101
+ end
@@ -0,0 +1,23 @@
1
+ require 'capybara/selenium/driver'
2
+
3
+ ##
4
+ # Subclass of `Capybara::Selenium::Driver` that ensures that quit is only called
5
+ # once.
6
+ #
7
+ # This is necessary because there is code in the Firefox selenium bridge which
8
+ # reacts poorly if its quit method is called more than once. The
9
+ # @simultaneous_ajax support for the duplicate check features requires a
10
+ # separate selenium driver instance, which in turn requires directly calling
11
+ # quit on the running driver when switching between them.
12
+ #
13
+ # Capybara::Selenium::Driver registers an `at_exit` hook which isn't removed
14
+ # when you call quit. This results in quit being called twice for some driver
15
+ # instances, provoking the issue with Firefox.
16
+ class SingleQuitSeleniumDriver < Capybara::Selenium::Driver
17
+ def quit
18
+ unless @already_quit
19
+ super
20
+ @already_quit = true
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,18 @@
1
+ # It appears that rails caches the filter chain after the first request. We
2
+ # can't wait and only apply this if any @slow_updates scenarios are executed.
3
+ class SurveyorController
4
+ before_filter(:only => :update) do
5
+ if $delay_updates
6
+ Rails.logger.info "Slowing things down."
7
+ sleep 2
8
+ end
9
+ end
10
+ end
11
+
12
+ Before('@slow_updates') do
13
+ $delay_updates = true
14
+ end
15
+
16
+ After('@slow_updates') do
17
+ $delay_updates = false
18
+ end