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,118 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe SurveyorHelper do
4
+ context "numbering" do
5
+ let(:asset_directory){ asset_pipeline_enabled? ? "assets" : "images" }
6
+ before do
7
+ ActionController::Base.helpers.config.assets_dir = "public" unless asset_pipeline_enabled?
8
+ end
9
+ it "should return the question text with number, except for labels, dependencies, images, and grouped questions" do
10
+ q1 = Factory(:question)
11
+ q2 = Factory(:question, :display_type => "label")
12
+ q3 = Factory(:question, :dependency => Factory(:dependency))
13
+ q4 = Factory(:question, :display_type => "image", :text => "something.jpg")
14
+ q5 = Factory(:question, :question_group => Factory(:question_group))
15
+ helper.q_text(q1).should == "<span class='qnum'>1) </span>#{q1.text}"
16
+ helper.q_text(q2).should == q2.text
17
+ helper.q_text(q3).should == q3.text
18
+ helper.q_text(q4).should == %Q(<img alt="Something" src="/#{asset_directory}/something.jpg" />)
19
+ helper.q_text(q5).should == q5.text
20
+ end
21
+ end
22
+
23
+ context "with mustache text substitution" do
24
+ require 'mustache'
25
+ let(:mustache_context){ Class.new(::Mustache){ def site; "Northwestern"; end; def somethingElse; "something new"; end; def group; "NUBIC"; end } }
26
+ it "substitues values into Question#text" do
27
+ q1 = Factory(:question, :text => "You are in {{site}}")
28
+ label = Factory(:question, :display_type => "label", :text => "Testing {{somethingElse}}")
29
+ helper.q_text(q1, mustache_context).should == "<span class='qnum'>1) </span>You are in Northwestern"
30
+ helper.q_text(label, mustache_context).should == "Testing something new"
31
+ end
32
+ end
33
+
34
+ context "response methods" do
35
+ it "should find or create responses, with index" do
36
+ q1 = Factory(:question, :answers => [a = Factory(:answer, :text => "different")])
37
+ q2 = Factory(:question, :answers => [b = Factory(:answer, :text => "strokes")])
38
+ q3 = Factory(:question, :answers => [c = Factory(:answer, :text => "folks")])
39
+ rs = Factory(:response_set, :responses => [r1 = Factory(:response, :question => q1, :answer => a), r3 = Factory(:response, :question => q3, :answer => c, :response_group => 1)])
40
+
41
+ helper.response_for(rs, nil).should == nil
42
+ helper.response_for(nil, q1).should == nil
43
+ helper.response_for(rs, q1).should == r1
44
+ helper.response_for(rs, q1, a).should == r1
45
+ helper.response_for(rs, q2).attributes.reject{|k,v| k == "api_id"}.should == Response.new(:question => q2, :response_set => rs).attributes.reject{|k,v| k == "api_id"}
46
+ helper.response_for(rs, q2, b).attributes.reject{|k,v| k == "api_id"}.should == Response.new(:question => q2, :response_set => rs).attributes.reject{|k,v| k == "api_id"}
47
+ helper.response_for(rs, q3, c, "1").should == r3
48
+
49
+ end
50
+ it "should keep an index of responses" do
51
+ helper.response_idx.should == "1"
52
+ helper.response_idx.should == "2"
53
+ helper.response_idx(false).should == "2"
54
+ helper.response_idx.should == "3"
55
+ end
56
+ it "should translate response class into attribute" do
57
+ helper.rc_to_attr(:string).should == :string_value
58
+ helper.rc_to_attr(:text).should == :text_value
59
+ helper.rc_to_attr(:integer).should == :integer_value
60
+ helper.rc_to_attr(:float).should == :float_value
61
+ helper.rc_to_attr(:datetime).should == :datetime_value
62
+ helper.rc_to_attr(:date).should == :date_value
63
+ helper.rc_to_attr(:time).should == :time_value
64
+ end
65
+
66
+ it "should translate response class into as" do
67
+ helper.rc_to_as(:string).should == :string
68
+ helper.rc_to_as(:text).should == :text
69
+ helper.rc_to_as(:integer).should == :string
70
+ helper.rc_to_as(:float).should == :string
71
+ helper.rc_to_as(:datetime).should == :string
72
+ helper.rc_to_as(:date).should == :string
73
+ helper.rc_to_as(:time).should == :string
74
+ end
75
+ end
76
+
77
+ context "overriding methods" do
78
+ before do
79
+ module SurveyorHelper
80
+ include Surveyor::Helpers::SurveyorHelperMethods
81
+ alias :old_rc_to_as :rc_to_as
82
+ def rc_to_as(type_sym)
83
+ case type_sym.to_s
84
+ when /(integer|float)/ then :string
85
+ when /(datetime)/ then :datetime
86
+ else type_sym
87
+ end
88
+ end
89
+ end
90
+ end
91
+ it "should translate response class into as" do
92
+ helper.rc_to_as(:string).should == :string
93
+ helper.rc_to_as(:text).should == :text
94
+ helper.rc_to_as(:integer).should == :string
95
+ helper.rc_to_as(:float).should == :string
96
+ helper.rc_to_as(:datetime).should == :datetime # not string
97
+ helper.rc_to_as(:date).should == :date # not string
98
+ helper.rc_to_as(:time).should == :time
99
+ end
100
+ after do
101
+ module SurveyorHelper
102
+ include Surveyor::Helpers::SurveyorHelperMethods
103
+ def rc_to_as(type_sym)
104
+ old_rc_to_as(type_sym)
105
+ end
106
+ end
107
+ end
108
+ end
109
+
110
+ # run this context after 'overriding methods'
111
+ context "post override test" do
112
+ # Sanity check
113
+ it "should translate response class into as after override" do
114
+ helper.rc_to_as(:datetime).should == :string # back to string
115
+ helper.rc_to_as(:date).should == :string # back to string
116
+ end
117
+ end
118
+ end
@@ -0,0 +1,22 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe Surveyor do
4
+ it "should write thousands of response sets" do
5
+ Surveyor::Parser.parse(File.read(File.join(Rails.root, 'surveys', 'kitchen_sink_survey.rb')))
6
+ survey = Survey.last
7
+ rs = ResponseSet.create(:survey => survey)
8
+ survey.sections.each{|s| s.questions.each{|q| rs.responses.create(:question => q, :answer => q.answers.first)}}
9
+ Benchmark.bm 20 do |x|
10
+ x.report "a test" do
11
+ full_path = File.join(Rails.root,"#{survey.access_code}_#{Time.now.to_i}.csv")
12
+ File.open(full_path, 'w') do |f|
13
+ 100.times do # adjust this to test
14
+ survey.response_sets.each_with_index{|r,i| f.write(r.to_csv(true, i == 0)) } # print access code every time, print_header first time
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+
22
+
@@ -0,0 +1,14 @@
1
+ survey "青少年人际关系问卷", :access_code => "青少年人际关系问卷" do
2
+ section "Basic questions" do
3
+ grid "第二部分:以下列出了一些描述。请您根据自己的实际情况作答。如果“非常不像我”,请选“1”,如果“非常像我”,请选“5”,以此类推。" do
4
+ a "1"
5
+ a "2"
6
+ a "3"
7
+ a "4"
8
+ a "5"
9
+ q "我常常想出新的有趣的点子", :pick => :one
10
+ q "我比同龄的其他孩子更有想象力", :pick => :one
11
+ q "即使一个人独处,我也不会觉得无聊", :pick => :one
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,34 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe Surveyor::Common, "" do
4
+ it "should convert text to a code that is more appropirate for a database entry" do
5
+ # A few answers from the survey
6
+ { "This? is a in - t3rrible-@nswer of! (question) on" => "this_t3rrible_nswer",
7
+ "Private insurance/ HMO/ PPO" => "private_insurance_hmo_ppo",
8
+ "<bold>VA</bold>" => "va",
9
+ "PMS (Premenstrual syndrome)/ PMDD (Premenstrual Dysphoric Disorder)" => "pms_pmdd",
10
+ "Have never been employed outside the home" => "never_been_employed_outside_home",
11
+ "Professional" => "professional",
12
+ "Not working because of temporary disability, but expect to return to a job" => "temporary_disability_expect_return_job",
13
+ "How long has it been since you last visited a doctor for a routine checkup (routine being not for a particular reason)?" => "visited_doctor_for_routine_checkup",
14
+ "Do you take medications as directed?" => "you_take_medications_as_directed",
15
+ "Do you every leak urine (or) water when you didn't want to?" => "urine_water_you_didnt_want", #checking for () and ' removal
16
+ "Do your biological family members (not adopted) have a \"history\" of any of the following?" => "family_members_history_any_following",
17
+ "Your health:" => "your_health",
18
+ "In general, you would say your health is:" => "you_would_say_your_health"
19
+ }.each{|k, v| Surveyor::Common.to_normalized_string(k).should == v}
20
+ end
21
+ describe '#generate_api_id' do
22
+ def generate
23
+ Surveyor::Common.generate_api_id
24
+ end
25
+
26
+ it 'generates a String' do
27
+ generate.should be_a String
28
+ end
29
+
30
+ it 'generates a new value every time' do
31
+ (1..100).collect { generate }.uniq.size.should == 100
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,204 @@
1
+ # -*- coding: utf-8 -*-
2
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
3
+
4
+ describe Surveyor::Parser do
5
+ let(:parser){ Surveyor::Parser.new }
6
+ it "should translate shortcuts into full model names" do
7
+ parser.send(:full, "section").should == "survey_section"
8
+ parser.send(:full, "g").should == "question_group"
9
+ parser.send(:full, "repeater").should == "question_group"
10
+ parser.send(:full, "label").should == "question"
11
+ parser.send(:full, "vc").should == "validation_condition"
12
+ parser.send(:full, "vcondition").should == "validation_condition"
13
+ end
14
+ it "should translate 'condition' based on context" do
15
+ parser.send(:full, "condition").should == "dependency_condition"
16
+ parser.send(:full, "c").should == "dependency_condition"
17
+ parser.context[:validation] = Validation.new
18
+ parser.send(:full, "condition").should == "validation_condition"
19
+ parser.send(:full, "c").should == "validation_condition"
20
+ parser.context[:validation] = nil
21
+ parser.send(:full, "condition").should == "dependency_condition"
22
+ parser.send(:full, "c").should == "dependency_condition"
23
+ end
24
+ it "should not translate bad shortcuts" do
25
+ parser.send(:full, "quack").should == "quack"
26
+ parser.send(:full, "grizzly").should == "grizzly"
27
+ end
28
+ it "should identify models that take blocks" do
29
+ parser.send(:block_models).should == %w(survey survey_section question_group)
30
+ end
31
+ it "should return a survey object" do
32
+ Surveyor::Parser.new.parse("survey 'hi' do\n end").is_a?(Survey).should be_true
33
+ end
34
+ describe 'reference checking' do
35
+ it 'accepts Answer#reference_identifier via underscore or hash syntax' do
36
+ survey_text = <<END
37
+ survey "Numbers" do
38
+ section_one "One" do
39
+ q_1 "Select a number", :pick => :one
40
+ a "One", {:reference_identifier => "1"}
41
+ a_2 "Two"
42
+ a_3 "Three"
43
+
44
+ label_2 "One is the loneliest number..."
45
+ dependency :rule => "A"
46
+ condition_A :q_1, "==", {:answer_reference => "1"}
47
+
48
+ label_3 "Two can be as bad as one..."
49
+ dependency :rule => "A"
50
+ condition_A :q_1, "==", {:answer_reference => "2"}
51
+
52
+ label_4 "that you'll ever do"
53
+ dependency :rule => "A"
54
+ condition_A :q_1, "==", :a_1
55
+
56
+ label_5 "it's the loneliest number since the number one"
57
+ dependency :rule => "A"
58
+ condition_A :q_1, "==", :a_2
59
+ end
60
+ end
61
+ END
62
+ survey = Surveyor::Parser.new.parse(survey_text)
63
+ survey.is_a?(Survey).should == true
64
+ end
65
+
66
+ end
67
+
68
+ describe 'translations' do
69
+
70
+ it 'should produce the survey text for :default locale' do
71
+ survey_text = <<END
72
+ survey "One language is never enough" do
73
+ translations :en => :default, :es =>{'questions' => {'name' =>{ 'text' => '¡Hola!'}}}
74
+ section_one "One" do
75
+ label_name "Hello!"
76
+ end
77
+ end
78
+ END
79
+ survey = Surveyor::Parser.new.parse(survey_text)
80
+ survey.is_a?(Survey).should == true
81
+ survey.translations.size.should == 2
82
+ question = survey.sections.first.questions.first
83
+ question.translation(:en)[:text].should == "Hello!"
84
+ question.translation(:es)[:text].should == "¡Hola!"
85
+ end
86
+
87
+
88
+ it 'should raise an error w/o :default locale' do
89
+ survey_text = <<END
90
+ survey "One language is never enough" do
91
+ translations :es =>{'questions' => {'name' =>{ 'text' => '¡Hola!'}}}
92
+ section_one "One" do
93
+ label_name "Hello!"
94
+ end
95
+ end
96
+ END
97
+ s = Survey.all.size
98
+ expect {survey = Surveyor::Parser.new.parse(survey_text)}.to raise_error
99
+ Survey.all.size.should == s
100
+ end
101
+
102
+
103
+ it 'should allow multiple default locales' do
104
+ survey_text = <<END
105
+ survey "Just don't talk about tyres" do
106
+ translations :'en-US' => :default, :'en-GB' => :default, :es =>{'questions' => {'name' =>{'text' => '¡Hola!'}}}
107
+ section_one "One" do
108
+ label_name "Hello!"
109
+ end
110
+ end
111
+ END
112
+
113
+ survey = Surveyor::Parser.new.parse(survey_text)
114
+ survey.is_a?(Survey).should == true
115
+ survey.translations.size.should == 3
116
+ question = survey.sections.first.questions.first
117
+ question.translation(:'en-US')[:text].should == "Hello!"
118
+ question.translation(:'en-GB')[:text].should == "Hello!"
119
+ question.translation(:es)[:text].should == "¡Hola!"
120
+ end
121
+
122
+ context 'when a translation is specified as a Hash' do
123
+ it 'should should treat the hash as an inline translation' do
124
+ survey_text = <<END
125
+ survey "One language is never enough" do
126
+ translations :en => :default, :es => {"title"=>"Un idioma nunca es suficiente", "survey_sections"=>{"one"=>{"title"=>"Uno"}}, "question_groups"=>{"hello"=>{"text"=>"¡Hola!"}}, "questions"=>{"name"=>{"text"=>"¿Cómo se llama Usted?", "answers"=>{"name"=>{"help_text"=>"Mi nombre es..."}}}}}
127
+ section_one "One" do
128
+ g_hello "Hello" do
129
+ q_name "What is your name?"
130
+ a_name :string, :help_text => "My name is..."
131
+ end
132
+ end
133
+ end
134
+ END
135
+ survey = Surveyor::Parser.new.parse(survey_text)
136
+ survey.is_a?(Survey).should == true
137
+ survey.translations.size.should == 2
138
+ survey.translation(:es)['title'].should == "Un idioma nunca es suficiente"
139
+ end
140
+ end
141
+
142
+ context 'when a translation is specified as a String' do
143
+
144
+ context 'when the survey filename is not given' do
145
+ it 'should look for the translation file relative to pwd' do
146
+ Dir.mktmpdir do |dir|
147
+ FileUtils.cd(dir) do
148
+ translation_yaml = YAML::dump({'title' => 'Un idioma nunca es suficiente'})
149
+ translation_temp_file = Tempfile.new('parser_spec_translation.yml',dir)
150
+ translation_temp_file.write(translation_yaml)
151
+ translation_temp_file.flush
152
+ survey_text = <<END
153
+ survey "One language is never enough" do
154
+ translations :es =>'#{File.basename(translation_temp_file.path)}', :en => :default
155
+ section_one "One" do
156
+ g_hello "Hello" do
157
+ q_name "What is your name?"
158
+ a_name :string, :help_text => "My name is..."
159
+ end
160
+ end
161
+ end
162
+ END
163
+ survey_temp_file = Tempfile.new('parser_spec_survey.rb',dir)
164
+ survey_temp_file.write(survey_text)
165
+ survey_temp_file.flush
166
+ Surveyor::Parser.parse(File.read(survey_temp_file.path))
167
+ survey = Survey.where(:title=>'One language is never enough').first
168
+ survey.nil?.should == false
169
+ survey.translation(:es)['title'].should == "Un idioma nunca es suficiente"
170
+ end
171
+ end
172
+ end
173
+ end
174
+ context 'when the survey filename is given' do
175
+ it 'should look for the translation file relative to the survey directory' do
176
+ Dir.mktmpdir do |dir|
177
+ translation_yaml = YAML::dump({'title' => 'Un idioma nunca es suficiente'})
178
+ translation_temp_file = Tempfile.new('surveyor:parser_spec.rb',dir)
179
+ translation_temp_file.write(translation_yaml)
180
+ translation_temp_file.flush
181
+ survey_text = <<END
182
+ survey "One language is never enough" do
183
+ translations :es =>'#{File.basename(translation_temp_file.path)}', :en => :default
184
+ section_one "One" do
185
+ g_hello "Hello" do
186
+ q_name "What is your name?"
187
+ a_name :string, :help_text => "My name is..."
188
+ end
189
+ end
190
+ end
191
+ END
192
+ survey_temp_file = Tempfile.new('surveyor:parser_spec.rb',dir)
193
+ survey_temp_file.write(survey_text)
194
+ survey_temp_file.flush
195
+ Surveyor::Parser.parse_file(survey_temp_file.path)
196
+ survey = Survey.where(:title=>'One language is never enough').first
197
+ survey.nil?.should == false
198
+ survey.translation(:es)['title'].should == "Un idioma nunca es suficiente"
199
+ end
200
+ end
201
+ end
202
+ end
203
+ end
204
+ end
@@ -0,0 +1,40 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+ require 'rake'
3
+
4
+ describe Surveyor::Parser do
5
+ before do
6
+ @rake = Rake::Application.new
7
+ Rake.application = @rake
8
+ Rake.application.rake_require "lib/tasks/surveyor_tasks"
9
+ Rake::Task.define_task(:environment)
10
+ end
11
+ it "should return properly parse the kitchen sink survey" do
12
+ ENV["FILE"]="surveys/kitchen_sink_survey.rb"
13
+ @rake["surveyor"].invoke
14
+
15
+ Survey.count.should == 1
16
+ SurveySection.count.should == 2
17
+ Question.count.should == 44
18
+ Answer.count.should == 241
19
+ Dependency.count.should == 6
20
+ DependencyCondition.count.should == 9
21
+ QuestionGroup.count.should == 6
22
+
23
+ Survey.all.map(&:destroy)
24
+ end
25
+ it "should return properly parse a UTF8 survey" do
26
+ ENV["FILE"]="../spec/lib/chinese_survey.rb"
27
+ @rake["surveyor"].invoke
28
+
29
+ Survey.count.should == 1
30
+ SurveySection.count.should == 1
31
+ Question.count.should == 3
32
+ Answer.count.should == 15
33
+ Dependency.count.should == 0
34
+ DependencyCondition.count.should == 0
35
+ QuestionGroup.count.should == 1
36
+
37
+ Survey.all.map(&:destroy)
38
+ end
39
+
40
+ end
@@ -0,0 +1,75 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe Surveyor::RedcapParser do
4
+ before(:each) do
5
+ # @parser = Surveyor::Parser.new
6
+ end
7
+ it "should require specific columns" do
8
+ # with standard fields
9
+ x = %w(field_units choices_or_calculations text_validation_type variable__field_name form_name section_header field_type field_label field_note text_validation_min text_validation_max identifier branching_logic_show_field_only_if required_field)
10
+ Surveyor::RedcapParser.new.missing_columns(x).should be_blank
11
+ # without field_units
12
+ y = %w(choices_or_calculations text_validation_type variable__field_name form_name section_header field_type field_label field_note text_validation_min text_validation_max identifier branching_logic_show_field_only_if required_field)
13
+ Surveyor::RedcapParser.new.missing_columns(y).should be_blank
14
+ # choices_or_calculations => choices_calculations_or_slider_labels
15
+ z = %w(field_units choices_calculations_or_slider_labels text_validation_type variable__field_name form_name section_header field_type field_label field_note text_validation_min text_validation_max identifier branching_logic_show_field_only_if required_field)
16
+ Surveyor::RedcapParser.new.missing_columns(z).should be_blank
17
+ # text_validation_type => text_validation_type_or_show_slider_number
18
+ a = %w(field_units choices_or_calculations text_validation_type_or_show_slider_number variable__field_name form_name section_header field_type field_label field_note text_validation_min text_validation_max identifier branching_logic_show_field_only_if required_field)
19
+ Surveyor::RedcapParser.new.missing_columns(a).should be_blank
20
+ end
21
+ it "should decompose dependency rules" do
22
+ # basic
23
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[f1_q12]="1"').should == {:rule => "A", :components => ['[f1_q12]="1"']}
24
+ # spacing
25
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[f1_q9] = "1"').should == {:rule => "A", :components => ['[f1_q9] = "1"']}
26
+ # and
27
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[pre_q88]="1" and [pre_q90]="1"').should == {:rule => "A and B", :components => ['[pre_q88]="1"', '[pre_q90]="1"']}
28
+ # or
29
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[second_q111]="1" or [second_q111]="3"').should == {:rule => "A or B", :components => ['[second_q111]="1"', '[second_q111]="3"']}
30
+ # or and
31
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[second_q100]="1" or [second_q100]="3" and [second_q101]="1"').should == {:rule => "A or B and C", :components => ['[second_q100]="1"', '[second_q100]="3"', '[second_q101]="1"']}
32
+ # and or
33
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[second_q4]="1" and [second_q11]="1" or [second_q11]="98"').should == {:rule => "A and B or C", :components => ['[second_q4]="1"', '[second_q11]="1"', '[second_q11]="98"']}
34
+ # or or or
35
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[pre_q74]="1" or [pre_q74]="2" or [pre_q74]="4" or [pre_q74]="5"').should == {:rule => "A or B or C or D", :components => ['[pre_q74]="1"', '[pre_q74]="2"', '[pre_q74]="4"', '[pre_q74]="5"']}
36
+ # and with different operator
37
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[f1_q15] >= 21 and [f1_q28] ="1"').should == {:rule => "A and B", :components => ['[f1_q15] >= 21', '[f1_q28] ="1"']}
38
+ end
39
+ it "should decompose nested dependency rules" do
40
+ # external parenthesis
41
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('([pre_q74]="1" or [pre_q74]="2" or [pre_q74]="4" or [pre_q74]="5") and [pre_q76]="2"').should == {:rule => "(A or B or C or D) and E", :components => ['[pre_q74]="1"', '[pre_q74]="2"', '[pre_q74]="4"', '[pre_q74]="5"', '[pre_q76]="2"']}
42
+ # internal parenthesis
43
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[f1_q10(4)]="1"').should == {:rule => "A", :components => ['[f1_q10(4)]="1"']}
44
+ # internal and external parenthesis
45
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('([f1_q7(11)] = "1" or [initial_52] = "1") and [pre_q76]="2"').should == {:rule => "(A or B) and C", :components => ['[f1_q7(11)] = "1"', '[initial_52] = "1"', '[pre_q76]="2"']}
46
+ end
47
+ it "should decompose shortcut dependency rules" do
48
+ # 'or' on the right of the operator
49
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[initial_108] = "1" or "2"').should == {:rule => "A or B", :components => ['[initial_108] = "1"', '[initial_108] = "2"']}
50
+ # multiple 'or' on the right
51
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[initial_52] = "1" or "2" or "3"').should == {:rule => "A or B or C", :components => ['[initial_52] = "1"', '[initial_52] = "2"', '[initial_52] = "3"']}
52
+ # commas on the right
53
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[initial_189] = "1, 2, 3"').should == {:rule => "(A and B and C)", :components => ['[initial_189] = "1"', '[initial_189] = "2"', '[initial_189] = "3"']}
54
+ # multiple internal parenthesis on the left
55
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_rule('[initial_119(1)(2)(3)(4)(5)] = "1"').should == {:rule => "(A and B and C and D and E)", :components => ['[initial_119(1)] = "1"', '[initial_119(2)] = "1"', '[initial_119(3)] = "1"', '[initial_119(4)] = "1"', '[initial_119(5)] = "1"']}
56
+ end
57
+ it "should decompose components" do
58
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_component('[initial_52] = "1"').should == {:question_reference => 'initial_52', :operator => '==', :answer_reference => '1'}
59
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_component('[initial_119(2)] = "1"').should == {:question_reference => 'initial_119', :operator => '==', :answer_reference => '2'}
60
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_component('[f1_q15] >= 21').should == {:question_reference => 'f1_q15', :operator => '>=', :integer_value => '21'}
61
+ # basic, blanks
62
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_component("[f1_q15]=''").should == {:question_reference => 'f1_q15', :operator => '==', :answer_reference => ''}
63
+ # basic, negatives
64
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_component("[f1_q15]='-2'").should == {:question_reference => 'f1_q15', :operator => '==', :answer_reference => '-2'}
65
+ # internal parenthesis
66
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_component("[hiprep_heat2(97)] = '1'").should == {:question_reference => 'hiprep_heat2', :operator => '==', :answer_reference => '97'}
67
+ Dependency.new.extend(SurveyorRedcapParserDependencyMethods).decompose_component("[hi_event1_type] <> ''").should == {:question_reference => 'hi_event1_type', :operator => '!=', :answer_reference => ''}
68
+
69
+ end
70
+ it "should return a survey object" do
71
+ x = %("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?"\nstudy_id,demographics,,,text,"Study ID",,,,,,,,)
72
+ Surveyor::RedcapParser.new.parse(x, "redcaptest").is_a?(Survey).should be_true
73
+ end
74
+
75
+ end
@@ -0,0 +1,26 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+ require "rake"
3
+
4
+ describe "app rake tasks" do
5
+ before(:all) do # do this only once before all tests
6
+ @rake = Rake::Application.new
7
+ Rake.application = @rake
8
+ Rake.application.rake_require "lib/tasks/surveyor_tasks"
9
+ Rake::Task.define_task(:environment)
10
+ end
11
+ after do # after every test
12
+ @rake[@task_name].reenable if @task_name
13
+ end
14
+
15
+ it "should have 'environment' as a prereq" do
16
+ @task_name = "surveyor:parse"
17
+ @rake[@task_name].prerequisites.should include("environment")
18
+ end
19
+ it "should should trace" do
20
+ ENV["FILE"]="surveys/kitchen_sink_survey.rb"
21
+ @task_name = "surveyor:parse"
22
+ @rake.options.trace = true
23
+ Surveyor::Parser.should_receive(:parse).with(File.read(File.join(Rails.root, ENV["FILE"])), {:trace => true})
24
+ @rake[@task_name].invoke
25
+ end
26
+ end