logstash-output-scalyr 0.1.10.beta → 0.1.11.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (317) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile +4 -0
  4. data/README.md +2 -2
  5. data/lib/logstash/outputs/scalyr.rb +94 -73
  6. data/lib/scalyr/common/client.rb +3 -1
  7. data/lib/scalyr/constants.rb +2 -0
  8. data/logstash-output-scalyr.gemspec +1 -1
  9. data/spec/logstash/outputs/scalyr_integration_spec.rb +119 -8
  10. data/spec/logstash/outputs/scalyr_spec.rb +9 -6
  11. data/vendor/bundle/jruby/2.5.0/cache/addressable-2.7.0.gem +0 -0
  12. data/vendor/bundle/jruby/2.5.0/cache/crack-0.4.5.gem +0 -0
  13. data/vendor/bundle/jruby/2.5.0/cache/hashdiff-1.0.1.gem +0 -0
  14. data/vendor/bundle/jruby/2.5.0/cache/public_suffix-4.0.6.gem +0 -0
  15. data/vendor/bundle/jruby/2.5.0/cache/rexml-3.2.5.gem +0 -0
  16. data/vendor/bundle/jruby/2.5.0/cache/webmock-3.13.0.gem +0 -0
  17. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/CHANGELOG.md +235 -0
  18. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/Gemfile +32 -0
  19. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/LICENSE.txt +202 -0
  20. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/README.md +121 -0
  21. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/Rakefile +34 -0
  22. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/data/unicode.data +0 -0
  23. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable.rb +4 -0
  24. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/idna.rb +27 -0
  25. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/idna/native.rb +61 -0
  26. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/idna/pure.rb +676 -0
  27. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/template.rb +1045 -0
  28. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/uri.rb +2529 -0
  29. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/version.rb +32 -0
  30. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/idna_spec.rb +300 -0
  31. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/net_http_compat_spec.rb +30 -0
  32. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/rack_mount_compat_spec.rb +106 -0
  33. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/security_spec.rb +59 -0
  34. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/template_spec.rb +1451 -0
  35. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/uri_spec.rb +6603 -0
  36. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/spec_helper.rb +24 -0
  37. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/clobber.rake +4 -0
  38. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/gem.rake +93 -0
  39. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/git.rake +47 -0
  40. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/metrics.rake +24 -0
  41. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/rspec.rake +23 -0
  42. data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/yard.rake +29 -0
  43. data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack.rb +7 -0
  44. data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack/json.rb +98 -0
  45. data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack/util.rb +17 -0
  46. data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack/version.rb +3 -0
  47. data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack/xml.rb +238 -0
  48. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/Gemfile +8 -0
  49. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/LICENSE +19 -0
  50. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/README.md +276 -0
  51. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/Rakefile +18 -0
  52. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/changelog.md +100 -0
  53. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/hashdiff.gemspec +39 -0
  54. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff.rb +10 -0
  55. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/compare_hashes.rb +69 -0
  56. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/diff.rb +177 -0
  57. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/lcs.rb +66 -0
  58. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/lcs_compare_arrays.rb +32 -0
  59. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/linear_compare_array.rb +159 -0
  60. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/patch.rb +88 -0
  61. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/util.rb +155 -0
  62. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/version.rb +5 -0
  63. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/best_diff_spec.rb +75 -0
  64. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/diff_array_spec.rb +60 -0
  65. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/diff_spec.rb +360 -0
  66. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/lcs_spec.rb +76 -0
  67. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/linear_compare_array_spec.rb +50 -0
  68. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/patch_spec.rb +185 -0
  69. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/readme_spec.rb +15 -0
  70. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/util_spec.rb +116 -0
  71. data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/spec_helper.rb +15 -0
  72. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/2.0-Upgrade.md +52 -0
  73. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/CHANGELOG.md +406 -0
  74. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/Gemfile +15 -0
  75. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/LICENSE.txt +22 -0
  76. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/README.md +207 -0
  77. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/Rakefile +51 -0
  78. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/SECURITY.md +104 -0
  79. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/bin/console +15 -0
  80. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/codecov.yml +12 -0
  81. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/data/list.txt +13380 -0
  82. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix.rb +179 -0
  83. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/domain.rb +235 -0
  84. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/errors.rb +41 -0
  85. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/list.rb +247 -0
  86. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/rule.rb +350 -0
  87. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/version.rb +13 -0
  88. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/public_suffix.gemspec +29 -0
  89. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/acceptance_test.rb +131 -0
  90. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_find.rb +66 -0
  91. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_find_all.rb +102 -0
  92. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_names.rb +91 -0
  93. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_select.rb +26 -0
  94. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_select_incremental.rb +25 -0
  95. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_valid.rb +101 -0
  96. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/domain_profiler.rb +12 -0
  97. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/find_profiler.rb +12 -0
  98. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/find_profiler_jp.rb +12 -0
  99. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/initialization_profiler.rb +11 -0
  100. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/list_profsize.rb +11 -0
  101. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/object_binsize.rb +57 -0
  102. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/psl_test.rb +52 -0
  103. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/test_helper.rb +18 -0
  104. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/tests.txt +98 -0
  105. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/domain_test.rb +106 -0
  106. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/errors_test.rb +25 -0
  107. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/list_test.rb +241 -0
  108. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/public_suffix_test.rb +188 -0
  109. data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/rule_test.rb +222 -0
  110. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/LICENSE.txt +22 -0
  111. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/NEWS.md +178 -0
  112. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/README.md +48 -0
  113. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/context.rdoc +143 -0
  114. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/child.rdoc +87 -0
  115. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/document.rdoc +276 -0
  116. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/element.rdoc +602 -0
  117. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/node.rdoc +97 -0
  118. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/parent.rdoc +267 -0
  119. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/child_toc.rdoc +12 -0
  120. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/document_toc.rdoc +30 -0
  121. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/element_toc.rdoc +55 -0
  122. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/master_toc.rdoc +135 -0
  123. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/node_toc.rdoc +16 -0
  124. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/parent_toc.rdoc +25 -0
  125. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml.rb +3 -0
  126. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/attlistdecl.rb +63 -0
  127. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/attribute.rb +205 -0
  128. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/cdata.rb +68 -0
  129. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/child.rb +97 -0
  130. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/comment.rb +80 -0
  131. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/doctype.rb +311 -0
  132. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/document.rb +451 -0
  133. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/attlistdecl.rb +11 -0
  134. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/dtd.rb +47 -0
  135. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/elementdecl.rb +18 -0
  136. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/entitydecl.rb +57 -0
  137. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/notationdecl.rb +40 -0
  138. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/element.rb +2599 -0
  139. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/encoding.rb +51 -0
  140. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/entity.rb +171 -0
  141. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/formatters/default.rb +116 -0
  142. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/formatters/pretty.rb +142 -0
  143. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/formatters/transitive.rb +58 -0
  144. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/functions.rb +447 -0
  145. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/instruction.rb +79 -0
  146. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/light/node.rb +188 -0
  147. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/namespace.rb +59 -0
  148. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/node.rb +76 -0
  149. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/output.rb +30 -0
  150. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parent.rb +166 -0
  151. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parseexception.rb +52 -0
  152. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/baseparser.rb +694 -0
  153. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/lightparser.rb +59 -0
  154. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/pullparser.rb +197 -0
  155. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/sax2parser.rb +273 -0
  156. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/streamparser.rb +61 -0
  157. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/treeparser.rb +101 -0
  158. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/ultralightparser.rb +57 -0
  159. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/xpathparser.rb +689 -0
  160. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/quickpath.rb +266 -0
  161. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/rexml.rb +37 -0
  162. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/sax2listener.rb +98 -0
  163. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/security.rb +28 -0
  164. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/source.rb +298 -0
  165. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/streamlistener.rb +93 -0
  166. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/text.rb +424 -0
  167. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/undefinednamespaceexception.rb +9 -0
  168. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/validation/relaxng.rb +539 -0
  169. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/validation/validation.rb +144 -0
  170. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/validation/validationexception.rb +10 -0
  171. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/xmldecl.rb +130 -0
  172. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/xmltokens.rb +85 -0
  173. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/xpath.rb +81 -0
  174. data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/xpath_parser.rb +974 -0
  175. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/CHANGELOG.md +1894 -0
  176. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/Gemfile +9 -0
  177. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/LICENSE +20 -0
  178. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/README.md +1176 -0
  179. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/Rakefile +38 -0
  180. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock.rb +59 -0
  181. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/api.rb +109 -0
  182. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/assertion_failure.rb +11 -0
  183. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/callback_registry.rb +35 -0
  184. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/config.rb +18 -0
  185. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/cucumber.rb +10 -0
  186. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/deprecation.rb +9 -0
  187. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/errors.rb +17 -0
  188. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/async_http_client_adapter.rb +216 -0
  189. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/curb_adapter.rb +351 -0
  190. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/em_http_request_adapter.rb +231 -0
  191. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/excon_adapter.rb +165 -0
  192. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_lib_adapter.rb +7 -0
  193. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb +19 -0
  194. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/client.rb +17 -0
  195. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/request.rb +16 -0
  196. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/response.rb +64 -0
  197. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/streamer.rb +29 -0
  198. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/webmock.rb +68 -0
  199. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb_adapter.rb +37 -0
  200. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/httpclient_adapter.rb +259 -0
  201. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/manticore_adapter.rb +145 -0
  202. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/net_http.rb +385 -0
  203. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/net_http_response.rb +34 -0
  204. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/patron_adapter.rb +130 -0
  205. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb +174 -0
  206. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/matchers/any_arg_matcher.rb +13 -0
  207. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/matchers/hash_argument_matcher.rb +21 -0
  208. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/matchers/hash_excluding_matcher.rb +15 -0
  209. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/matchers/hash_including_matcher.rb +17 -0
  210. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/minitest.rb +41 -0
  211. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rack_response.rb +69 -0
  212. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_body_diff.rb +64 -0
  213. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_execution_verifier.rb +77 -0
  214. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_pattern.rb +405 -0
  215. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_registry.rb +35 -0
  216. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_signature.rb +54 -0
  217. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_signature_snippet.rb +61 -0
  218. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_stub.rb +100 -0
  219. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/response.rb +159 -0
  220. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/responses_sequence.rb +40 -0
  221. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rspec.rb +42 -0
  222. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rspec/matchers.rb +27 -0
  223. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rspec/matchers/request_pattern_matcher.rb +78 -0
  224. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rspec/matchers/webmock_matcher.rb +67 -0
  225. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/stub_registry.rb +82 -0
  226. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/stub_request_snippet.rb +38 -0
  227. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/test_unit.rb +20 -0
  228. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/hash_counter.rb +39 -0
  229. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/hash_keys_stringifier.rb +25 -0
  230. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/hash_validator.rb +17 -0
  231. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/headers.rb +64 -0
  232. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/json.rb +67 -0
  233. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/query_mapper.rb +281 -0
  234. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/uri.rb +111 -0
  235. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/values_stringifier.rb +20 -0
  236. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/version_checker.rb +111 -0
  237. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/version.rb +3 -0
  238. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/webmock.rb +163 -0
  239. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/minitest/test_helper.rb +34 -0
  240. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/minitest/test_webmock.rb +9 -0
  241. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/minitest/webmock_spec.rb +60 -0
  242. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/async_http_client/async_http_client_spec.rb +375 -0
  243. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/async_http_client/async_http_client_spec_helper.rb +73 -0
  244. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/curb/curb_spec.rb +499 -0
  245. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/curb/curb_spec_helper.rb +147 -0
  246. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/em_http_request/em_http_request_spec.rb +462 -0
  247. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/em_http_request/em_http_request_spec_helper.rb +77 -0
  248. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/excon/excon_spec.rb +77 -0
  249. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/excon/excon_spec_helper.rb +52 -0
  250. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/http_rb/http_rb_spec.rb +93 -0
  251. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/http_rb/http_rb_spec_helper.rb +54 -0
  252. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/httpclient/httpclient_spec.rb +217 -0
  253. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/httpclient/httpclient_spec_helper.rb +57 -0
  254. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/manticore/manticore_spec.rb +107 -0
  255. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/manticore/manticore_spec_helper.rb +35 -0
  256. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/net_http/net_http_shared.rb +153 -0
  257. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/net_http/net_http_spec.rb +369 -0
  258. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/net_http/net_http_spec_helper.rb +64 -0
  259. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/net_http/real_net_http_spec.rb +20 -0
  260. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/patron/patron_spec.rb +125 -0
  261. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/patron/patron_spec_helper.rb +54 -0
  262. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/allowing_and_disabling_net_connect.rb +313 -0
  263. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/callbacks.rb +148 -0
  264. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/complex_cross_concern_behaviors.rb +36 -0
  265. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/enabling_and_disabling_webmock.rb +95 -0
  266. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/precedence_of_stubs.rb +15 -0
  267. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/request_expectations.rb +930 -0
  268. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/returning_declared_responses.rb +409 -0
  269. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/stubbing_requests.rb +678 -0
  270. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/typhoeus/typhoeus_hydra_spec.rb +135 -0
  271. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/typhoeus/typhoeus_hydra_spec_helper.rb +60 -0
  272. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/webmock_shared.rb +41 -0
  273. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/fixtures/test.txt +1 -0
  274. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/quality_spec.rb +84 -0
  275. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/spec_helper.rb +48 -0
  276. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/example_curl_output.txt +22 -0
  277. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/failures.rb +9 -0
  278. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/my_rack_app.rb +53 -0
  279. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/network_connection.rb +19 -0
  280. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/webmock_server.rb +70 -0
  281. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/api_spec.rb +175 -0
  282. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/errors_spec.rb +129 -0
  283. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/http_lib_adapters/http_lib_adapter_registry_spec.rb +17 -0
  284. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/http_lib_adapters/http_lib_adapter_spec.rb +12 -0
  285. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/matchers/hash_excluding_matcher_spec.rb +61 -0
  286. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/matchers/hash_including_matcher_spec.rb +87 -0
  287. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/rack_response_spec.rb +112 -0
  288. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_body_diff_spec.rb +90 -0
  289. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_execution_verifier_spec.rb +208 -0
  290. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_pattern_spec.rb +736 -0
  291. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_registry_spec.rb +95 -0
  292. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_signature_snippet_spec.rb +89 -0
  293. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_signature_spec.rb +155 -0
  294. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_stub_spec.rb +199 -0
  295. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/response_spec.rb +286 -0
  296. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/stub_registry_spec.rb +103 -0
  297. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/stub_request_snippet_spec.rb +115 -0
  298. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/hash_counter_spec.rb +39 -0
  299. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/hash_keys_stringifier_spec.rb +27 -0
  300. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/headers_spec.rb +28 -0
  301. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/json_spec.rb +33 -0
  302. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/query_mapper_spec.rb +157 -0
  303. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/uri_spec.rb +371 -0
  304. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/version_checker_spec.rb +65 -0
  305. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/webmock_spec.rb +60 -0
  306. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/test/http_request.rb +24 -0
  307. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/test/shared_test.rb +108 -0
  308. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/test/test_helper.rb +23 -0
  309. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/test/test_webmock.rb +12 -0
  310. data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/webmock.gemspec +54 -0
  311. data/vendor/bundle/jruby/2.5.0/specifications/addressable-2.7.0.gemspec +39 -0
  312. data/vendor/bundle/jruby/2.5.0/specifications/crack-0.4.5.gemspec +32 -0
  313. data/vendor/bundle/jruby/2.5.0/specifications/hashdiff-1.0.1.gemspec +46 -0
  314. data/vendor/bundle/jruby/2.5.0/specifications/public_suffix-4.0.6.gemspec +24 -0
  315. data/vendor/bundle/jruby/2.5.0/specifications/rexml-3.2.5.gemspec +42 -0
  316. data/vendor/bundle/jruby/2.5.0/specifications/webmock-3.13.0.gemspec +85 -0
  317. metadata +309 -2
@@ -0,0 +1,95 @@
1
+ require 'spec_helper'
2
+
3
+ describe WebMock::RequestRegistry do
4
+
5
+ before(:each) do
6
+ WebMock::RequestRegistry.instance.reset!
7
+ @request_pattern = WebMock::RequestPattern.new(:get, "www.example.com")
8
+ @request_signature = WebMock::RequestSignature.new(:get, "www.example.com")
9
+ end
10
+
11
+ describe "reset!" do
12
+ before(:each) do
13
+ WebMock::RequestRegistry.instance.requested_signatures.put(@request_signature)
14
+ end
15
+
16
+ it "should clean list of executed requests" do
17
+ expect(WebMock::RequestRegistry.instance.times_executed(@request_pattern)).to eq(1)
18
+ WebMock::RequestRegistry.instance.reset!
19
+ expect(WebMock::RequestRegistry.instance.times_executed(@request_pattern)).to eq(0)
20
+ end
21
+
22
+ end
23
+
24
+ describe "times executed" do
25
+
26
+ before(:each) do
27
+ @request_stub1 = WebMock::RequestStub.new(:get, "www.example.com")
28
+ @request_stub2 = WebMock::RequestStub.new(:get, "www.example.net")
29
+ @request_stub3 = WebMock::RequestStub.new(:get, "www.example.org")
30
+ WebMock::RequestRegistry.instance.requested_signatures.put(WebMock::RequestSignature.new(:get, "www.example.com"))
31
+ WebMock::RequestRegistry.instance.requested_signatures.put(WebMock::RequestSignature.new(:get, "www.example.com"))
32
+ WebMock::RequestRegistry.instance.requested_signatures.put(WebMock::RequestSignature.new(:get, "www.example.org"))
33
+ end
34
+
35
+ it "should report 0 if no request matching pattern was requested" do
36
+ expect(WebMock::RequestRegistry.instance.times_executed(WebMock::RequestPattern.new(:get, "www.example.net"))).to eq(0)
37
+ end
38
+
39
+ it "should report number of times matching pattern was requested" do
40
+ expect(WebMock::RequestRegistry.instance.times_executed(WebMock::RequestPattern.new(:get, "www.example.com"))).to eq(2)
41
+ end
42
+
43
+ it "should report number of times all matching pattern were requested" do
44
+ expect(WebMock::RequestRegistry.instance.times_executed(WebMock::RequestPattern.new(:get, /.*example.*/))).to eq(3)
45
+ end
46
+
47
+ describe "multithreading" do
48
+ let(:request_pattern) { WebMock::RequestPattern.new(:get, "www.example.com") }
49
+
50
+ # Reproduce a multithreading issue that causes a RuntimeError:
51
+ # can't add a new key into hash during iteration.
52
+ it "works normally iterating on the requested signature hash while another thread is setting it" do
53
+ thread_injected = false
54
+ allow(request_pattern).to receive(:matches?).and_wrap_original do |m, *args|
55
+ unless thread_injected
56
+ thread_injected = true
57
+ Thread.new { WebMock::RequestRegistry.instance.requested_signatures.put(:abc) }.join(0.1)
58
+ end
59
+ m.call(*args)
60
+ end
61
+ expect(WebMock::RequestRegistry.instance.times_executed(request_pattern)).to eq(2)
62
+ sleep 0.1 while !WebMock::RequestRegistry.instance.requested_signatures.hash.key?(:abc)
63
+ end
64
+ end
65
+ end
66
+
67
+ describe "request_signatures" do
68
+ it "should return hash of unique request signatures with accumulated number" do
69
+ WebMock::RequestRegistry.instance.requested_signatures.put(WebMock::RequestSignature.new(:get, "www.example.com"))
70
+ WebMock::RequestRegistry.instance.requested_signatures.put(WebMock::RequestSignature.new(:get, "www.example.com"))
71
+ expect(WebMock::RequestRegistry.instance.requested_signatures.
72
+ get(WebMock::RequestSignature.new(:get, "www.example.com"))).to eq(2)
73
+ end
74
+ end
75
+
76
+ describe "to_s" do
77
+ it "should output string with all executed requests and numbers of executions" do
78
+ [
79
+ WebMock::RequestSignature.new(:get, "www.example.com"),
80
+ WebMock::RequestSignature.new(:get, "www.example.com"),
81
+ WebMock::RequestSignature.new(:put, "www.example.org"),
82
+ ].each do |s|
83
+ WebMock::RequestRegistry.instance.requested_signatures.put(s)
84
+ end
85
+ expect(WebMock::RequestRegistry.instance.to_s).to eq(
86
+ "GET http://www.example.com/ was made 2 times\nPUT http://www.example.org/ was made 1 time\n"
87
+ )
88
+ end
89
+
90
+ it "should output info if no requests were executed" do
91
+ expect(WebMock::RequestRegistry.instance.to_s).to eq("No requests were made.")
92
+ end
93
+ end
94
+
95
+ end
@@ -0,0 +1,89 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe WebMock::RequestSignatureSnippet do
4
+ it("is real"){expect{subject}.not_to(raise_error)}
5
+
6
+ subject { WebMock::RequestSignatureSnippet.new(request_signature) }
7
+
8
+ let(:uri) { "http://example.com" }
9
+ let(:method) { "GET" }
10
+
11
+ let(:request_signature) { WebMock::RequestSignature.new(method, uri) }
12
+ let(:request_signature_body) { {"key" => "different value"}.to_json }
13
+
14
+ let(:request_pattern) {
15
+ WebMock::RequestPattern.new(
16
+ method, uri, {body: request_signature_body}
17
+ )
18
+ }
19
+
20
+ before :each do
21
+ request_signature.headers = {"Content-Type" => "application/json"}
22
+ request_signature.body = request_signature_body
23
+ end
24
+
25
+ describe "#stubbing_instructions" do
26
+ context "with stubbing instructions turned off" do
27
+ before :each do
28
+ WebMock.hide_stubbing_instructions!
29
+ end
30
+
31
+ it "returns nil" do
32
+ expect(subject.stubbing_instructions).to be nil
33
+ end
34
+
35
+ after :each do
36
+ WebMock.show_stubbing_instructions!
37
+ end
38
+ end
39
+
40
+ context "with stubbing instructions turned on" do
41
+ it "returns a stub snippet" do
42
+ expect(subject.stubbing_instructions).to include(
43
+ "You can stub this request with the following snippet:"
44
+ )
45
+ end
46
+ end
47
+ end
48
+
49
+ describe "#request_stubs" do
50
+ before :each do
51
+ WebMock.stub_request(:get, "https://www.example.com").with(body: {"a" => "b"})
52
+ end
53
+
54
+ context "when showing the body diff is turned off" do
55
+ before :each do
56
+ WebMock.hide_body_diff!
57
+ end
58
+
59
+ it "returns does not show the body diff" do
60
+ result = subject.request_stubs
61
+ result.sub!("registered request stubs:\n\n", "")
62
+ expect(result).to eq(
63
+ "stub_request(:get, \"https://www.example.com/\").\n with(\n body: {\"a\"=>\"b\"})"
64
+ )
65
+ end
66
+
67
+ after :each do
68
+ WebMock.show_body_diff!
69
+ end
70
+ end
71
+
72
+ context "when showing the body diff is turned on" do
73
+ it "shows the body diff" do
74
+ result = subject.request_stubs
75
+ result.sub!("registered request stubs:\n\n", "")
76
+ expect(result).to eq(
77
+ "stub_request(:get, \"https://www.example.com/\").\n with(\n body: {\"a\"=>\"b\"})\n\nBody diff:\n [[\"-\", \"key\", \"different value\"], [\"+\", \"a\", \"b\"]]\n"
78
+ )
79
+ end
80
+ end
81
+
82
+ context "with no request stubs" do
83
+ it "returns nil" do
84
+ WebMock.reset!
85
+ expect(subject.request_stubs).to be nil
86
+ end
87
+ end
88
+ end
89
+ end
@@ -0,0 +1,155 @@
1
+ require 'spec_helper'
2
+
3
+ describe WebMock::RequestSignature do
4
+
5
+ describe "initialization" do
6
+
7
+ it "assign the uri to be the normalized uri" do
8
+ expect(WebMock::Util::URI).to receive(:normalize_uri).and_return("www.example.kom")
9
+ signature = WebMock::RequestSignature.new(:get, "www.example.com")
10
+ expect(signature.uri).to eq("www.example.kom")
11
+ end
12
+
13
+ it "assigns the uri without normalization if uri is already a URI" do
14
+ expect(WebMock::Util::URI).not_to receive(:normalize_uri)
15
+ uri = Addressable::URI.parse("www.example.com")
16
+ signature = WebMock::RequestSignature.new(:get, uri)
17
+ expect(signature.uri).to eq(uri)
18
+ end
19
+
20
+ it "assigns normalized headers" do
21
+ expect(WebMock::Util::Headers).to receive(:normalize_headers).with('A' => 'a').and_return('B' => 'b')
22
+ expect(
23
+ WebMock::RequestSignature.new(:get, "www.example.com", headers: {'A' => 'a'}).headers
24
+ ).to eq({'B' => 'b'})
25
+ end
26
+
27
+ it "assign the body" do
28
+ expect(WebMock::RequestSignature.new(:get, "www.example.com", body: "abc").body).to eq("abc")
29
+ end
30
+
31
+ it "symbolizes the method" do
32
+ expect(WebMock::RequestSignature.new('get', "www.example.com", body: "abc").method).to eq(:get)
33
+ end
34
+ end
35
+
36
+ describe "#to_s" do
37
+ it "describes itself" do
38
+ expect(WebMock::RequestSignature.new(:get, "www.example.com",
39
+ body: "abc", headers: {'A' => 'a', 'B' => 'b'}).to_s).to eq(
40
+ "GET http://www.example.com/ with body 'abc' with headers {'A'=>'a', 'B'=>'b'}"
41
+ )
42
+ end
43
+ end
44
+
45
+ describe "#hash" do
46
+ it "reporst same hash for two signatures with the same values" do
47
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com",
48
+ body: "abc", headers: {'A' => 'a', 'B' => 'b'})
49
+ signature2 = WebMock::RequestSignature.new(:get, "www.example.com",
50
+ body: "abc", headers: {'A' => 'a', 'B' => 'b'})
51
+ expect(signature1.hash).to eq(signature2.hash)
52
+ end
53
+
54
+ it "reports different hash for two signatures with different method" do
55
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com")
56
+ signature2 = WebMock::RequestSignature.new(:put, "www.example.com")
57
+ expect(signature1.hash).not_to eq(signature2.hash)
58
+ end
59
+
60
+ it "reports different hash for two signatures with different uri" do
61
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com")
62
+ signature2 = WebMock::RequestSignature.new(:get, "www.example.org")
63
+ expect(signature1.hash).not_to eq(signature2.hash)
64
+ end
65
+
66
+ it "reports different hash for two signatures with different body" do
67
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com", body: "abc")
68
+ signature2 = WebMock::RequestSignature.new(:get, "www.example.com", body: "def")
69
+ expect(signature1.hash).not_to eq(signature2.hash)
70
+ end
71
+
72
+ it "reports different hash for two signatures with different headers" do
73
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com",
74
+ headers: {'A' => 'a'})
75
+ signature2 = WebMock::RequestSignature.new(:get, "www.example.com",
76
+ headers: {'A' => 'A'})
77
+ expect(signature1.hash).not_to eq(signature2.hash)
78
+ end
79
+ end
80
+
81
+ [:==, :eql?].each do |method|
82
+ describe method do
83
+ it "is true for two signatures with the same values" do
84
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com",
85
+ body: "abc", headers: {'A' => 'a', 'B' => 'b'})
86
+ signature2 = WebMock::RequestSignature.new(:get, "www.example.com",
87
+ body: "abc", headers: {'A' => 'a', 'B' => 'b'})
88
+
89
+ expect(signature1.send(method, signature2)).to be_truthy
90
+ end
91
+
92
+ it "is false for two signatures with different method" do
93
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com")
94
+ signature2 = WebMock::RequestSignature.new(:put, "www.example.com")
95
+ expect(signature1.send(method, signature2)).to be_falsey
96
+ end
97
+
98
+ it "is false for two signatures with different uri" do
99
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com")
100
+ signature2 = WebMock::RequestSignature.new(:get, "www.example.org")
101
+ expect(signature1.send(method, signature2)).to be_falsey
102
+ end
103
+
104
+ it "is false for two signatures with different body" do
105
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com", body: "abc")
106
+ signature2 = WebMock::RequestSignature.new(:get, "www.example.com", body: "def")
107
+ expect(signature1.send(method, signature2)).to be_falsey
108
+ end
109
+
110
+ it "is false for two signatures with different headers" do
111
+ signature1 = WebMock::RequestSignature.new(:get, "www.example.com",
112
+ headers: {'A' => 'a'})
113
+ signature2 = WebMock::RequestSignature.new(:get, "www.example.com",
114
+ headers: {'A' => 'A'})
115
+ expect(signature1.send(method, signature2)).to be_falsey
116
+ end
117
+ end
118
+ end
119
+
120
+ subject { WebMock::RequestSignature.new(:get, "www.example.com") }
121
+
122
+ describe "#url_encoded?" do
123
+ it "returns true if the headers are urlencoded" do
124
+ subject.headers = { "Content-Type" => "application/x-www-form-urlencoded" }
125
+ expect(subject.url_encoded?).to be true
126
+ end
127
+
128
+ it "returns false if the headers are NOT urlencoded" do
129
+ subject.headers = { "Content-Type" => "application/made-up-format" }
130
+ expect(subject.url_encoded?).to be false
131
+ end
132
+
133
+ it "returns false when no headers are set" do
134
+ subject.headers = nil
135
+ expect(subject.url_encoded?).to be false
136
+ end
137
+ end
138
+
139
+ describe "#json_headers?" do
140
+ it "returns true if the headers are json" do
141
+ subject.headers = { "Content-Type" => "application/json" }
142
+ expect(subject.json_headers?).to be true
143
+ end
144
+
145
+ it "returns false if the headers are NOT json" do
146
+ subject.headers = { "Content-Type" => "application/made-up-format" }
147
+ expect(subject.json_headers?).to be false
148
+ end
149
+
150
+ it "returns false when no headers are set" do
151
+ subject.headers = nil
152
+ expect(subject.json_headers?).to be false
153
+ end
154
+ end
155
+ end
@@ -0,0 +1,199 @@
1
+ require 'spec_helper'
2
+
3
+ describe WebMock::RequestStub do
4
+
5
+ before(:each) do
6
+ @request_stub = WebMock::RequestStub.new(:get, "www.example.com")
7
+ end
8
+
9
+ it "should have request pattern with method and uri" do
10
+ expect(@request_stub.request_pattern.to_s).to eq("GET http://www.example.com/")
11
+ end
12
+
13
+ it "should have response" do
14
+ expect(@request_stub.response).to be_a(WebMock::Response)
15
+ end
16
+
17
+ describe "with" do
18
+
19
+ it "should assign body to request pattern" do
20
+ @request_stub.with(body: "abc")
21
+ expect(@request_stub.request_pattern.to_s).to eq(WebMock::RequestPattern.new(:get, "www.example.com", body: "abc").to_s)
22
+ end
23
+
24
+ it "should assign normalized headers to request pattern" do
25
+ @request_stub.with(headers: {'A' => 'a'})
26
+ expect(@request_stub.request_pattern.to_s).to eq(
27
+ WebMock::RequestPattern.new(:get, "www.example.com", headers: {'A' => 'a'}).to_s
28
+ )
29
+ end
30
+
31
+ it "should assign given block to request profile" do
32
+ @request_stub.with { |req| req.body == "abc" }
33
+ expect(@request_stub.request_pattern.matches?(WebMock::RequestSignature.new(:get, "www.example.com", body: "abc"))).to be_truthy
34
+ end
35
+
36
+ end
37
+
38
+ describe "to_return" do
39
+
40
+ it "should assign response with provided options" do
41
+ @request_stub.to_return(body: "abc", status: 500)
42
+ expect(@request_stub.response.body).to eq("abc")
43
+ expect(@request_stub.response.status).to eq([500, ""])
44
+ end
45
+
46
+ it "should assign responses with provided options" do
47
+ @request_stub.to_return([{body: "abc"}, {body: "def"}])
48
+ expect([@request_stub.response.body, @request_stub.response.body]).to eq(["abc", "def"])
49
+ end
50
+
51
+ end
52
+
53
+ describe "then" do
54
+ it "should return stub without any modifications, acting as syntactic sugar" do
55
+ expect(@request_stub.then).to eq(@request_stub)
56
+ end
57
+ end
58
+
59
+ describe "response" do
60
+
61
+ it "should return responses in a sequence passed as array" do
62
+ @request_stub.to_return([{body: "abc"}, {body: "def"}])
63
+ expect(@request_stub.response.body).to eq("abc")
64
+ expect(@request_stub.response.body).to eq("def")
65
+ end
66
+
67
+ it "should repeat returning last response" do
68
+ @request_stub.to_return([{body: "abc"}, {body: "def"}])
69
+ @request_stub.response
70
+ @request_stub.response
71
+ expect(@request_stub.response.body).to eq("def")
72
+ end
73
+
74
+ it "should return responses in a sequence passed as comma separated params" do
75
+ @request_stub.to_return({body: "abc"}, {body: "def"})
76
+ expect(@request_stub.response.body).to eq("abc")
77
+ expect(@request_stub.response.body).to eq("def")
78
+ end
79
+
80
+ it "should return responses declared in multiple to_return declarations" do
81
+ @request_stub.to_return({body: "abc"}).to_return({body: "def"})
82
+ expect(@request_stub.response.body).to eq("abc")
83
+ expect(@request_stub.response.body).to eq("def")
84
+ end
85
+
86
+ end
87
+
88
+ describe "to_raise" do
89
+
90
+ it "should assign response with exception to be thrown" do
91
+ @request_stub.to_raise(ArgumentError)
92
+ expect {
93
+ @request_stub.response.raise_error_if_any
94
+ }.to raise_error(ArgumentError, "Exception from WebMock")
95
+ end
96
+
97
+ it "should assign sequence of responses with response with exception to be thrown" do
98
+ @request_stub.to_return(body: "abc").then.to_raise(ArgumentError)
99
+ expect(@request_stub.response.body).to eq("abc")
100
+ expect {
101
+ @request_stub.response.raise_error_if_any
102
+ }.to raise_error(ArgumentError, "Exception from WebMock")
103
+ end
104
+
105
+ it "should assign a list responses to be thrown in a sequence" do
106
+ @request_stub.to_raise(ArgumentError, IndexError)
107
+ expect {
108
+ @request_stub.response.raise_error_if_any
109
+ }.to raise_error(ArgumentError, "Exception from WebMock")
110
+ expect {
111
+ @request_stub.response.raise_error_if_any
112
+ }.to raise_error(IndexError, "Exception from WebMock")
113
+ end
114
+
115
+ it "should raise exceptions declared in multiple to_raise declarations" do
116
+ @request_stub.to_raise(ArgumentError).then.to_raise(IndexError)
117
+ expect {
118
+ @request_stub.response.raise_error_if_any
119
+ }.to raise_error(ArgumentError, "Exception from WebMock")
120
+ expect {
121
+ @request_stub.response.raise_error_if_any
122
+ }.to raise_error(IndexError, "Exception from WebMock")
123
+ end
124
+
125
+ end
126
+
127
+ describe "to_timeout" do
128
+
129
+ it "should assign response with timeout" do
130
+ @request_stub.to_timeout
131
+ expect(@request_stub.response.should_timeout).to be_truthy
132
+ end
133
+
134
+ it "should assign sequence of responses with response with timeout" do
135
+ @request_stub.to_return(body: "abc").then.to_timeout
136
+ expect(@request_stub.response.body).to eq("abc")
137
+ expect(@request_stub.response.should_timeout).to be_truthy
138
+ end
139
+
140
+ it "should allow multiple timeouts to be declared" do
141
+ @request_stub.to_timeout.then.to_timeout.then.to_return(body: "abc")
142
+ expect(@request_stub.response.should_timeout).to be_truthy
143
+ expect(@request_stub.response.should_timeout).to be_truthy
144
+ expect(@request_stub.response.body).to eq("abc")
145
+ end
146
+
147
+ end
148
+
149
+
150
+ describe "times" do
151
+
152
+ it "should give error if declared before any response declaration is declared" do
153
+ expect {
154
+ @request_stub.times(3)
155
+ }.to raise_error("Invalid WebMock stub declaration. times(N) can be declared only after response declaration.")
156
+ end
157
+
158
+ it "should repeat returning last declared response declared number of times" do
159
+ @request_stub.to_return({body: "abc"}).times(2).then.to_return({body: "def"})
160
+ expect(@request_stub.response.body).to eq("abc")
161
+ expect(@request_stub.response.body).to eq("abc")
162
+ expect(@request_stub.response.body).to eq("def")
163
+ end
164
+
165
+ it "should repeat raising last declared exception declared number of times" do
166
+ @request_stub.to_return({body: "abc"}).times(2).then.to_return({body: "def"})
167
+ expect(@request_stub.response.body).to eq("abc")
168
+ expect(@request_stub.response.body).to eq("abc")
169
+ expect(@request_stub.response.body).to eq("def")
170
+ end
171
+
172
+ it "should repeat returning last declared sequence of responses declared number of times" do
173
+ @request_stub.to_return({body: "abc"}, {body: "def"}).times(2).then.to_return({body: "ghj"})
174
+ expect(@request_stub.response.body).to eq("abc")
175
+ expect(@request_stub.response.body).to eq("def")
176
+ expect(@request_stub.response.body).to eq("abc")
177
+ expect(@request_stub.response.body).to eq("def")
178
+ expect(@request_stub.response.body).to eq("ghj")
179
+ end
180
+
181
+ it "should return self" do
182
+ expect(@request_stub.to_return({body: "abc"}).times(1)).to eq(@request_stub)
183
+ end
184
+
185
+ it "should raise error if argument is not integer" do
186
+ expect {
187
+ @request_stub.to_return({body: "abc"}).times("not number")
188
+ }.to raise_error("times(N) accepts integers >= 1 only")
189
+ end
190
+
191
+ it "should raise error if argument is < 1" do
192
+ expect {
193
+ @request_stub.to_return({body: "abc"}).times(0)
194
+ }.to raise_error("times(N) accepts integers >= 1 only")
195
+ end
196
+
197
+ end
198
+
199
+ end