putio 0.0.1.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +27 -0
- data/Rakefile +21 -0
- data/Readme.md +32 -0
- data/development/ruby/1.8/bin/convert_to_should_syntax +19 -0
- data/development/ruby/1.8/bin/edit_json.rb +19 -0
- data/development/ruby/1.8/bin/prettify_json.rb +19 -0
- data/development/ruby/1.8/cache/crack-0.1.8.gem +0 -0
- data/development/ruby/1.8/cache/fakeweb-1.3.0.gem +0 -0
- data/development/ruby/1.8/cache/hashie-0.4.0.gem +0 -0
- data/development/ruby/1.8/cache/json-1.4.6.gem +0 -0
- data/development/ruby/1.8/cache/omg-0.0.6.gem +0 -0
- data/development/ruby/1.8/cache/shoulda-2.11.3.gem +0 -0
- data/development/ruby/1.8/gems/crack-0.1.8/.gitignore +6 -0
- data/development/ruby/1.8/gems/crack-0.1.8/History +25 -0
- data/development/ruby/1.8/gems/crack-0.1.8/LICENSE +20 -0
- data/development/ruby/1.8/gems/crack-0.1.8/README.rdoc +42 -0
- data/development/ruby/1.8/gems/crack-0.1.8/Rakefile +52 -0
- data/development/ruby/1.8/gems/crack-0.1.8/crack.gemspec +63 -0
- data/development/ruby/1.8/gems/crack-0.1.8/lib/crack/core_extensions.rb +128 -0
- data/development/ruby/1.8/gems/crack-0.1.8/lib/crack/json.rb +68 -0
- data/development/ruby/1.8/gems/crack-0.1.8/lib/crack/xml.rb +214 -0
- data/development/ruby/1.8/gems/crack-0.1.8/lib/crack.rb +8 -0
- data/development/ruby/1.8/gems/crack-0.1.8/test/crack_test.rb +4 -0
- data/development/ruby/1.8/gems/crack-0.1.8/test/data/twittersearch-firefox.json +1 -0
- data/development/ruby/1.8/gems/crack-0.1.8/test/data/twittersearch-ie.json +1 -0
- data/development/ruby/1.8/gems/crack-0.1.8/test/hash_test.rb +56 -0
- data/development/ruby/1.8/gems/crack-0.1.8/test/json_test.rb +69 -0
- data/development/ruby/1.8/gems/crack-0.1.8/test/string_test.rb +31 -0
- data/development/ruby/1.8/gems/crack-0.1.8/test/test_helper.rb +12 -0
- data/development/ruby/1.8/gems/crack-0.1.8/test/xml_test.rb +489 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/.autotest +5 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/.gitignore +7 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/CHANGELOG +215 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/LICENSE.txt +19 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/README.rdoc +189 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/Rakefile +67 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/fakeweb.gemspec +126 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/lib/fake_web/ext/net_http.rb +72 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/lib/fake_web/registry.rb +127 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/lib/fake_web/responder.rb +122 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/lib/fake_web/response.rb +10 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/lib/fake_web/stub_socket.rb +15 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/lib/fake_web/utility.rb +87 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/lib/fake_web.rb +215 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/lib/fakeweb.rb +2 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/fixtures/google_response_from_curl +12 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/fixtures/google_response_with_transfer_encoding +17 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/fixtures/google_response_without_transfer_encoding +11 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/fixtures/test_example.txt +1 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/fixtures/test_txt_file +3 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_allow_net_connect.rb +168 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_deprecations.rb +54 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_fake_authentication.rb +92 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_fake_web.rb +590 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_fake_web_open_uri.rb +58 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_helper.rb +90 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_last_request.rb +29 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_missing_open_uri.rb +25 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_missing_pathname.rb +37 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_other_net_http_libraries.rb +36 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_precedence.rb +79 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_query_string.rb +45 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_regexes.rb +157 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_response_headers.rb +79 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_trailing_slashes.rb +53 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/test_utility.rb +83 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/History.txt +59 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/Manifest.txt +7 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/README.txt +54 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/Rakefile +103 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/lib/net_fix.rb +160 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/lib/right_http_connection.rb +435 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/right_http_connection-1.2.4/setup.rb +1585 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/.document +5 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/.gitignore +5 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/LICENSE +20 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/README.rdoc +70 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/Rakefile +62 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/VERSION +1 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/lib/samuel/net_http.rb +10 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/lib/samuel/request.rb +96 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/lib/samuel.rb +52 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/samuel.gemspec +69 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/test/request_test.rb +193 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/test/samuel_test.rb +42 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/test/test_helper.rb +66 -0
- data/development/ruby/1.8/gems/fakeweb-1.3.0/test/vendor/samuel-0.2.1/test/thread_test.rb +32 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/.document +5 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/.gitignore +7 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/Gemfile +12 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/Gemfile.lock +24 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/LICENSE +20 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/README.rdoc +119 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/Rakefile +47 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/VERSION +1 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/hashie.gemspec +71 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/lib/hashie/clash.rb +86 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/lib/hashie/dash.rb +111 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/lib/hashie/hash.rb +24 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/lib/hashie/hash_extensions.rb +49 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/lib/hashie/mash.rb +178 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/lib/hashie/trash.rb +55 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/lib/hashie.rb +9 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/spec/hashie/clash_spec.rb +42 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/spec/hashie/dash_spec.rb +156 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/spec/hashie/hash_spec.rb +22 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/spec/hashie/mash_spec.rb +241 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/spec/hashie/trash_spec.rb +70 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/spec/spec.opts +3 -0
- data/development/ruby/1.8/gems/hashie-0.4.0/spec/spec_helper.rb +13 -0
- data/development/ruby/1.8/gems/json-1.4.6/.require_paths +4 -0
- data/development/ruby/1.8/gems/json-1.4.6/CHANGES +179 -0
- data/development/ruby/1.8/gems/json-1.4.6/COPYING +58 -0
- data/development/ruby/1.8/gems/json-1.4.6/GPL +340 -0
- data/development/ruby/1.8/gems/json-1.4.6/README +356 -0
- data/development/ruby/1.8/gems/json-1.4.6/Rakefile +292 -0
- data/development/ruby/1.8/gems/json-1.4.6/TODO +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/VERSION +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log +52 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat +900 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat +901 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log +261 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log +262 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log +82 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log +34 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat +900 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat +901 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log +81 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log +82 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log +82 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat +1000 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat +1001 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log +82 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/generator2_benchmark.rb +222 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/generator_benchmark.rb +224 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/ohai.json +1216 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/ohai.ruby +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/parser2_benchmark.rb +251 -0
- data/development/ruby/1.8/gems/json-1.4.6/benchmarks/parser_benchmark.rb +259 -0
- data/development/ruby/1.8/gems/json-1.4.6/bin/edit_json.rb +9 -0
- data/development/ruby/1.8/gems/json-1.4.6/bin/prettify_json.rb +75 -0
- data/development/ruby/1.8/gems/json-1.4.6/data/example.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/data/index.html +38 -0
- data/development/ruby/1.8/gems/json-1.4.6/data/prototype.js +4184 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/generator/Makefile +157 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/generator/extconf.rb +20 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/generator/generator.bundle +0 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/generator/generator.c +1417 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/generator/generator.h +197 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/generator/generator.o +0 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/generator/mkmf.log +10 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/json/ext/generator.bundle +0 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/json/ext/parser.bundle +0 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/parser/Makefile +157 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/parser/extconf.rb +15 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/parser/mkmf.log +10 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/parser/parser.bundle +0 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/parser/parser.c +1935 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/parser/parser.h +71 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/parser/parser.o +0 -0
- data/development/ruby/1.8/gems/json-1.4.6/ext/json/ext/parser/parser.rl +792 -0
- data/development/ruby/1.8/gems/json-1.4.6/install.rb +26 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/Array.xpm +21 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/FalseClass.xpm +21 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/Hash.xpm +21 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/Key.xpm +73 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/NilClass.xpm +21 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/Numeric.xpm +28 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/String.xpm +96 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/TrueClass.xpm +21 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/add/core.rb +148 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/add/rails.rb +58 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/common.rb +391 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/editor.rb +1371 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/ext.rb +15 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/json.xpm +1499 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/pure/generator.rb +439 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/pure/parser.rb +309 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/pure.rb +77 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json/version.rb +8 -0
- data/development/ruby/1.8/gems/json-1.4.6/lib/json.rb +10 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail1.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail10.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail11.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail12.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail13.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail14.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail18.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail19.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail2.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail20.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail21.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail22.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail23.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail24.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail25.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail27.json +2 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail28.json +2 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail3.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail4.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail5.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail6.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail7.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail8.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/fail9.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/pass1.json +56 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/pass15.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/pass16.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/pass17.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/pass2.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/pass26.json +1 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/fixtures/pass3.json +6 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/test_json.rb +394 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/test_json_addition.rb +162 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/test_json_encoding.rb +68 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/test_json_fixtures.rb +34 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/test_json_generate.rb +181 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/test_json_rails.rb +144 -0
- data/development/ruby/1.8/gems/json-1.4.6/tests/test_json_unicode.rb +76 -0
- data/development/ruby/1.8/gems/json-1.4.6/tools/fuzz.rb +139 -0
- data/development/ruby/1.8/gems/json-1.4.6/tools/server.rb +61 -0
- data/development/ruby/1.8/gems/omg-0.0.6/.document +5 -0
- data/development/ruby/1.8/gems/omg-0.0.6/.gitignore +21 -0
- data/development/ruby/1.8/gems/omg-0.0.6/LICENSE +20 -0
- data/development/ruby/1.8/gems/omg-0.0.6/README.rdoc +35 -0
- data/development/ruby/1.8/gems/omg-0.0.6/Rakefile +52 -0
- data/development/ruby/1.8/gems/omg-0.0.6/TODO +1 -0
- data/development/ruby/1.8/gems/omg-0.0.6/VERSION +1 -0
- data/development/ruby/1.8/gems/omg-0.0.6/lib/omg.rb +43 -0
- data/development/ruby/1.8/gems/omg-0.0.6/omg.gemspec +53 -0
- data/development/ruby/1.8/gems/omg-0.0.6/test/helper.rb +10 -0
- data/development/ruby/1.8/gems/omg-0.0.6/test/test_omg.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/CONTRIBUTION_GUIDELINES.rdoc +10 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/MIT-LICENSE +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/README.rdoc +154 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/Rakefile +70 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/bin/convert_to_should_syntax +42 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/macros.rb +221 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/assign_to_matcher.rb +112 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/filter_param_matcher.rb +74 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/redirect_to_matcher.rb +62 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/render_template_matcher.rb +54 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/render_with_layout_matcher.rb +99 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/respond_with_content_type_matcher.rb +74 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/respond_with_matcher.rb +85 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/route_matcher.rb +93 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/set_session_matcher.rb +98 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/set_the_flash_matcher.rb +100 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers.rb +39 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_controller.rb +34 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_mailer/assertions.rb +42 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_mailer/matchers/have_sent_email.rb +110 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_mailer/matchers.rb +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/action_mailer.rb +13 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/assertions.rb +69 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/helpers.rb +32 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/macros.rb +457 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/allow_mass_assignment_of_matcher.rb +83 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/allow_value_matcher.rb +110 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/association_matcher.rb +226 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/ensure_inclusion_of_matcher.rb +87 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/ensure_length_of_matcher.rb +141 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/have_db_column_matcher.rb +169 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/have_db_index_matcher.rb +112 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/have_readonly_attribute_matcher.rb +59 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_acceptance_of_matcher.rb +41 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_format_of_matcher.rb +65 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_numericality_of_matcher.rb +39 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_presence_of_matcher.rb +60 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_uniqueness_of_matcher.rb +148 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validation_matcher.rb +56 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers.rb +42 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/active_record.rb +16 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/assertions.rb +79 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/autoload_macros.rb +46 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/context.rb +433 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/helpers.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/integrations/rspec.rb +13 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/integrations/rspec2.rb +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/integrations/test_unit.rb +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/macros.rb +161 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/private_helpers.rb +13 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/proc_extensions.rb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/rails.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/tasks/list_tests.rake +29 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/tasks/yaml_to_shoulda.rake +28 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/tasks.rb +3 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda/version.rb +4 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/lib/shoulda.rb +9 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/rails/init.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/README +36 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/fail_macros.rb +55 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/fixtures/addresses.yml +3 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/fixtures/friendships.yml +0 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/fixtures/posts.yml +5 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/fixtures/products.yml +0 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/fixtures/taggings.yml +0 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/fixtures/tags.yml +9 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/fixtures/users.yml +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/functional/posts_controller_test.rb +121 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/functional/users_controller_test.rb +19 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/action_mailer/have_sent_email_test.rb +70 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/allow_mass_assignment_of_matcher_test.rb +74 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/allow_value_matcher_test.rb +64 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/association_matcher_test.rb +263 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/ensure_inclusion_of_matcher_test.rb +81 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/ensure_length_of_matcher_test.rb +158 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/have_db_column_matcher_test.rb +169 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/have_db_index_matcher_test.rb +91 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/have_readonly_attributes_matcher_test.rb +29 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/validate_acceptance_of_matcher_test.rb +44 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/validate_format_of_matcher_test.rb +39 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/validate_numericality_of_matcher_test.rb +52 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/validate_presence_of_matcher_test.rb +86 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/active_record/validate_uniqueness_of_matcher_test.rb +147 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/assign_to_matcher_test.rb +45 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/filter_param_matcher_test.rb +40 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/redirect_to_matcher_test.rb +37 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/render_template_matcher_test.rb +37 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/render_with_layout_matcher_test.rb +47 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/respond_with_content_type_matcher_test.rb +32 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/respond_with_matcher_test.rb +96 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/route_matcher_test.rb +75 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/set_session_matcher_test.rb +48 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/matchers/controller/set_the_flash_matcher.rb +95 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/other/autoload_macro_test.rb +18 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/other/context_test.rb +372 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/other/convert_to_should_syntax_test.rb +63 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/other/helpers_test.rb +317 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/other/private_helpers_test.rb +32 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/other/should_test.rb +271 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_model_builder.rb +130 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/controllers/application_controller.rb +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/controllers/posts_controller.rb +87 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/controllers/users_controller.rb +84 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/helpers/application_helper.rb +3 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/helpers/posts_helper.rb +2 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/helpers/users_helper.rb +2 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/address.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/flea.rb +11 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/friendship.rb +4 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/notifier.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/pets/cat.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/pets/dog.rb +10 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/post.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/product.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/profile.rb +2 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/registration.rb +2 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/tag.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/tagging.rb +4 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/treat.rb +3 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/models/user.rb +32 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/layouts/posts.rhtml +19 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/layouts/users.rhtml +17 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/layouts/wide.html.erb +1 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/notifier/the_email.html.erb +1 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/posts/edit.rhtml +27 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/posts/index.rhtml +25 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/posts/new.rhtml +26 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/posts/show.rhtml +18 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/users/edit.rhtml +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/users/index.rhtml +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/users/new.rhtml +21 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/app/views/users/show.rhtml +13 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/config/boot.rb +110 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/config/database.yml +4 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/config/environment.rb +17 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/config/environments/test.rb +23 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/config/initializers/new_rails_defaults.rb +15 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/config/initializers/shoulda.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/config/routes.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/001_create_users.rb +19 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/002_create_posts.rb +13 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/003_create_taggings.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/004_create_tags.rb +11 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/005_create_dogs.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/006_create_addresses.rb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/007_create_fleas.rb +11 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/008_create_dogs_fleas.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/009_create_products.rb +17 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/010_create_friendships.rb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/011_create_treats.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/20090506203502_create_profiles.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/20090506203536_create_registrations.rb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/migrate/20090513104502_create_cats.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/db/schema.rb +0 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/log/test.log +50381 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/public/404.html +30 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/public/422.html +30 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/public/500.html +30 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/script/console +3 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/script/generate +3 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/test/shoulda_macros/custom_macro.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails2_test_helper.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_model_builder.rb +118 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/Gemfile +28 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/README +244 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/Rakefile +10 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/controllers/application_controller.rb +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/controllers/posts_controller.rb +87 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/controllers/users_controller.rb +82 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/helpers/application_helper.rb +2 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/address.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/flea.rb +11 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/friendship.rb +4 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/notifier.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/pets/cat.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/pets/dog.rb +10 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/post.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/product.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/profile.rb +2 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/registration.rb +2 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/tag.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/tagging.rb +4 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/treat.rb +3 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/models/user.rb +32 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/layouts/application.html.erb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/layouts/posts.rhtml +19 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/layouts/users.rhtml +17 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/layouts/wide.html.erb +1 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/notifier/the_email.html.erb +1 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/posts/edit.rhtml +27 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/posts/index.rhtml +25 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/posts/new.rhtml +24 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/posts/show.rhtml +18 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/users/edit.rhtml +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/users/index.rhtml +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/users/new.rhtml +21 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/app/views/users/show.rhtml +13 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/application.rb +46 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/boot.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/database.yml +22 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/environment.rb +5 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/environments/development.rb +19 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/environments/production.rb +42 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/environments/test.rb +32 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/initializers/backtrace_silencers.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/initializers/inflections.rb +10 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/initializers/mime_types.rb +5 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/initializers/secret_token.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/initializers/session_store.rb +8 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/locales/en.yml +5 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config/routes.rb +4 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/config.ru +4 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/001_create_users.rb +19 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/002_create_posts.rb +13 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/003_create_taggings.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/004_create_tags.rb +11 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/005_create_dogs.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/006_create_addresses.rb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/007_create_fleas.rb +11 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/008_create_dogs_fleas.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/009_create_products.rb +17 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/010_create_friendships.rb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/011_create_treats.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/20090506203502_create_profiles.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/20090506203536_create_registrations.rb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/migrate/20090513104502_create_cats.rb +12 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/seeds.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/db/test.sqlite3 +0 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/log/test.log +10834 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/404.html +26 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/422.html +26 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/500.html +26 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/favicon.ico +0 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/images/rails.png +0 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/index.html +279 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/application.js +2 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/controls.js +965 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/dragdrop.js +974 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/effects.js +1123 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/prototype.js +4874 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/rails.js +118 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/public/robots.txt +5 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/script/rails +9 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/test/performance/browsing_test.rb +9 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_root/test/test_helper.rb +13 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rails3_test_helper.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/rspec_test.rb +207 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/test_helper.rb +36 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/address_test.rb +10 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/cat_test.rb +7 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/dog_test.rb +9 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/flea_test.rb +14 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/friendship_test.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/post_test.rb +15 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/product_test.rb +23 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/tag_test.rb +11 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/tagging_test.rb +6 -0
- data/development/ruby/1.8/gems/shoulda-2.11.3/test/unit/user_test.rb +46 -0
- data/development/ruby/1.8/specifications/crack-0.1.8.gemspec +30 -0
- data/development/ruby/1.8/specifications/fakeweb-1.3.0.gemspec +34 -0
- data/development/ruby/1.8/specifications/hashie-0.4.0.gemspec +33 -0
- data/development/ruby/1.8/specifications/json-1.4.6.gemspec +34 -0
- data/development/ruby/1.8/specifications/omg-0.0.6.gemspec +30 -0
- data/development/ruby/1.8/specifications/shoulda-2.11.3.gemspec +32 -0
- data/lib/putio/client.rb +74 -0
- data/lib/putio/putio.rb +5 -0
- data/lib/putio.rb +4 -0
- data/putio.gemspec +25 -0
- data/test/fixtures/user_friends.json +1 -0
- data/test/fixtures/user_info.json +1 -0
- data/test/test_helper.rb +19 -0
- data/test/units/client_test.rb +11 -0
- data/test/units/putio_test.rb +11 -0
- data/test/units/user_test.rb +39 -0
- metadata +675 -0
@@ -0,0 +1,590 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class TestFakeWeb < Test::Unit::TestCase
|
4
|
+
|
5
|
+
def test_register_uri
|
6
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => "example")
|
7
|
+
assert FakeWeb.registered_uri?(:get, 'http://mock/test_example.txt')
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_register_uri_with_wrong_number_of_arguments
|
11
|
+
assert_raises ArgumentError do
|
12
|
+
FakeWeb.register_uri("http://example.com")
|
13
|
+
end
|
14
|
+
assert_raises ArgumentError do
|
15
|
+
FakeWeb.register_uri(:get, "http://example.com", "/example", :body => "example")
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_registered_uri_with_wrong_number_of_arguments
|
20
|
+
assert_raises ArgumentError do
|
21
|
+
FakeWeb.registered_uri?
|
22
|
+
end
|
23
|
+
assert_raises ArgumentError do
|
24
|
+
FakeWeb.registered_uri?(:get, "http://example.com", "/example")
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_response_for_with_wrong_number_of_arguments
|
29
|
+
assert_raises ArgumentError do
|
30
|
+
FakeWeb.response_for
|
31
|
+
end
|
32
|
+
assert_raises ArgumentError do
|
33
|
+
FakeWeb.response_for(:get, "http://example.com", "/example")
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_register_uri_without_domain_name
|
38
|
+
assert_raises URI::InvalidURIError do
|
39
|
+
FakeWeb.register_uri(:get, 'test_example2.txt', fixture_path("test_example.txt"))
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_register_uri_with_port_and_check_with_port
|
44
|
+
FakeWeb.register_uri(:get, 'http://example.com:3000/', :body => 'foo')
|
45
|
+
assert FakeWeb.registered_uri?(:get, 'http://example.com:3000/')
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_register_uri_with_port_and_check_without_port
|
49
|
+
FakeWeb.register_uri(:get, 'http://example.com:3000/', :body => 'foo')
|
50
|
+
assert !FakeWeb.registered_uri?(:get, 'http://example.com/')
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_register_uri_with_default_port_for_http_and_check_without_port
|
54
|
+
FakeWeb.register_uri(:get, 'http://example.com:80/', :body => 'foo')
|
55
|
+
assert FakeWeb.registered_uri?(:get, 'http://example.com/')
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_register_uri_with_default_port_for_https_and_check_without_port
|
59
|
+
FakeWeb.register_uri(:get, 'https://example.com:443/', :body => 'foo')
|
60
|
+
assert FakeWeb.registered_uri?(:get, 'https://example.com/')
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_register_uri_with_no_port_for_http_and_check_with_default_port
|
64
|
+
FakeWeb.register_uri(:get, 'http://example.com/', :body => 'foo')
|
65
|
+
assert FakeWeb.registered_uri?(:get, 'http://example.com:80/')
|
66
|
+
end
|
67
|
+
|
68
|
+
def test_register_uri_with_no_port_for_https_and_check_with_default_port
|
69
|
+
FakeWeb.register_uri(:get, 'https://example.com/', :body => 'foo')
|
70
|
+
assert FakeWeb.registered_uri?(:get, 'https://example.com:443/')
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_register_uri_with_no_port_for_https_and_check_with_443_on_http
|
74
|
+
FakeWeb.register_uri(:get, 'https://example.com/', :body => 'foo')
|
75
|
+
assert !FakeWeb.registered_uri?(:get, 'http://example.com:443/')
|
76
|
+
end
|
77
|
+
|
78
|
+
def test_register_uri_with_no_port_for_http_and_check_with_80_on_https
|
79
|
+
FakeWeb.register_uri(:get, 'http://example.com/', :body => 'foo')
|
80
|
+
assert !FakeWeb.registered_uri?(:get, 'https://example.com:80/')
|
81
|
+
end
|
82
|
+
|
83
|
+
def test_register_uri_for_any_method_explicitly
|
84
|
+
FakeWeb.register_uri(:any, "http://example.com/rpc_endpoint", :body => "OK")
|
85
|
+
assert FakeWeb.registered_uri?(:get, "http://example.com/rpc_endpoint")
|
86
|
+
assert FakeWeb.registered_uri?(:post, "http://example.com/rpc_endpoint")
|
87
|
+
assert FakeWeb.registered_uri?(:put, "http://example.com/rpc_endpoint")
|
88
|
+
assert FakeWeb.registered_uri?(:delete, "http://example.com/rpc_endpoint")
|
89
|
+
assert FakeWeb.registered_uri?(:any, "http://example.com/rpc_endpoint")
|
90
|
+
capture_stderr do # silence deprecation warning
|
91
|
+
assert FakeWeb.registered_uri?("http://example.com/rpc_endpoint")
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
def test_register_uri_for_get_method_only
|
96
|
+
FakeWeb.register_uri(:get, "http://example.com/users", :body => "User list")
|
97
|
+
assert FakeWeb.registered_uri?(:get, "http://example.com/users")
|
98
|
+
assert !FakeWeb.registered_uri?(:post, "http://example.com/users")
|
99
|
+
assert !FakeWeb.registered_uri?(:put, "http://example.com/users")
|
100
|
+
assert !FakeWeb.registered_uri?(:delete, "http://example.com/users")
|
101
|
+
assert !FakeWeb.registered_uri?(:any, "http://example.com/users")
|
102
|
+
capture_stderr do # silence deprecation warning
|
103
|
+
assert !FakeWeb.registered_uri?("http://example.com/users")
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
def test_clean_registry_affects_registered_uri
|
108
|
+
FakeWeb.register_uri(:get, "http://example.com", :body => "registered")
|
109
|
+
assert FakeWeb.registered_uri?(:get, "http://example.com")
|
110
|
+
FakeWeb.clean_registry
|
111
|
+
assert !FakeWeb.registered_uri?(:get, "http://example.com")
|
112
|
+
end
|
113
|
+
|
114
|
+
def test_clean_registry_affects_net_http_requests
|
115
|
+
FakeWeb.register_uri(:get, "http://example.com", :body => "registered")
|
116
|
+
response = Net::HTTP.start("example.com") { |query| query.get("/") }
|
117
|
+
assert_equal "registered", response.body
|
118
|
+
FakeWeb.clean_registry
|
119
|
+
assert_raise FakeWeb::NetConnectNotAllowedError do
|
120
|
+
Net::HTTP.start("example.com") { |query| query.get("/") }
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def test_response_for_with_registered_uri
|
125
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
126
|
+
assert_equal 'test example content', FakeWeb.response_for(:get, 'http://mock/test_example.txt').body
|
127
|
+
end
|
128
|
+
|
129
|
+
def test_response_for_with_unknown_uri
|
130
|
+
assert_nil FakeWeb.response_for(:get, 'http://example.com/')
|
131
|
+
end
|
132
|
+
|
133
|
+
def test_response_for_with_put_method
|
134
|
+
FakeWeb.register_uri(:put, "http://example.com", :body => "response")
|
135
|
+
assert_equal 'response', FakeWeb.response_for(:put, "http://example.com").body
|
136
|
+
end
|
137
|
+
|
138
|
+
def test_response_for_with_any_method_explicitly
|
139
|
+
FakeWeb.register_uri(:any, "http://example.com", :body => "response")
|
140
|
+
assert_equal 'response', FakeWeb.response_for(:get, "http://example.com").body
|
141
|
+
assert_equal 'response', FakeWeb.response_for(:any, "http://example.com").body
|
142
|
+
end
|
143
|
+
|
144
|
+
def test_content_for_registered_uri_with_port_and_request_with_port
|
145
|
+
FakeWeb.register_uri(:get, 'http://example.com:3000/', :body => 'test example content')
|
146
|
+
response = Net::HTTP.start('example.com', 3000) { |http| http.get('/') }
|
147
|
+
assert_equal 'test example content', response.body
|
148
|
+
end
|
149
|
+
|
150
|
+
def test_content_for_registered_uri_with_default_port_for_http_and_request_without_port
|
151
|
+
FakeWeb.register_uri(:get, 'http://example.com:80/', :body => 'test example content')
|
152
|
+
response = Net::HTTP.start('example.com') { |http| http.get('/') }
|
153
|
+
assert_equal 'test example content', response.body
|
154
|
+
end
|
155
|
+
|
156
|
+
def test_content_for_registered_uri_with_no_port_for_http_and_request_with_default_port
|
157
|
+
FakeWeb.register_uri(:get, 'http://example.com/', :body => 'test example content')
|
158
|
+
response = Net::HTTP.start('example.com', 80) { |http| http.get('/') }
|
159
|
+
assert_equal 'test example content', response.body
|
160
|
+
end
|
161
|
+
|
162
|
+
def test_content_for_registered_uri_with_default_port_for_https_and_request_with_default_port
|
163
|
+
FakeWeb.register_uri(:get, 'https://example.com:443/', :body => 'test example content')
|
164
|
+
http = Net::HTTP.new('example.com', 443)
|
165
|
+
http.use_ssl = true
|
166
|
+
response = http.get('/')
|
167
|
+
assert_equal 'test example content', response.body
|
168
|
+
end
|
169
|
+
|
170
|
+
def test_content_for_registered_uri_with_no_port_for_https_and_request_with_default_port
|
171
|
+
FakeWeb.register_uri(:get, 'https://example.com/', :body => 'test example content')
|
172
|
+
http = Net::HTTP.new('example.com', 443)
|
173
|
+
http.use_ssl = true
|
174
|
+
response = http.get('/')
|
175
|
+
assert_equal 'test example content', response.body
|
176
|
+
end
|
177
|
+
|
178
|
+
def test_content_for_registered_uris_with_ports_on_same_domain_and_request_without_port
|
179
|
+
FakeWeb.register_uri(:get, 'http://example.com:3000/', :body => 'port 3000')
|
180
|
+
FakeWeb.register_uri(:get, 'http://example.com/', :body => 'port 80')
|
181
|
+
response = Net::HTTP.start('example.com') { |http| http.get('/') }
|
182
|
+
assert_equal 'port 80', response.body
|
183
|
+
end
|
184
|
+
|
185
|
+
def test_content_for_registered_uris_with_ports_on_same_domain_and_request_with_port
|
186
|
+
FakeWeb.register_uri(:get, 'http://example.com:3000/', :body => 'port 3000')
|
187
|
+
FakeWeb.register_uri(:get, 'http://example.com/', :body => 'port 80')
|
188
|
+
response = Net::HTTP.start('example.com', 3000) { |http| http.get('/') }
|
189
|
+
assert_equal 'port 3000', response.body
|
190
|
+
end
|
191
|
+
|
192
|
+
def test_content_for_registered_uri_with_get_method_only
|
193
|
+
FakeWeb.allow_net_connect = false
|
194
|
+
FakeWeb.register_uri(:get, "http://example.com/", :body => "test example content")
|
195
|
+
http = Net::HTTP.new('example.com')
|
196
|
+
assert_equal 'test example content', http.get('/').body
|
197
|
+
assert_raises(FakeWeb::NetConnectNotAllowedError) { http.post('/', nil) }
|
198
|
+
assert_raises(FakeWeb::NetConnectNotAllowedError) { http.put('/', nil) }
|
199
|
+
assert_raises(FakeWeb::NetConnectNotAllowedError) { http.delete('/') }
|
200
|
+
end
|
201
|
+
|
202
|
+
def test_content_for_registered_uri_with_any_method_explicitly
|
203
|
+
FakeWeb.allow_net_connect = false
|
204
|
+
FakeWeb.register_uri(:any, "http://example.com/", :body => "test example content")
|
205
|
+
http = Net::HTTP.new('example.com')
|
206
|
+
assert_equal 'test example content', http.get('/').body
|
207
|
+
assert_equal 'test example content', http.post('/', nil).body
|
208
|
+
assert_equal 'test example content', http.put('/', nil).body
|
209
|
+
assert_equal 'test example content', http.delete('/').body
|
210
|
+
end
|
211
|
+
|
212
|
+
def test_content_for_registered_uri_with_any_method_implicitly
|
213
|
+
FakeWeb.allow_net_connect = false
|
214
|
+
capture_stderr do # silence deprecation warning
|
215
|
+
FakeWeb.register_uri("http://example.com/", :body => "test example content")
|
216
|
+
end
|
217
|
+
|
218
|
+
http = Net::HTTP.new('example.com')
|
219
|
+
assert_equal 'test example content', http.get('/').body
|
220
|
+
assert_equal 'test example content', http.post('/', nil).body
|
221
|
+
assert_equal 'test example content', http.put('/', nil).body
|
222
|
+
assert_equal 'test example content', http.delete('/').body
|
223
|
+
end
|
224
|
+
|
225
|
+
def test_mock_request_with_block
|
226
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
227
|
+
response = Net::HTTP.start('mock') { |http| http.get('/test_example.txt') }
|
228
|
+
assert_equal 'test example content', response.body
|
229
|
+
end
|
230
|
+
|
231
|
+
def test_request_with_registered_body_yields_the_response_body_to_a_request_block
|
232
|
+
FakeWeb.register_uri(:get, "http://example.com", :body => "content")
|
233
|
+
body = nil
|
234
|
+
Net::HTTP.start("example.com") do |http|
|
235
|
+
http.get("/") do |response_body|
|
236
|
+
body = response_body
|
237
|
+
end
|
238
|
+
end
|
239
|
+
assert_equal "content", body
|
240
|
+
end
|
241
|
+
|
242
|
+
def test_request_with_registered_response_yields_the_response_body_to_a_request_block
|
243
|
+
fake_response = Net::HTTPOK.new('1.1', '200', 'OK')
|
244
|
+
fake_response.instance_variable_set(:@body, "content")
|
245
|
+
FakeWeb.register_uri(:get, 'http://example.com', :response => fake_response)
|
246
|
+
body = nil
|
247
|
+
Net::HTTP.start("example.com") do |http|
|
248
|
+
http.get("/") do |response_body|
|
249
|
+
body = response_body
|
250
|
+
end
|
251
|
+
end
|
252
|
+
assert_equal "content", body
|
253
|
+
end
|
254
|
+
|
255
|
+
def test_mock_request_with_undocumented_full_uri_argument_style
|
256
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
257
|
+
response = Net::HTTP.start('mock') { |query| query.get('http://mock/test_example.txt') }
|
258
|
+
assert_equal 'test example content', response.body
|
259
|
+
end
|
260
|
+
|
261
|
+
def test_mock_request_with_undocumented_full_uri_argument_style_and_query
|
262
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt?a=b', :body => 'test query content')
|
263
|
+
response = Net::HTTP.start('mock') { |query| query.get('http://mock/test_example.txt?a=b') }
|
264
|
+
assert_equal 'test query content', response.body
|
265
|
+
end
|
266
|
+
|
267
|
+
def test_mock_post
|
268
|
+
FakeWeb.register_uri(:post, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
269
|
+
response = Net::HTTP.start('mock') { |query| query.post('/test_example.txt', '') }
|
270
|
+
assert_equal 'test example content', response.body
|
271
|
+
end
|
272
|
+
|
273
|
+
def test_mock_post_with_string_as_registered_uri
|
274
|
+
FakeWeb.register_uri(:post, 'http://mock/test_string.txt', :body => 'foo')
|
275
|
+
response = Net::HTTP.start('mock') { |query| query.post('/test_string.txt', '') }
|
276
|
+
assert_equal 'foo', response.body
|
277
|
+
end
|
278
|
+
|
279
|
+
def test_mock_post_with_body_sets_the_request_body
|
280
|
+
FakeWeb.register_uri(:post, "http://example.com/posts", :status => [201, "Created"])
|
281
|
+
http = Net::HTTP.new("example.com")
|
282
|
+
request = Net::HTTP::Post.new("/posts")
|
283
|
+
http.request(request, "title=Test")
|
284
|
+
assert_equal "title=Test", request.body
|
285
|
+
assert_equal 10, request.content_length
|
286
|
+
end
|
287
|
+
|
288
|
+
def test_mock_post_with_body_using_other_syntax_sets_the_request_body
|
289
|
+
FakeWeb.register_uri(:post, "http://example.com/posts", :status => [201, "Created"])
|
290
|
+
http = Net::HTTP.new("example.com")
|
291
|
+
request = Net::HTTP::Post.new("/posts")
|
292
|
+
request.body = "title=Test"
|
293
|
+
http.request(request)
|
294
|
+
assert_equal "title=Test", request.body
|
295
|
+
assert_equal 10, request.content_length
|
296
|
+
end
|
297
|
+
|
298
|
+
def test_real_post_with_body_sets_the_request_body
|
299
|
+
FakeWeb.allow_net_connect = true
|
300
|
+
setup_expectations_for_real_apple_hot_news_request :method => "POST",
|
301
|
+
:path => "/posts", :request_body => "title=Test"
|
302
|
+
http = Net::HTTP.new("images.apple.com")
|
303
|
+
request = Net::HTTP::Post.new("/posts")
|
304
|
+
request["Content-Type"] = "application/x-www-form-urlencoded"
|
305
|
+
http.request(request, "title=Test")
|
306
|
+
assert_equal "title=Test", request.body
|
307
|
+
assert_equal 10, request.content_length
|
308
|
+
end
|
309
|
+
|
310
|
+
def test_mock_get_with_request_as_registered_uri
|
311
|
+
fake_response = Net::HTTPOK.new('1.1', '200', 'OK')
|
312
|
+
FakeWeb.register_uri(:get, 'http://mock/test_response', :response => fake_response)
|
313
|
+
response = Net::HTTP.start('mock') { |query| query.get('/test_response') }
|
314
|
+
assert_equal fake_response, response
|
315
|
+
end
|
316
|
+
|
317
|
+
def test_mock_get_with_request_from_file_as_registered_uri
|
318
|
+
FakeWeb.register_uri(:get, 'http://www.google.com/', :response => fixture_path("google_response_without_transfer_encoding"))
|
319
|
+
response = Net::HTTP.start('www.google.com') { |query| query.get('/') }
|
320
|
+
assert_equal '200', response.code
|
321
|
+
assert response.body.include?('<title>Google</title>')
|
322
|
+
end
|
323
|
+
|
324
|
+
def test_mock_post_with_request_from_file_as_registered_uri
|
325
|
+
FakeWeb.register_uri(:post, 'http://www.google.com/', :response => fixture_path("google_response_without_transfer_encoding"))
|
326
|
+
response = Net::HTTP.start('www.google.com') { |query| query.post('/', '') }
|
327
|
+
assert_equal "200", response.code
|
328
|
+
assert response.body.include?('<title>Google</title>')
|
329
|
+
end
|
330
|
+
|
331
|
+
def test_proxy_request
|
332
|
+
FakeWeb.register_uri(:get, 'http://www.example.com/', :body => "hello world")
|
333
|
+
FakeWeb.register_uri(:get, 'http://your.proxy.host/', :body => "lala")
|
334
|
+
|
335
|
+
response = nil
|
336
|
+
Net::HTTP::Proxy('your.proxy.host', 8080).start('www.example.com') do |http|
|
337
|
+
response = http.get('/')
|
338
|
+
end
|
339
|
+
assert_equal "hello world", response.body
|
340
|
+
end
|
341
|
+
|
342
|
+
def test_https_request
|
343
|
+
FakeWeb.register_uri(:get, 'https://www.example.com/', :body => "Hello World")
|
344
|
+
http = Net::HTTP.new('www.example.com', 443)
|
345
|
+
http.use_ssl = true
|
346
|
+
response = http.get('/')
|
347
|
+
assert_equal "Hello World", response.body
|
348
|
+
end
|
349
|
+
|
350
|
+
def test_register_unimplemented_response
|
351
|
+
FakeWeb.register_uri(:get, 'http://mock/unimplemented', :response => 1)
|
352
|
+
assert_raises StandardError do
|
353
|
+
Net::HTTP.start('mock') { |q| q.get('/unimplemented') }
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
def test_specifying_nil_for_body
|
358
|
+
FakeWeb.register_uri(:head, "http://example.com", :body => nil)
|
359
|
+
response = Net::HTTP.start("example.com") { |query| query.head("/") }
|
360
|
+
assert_equal "", response.body
|
361
|
+
end
|
362
|
+
|
363
|
+
def test_real_http_request
|
364
|
+
FakeWeb.allow_net_connect = true
|
365
|
+
setup_expectations_for_real_apple_hot_news_request
|
366
|
+
|
367
|
+
resp = nil
|
368
|
+
Net::HTTP.start('images.apple.com') do |query|
|
369
|
+
resp = query.get('/main/rss/hotnews/hotnews.rss')
|
370
|
+
end
|
371
|
+
assert resp.body.include?('Apple')
|
372
|
+
assert resp.body.include?('News')
|
373
|
+
end
|
374
|
+
|
375
|
+
def test_real_http_request_with_undocumented_full_uri_argument_style
|
376
|
+
FakeWeb.allow_net_connect = true
|
377
|
+
setup_expectations_for_real_apple_hot_news_request(:path => 'http://images.apple.com/main/rss/hotnews/hotnews.rss')
|
378
|
+
|
379
|
+
resp = nil
|
380
|
+
Net::HTTP.start('images.apple.com') do |query|
|
381
|
+
resp = query.get('http://images.apple.com/main/rss/hotnews/hotnews.rss')
|
382
|
+
end
|
383
|
+
assert resp.body.include?('Apple')
|
384
|
+
assert resp.body.include?('News')
|
385
|
+
end
|
386
|
+
|
387
|
+
def test_real_https_request
|
388
|
+
FakeWeb.allow_net_connect = true
|
389
|
+
setup_expectations_for_real_apple_hot_news_request(:port => 443)
|
390
|
+
|
391
|
+
http = Net::HTTP.new('images.apple.com', 443)
|
392
|
+
http.use_ssl = true
|
393
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_NONE # silence certificate warning
|
394
|
+
response = http.get('/main/rss/hotnews/hotnews.rss')
|
395
|
+
assert response.body.include?('Apple')
|
396
|
+
assert response.body.include?('News')
|
397
|
+
end
|
398
|
+
|
399
|
+
def test_real_request_on_same_domain_as_mock
|
400
|
+
FakeWeb.allow_net_connect = true
|
401
|
+
setup_expectations_for_real_apple_hot_news_request
|
402
|
+
|
403
|
+
FakeWeb.register_uri(:get, 'http://images.apple.com/test_string.txt', :body => 'foo')
|
404
|
+
|
405
|
+
resp = nil
|
406
|
+
Net::HTTP.start('images.apple.com') do |query|
|
407
|
+
resp = query.get('/main/rss/hotnews/hotnews.rss')
|
408
|
+
end
|
409
|
+
assert resp.body.include?('Apple')
|
410
|
+
assert resp.body.include?('News')
|
411
|
+
end
|
412
|
+
|
413
|
+
def test_mock_request_on_real_domain
|
414
|
+
FakeWeb.register_uri(:get, 'http://images.apple.com/test_string.txt', :body => 'foo')
|
415
|
+
resp = nil
|
416
|
+
Net::HTTP.start('images.apple.com') do |query|
|
417
|
+
resp = query.get('/test_string.txt')
|
418
|
+
end
|
419
|
+
assert_equal 'foo', resp.body
|
420
|
+
end
|
421
|
+
|
422
|
+
def test_mock_post_that_raises_exception
|
423
|
+
FakeWeb.register_uri(:post, 'http://mock/raising_exception.txt', :exception => StandardError)
|
424
|
+
assert_raises(StandardError) do
|
425
|
+
Net::HTTP.start('mock') do |query|
|
426
|
+
query.post('/raising_exception.txt', 'some data')
|
427
|
+
end
|
428
|
+
end
|
429
|
+
end
|
430
|
+
|
431
|
+
def test_mock_post_that_raises_an_http_error
|
432
|
+
FakeWeb.register_uri(:post, 'http://mock/raising_exception.txt', :exception => Net::HTTPError)
|
433
|
+
assert_raises(Net::HTTPError) do
|
434
|
+
Net::HTTP.start('mock') do |query|
|
435
|
+
query.post('/raising_exception.txt', '')
|
436
|
+
end
|
437
|
+
end
|
438
|
+
end
|
439
|
+
|
440
|
+
def test_raising_an_exception_that_requires_an_argument_to_instantiate
|
441
|
+
FakeWeb.register_uri(:get, "http://example.com/timeout.txt", :exception => Timeout::Error)
|
442
|
+
assert_raises(Timeout::Error) do
|
443
|
+
Net::HTTP.get(URI.parse("http://example.com/timeout.txt"))
|
444
|
+
end
|
445
|
+
end
|
446
|
+
|
447
|
+
def test_mock_instance_syntax
|
448
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
449
|
+
response = nil
|
450
|
+
uri = URI.parse('http://mock/test_example.txt')
|
451
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
452
|
+
response = http.start do
|
453
|
+
http.get(uri.path)
|
454
|
+
end
|
455
|
+
|
456
|
+
assert_equal 'test example content', response.body
|
457
|
+
end
|
458
|
+
|
459
|
+
def test_mock_via_nil_proxy
|
460
|
+
response = nil
|
461
|
+
proxy_address = nil
|
462
|
+
proxy_port = nil
|
463
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
464
|
+
uri = URI.parse('http://mock/test_example.txt')
|
465
|
+
http = Net::HTTP::Proxy(proxy_address, proxy_port).new(
|
466
|
+
uri.host, (uri.port or 80))
|
467
|
+
response = http.start do
|
468
|
+
http.get(uri.path)
|
469
|
+
end
|
470
|
+
|
471
|
+
assert_equal 'test example content', response.body
|
472
|
+
end
|
473
|
+
|
474
|
+
def test_response_type
|
475
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => "test")
|
476
|
+
response = Net::HTTP.start('mock') { |http| http.get('/test_example.txt') }
|
477
|
+
assert_kind_of Net::HTTPSuccess, response
|
478
|
+
end
|
479
|
+
|
480
|
+
def test_mock_request_that_raises_an_http_error_with_a_specific_status
|
481
|
+
FakeWeb.register_uri(:get, 'http://mock/raising_exception.txt', :exception => Net::HTTPError, :status => ['404', 'Not Found'])
|
482
|
+
exception = assert_raises(Net::HTTPError) do
|
483
|
+
Net::HTTP.start('mock') { |http| http.get('/raising_exception.txt') }
|
484
|
+
end
|
485
|
+
assert_equal '404', exception.response.code
|
486
|
+
assert_equal 'Not Found', exception.response.msg
|
487
|
+
end
|
488
|
+
|
489
|
+
def test_mock_rotate_responses
|
490
|
+
FakeWeb.register_uri(:get, 'http://mock/multiple_test_example.txt',
|
491
|
+
[ {:body => fixture_path("test_example.txt"), :times => 2},
|
492
|
+
{:body => "thrice", :times => 3},
|
493
|
+
{:body => "ever_more"} ])
|
494
|
+
|
495
|
+
uri = URI.parse('http://mock/multiple_test_example.txt')
|
496
|
+
2.times { assert_equal 'test example content', Net::HTTP.get(uri) }
|
497
|
+
3.times { assert_equal 'thrice', Net::HTTP.get(uri) }
|
498
|
+
4.times { assert_equal 'ever_more', Net::HTTP.get(uri) }
|
499
|
+
end
|
500
|
+
|
501
|
+
def test_mock_request_using_response_with_transfer_encoding_header_has_valid_transfer_encoding_header
|
502
|
+
FakeWeb.register_uri(:get, 'http://www.google.com/', :response => fixture_path("google_response_with_transfer_encoding"))
|
503
|
+
response = Net::HTTP.start('www.google.com') { |query| query.get('/') }
|
504
|
+
assert_not_nil response['transfer-encoding']
|
505
|
+
assert response['transfer-encoding'] == 'chunked'
|
506
|
+
end
|
507
|
+
|
508
|
+
def test_mock_request_using_response_without_transfer_encoding_header_does_not_have_a_transfer_encoding_header
|
509
|
+
FakeWeb.register_uri(:get, 'http://www.google.com/', :response => fixture_path("google_response_without_transfer_encoding"))
|
510
|
+
response = nil
|
511
|
+
response = Net::HTTP.start('www.google.com') { |query| query.get('/') }
|
512
|
+
assert !response.key?('transfer-encoding')
|
513
|
+
end
|
514
|
+
|
515
|
+
def test_mock_request_using_response_from_curl_has_original_transfer_encoding_header
|
516
|
+
FakeWeb.register_uri(:get, 'http://www.google.com/', :response => fixture_path("google_response_from_curl"))
|
517
|
+
response = Net::HTTP.start('www.google.com') { |query| query.get('/') }
|
518
|
+
assert_not_nil response['transfer-encoding']
|
519
|
+
assert response['transfer-encoding'] == 'chunked'
|
520
|
+
end
|
521
|
+
|
522
|
+
def test_txt_file_should_have_three_lines
|
523
|
+
FakeWeb.register_uri(:get, 'http://www.google.com/', :body => fixture_path("test_txt_file"))
|
524
|
+
response = Net::HTTP.start('www.google.com') { |query| query.get('/') }
|
525
|
+
assert response.body.split(/\n/).size == 3, "response has #{response.body.split(/\n/).size} lines should have 3"
|
526
|
+
end
|
527
|
+
|
528
|
+
def test_requiring_fakeweb_instead_of_fake_web
|
529
|
+
require "fakeweb"
|
530
|
+
end
|
531
|
+
|
532
|
+
def test_registering_with_string_containing_null_byte
|
533
|
+
# Regression test for File.exists? raising an ArgumentError ("string
|
534
|
+
# contains null byte") since :response first tries to find by filename.
|
535
|
+
# The string should be treated as a response body, instead, and an
|
536
|
+
# EOFError is raised when the byte is encountered.
|
537
|
+
FakeWeb.register_uri(:get, "http://example.com", :response => "test\0test")
|
538
|
+
assert_raise EOFError do
|
539
|
+
Net::HTTP.get(URI.parse("http://example.com"))
|
540
|
+
end
|
541
|
+
|
542
|
+
FakeWeb.register_uri(:get, "http://example.com", :body => "test\0test")
|
543
|
+
body = Net::HTTP.get(URI.parse("http://example.com"))
|
544
|
+
assert_equal "test\0test", body
|
545
|
+
end
|
546
|
+
|
547
|
+
def test_registering_with_string_that_is_a_directory_name
|
548
|
+
# Similar to above, but for Errno::EISDIR being raised since File.exists?
|
549
|
+
# returns true for directories
|
550
|
+
FakeWeb.register_uri(:get, "http://example.com", :response => File.dirname(__FILE__))
|
551
|
+
assert_raise EOFError do
|
552
|
+
body = Net::HTTP.get(URI.parse("http://example.com"))
|
553
|
+
end
|
554
|
+
|
555
|
+
FakeWeb.register_uri(:get, "http://example.com", :body => File.dirname(__FILE__))
|
556
|
+
body = Net::HTTP.get(URI.parse("http://example.com"))
|
557
|
+
assert_equal File.dirname(__FILE__), body
|
558
|
+
end
|
559
|
+
|
560
|
+
def test_registering_with_a_body_pointing_to_a_pathname
|
561
|
+
path = Pathname.new(fixture_path("test_example.txt"))
|
562
|
+
FakeWeb.register_uri(:get, "http://example.com", :body => path)
|
563
|
+
response = Net::HTTP.start("example.com") { |http| http.get("/") }
|
564
|
+
assert_equal "test example content", response.body
|
565
|
+
end
|
566
|
+
|
567
|
+
def test_registering_with_a_response_pointing_to_a_pathname
|
568
|
+
path = Pathname.new(fixture_path("google_response_without_transfer_encoding"))
|
569
|
+
FakeWeb.register_uri(:get, "http://google.com", :response => path)
|
570
|
+
response = Net::HTTP.start("google.com") { |http| http.get("/") }
|
571
|
+
assert response.body.include?("<title>Google</title>")
|
572
|
+
end
|
573
|
+
|
574
|
+
def test_http_version_from_string_response
|
575
|
+
FakeWeb.register_uri(:get, "http://example.com", :body => "example")
|
576
|
+
response = Net::HTTP.start("example.com") { |http| http.get("/") }
|
577
|
+
assert_equal "1.0", response.http_version
|
578
|
+
end
|
579
|
+
|
580
|
+
def test_http_version_from_file_response
|
581
|
+
FakeWeb.register_uri(:get, "http://example.com", :body => fixture_path("test_example.txt"))
|
582
|
+
response = Net::HTTP.start("example.com") { |http| http.get("/") }
|
583
|
+
assert_equal "1.0", response.http_version
|
584
|
+
end
|
585
|
+
|
586
|
+
def test_version
|
587
|
+
assert_equal "1.3.0", FakeWeb::VERSION
|
588
|
+
end
|
589
|
+
|
590
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class TestFakeWebOpenURI < Test::Unit::TestCase
|
4
|
+
|
5
|
+
def test_content_for_registered_uri
|
6
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
7
|
+
assert_equal 'test example content', FakeWeb.response_for(:get, 'http://mock/test_example.txt').body
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_mock_open
|
11
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
12
|
+
assert_equal 'test example content', open('http://mock/test_example.txt').read
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_mock_open_with_string_as_registered_uri
|
16
|
+
FakeWeb.register_uri(:get, 'http://mock/test_string.txt', :body => 'foo')
|
17
|
+
assert_equal 'foo', open('http://mock/test_string.txt').string
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_real_open
|
21
|
+
FakeWeb.allow_net_connect = true
|
22
|
+
setup_expectations_for_real_apple_hot_news_request
|
23
|
+
resp = open('http://images.apple.com/main/rss/hotnews/hotnews.rss')
|
24
|
+
assert_equal "200", resp.status.first
|
25
|
+
body = resp.read
|
26
|
+
assert body.include?('Apple')
|
27
|
+
assert body.include?('News')
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_mock_open_that_raises_exception
|
31
|
+
FakeWeb.register_uri(:get, 'http://mock/raising_exception.txt', :exception => StandardError)
|
32
|
+
assert_raises(StandardError) do
|
33
|
+
open('http://mock/raising_exception.txt')
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_mock_open_that_raises_an_http_error
|
38
|
+
FakeWeb.register_uri(:get, 'http://mock/raising_exception.txt', :exception => OpenURI::HTTPError)
|
39
|
+
assert_raises(OpenURI::HTTPError) do
|
40
|
+
open('http://mock/raising_exception.txt')
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_mock_open_that_raises_an_http_error_with_a_specific_status
|
45
|
+
FakeWeb.register_uri(:get, 'http://mock/raising_exception.txt', :exception => OpenURI::HTTPError, :status => ['123', 'jodel'])
|
46
|
+
exception = assert_raises(OpenURI::HTTPError) do
|
47
|
+
open('http://mock/raising_exception.txt')
|
48
|
+
end
|
49
|
+
assert_equal '123', exception.io.code
|
50
|
+
assert_equal 'jodel', exception.io.message
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_mock_open_with_block
|
54
|
+
FakeWeb.register_uri(:get, 'http://mock/test_example.txt', :body => fixture_path("test_example.txt"))
|
55
|
+
body = open('http://mock/test_example.txt') { |f| f.readlines }
|
56
|
+
assert_equal 'test example content', body.first
|
57
|
+
end
|
58
|
+
end
|