scorm_engine 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. checksums.yaml +4 -4
  2. data/lib/scorm_engine/faraday/request.rb +4 -2
  3. data/lib/scorm_engine/version.rb +1 -1
  4. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_About/_get_about/is_successful.yml +24 -15
  5. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_About/_get_about/knows_the_platform.yml +24 -15
  6. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_About/_get_about/knows_the_version.yml +24 -15
  7. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_About/_get_about_user_count/accepts_before_option.yml +23 -15
  8. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_About/_get_about_user_count/accepts_since_option.yml +23 -15
  9. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_About/_get_about_user_count/is_successful.yml +23 -15
  10. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_About/_get_about_user_count/tracks_combined_counts.yml +23 -15
  11. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_About/_get_about_user_count/tracks_per_tenantcounts.yml +23 -15
  12. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Configuration/_get_app_configuration/is_successful.yml +10 -10
  13. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Configuration/_get_app_configuration/returns_settings_and_values.yml +10 -10
  14. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Configuration/_post_app_configuration/fails_when_settings_are_invalid.yml +7 -7
  15. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Configuration/_post_app_configuration/is_successful.yml +7 -7
  16. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Configuration/_post_app_configuration/persists_the_settings.yml +34 -34
  17. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_delete_course/fails_when_id_is_invalid.yml +23 -15
  18. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_delete_course/works.yml +19 -9
  19. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_course_detail/fails_when_id_is_invalid.yml +23 -15
  20. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_course_detail/is_successful.yml +24 -16
  21. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_course_detail/results/sucessfully_creates_the_Course_attributes.yml +24 -16
  22. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_course_preview/fails_when_id_is_invalid.yml +23 -15
  23. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_course_preview/is_successful.yml +23 -15
  24. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_course_preview/results/returns_a_URL_string.yml +23 -15
  25. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_course_preview/results/returns_a_URL_string_containing_a_signed_jwt.yml +46 -0
  26. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/_course_id_option/fetches_a_single_course_but_perhaps_multiple_versions.yml +23 -15
  27. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/_course_id_option/returns_404_when_ID_is_invalid.yml +23 -15
  28. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/_more_option_pagination_/returns_all_the_courses.yml +109 -44
  29. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/_more_option_pagination_/returns_the_more_key_in_the_raw_response.yml +32 -24
  30. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/_since_option/fails_when_passed_an_invalid_value.yml +20 -10
  31. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/_since_option/works.yml +39 -19
  32. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/is_successful.yml +32 -19
  33. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/results/is_an_enumerator_of_Course_models.yml +32 -19
  34. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses/_get_courses/results/sucessfully_creates_the_Course_attributes.yml +32 -19
  35. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_get_course_configuration/fails_when_id_is_invalid.yml +23 -15
  36. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_get_course_configuration/is_successful.yml +23 -15
  37. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_get_course_configuration/results/makes_settings_available_as_key/value_pairs.yml +23 -15
  38. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_get_course_configuration_setting/fails_when_course_id_is_invalid.yml +23 -15
  39. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_get_course_configuration_setting/fails_when_setting_id_is_invalid.yml +20 -10
  40. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_get_course_configuration_setting/is_successful.yml +41 -19
  41. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_get_course_configuration_setting/results/returns_the_value_as_a_string.yml +41 -19
  42. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_post_course_configuration/fails_when_id_is_invalid.yml +25 -15
  43. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_post_course_configuration/fails_when_settings_are_invalid.yml +24 -12
  44. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_post_course_configuration/is_successful.yml +21 -9
  45. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_post_course_configuration/persists_the_settings.yml +88 -48
  46. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_put_course_configuration_setting/fails_when_course_id_is_invalid.yml +25 -15
  47. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_put_course_configuration_setting/fails_when_setting_id_is_invalid.yml +20 -10
  48. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_put_course_configuration_setting/is_successful.yml +44 -22
  49. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Configuration/_put_course_configuration_setting/results/persists_the_changes.yml +66 -34
  50. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Import/_get_course_import/successful_imports/works.yml +102 -95
  51. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Import/_get_course_import/unsuccessful_imports/fails_to_import_given_an_invalid_url.yml +100 -278
  52. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Courses_Import/_post_course_import/unsuccessful_imports/fails_to_import_a_previously_existing_course.yml +21 -9
  53. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_delete_destination/returns_success_even_when_id_is_invalid.yml +19 -9
  54. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_delete_destination/works.yml +19 -9
  55. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destination/fails_when_id_is_invalid.yml +22 -14
  56. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destination/is_successful.yml +22 -14
  57. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destination/results/sucessfully_creates_the_destination_attributes.yml +22 -14
  58. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destination_dispatches_registration_count/fails_when_invalid.yml +22 -14
  59. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destination_dispatches_registration_count/works.yml +20 -10
  60. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destinations/_more_option_pagination_/returns_all_the_destinations.yml +48 -31
  61. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destinations/_more_option_pagination_/returns_the_more_key_in_the_raw_response.yml +23 -15
  62. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destinations/_since_option/fails_when_passed_an_invalid_value.yml +22 -13
  63. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destinations/_since_option/works.yml +23 -15
  64. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destinations/is_successful.yml +23 -15
  65. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destinations/results/is_an_enumerator_of_Destination_models.yml +23 -15
  66. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_get_destinations/results/sucessfully_creates_the_Destination_attributes.yml +23 -15
  67. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_post_destination/is_successful.yml +40 -18
  68. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_post_destination/is_successful_even_if_the_destination_id_is_not_unique.yml +21 -9
  69. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_post_destination_dispatches_enabled/fails_when_invalid.yml +24 -12
  70. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_post_destination_dispatches_enabled/works_when_false.yml +21 -9
  71. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_post_destination_dispatches_enabled/works_when_true.yml +21 -9
  72. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_post_destination_dispatches_registration_instancing/fails_when_invalid.yml +24 -12
  73. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_post_destination_dispatches_registration_instancing/works_when_false.yml +21 -9
  74. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_post_destination_dispatches_registration_instancing/works_when_true.yml +21 -9
  75. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_put_destination/is_successful.yml +21 -9
  76. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_put_destination/results/sucessfully_creates_the_destination_attributes.yml +43 -23
  77. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_delete_dispatch/returns_success_even_when_id_is_invalid.yml +19 -7
  78. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_delete_dispatch/works.yml +19 -7
  79. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_delete_dispatch_registration_count/is_successful.yml +19 -7
  80. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_delete_dispatch_registration_count/succeeds_even_when_id_is_invalid.yml +19 -7
  81. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch/fails_when_id_is_invalid.yml +22 -12
  82. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch/is_successful.yml +23 -13
  83. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch/results/sucessfully_creates_the_dispatch_attributes.yml +23 -13
  84. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_enabled/is_false_when_disabled.yml +39 -15
  85. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_enabled/is_true_when_enabled.yml +39 -15
  86. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_registration_count/fails_when_id_is_invalid.yml +41 -19
  87. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_registration_count/is_successful.yml +42 -20
  88. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_registration_count/results/sucessfully_creates_the_dispatch_attributes.yml +42 -20
  89. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_zip/fails_given_an_invalid_id.yml +22 -12
  90. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_zip/fails_given_an_invalid_type.yml +20 -8
  91. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_zip/works.yml +24 -12
  92. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_zip/works_when_type_is_AICC.yml +24 -12
  93. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_zip/works_when_type_is_SCORM12.yml +24 -12
  94. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_zip/works_when_type_is_SCORM2004-3RD.yml +24 -12
  95. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatches/_more_option_pagination_/returns_all_the_dispatches.yml +47 -27
  96. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatches/_more_option_pagination_/returns_the_more_key_in_the_raw_response.yml +23 -13
  97. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatches/_since_option/fails_when_passed_an_invalid_value.yml +20 -8
  98. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatches/_since_option/works.yml +23 -13
  99. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatches/is_successful.yml +23 -13
  100. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatches/results/is_an_enumerator_of_dispatch_models.yml +23 -13
  101. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatches/results/sucessfully_creates_the_dispatch_attributes.yml +21 -44
  102. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_post_dispatch/is_successful.yml +38 -14
  103. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_post_dispatch/updates_if_same_dispatch_id.yml +65 -33
  104. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_put_dispatch/is_successful.yml +19 -7
  105. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_put_dispatch/results/sucessfully_creates_the_dispatch_attributes.yml +42 -20
  106. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_put_dispatch_enabled/fails_when_invalid.yml +22 -10
  107. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_put_dispatch_enabled/works_when_false.yml +19 -7
  108. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_put_dispatch_enabled/works_when_true.yml +19 -7
  109. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Ping/_get_ping/is_successful.yml +23 -15
  110. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Ping/_get_ping/reports_the_api_is_up.yml +23 -15
  111. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Ping/_get_ping/with_invalid_password/is_unsuccessful.yml +25 -17
  112. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Ping/_get_ping/with_invalid_password/returns_status_403.yml +25 -17
  113. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_delete_registration/is_failure_when_registration_does_not_exist.yml +23 -13
  114. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_delete_registration/is_successful_when_registration_exists.yml +19 -7
  115. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_exists/is_false_when_registration_does_not_exist.yml +23 -13
  116. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_exists/is_true_when_registration_exists.yml +20 -8
  117. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_instances/includes_results_we_expect.yml +26 -14
  118. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_instances/is_successful.yml +26 -14
  119. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_instances/returns_an_array_of_registrations.yml +26 -14
  120. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_launch_link/fails_when_id_is_invalid.yml +23 -13
  121. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_launch_link/is_successful.yml +23 -13
  122. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_launch_link/results/returns_a_URL_string.yml +23 -13
  123. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_progress/detail/does_not_return_activity_details_by_default.yml +24 -14
  124. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_progress/detail/returns_activity_details_if_requested.yml +24 -14
  125. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_progress/fails_when_registration_does_not_exist.yml +23 -13
  126. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registration_progress/returns_a_registration_when_it_exists.yml +24 -14
  127. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registrations/filtering_by_course_id/excludes_results.yml +22 -12
  128. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registrations/filtering_by_course_id/includes_results.yml +26 -14
  129. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registrations/filtering_by_learner_id/excludes_results.yml +22 -12
  130. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registrations/filtering_by_learner_id/includes_results.yml +26 -14
  131. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registrations/includes_results_we_expect.yml +26 -14
  132. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registrations/is_successful.yml +26 -14
  133. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_get_registrations/returns_an_array_of_registrations.yml +26 -14
  134. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_post_registration/fails_if_course_id_is_invalid.yml +22 -10
  135. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_post_registration/fails_if_registration_id_already_exists.yml +20 -8
  136. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_post_registration/is_successful.yml +38 -14
  137. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations/_post_registration/is_successful_even_when_given_a_UTF8/slashed_username.yml +38 -14
  138. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_get_registration_configuration/fails_when_id_is_invalid.yml +23 -15
  139. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_get_registration_configuration/is_successful.yml +23 -15
  140. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_get_registration_configuration/results/makes_settings_available_as_key/value_pairs.yml +23 -15
  141. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_get_registration_configuration_setting/fails_when_registration_id_is_invalid.yml +23 -15
  142. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_get_registration_configuration_setting/fails_when_setting_id_is_invalid.yml +20 -10
  143. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_get_registration_configuration_setting/is_successful.yml +41 -19
  144. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_get_registration_configuration_setting/results/returns_the_value_as_a_string.yml +41 -19
  145. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_post_registration_configuration/fails_when_id_is_invalid.yml +25 -15
  146. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_post_registration_configuration/fails_when_settings_are_invalid.yml +24 -12
  147. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_post_registration_configuration/is_successful.yml +21 -9
  148. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_post_registration_configuration/persists_the_settings.yml +88 -48
  149. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_put_registration_configuration_setting/fails_when_registration_id_is_invalid.yml +25 -15
  150. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_put_registration_configuration_setting/fails_when_setting_id_is_invalid.yml +20 -10
  151. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_put_registration_configuration_setting/is_successful.yml +43 -21
  152. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_Configuration/_put_registration_configuration_setting/results/persists_the_changes.yml +64 -32
  153. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_LaunchHistory/_get_registration_launch_history/fails_when_registration_does_not_exist.yml +23 -15
  154. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_LaunchHistory/_get_registration_launch_history/is_successful.yml +23 -31
  155. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Registrations_LaunchHistory/_get_registration_launch_history/returns_an_array_of_registration_launch_histories.yml +23 -31
  156. data/spec/scorm_engine/api/endpoints/about_spec.rb +1 -1
  157. data/spec/scorm_engine/api/endpoints/courses/configuration_spec.rb +5 -5
  158. data/spec/scorm_engine/api/endpoints/courses_spec.rb +8 -7
  159. data/spec/scorm_engine/api/endpoints/destinations_spec.rb +2 -2
  160. data/spec/scorm_engine/api/endpoints/dispatches_spec.rb +1 -1
  161. data/spec/scorm_engine/api/endpoints/registrations/configuration_spec.rb +5 -5
  162. data/spec/scorm_engine/api/endpoints/registrations_spec.rb +2 -2
  163. data/spec/scorm_engine/api/endpoints/tenants/configuration_spec.rb +1 -1
  164. metadata +3 -4
  165. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Destinations/_delete_destination/raises_ArgumentError_when_destination_id_is_missing.yml +0 -32
  166. data/spec/fixtures/vcr/ScormEngine_Api_Endpoints_Dispatches/_get_dispatch_registration_count/when_dispatch_has_registrations/knows_it_s_registration_count.yml +0 -63
@@ -8,30 +8,42 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - ScormEngine Ruby Gem 0.6.2
11
+ - ScormEngine Ruby Gem 0.8.1
12
12
  Authorization:
13
13
  - Basic <BASIC_AUTH>
14
14
  response:
15
15
  status:
16
16
  code: 200
17
- message: ''
17
+ message: OK
18
18
  headers:
19
19
  content-type:
20
20
  - application/json
21
- date:
22
- - Fri, 24 Aug 2018 21:33:30 GMT
23
- server:
24
- - nginx
25
- vary:
26
- - Accept-Encoding
27
21
  content-length:
28
- - '354'
22
+ - '2496'
29
23
  connection:
30
- - Close
24
+ - close
25
+ date:
26
+ - Fri, 25 Sep 2020 23:09:19 GMT
27
+ p3p:
28
+ - CP="NOI"
29
+ server:
30
+ - Apache
31
+ x-xss-protection:
32
+ - 1; mode=block
33
+ x-cache:
34
+ - Miss from cloudfront
35
+ via:
36
+ - 1.1 df0a4ea7de0fa05190904df4271e5d1e.cloudfront.net (CloudFront)
37
+ x-amz-cf-pop:
38
+ - SLC50-C1
39
+ x-amz-cf-id:
40
+ - md3CYVBEyb_9ipmavI2sC6eVQc_JkURtnx9ct2GBhjlzv-lUe3yLSw==
31
41
  body:
32
- encoding: ASCII-8BIT
33
- string: '{"registrations":[{"id":"testing-golf-explained-registration-1","instance":0,"updated":"2018-08-24T21:33:12.000Z","registrationCompletion":"UNKNOWN","registrationSuccess":"Unknown","totalSecondsTracked":0.0,"lastAccessDate":"2018-08-24T21:33:12.000Z","createdDate":"2018-08-24T21:33:12.000Z","course":{"id":"testing-golf-explained","version":0,"title":"Golf
34
- Explained - Run-time Basic Calls","courseLearningStandard":"SCORM_2004_3RD_EDITION","registrationCount":1,"updated":"2018-08-15T23:19:49.000Z"},"learner":{"id":"testing-golf-explained-learner-1","firstName":"Arnold","lastName":"Palmer"},"globalObjectives":[],"sharedData":[]}]}'
42
+ encoding: UTF-8
43
+ string: '{"registrations":[{"id":"testing-golf-explained-registration-1","instance":0,"updated":"2020-09-25T22:50:54.000Z","registrationCompletion":"UNKNOWN","registrationSuccess":"Unknown","totalSecondsTracked":0.0,"lastAccessDate":"2020-09-25T22:50:54.000Z","createdDate":"2020-09-25T22:50:54.000Z","course":{"id":"testing-golf-explained","version":0,"title":"Golf
44
+ Explained - Run-time Basic Calls","courseLearningStandard":"SCORM_2004_3RD_EDITION","registrationCount":0,"updated":"2020-09-25T22:50:54.000Z"},"learner":{"id":"testing-golf-explained-learner-1","firstName":"Arnold","lastName":"Palmer"},"globalObjectives":[],"activityDetails":{"id":"golf_sample_default_org","title":"Golf
45
+ Explained - Run-time Basic Calls","activityProgressKnown":false,"attempts":0,"activityCompletion":"UNKNOWN","previousAttemptCompletion":"Unknown","activitySuccess":"UNKNOWN","attemptedDuringThisAttempt":false,"suspended":false,"active":false,"included":false,"ordinal":0,"selectedChildren":false,"randomizedChildren":false,"children":[{"id":"item_1","title":"Golf
46
+ Explained","activityProgressKnown":false,"attempts":0,"activityCompletion":"UNKNOWN","previousAttemptCompletion":"Unknown","activitySuccess":"UNKNOWN","timeTracked":"0000:00:00","attemptedDuringThisAttempt":false,"suspended":false,"active":false,"included":false,"ordinal":0,"selectedChildren":false,"randomizedChildren":false,"children":[],"objectives":[{"id":"","primary":true,"firstScoreScaled":0.0,"objectiveCompletion":"Unknown","objectiveSuccess":"UNKNOWN","previousObjectiveSuccess":"Unknown"}],"staticProperties":{"completionThreshold":"","launchData":"","maxTimeAllowed":"","scaledPassingScore":0.0,"scaledPassingScoreUsed":false,"timeLimitAction":""},"runtime":{"completionStatus":"unknown","credit":"credit","entry":"abinitio","exit":"Unknown","learnerPreference":{"audioLevel":1.0,"language":"","deliverySpeed":1.0,"audioCaptioning":0},"mode":"Normal","progressMeasure":"","scoreScaled":"","scoreRaw":"","scoreMin":"","scoreMax":"","totalTime":"0000:00:00","timeTracked":"0000:00:00","successStatus":"Unknown","suspendData":"","learnerComments":[],"lmsComments":[],"runtimeInteractions":[],"runtimeObjectives":[]}}],"objectives":[{"id":"","primary":true,"firstScoreScaled":0.0,"objectiveCompletion":"Unknown","objectiveSuccess":"UNKNOWN","previousObjectiveSuccess":"Unknown"}],"staticProperties":{"completionThreshold":"","launchData":"","maxTimeAllowed":"","scaledPassingScore":0.0,"scaledPassingScoreUsed":false,"timeLimitAction":""}}}]}'
35
47
  http_version:
36
- recorded_at: Fri, 24 Aug 2018 21:33:30 GMT
48
+ recorded_at: Fri, 25 Sep 2020 23:09:20 GMT
37
49
  recorded_with: VCR 4.0.0
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: '{"courseId":"invalid-bogus","registrationId":"testing-golf-explained-registration-1","learner":{"id":"testing-golf-explained-learner-1","firstName":"Arnold","lastName":"Palmer"},"postBack":{"url":"http://playtronics.com/passback/","authType":"FORM","userName":"werner_brandes","password":"passport","resultsFormat":"ACTIVITY"}}'
9
9
  headers:
10
10
  User-Agent:
11
- - ScormEngine Ruby Gem 0.6.2
11
+ - ScormEngine Ruby Gem 0.8.1
12
12
  Authorization:
13
13
  - Basic <BASIC_AUTH>
14
14
  Content-Type:
@@ -16,21 +16,33 @@ http_interactions:
16
16
  response:
17
17
  status:
18
18
  code: 400
19
- message: ''
19
+ message: Bad Request
20
20
  headers:
21
21
  content-type:
22
22
  - application/json
23
- date:
24
- - Fri, 24 Aug 2018 21:33:08 GMT
25
- server:
26
- - nginx
27
23
  content-length:
28
- - '49'
24
+ - '50'
29
25
  connection:
30
- - Close
26
+ - close
27
+ date:
28
+ - Fri, 25 Sep 2020 23:09:28 GMT
29
+ p3p:
30
+ - CP="NOI"
31
+ server:
32
+ - Apache
33
+ x-xss-protection:
34
+ - 1; mode=block
35
+ x-cache:
36
+ - Error from cloudfront
37
+ via:
38
+ - 1.1 892ff18443201978a8cd2296b3d38e18.cloudfront.net (CloudFront)
39
+ x-amz-cf-pop:
40
+ - SLC50-C1
41
+ x-amz-cf-id:
42
+ - Z5xTdfqtti8_HqE2S1Fdk32mk6YyOxJTqAhxLYV8qT1kE_iKrxBChQ==
31
43
  body:
32
44
  encoding: UTF-8
33
- string: '{"message":"External Package ID ''invalid-bogus''"}'
45
+ string: '{"message":"Course ID ''invalid-bogus'' is invalid"}'
34
46
  http_version:
35
- recorded_at: Fri, 24 Aug 2018 21:33:08 GMT
47
+ recorded_at: Fri, 25 Sep 2020 23:09:28 GMT
36
48
  recorded_with: VCR 4.0.0
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: '{"courseId":"testing-golf-explained","registrationId":"testing-golf-explained-registration-1","learner":{"id":"testing-golf-explained-learner-1","firstName":"Arnold","lastName":"Palmer"},"postBack":{"url":"http://playtronics.com/passback/","authType":"FORM","userName":"werner_brandes","password":"passport","resultsFormat":"ACTIVITY"}}'
9
9
  headers:
10
10
  User-Agent:
11
- - ScormEngine Ruby Gem 0.6.2
11
+ - ScormEngine Ruby Gem 0.8.1
12
12
  Authorization:
13
13
  - Basic <BASIC_AUTH>
14
14
  Content-Type:
@@ -16,21 +16,33 @@ http_interactions:
16
16
  response:
17
17
  status:
18
18
  code: 400
19
- message: ''
19
+ message: Bad Request
20
20
  headers:
21
21
  content-type:
22
22
  - application/json
23
- date:
24
- - Fri, 24 Aug 2018 21:33:10 GMT
25
- server:
26
- - nginx
27
23
  content-length:
28
24
  - '52'
29
25
  connection:
30
- - Close
26
+ - close
27
+ date:
28
+ - Fri, 25 Sep 2020 23:09:30 GMT
29
+ p3p:
30
+ - CP="NOI"
31
+ server:
32
+ - Apache
33
+ x-xss-protection:
34
+ - 1; mode=block
35
+ x-cache:
36
+ - Error from cloudfront
37
+ via:
38
+ - 1.1 7a609f410daa3b15339ef0cc23dbb296.cloudfront.net (CloudFront)
39
+ x-amz-cf-pop:
40
+ - SLC50-C1
41
+ x-amz-cf-id:
42
+ - pPTv20CwFcKV7y_eBJ_fCHp70xU02W-6nW6EA7EkrfdY_1QTPnozlw==
31
43
  body:
32
44
  encoding: UTF-8
33
45
  string: '{"message":"This RegistrationId is already in use."}'
34
46
  http_version:
35
- recorded_at: Fri, 24 Aug 2018 21:33:10 GMT
47
+ recorded_at: Fri, 25 Sep 2020 23:09:30 GMT
36
48
  recorded_with: VCR 4.0.0
@@ -8,25 +8,37 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - ScormEngine Ruby Gem 0.6.2
11
+ - ScormEngine Ruby Gem 0.8.1
12
12
  Authorization:
13
13
  - Basic <BASIC_AUTH>
14
14
  response:
15
15
  status:
16
16
  code: 204
17
- message: ''
17
+ message: No Content
18
18
  headers:
19
+ connection:
20
+ - close
19
21
  date:
20
- - Fri, 24 Aug 2018 21:33:11 GMT
22
+ - Fri, 25 Sep 2020 23:09:27 GMT
23
+ p3p:
24
+ - CP="NOI"
21
25
  server:
22
- - nginx
23
- connection:
24
- - Close
26
+ - Apache
27
+ x-xss-protection:
28
+ - 1; mode=block
29
+ x-cache:
30
+ - Miss from cloudfront
31
+ via:
32
+ - 1.1 3046ef5af023075cfbd500968062319e.cloudfront.net (CloudFront)
33
+ x-amz-cf-pop:
34
+ - SLC50-C1
35
+ x-amz-cf-id:
36
+ - fBJ8Vr0--ElGkKs8fQiNbBxKlbLZVhbUQMK8O6Ql0c66KH8bcPHIOg==
25
37
  body:
26
38
  encoding: UTF-8
27
39
  string: ''
28
40
  http_version:
29
- recorded_at: Fri, 24 Aug 2018 21:33:11 GMT
41
+ recorded_at: Fri, 25 Sep 2020 23:09:27 GMT
30
42
  - request:
31
43
  method: post
32
44
  uri: https://<SCORM_ENGINE_HOST>/ScormEngineInterface/api/v1/ScormEngineGemTesting-default/registrations
@@ -35,7 +47,7 @@ http_interactions:
35
47
  string: '{"courseId":"testing-golf-explained","registrationId":"testing-golf-explained-registration-1","learner":{"id":"testing-golf-explained-learner-1","firstName":"Arnold","lastName":"Palmer"},"postBack":{"url":"http://playtronics.com/passback/","authType":"FORM","userName":"werner_brandes","password":"passport","resultsFormat":"ACTIVITY"}}'
36
48
  headers:
37
49
  User-Agent:
38
- - ScormEngine Ruby Gem 0.6.2
50
+ - ScormEngine Ruby Gem 0.8.1
39
51
  Authorization:
40
52
  - Basic <BASIC_AUTH>
41
53
  Content-Type:
@@ -43,17 +55,29 @@ http_interactions:
43
55
  response:
44
56
  status:
45
57
  code: 204
46
- message: ''
58
+ message: No Content
47
59
  headers:
60
+ connection:
61
+ - close
48
62
  date:
49
- - Fri, 24 Aug 2018 21:33:12 GMT
63
+ - Fri, 25 Sep 2020 23:09:27 GMT
64
+ p3p:
65
+ - CP="NOI"
50
66
  server:
51
- - nginx
52
- connection:
53
- - Close
67
+ - Apache
68
+ x-xss-protection:
69
+ - 1; mode=block
70
+ x-cache:
71
+ - Miss from cloudfront
72
+ via:
73
+ - 1.1 a1d0bea525f74dd86deb7d34bec14cac.cloudfront.net (CloudFront)
74
+ x-amz-cf-pop:
75
+ - SLC50-C1
76
+ x-amz-cf-id:
77
+ - 5-VOX79cJzQs1dNMnHbl7ZnNo9tmDhE0t-nAR6G0OHe7z3hsEKSPcQ==
54
78
  body:
55
79
  encoding: UTF-8
56
80
  string: ''
57
81
  http_version:
58
- recorded_at: Fri, 24 Aug 2018 21:33:12 GMT
82
+ recorded_at: Fri, 25 Sep 2020 23:09:27 GMT
59
83
  recorded_with: VCR 4.0.0
@@ -8,25 +8,37 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - ScormEngine Ruby Gem 0.6.2
11
+ - ScormEngine Ruby Gem 0.8.1
12
12
  Authorization:
13
13
  - Basic <BASIC_AUTH>
14
14
  response:
15
15
  status:
16
16
  code: 204
17
- message: ''
17
+ message: No Content
18
18
  headers:
19
+ connection:
20
+ - close
19
21
  date:
20
- - Fri, 24 Aug 2018 21:33:05 GMT
22
+ - Fri, 25 Sep 2020 23:09:29 GMT
23
+ p3p:
24
+ - CP="NOI"
21
25
  server:
22
- - nginx
23
- connection:
24
- - Close
26
+ - Apache
27
+ x-xss-protection:
28
+ - 1; mode=block
29
+ x-cache:
30
+ - Miss from cloudfront
31
+ via:
32
+ - 1.1 e962bcfd10e6f174f59a72d119cef444.cloudfront.net (CloudFront)
33
+ x-amz-cf-pop:
34
+ - SLC50-C1
35
+ x-amz-cf-id:
36
+ - AuuzJkMi8KeuZH7OZFtmZ0Fnmh5ExBY6GAfDyCB1vyv6DLmPrtQ6Kg==
25
37
  body:
26
38
  encoding: UTF-8
27
39
  string: ''
28
40
  http_version:
29
- recorded_at: Fri, 24 Aug 2018 21:33:05 GMT
41
+ recorded_at: Fri, 25 Sep 2020 23:09:29 GMT
30
42
  - request:
31
43
  method: post
32
44
  uri: https://<SCORM_ENGINE_HOST>/ScormEngineInterface/api/v1/ScormEngineGemTesting-default/registrations
@@ -35,7 +47,7 @@ http_interactions:
35
47
  string: '{"courseId":"testing-golf-explained","registrationId":"testing-golf-explained-registration-1","learner":{"id":"testing-golf-explained-learner-1","firstName":"Släshy","lastName":"Mč/SláshFacę"},"postBack":{"url":"http://playtronics.com/passback/","authType":"FORM","userName":"werner_brandes","password":"passport","resultsFormat":"ACTIVITY"}}'
36
48
  headers:
37
49
  User-Agent:
38
- - ScormEngine Ruby Gem 0.6.2
50
+ - ScormEngine Ruby Gem 0.8.1
39
51
  Authorization:
40
52
  - Basic <BASIC_AUTH>
41
53
  Content-Type:
@@ -43,17 +55,29 @@ http_interactions:
43
55
  response:
44
56
  status:
45
57
  code: 204
46
- message: ''
58
+ message: No Content
47
59
  headers:
60
+ connection:
61
+ - close
48
62
  date:
49
- - Fri, 24 Aug 2018 21:33:06 GMT
63
+ - Fri, 25 Sep 2020 23:09:29 GMT
64
+ p3p:
65
+ - CP="NOI"
50
66
  server:
51
- - nginx
52
- connection:
53
- - Close
67
+ - Apache
68
+ x-xss-protection:
69
+ - 1; mode=block
70
+ x-cache:
71
+ - Miss from cloudfront
72
+ via:
73
+ - 1.1 794a3d3af21f401cf5ddf53187ea3030.cloudfront.net (CloudFront)
74
+ x-amz-cf-pop:
75
+ - SLC50-C1
76
+ x-amz-cf-id:
77
+ - 2xGwxB5nDmDGM8KTPFH5EE3m-DGeXWnMtVTZs92fWcXYmQ9SsYcDxw==
54
78
  body:
55
79
  encoding: UTF-8
56
80
  string: ''
57
81
  http_version:
58
- recorded_at: Fri, 24 Aug 2018 21:33:06 GMT
82
+ recorded_at: Fri, 25 Sep 2020 23:09:29 GMT
59
83
  recorded_with: VCR 4.0.0
@@ -7,32 +7,40 @@ http_interactions:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
- Content-Type:
11
- - application/json
12
10
  User-Agent:
13
- - ScormEngine Ruby Gem 0.1.0
11
+ - ScormEngine Ruby Gem 0.8.1
14
12
  Authorization:
15
13
  - Basic <BASIC_AUTH>
16
14
  response:
17
15
  status:
18
16
  code: 404
19
- message: ''
17
+ message: Not Found
20
18
  headers:
21
19
  content-type:
22
20
  - application/json
23
- date:
24
- - Wed, 25 Jul 2018 22:09:51 GMT
25
- server:
26
- - nginx
27
- vary:
28
- - Accept-Encoding
29
21
  content-length:
30
- - '75'
22
+ - '71'
31
23
  connection:
32
- - Close
24
+ - close
25
+ date:
26
+ - Fri, 25 Sep 2020 23:04:58 GMT
27
+ p3p:
28
+ - CP="NOI"
29
+ server:
30
+ - Apache
31
+ x-xss-protection:
32
+ - 1; mode=block
33
+ x-cache:
34
+ - Error from cloudfront
35
+ via:
36
+ - 1.1 892ff18443201978a8cd2296b3d38e18.cloudfront.net (CloudFront)
37
+ x-amz-cf-pop:
38
+ - SLC50-C1
39
+ x-amz-cf-id:
40
+ - 2euopD_OTyPVEDCI9Vpr1IPj8QjEce8jcJCdF-vM0cV2zqWjbTfUtg==
33
41
  body:
34
- encoding: ASCII-8BIT
35
- string: '{"message":"External Registration ID ''nonexistent-registration''"}'
42
+ encoding: UTF-8
43
+ string: '{"message":"Registration ID ''nonexistent-registration'' does not exist"}'
36
44
  http_version:
37
- recorded_at: Wed, 25 Jul 2018 22:09:51 GMT
45
+ recorded_at: Fri, 25 Sep 2020 23:04:58 GMT
38
46
  recorded_with: VCR 4.0.0
@@ -7,32 +7,40 @@ http_interactions:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
- Content-Type:
11
- - application/json
12
10
  User-Agent:
13
- - ScormEngine Ruby Gem 0.1.0
11
+ - ScormEngine Ruby Gem 0.8.1
14
12
  Authorization:
15
13
  - Basic <BASIC_AUTH>
16
14
  response:
17
15
  status:
18
16
  code: 200
19
- message: ''
17
+ message: OK
20
18
  headers:
21
19
  content-type:
22
20
  - application/json
21
+ transfer-encoding:
22
+ - chunked
23
+ connection:
24
+ - close
23
25
  date:
24
- - Wed, 25 Jul 2018 22:09:50 GMT
26
+ - Fri, 25 Sep 2020 23:04:58 GMT
27
+ p3p:
28
+ - CP="NOI"
25
29
  server:
26
- - nginx
27
- vary:
28
- - Accept-Encoding
29
- content-length:
30
- - '1859'
31
- connection:
32
- - Close
30
+ - Apache
31
+ x-xss-protection:
32
+ - 1; mode=block
33
+ x-cache:
34
+ - Miss from cloudfront
35
+ via:
36
+ - 1.1 e962bcfd10e6f174f59a72d119cef444.cloudfront.net (CloudFront)
37
+ x-amz-cf-pop:
38
+ - SLC50-C1
39
+ x-amz-cf-id:
40
+ - BxHFV26dtOadcs-BybNV1BzPs26VxG-T_9hxyjj34qA5NS11v2rxiQ==
33
41
  body:
34
- encoding: ASCII-8BIT
35
- string: '{"configurationItems":[{"id":"PlayerLaunchType","value":"FRAMESET"},{"id":"PlayerFinalScoCourseNotSatisfiedTimeoutExitAction","value":"EXIT_COURSE"},{"id":"PlayerCaptureHistoryDetailed","value":"YES"},{"id":"PlayerOfflineSynchMode","value":"Simple"},{"id":"PlayerStatusRollupModeThresholdScore","value":"46"},{"id":"ApiRollupRegistrationDuringSession","value":"true"},{"id":"PlayerSatisfiedCausesCompletion","value":"NO"},{"id":"PlayerCommMaxFailedSubmissions","value":"2"},{"id":"PlayerSuspendDataMaxLength","value":"64000"},{"id":"NoNavbarWhenForcedFrameset","value":"false"},{"id":"PlayerLookaheadSequencerMode","value":"ENABLED"},{"id":"PlayerEnableChoiceNav","value":"NO"},{"id":"PlayerIntermediateScoSatisfiedTimeoutExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerUseQuickLookaheadSequencer","value":"YES"},{"id":"SupplementalQueryStringParametersForAllActivities","value":""},{"id":"PlayerShowCloseItem","value":"NO"},{"id":"PlayerShowProgressBar","value":"NO"},{"id":"PlayerDebugLookAheadAudit","value":"false"},{"id":"PlayerDebugLookAheadDetailed","value":"false"},{"id":"PlayerCourseStructureStartsOpen","value":"NO"},{"id":"PlayerCompletionStatOfFailedSuccessStat","value":"Unknown"},{"id":"PlayerIntermediateScoSatisfiedLogoutExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerRequiredWidth","value":"0"},{"id":"PlayerIntermediateScoNotSatisfiedNormalExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerIsSatisfactionTracked","value":"YES"},{"id":"TinCanInteractionsEnabled","value":"true"},{"id":"PlayerForceObjectiveCompletionSetByContent","value":"NO"},{"id":"EnableClientDebugger","value":"false"},{"id":"PlayerWrapScoWindowWithApi","value":"NO"},{"id":"WhenToRestartRegistration","value":"2"},{"id":"MaxPersistRuntimeDataAttempts","value":"1"},{"id":"LegacyPlayerCustomizationStylesheetUrl","value":""},{"id":"PlayerScoreOverridesStatus","value":"NO"},{"id":"PlayerCourseStructureWidth","value":"0"},{"id":"AssignLatestVersionInsteadOfRestartRegistration","value":"false"},{"id":"ApiRollupRegistrationAuthUser","value":""},{"id":"PrivacyPolicyUrl","value":""},{"id":"PlayerIsAvailableOffline","value":"NO"},{"id":"UsePlayerForTinCanLaunches","value":"false"},{"id":"SuppressNavbarWhenForcedFrameset","value":"false"},{"id":"PlayerFinalScoCourseNotSatisfiedNormalExitAction","value":"EXIT_COURSE"},{"id":"PlayerReturnToLmsAction","value":"Legacy"},{"id":"PlayerFinalScoCourseSatisfiedSuspendExitAction","value":"EXIT_COURSE"},{"id":"PlayerFinalScoCourseSatisfiedTimeoutExitAction","value":"EXIT_COURSE"},{"id":"PlayerPreventWindowResize","value":"NO"},{"id":"PlayerLogoutCausesPlayerExit","value":"YES"},{"id":"PlayerIntermediateScoNotSatisfiedLogoutExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerDebugSequencingDetailed","value":"false"},{"id":"PlayerDesiredFullScreen","value":"NO"},{"id":"PlayerPreventRightClick","value":"NO"},{"id":"PromptOnPlayerClose","value":"false"},{"id":"PlayerDebugControlDetailed","value":"false"},{"id":"PlayerDebugSequencingAudit","value":"false"},{"id":"PlayerScaleRawScore","value":"NO"},{"id":"PlayerShowCourseStructure","value":"NO"},{"id":"PlayerCaptureHistory","value":"YES"},{"id":"PlayerIntermediateScoSatisfiedNormalExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerStatusRollupModeValue","value":"COMPLETE_WHEN_ALL_UNITS_COMPLETE_AND_NOT_FAILED"},{"id":"AlwaysUseModernPlayer","value":"true"},{"id":"PlayerInvokeRollupAtSuspendAll","value":"NO"},{"id":"UseLegacyMobileFramesetBehavior","value":"false"},{"id":"PlayerIsCompletionTracked","value":"YES"},{"id":"PlayerIntermediateScoNotSatisfiedTimeoutExitAction","value":"DISPLAY_MESSAGE"},{"id":"StorePlayerDebugLogsInFileStoreOnExit","value":"false"},{"id":"PlayerFinalScoCourseNotSatisfiedSuspendExitAction","value":"EXIT_COURSE"},{"id":"DeliveryAttempts","value":"1"},{"id":"RedirectLaunchPageOnExit","value":"false"},{"id":"PlayerIntermediateScoSatisfiedSuspendExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerUseMeasureProgressBar","value":"NO"},{"id":"RedirectOnExitUrl","value":"/ScormEngineInterface/defaultui/defaultredirect.jsp?registrationId=testing-golf-explained-registration-1"},{"id":"PlayerIntermediateScoNotSatisfiedSuspendExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerLaunchCompletedRegsAsNoCredit","value":"YES"},{"id":"PlayerValidateInteractionResponses","value":"YES"},{"id":"PlayerStatusDisplayPreference","value":"SEPARATE"},{"id":"PlayerInternetExplorerCompatibilityMode","value":"NONE"},{"id":"PlayerDebugRteDetailed","value":"false"},{"id":"PlayerIsIncompleteSatisfactionMeaningful","value":"YES"},{"id":"PlayerResetRunTimeData","value":"WHEN_EXIT_IS_NOT_SUSPEND"},{"id":"PlayerScoLaunchType","value":"NEW_WINDOW"},{"id":"PlayerDesiredWidth","value":"960"},{"id":"PlayerDebugRteAudit","value":"false"},{"id":"ConcurrentLaunchDetectionEnabled","value":"true"},{"id":"PlayerCommCommitFrequency","value":"10000"},{"id":"UseModernPlayer","value":"true"},{"id":"ModernPlayerCustomizationStylesheetUrl","value":""},{"id":"PlayerEnableFlowNav","value":"NO"},{"id":"PlayerFinalScoCourseSatisfiedLogoutExitAction","value":"EXIT_COURSE"},{"id":"PlayerDebugIncludeTimestamps","value":"true"},{"id":"PlayerIsIncompleteScoreMeaningful","value":"YES"},{"id":"ModernPlayerCustomizationScriptUrl","value":""},{"id":"PlayerShowFinishButton","value":"NO"},{"id":"PlayerRollupEmptySetToUnknown","value":"NO"},{"id":"PlayerMakeStudentPrefsGlobalToCourse","value":"NO"},{"id":"PlayerFinishCausesImmediateCommit","value":"YES"},{"id":"PlayerRequiredFullScreen","value":"NO"},{"id":"PlayerAlwaysFlowToFirstSco","value":"YES"},{"id":"ModernPlayerCustomizationLogo","value":""},{"id":"PlayerInvalidMenuItemAction","value":"DISABLE"},{"id":"PlayerRollupRuntimeAtScoUnload","value":"NO"},{"id":"PlayerDebugControlAudit","value":"false"},{"id":"RemoteDeliverPageUrl","value":""},{"id":"DefaultModernPlayerTheme","value":"default"},{"id":"PlayerFirstScoIsPretest","value":"NO"},{"id":"PlayerIsScoreTracked","value":"YES"},{"id":"PlayerTimeLimit","value":"0"},{"id":"PlayerApplyRollupStatusToSuccess","value":"NO"},{"id":"Cmi5EntitlementKeyAlternate","value":""},{"id":"ApiRollupRegistrationSynchronous","value":"true"},{"id":"PlayerShowNavBar","value":"NO"},{"id":"ApiRollupRegistrationAuthType","value":"httpbasic"},{"id":"PlayerDebugSequencingSimple","value":"false"},{"id":"PlayerRequiredHeight","value":"0"},{"id":"PlayerScoreRollupModeNumberOfScoringObjects","value":"-2147483648"},{"id":"PlayerDesiredHeight","value":"600"},{"id":"ApiRollupRegistrationAuthPassword","value":""},{"id":"PlayerShowHelp","value":"NO"},{"id":"PlayerFinalScoCourseNotSatisfiedLogoutExitAction","value":"EXIT_COURSE"},{"id":"LegacyPlayerCustomizationScriptUrl","value":""},{"id":"ApiRollupRegistrationFormat","value":"activity"},{"id":"ApiRollupRegistrationPostBackUrl","value":""},{"id":"PlayerFinalScoCourseSatisfiedNormalExitAction","value":"EXIT_COURSE"},{"id":"PlayerAllowCompleteStatusChange","value":"NO"},{"id":"RedirectOnRefreshUrl","value":""},{"id":"PreferSendBeacon","value":"false"},{"id":"ConcurrentLaunchDetectionHistoryRows","value":"5"},{"id":"PlayerScoreRollupModeValue","value":"AVERAGE_SCORE_OF_ALL_UNITS_WITH_SCORES"},{"id":"PlayerShowTitleBar","value":"NO"},{"id":"PlayerForceDisableRootChoice","value":"NO"}]}'
42
+ encoding: UTF-8
43
+ string: '{"configurationItems":[{"id":"PlayerLaunchType","value":"FRAMESET"},{"id":"PlayerFinalScoCourseNotSatisfiedTimeoutExitAction","value":"EXIT_COURSE"},{"id":"WebContentForceNewWindow","value":"false"},{"id":"PlayerCaptureHistoryDetailed","value":"YES"},{"id":"PlayerOfflineSynchMode","value":"Simple"},{"id":"ContentVaultPathModifyingPrefix","value":"/vault"},{"id":"PlayerStatusRollupModeThresholdScore","value":"0"},{"id":"xAPIRewriteStatementModifier","value":""},{"id":"ApiRollupRegistrationDuringSession","value":"true"},{"id":"Lti11Roles","value":"Learner"},{"id":"PlayerSatisfiedCausesCompletion","value":"NO"},{"id":"PlayerCommMaxFailedSubmissions","value":"2"},{"id":"PlayerSuspendDataMaxLength","value":"64000"},{"id":"PlayerLookaheadSequencerMode","value":"ENABLED"},{"id":"PlayerEnableChoiceNav","value":"NO"},{"id":"PlayerIntermediateScoSatisfiedTimeoutExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerUseQuickLookaheadSequencer","value":"YES"},{"id":"SupplementalQueryStringParametersForAllActivities","value":""},{"id":"PlayerShowCloseItem","value":"NO"},{"id":"Lti13Roles","value":"http://purl.imsglobal.org/vocab/lis/v2/institution/person#Student"},{"id":"X_SkipLaunchPage","value":"false"},{"id":"PlayerShowProgressBar","value":"NO"},{"id":"PlayerDebugLookAheadAudit","value":"true"},{"id":"PlayerDebugLookAheadDetailed","value":"false"},{"id":"PlayerCourseStructureStartsOpen","value":"NO"},{"id":"PlayerCompletionStatOfFailedSuccessStat","value":"Unknown"},{"id":"PlayerIntermediateScoSatisfiedLogoutExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerRequiredWidth","value":"0"},{"id":"PlayerIntermediateScoNotSatisfiedNormalExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerIsSatisfactionTracked","value":"YES"},{"id":"ContentVaultSlidingAuthExpiry","value":"60"},{"id":"TinCanInteractionsEnabled","value":"true"},{"id":"PlayerForceObjectiveCompletionSetByContent","value":"NO"},{"id":"EnableClientDebugger","value":"false"},{"id":"ForceFramesetUserAgentRegex","value":""},{"id":"PlayerWrapScoWindowWithApi","value":"NO"},{"id":"PDFContentStylesheetPath","value":""},{"id":"WhenToRestartRegistration","value":"WHEN_EXISTING_REG_IS_COMPLETE_AND_NEWER_PACKAGE_VERSION_EXISTS"},{"id":"MaxPersistRuntimeDataAttempts","value":"1"},{"id":"LegacyPlayerCustomizationStylesheetUrl","value":""},{"id":"PlayerScoreOverridesStatus","value":"NO"},{"id":"PlayerCourseStructureWidth","value":"0"},{"id":"PDFContentPageDurationThreshold","value":"5"},{"id":"AssignLatestVersionInsteadOfRestartRegistration","value":"false"},{"id":"ApiRollupRegistrationAuthUser","value":""},{"id":"PrivacyPolicyUrl","value":""},{"id":"PlayerIsAvailableOffline","value":"NO"},{"id":"RecordResultsMaxPayloadSizeInBytes","value":"5242880"},{"id":"UsePlayerForTinCanLaunches","value":"true"},{"id":"SuppressNavbarWhenForcedFrameset","value":"false"},{"id":"PlayerFinalScoCourseNotSatisfiedNormalExitAction","value":"EXIT_COURSE"},{"id":"PlayerReturnToLmsAction","value":"Legacy"},{"id":"PlayerFinalScoCourseSatisfiedSuspendExitAction","value":"EXIT_COURSE"},{"id":"PlayerFinalScoCourseSatisfiedTimeoutExitAction","value":"EXIT_COURSE"},{"id":"UseDeltaRecordResultsPayload","value":"false"},{"id":"PlayerPreventWindowResize","value":"NO"},{"id":"PlayerLogoutCausesPlayerExit","value":"YES"},{"id":"PlayerIntermediateScoNotSatisfiedLogoutExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerDebugSequencingDetailed","value":"true"},{"id":"PlayerDesiredFullScreen","value":"NO"},{"id":"MediaContentStylesheetPath","value":""},{"id":"AudioVideoContentStylesheetPath","value":""},{"id":"PlayerPreventRightClick","value":"NO"},{"id":"PromptOnPlayerClose","value":"false"},{"id":"PlayerScaleRawScore","value":"NO"},{"id":"PlayerDebugControlDetailed","value":"true"},{"id":"PlayerDebugSequencingAudit","value":"true"},{"id":"PlayerShowCourseStructure","value":"NO"},{"id":"PlayerCaptureHistory","value":"YES"},{"id":"PlayerIntermediateScoSatisfiedNormalExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerStatusRollupModeValue","value":"COMPLETE_WHEN_ALL_UNITS_COMPLETE_AND_NOT_FAILED"},{"id":"MediaContentPathReplacementRegex","value":""},{"id":"PlayerInvokeRollupAtSuspendAll","value":"true"},{"id":"MediaContentCompletionThreshold","value":"95"},{"id":"UseLegacyMobileFramesetBehavior","value":"False"},{"id":"PlayerIsCompletionTracked","value":"YES"},{"id":"PlayerIntermediateScoNotSatisfiedTimeoutExitAction","value":"DISPLAY_MESSAGE"},{"id":"ForceFramesetByRegex","value":"true"},{"id":"StorePlayerDebugLogsInFileStoreOnExit","value":"false"},{"id":"PlayerFinalScoCourseNotSatisfiedSuspendExitAction","value":"EXIT_COURSE"},{"id":"RedirectLaunchPageOnExit","value":"false"},{"id":"PlayerIntermediateScoSatisfiedSuspendExitAction","value":"DISPLAY_MESSAGE"},{"id":"ContentLangToUrl","value":"[]"},{"id":"PlayerUseMeasureProgressBar","value":"NO"},{"id":"RedirectOnExitUrl","value":"noop"},{"id":"PlayerIntermediateScoNotSatisfiedSuspendExitAction","value":"DISPLAY_MESSAGE"},{"id":"PlayerLaunchCompletedRegsAsNoCredit","value":"YES"},{"id":"PlayerValidateInteractionResponses","value":"YES"},{"id":"PlayerStatusDisplayPreference","value":"SEPARATE"},{"id":"PlayerInternetExplorerCompatibilityMode","value":"NONE"},{"id":"ContentVaultIpAddressValidationEnabled","value":"true"},{"id":"PlayerDebugRteDetailed","value":"true"},{"id":"PlayerIsIncompleteSatisfactionMeaningful","value":"YES"},{"id":"PlayerResetRunTimeData","value":"WHEN_EXIT_IS_NOT_SUSPEND"},{"id":"PlayerScoLaunchType","value":"FRAMESET"},{"id":"PlayerDesiredWidth","value":"960"},{"id":"PlayerDebugRteAudit","value":"true"},{"id":"DispatchPollingFrequency","value":"1500"},{"id":"ConcurrentLaunchDetectionEnabled","value":"true"},{"id":"PlayerCommCommitFrequency","value":"20000"},{"id":"UseModernPlayer","value":"true"},{"id":"ModernPlayerCustomizationStylesheetUrl","value":""},{"id":"ContentVaultAuthFingerprintValidationEnabled","value":"true"},{"id":"PlayerEnableFlowNav","value":"NO"},{"id":"PlayerFinalScoCourseSatisfiedLogoutExitAction","value":"EXIT_COURSE"},{"id":"PlayerDebugIncludeTimestamps","value":"true"},{"id":"PlayerIsIncompleteScoreMeaningful","value":"YES"},{"id":"ModernPlayerCustomizationScriptUrl","value":""},{"id":"PlayerShowFinishButton","value":"NO"},{"id":"PlayerRollupEmptySetToUnknown","value":"NO"},{"id":"PlayerMakeStudentPrefsGlobalToCourse","value":"NO"},{"id":"ForceExitConcurrentLaunches","value":"false"},{"id":"PlayerFinishCausesImmediateCommit","value":"YES"},{"id":"IntermediatePageLoadAtStart","value":"true"},{"id":"PlayerRequiredFullScreen","value":"NO"},{"id":"PlayerAlwaysFlowToFirstSco","value":"YES"},{"id":"ApiCourseDeleteAttemptDeleteFiles","value":"false"},{"id":"ModernPlayerCustomizationLogo","value":""},{"id":"PlayerInvalidMenuItemAction","value":"DISABLE"},{"id":"PlayerRollupRuntimeAtScoUnload","value":"true"},{"id":"PlayerDebugControlAudit","value":"true"},{"id":"ContentVaultAuthExpiry","value":"2880"},{"id":"GenerateTinCanLaunchStatements","value":"true"},{"id":"Lti13PrivacySettings","value":"LEARNER_NAME_ONLY"},{"id":"RemoteDeliverPageUrl","value":""},{"id":"ContentVaultSlidingAuthExpiryEnabled","value":"false"},{"id":"DefaultModernPlayerTheme","value":"default"},{"id":"PlayerFirstScoIsPretest","value":"NO"},{"id":"PlayerIsScoreTracked","value":"YES"},{"id":"DispatchHideGetRegistrationErrorDuringTeardown","value":"false"},{"id":"PlayerTimeLimit","value":"0"},{"id":"PlayerApplyRollupStatusToSuccess","value":"NO"},{"id":"Cmi5EntitlementKeyAlternate","value":""},{"id":"ApiRollupRegistrationSynchronous","value":"true"},{"id":"Lti11PrivacySettings","value":"LEARNER_NAME_ONLY"},{"id":"PlayerShowNavBar","value":"NO"},{"id":"ApiRollupRegistrationAuthType","value":"httpbasic"},{"id":"PlayerDebugSequencingSimple","value":"false"},{"id":"ContentVaultEnabled","value":"false"},{"id":"PlayerRequiredHeight","value":"0"},{"id":"PlayerScoreRollupModeNumberOfScoringObjects","value":"-2147483648"},{"id":"PlayerDesiredHeight","value":"600"},{"id":"ApiRollupRegistrationAuthPassword","value":""},{"id":"PlayerShowHelp","value":"NO"},{"id":"PlayerFinalScoCourseNotSatisfiedLogoutExitAction","value":"EXIT_COURSE"},{"id":"LegacyPlayerCustomizationScriptUrl","value":""},{"id":"CompressRecordResultsPayload","value":"false"},{"id":"ApiRollupRegistrationFormat","value":"activity"},{"id":"ApiRollupRegistrationPostBackUrl","value":""},{"id":"PlayerFinalScoCourseSatisfiedNormalExitAction","value":"EXIT_COURSE"},{"id":"PlayerAllowCompleteStatusChange","value":"NO"},{"id":"RedirectOnRefreshUrl","value":""},{"id":"PreferSendBeacon","value":"false"},{"id":"ConcurrentLaunchDetectionHistoryRows","value":"5"},{"id":"PlayerScoreRollupModeValue","value":"AVERAGE_SCORE_OF_ALL_UNITS_WITH_SCORES"},{"id":"PlayerShowTitleBar","value":"NO"},{"id":"PlayerForceDisableRootChoice","value":"NO"}]}'
36
44
  http_version:
37
- recorded_at: Wed, 25 Jul 2018 22:09:50 GMT
45
+ recorded_at: Fri, 25 Sep 2020 23:04:58 GMT
38
46
  recorded_with: VCR 4.0.0