passenger 5.0.4 → 5.0.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +10 -0
- data/CHANGELOG +21 -0
- data/build/agents.rb +2 -2
- data/build/apache2.rb +6 -5
- data/build/common_library.rb +22 -7
- data/build/cxx_tests.rb +0 -3
- data/build/misc.rb +1 -1
- data/dev/parse_file_descriptor_log +119 -0
- data/doc/CloudLicensingConfiguration.html +387 -0
- data/doc/Design and Architecture.html +2430 -0
- data/doc/Packaging.html +488 -0
- data/doc/Security of user switching support.html +1833 -0
- data/doc/ServerOptimizationGuide.html +659 -0
- data/doc/ServerOptimizationGuide.txt.md +8 -0
- data/doc/Users guide Apache.html +9116 -0
- data/doc/Users guide Apache.idmap.txt +6 -2
- data/doc/Users guide Apache.txt +26 -7
- data/doc/Users guide Nginx.html +9025 -0
- data/doc/Users guide Nginx.idmap.txt +7 -3
- data/doc/Users guide Nginx.txt +29 -6
- data/doc/Users guide Standalone.html +3983 -0
- data/doc/Users guide.html +1748 -0
- data/doc/users_guide_snippets/installation.txt +4 -4
- data/ext/apache2/Configuration.cpp +16 -5
- data/ext/apache2/Configuration.hpp +4 -2
- data/ext/apache2/Hooks.cpp +44 -19
- data/ext/boost/libs/thread/src/pthread/once.cpp +2 -0
- data/ext/boost/libs/thread/src/pthread/once_atomic.cpp +6 -0
- data/ext/common/AgentsStarter.h +3 -2
- data/ext/common/ApplicationPool2/DirectSpawner.h +14 -4
- data/ext/common/ApplicationPool2/DummySpawner.h +12 -7
- data/ext/common/ApplicationPool2/Implementation.cpp +1 -1
- data/ext/common/ApplicationPool2/Process.h +2 -1
- data/ext/common/ApplicationPool2/Session.h +6 -6
- data/ext/common/ApplicationPool2/SmartSpawner.h +19 -4
- data/ext/common/ApplicationPool2/Socket.h +59 -27
- data/ext/common/ApplicationPool2/Spawner.h +2 -2
- data/ext/common/BackgroundEventLoop.cpp +6 -1
- data/ext/common/Constants.h +1 -1
- data/ext/common/EventedClient.h +1 -1
- data/ext/common/EventedServer.h +2 -2
- data/ext/common/FileDescriptor.h +25 -6
- data/ext/common/Logging.cpp +107 -52
- data/ext/common/Logging.h +146 -19
- data/ext/common/MessageClient.h +2 -2
- data/ext/common/MessageServer.h +3 -2
- data/ext/common/RandomGenerator.h +8 -7
- data/ext/common/SafeLibev.h +5 -1
- data/ext/common/ServerKit/AcceptLoadBalancer.h +9 -4
- data/ext/common/ServerKit/FdSinkChannel.h +5 -2
- data/ext/common/ServerKit/FdSourceChannel.h +5 -2
- data/ext/common/ServerKit/FileBufferedChannel.h +2 -0
- data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +7 -2
- data/ext/common/ServerKit/HttpServer.h +6 -0
- data/ext/common/ServerKit/Server.h +40 -3
- data/ext/common/StaticString.h +20 -0
- data/ext/common/UnionStation/Connection.h +3 -1
- data/ext/common/UnionStation/Core.h +6 -4
- data/ext/common/Utils.cpp +4 -3
- data/ext/common/Utils/DateParsing.h +19 -5
- data/ext/common/Utils/FastStringStream.h +183 -0
- data/ext/common/Utils/IOUtils.cpp +47 -28
- data/ext/common/Utils/IOUtils.h +56 -12
- data/ext/common/Utils/MessagePassing.h +3 -3
- data/ext/common/Utils/ProcessMetricsCollector.h +2 -2
- data/ext/common/Utils/ScopeGuard.h +16 -5
- data/ext/common/Utils/SpeedMeter.h +2 -2
- data/ext/common/Utils/StrIntUtils.cpp +6 -6
- data/ext/common/Utils/StrIntUtils.h +2 -1
- data/ext/common/agents/Base.cpp +56 -4
- data/ext/common/agents/Base.h +2 -1
- data/ext/common/agents/HelperAgent/AdminServer.h +122 -11
- data/ext/common/agents/HelperAgent/Main.cpp +16 -5
- data/ext/common/agents/HelperAgent/OptionParser.h +7 -1
- data/ext/common/agents/HelperAgent/RequestHandler.h +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +10 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Request.h +8 -0
- data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +4 -3
- data/ext/common/agents/LoggingAgent/AdminServer.h +57 -11
- data/ext/common/agents/LoggingAgent/LoggingServer.h +3 -3
- data/ext/common/agents/LoggingAgent/Main.cpp +11 -3
- data/ext/common/agents/Watchdog/AdminServer.h +53 -11
- data/ext/common/agents/Watchdog/AgentWatcher.cpp +3 -3
- data/ext/common/agents/Watchdog/Main.cpp +13 -6
- data/ext/libeio/ecb.h +1 -1
- data/ext/libev/ev.c +13 -1
- data/ext/libev/ev.h +3 -0
- data/ext/nginx/Configuration.c +28 -6
- data/ext/nginx/Configuration.h +2 -1
- data/ext/nginx/ngx_http_passenger_module.c +5 -4
- data/ext/oxt/dynamic_thread_group.hpp +38 -5
- data/lib/phusion_passenger.rb +1 -1
- data/lib/phusion_passenger/common_library.rb +9 -5
- data/lib/phusion_passenger/config/reopen_logs_command.rb +2 -2
- data/lib/phusion_passenger/packaging.rb +23 -37
- data/passenger.gemspec +21 -21
- metadata +4 -453
- metadata.gz.asc +7 -7
- data/.gitignore +0 -68
- data/.travis.yml +0 -16
- data/Gemfile +0 -17
- data/Gemfile.lock +0 -39
- data/Vagrantfile +0 -54
- data/debian.template/README.Debian +0 -15
- data/debian.template/changelog +0 -316
- data/debian.template/compat +0 -1
- data/debian.template/control.erb +0 -91
- data/debian.template/copyright +0 -385
- data/debian.template/libapache2-mod-passenger.install +0 -3
- data/debian.template/libapache2-mod-passenger.postinst +0 -36
- data/debian.template/libapache2-mod-passenger.prerm +0 -15
- data/debian.template/locations.ini.erb +0 -14
- data/debian.template/passenger-dev.install.erb +0 -3
- data/debian.template/passenger-doc.install.erb +0 -2
- data/debian.template/passenger.conf +0 -6
- data/debian.template/passenger.docs +0 -4
- data/debian.template/passenger.install.erb +0 -14
- data/debian.template/passenger.load +0 -3
- data/debian.template/passenger.manpages +0 -3
- data/debian.template/patches/series +0 -0
- data/debian.template/rules.erb +0 -76
- data/debian.template/source/format +0 -1
- data/ext/common/EventedBufferedInput.h +0 -458
- data/packaging/rpm/LICENSE.txt +0 -19
- data/packaging/rpm/Makefile +0 -13
- data/packaging/rpm/README.md +0 -41
- data/packaging/rpm/Vagrantfile +0 -38
- data/packaging/rpm/Vagrantfile.centos +0 -30
- data/packaging/rpm/build +0 -170
- data/packaging/rpm/create_project +0 -41
- data/packaging/rpm/git_update +0 -88
- data/packaging/rpm/image/Dockerfile +0 -37
- data/packaging/rpm/image/Gemfile +0 -3
- data/packaging/rpm/image/Gemfile.lock +0 -12
- data/packaging/rpm/image/RPM-GPG-KEY-amazon-ga +0 -19
- data/packaging/rpm/image/amazon2014-i386.cfg +0 -96
- data/packaging/rpm/image/amazon2014-x86_64.cfg +0 -96
- data/packaging/rpm/image/site-defaults.cfg +0 -168
- data/packaging/rpm/internal/build_tasks.rb +0 -238
- data/packaging/rpm/internal/dummygpg +0 -11
- data/packaging/rpm/internal/exec_build +0 -42
- data/packaging/rpm/internal/get_distro_arch +0 -14
- data/packaging/rpm/internal/get_distro_id +0 -10
- data/packaging/rpm/internal/git_update +0 -27
- data/packaging/rpm/internal/inituidgid +0 -17
- data/packaging/rpm/internal/my_init +0 -344
- data/packaging/rpm/internal/python27 +0 -3
- data/packaging/rpm/internal/repo_update +0 -46
- data/packaging/rpm/internal/setuser +0 -26
- data/packaging/rpm/internal/tracking_helper +0 -40
- data/packaging/rpm/jenkins_release +0 -99
- data/packaging/rpm/lib/build_tasks_support.rb +0 -402
- data/packaging/rpm/lib/preprocessor.rb +0 -341
- data/packaging/rpm/nginx_spec/404.html +0 -119
- data/packaging/rpm/nginx_spec/50x.html +0 -119
- data/packaging/rpm/nginx_spec/index.html +0 -116
- data/packaging/rpm/nginx_spec/nginx-auto-cc-gcc.patch +0 -13
- data/packaging/rpm/nginx_spec/nginx-logo.png +0 -0
- data/packaging/rpm/nginx_spec/nginx-upgrade +0 -13
- data/packaging/rpm/nginx_spec/nginx-upgrade.8 +0 -151
- data/packaging/rpm/nginx_spec/nginx.conf +0 -131
- data/packaging/rpm/nginx_spec/nginx.init +0 -144
- data/packaging/rpm/nginx_spec/nginx.logrotate +0 -13
- data/packaging/rpm/nginx_spec/nginx.service +0 -15
- data/packaging/rpm/nginx_spec/nginx.spec.template +0 -560
- data/packaging/rpm/nginx_spec/nginx.sysconfig +0 -4
- data/packaging/rpm/nginx_spec/passenger.conf +0 -9
- data/packaging/rpm/nginx_spec/poweredby.png +0 -0
- data/packaging/rpm/passenger_spec/apache-passenger.conf.in +0 -26
- data/packaging/rpm/passenger_spec/config.json +0 -30
- data/packaging/rpm/passenger_spec/passenger.logrotate +0 -7
- data/packaging/rpm/passenger_spec/passenger.spec.template +0 -478
- data/packaging/rpm/passenger_spec/passenger_dynamic_thread_group.patch +0 -16
- data/packaging/rpm/passenger_spec/passenger_tests_default_config_example.patch +0 -44
- data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch +0 -21
- data/packaging/rpm/repo_update +0 -114
- data/packaging/rpm/setup-system +0 -61
- data/packaging/rpm/shell +0 -10
- data/test/.rspec +0 -4
- data/test/config.json.example +0 -42
- data/test/config.json.rpm-automation +0 -15
- data/test/config.json.travis +0 -15
- data/test/config.json.vagrant +0 -30
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +0 -124
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -30
- data/test/cxx/ApplicationPool2/PoolTest.cpp +0 -2062
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +0 -130
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +0 -243
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +0 -823
- data/test/cxx/BufferedIOTest.cpp +0 -364
- data/test/cxx/CachedFileStatTest.cpp +0 -402
- data/test/cxx/CxxTestMain.cpp +0 -181
- data/test/cxx/DataStructures/LStringTest.cpp +0 -275
- data/test/cxx/DataStructures/StringKeyTableTest.cpp +0 -199
- data/test/cxx/DateParsingTest.cpp +0 -75
- data/test/cxx/DechunkerTest.cpp +0 -250
- data/test/cxx/EventedBufferedInputTest.cpp +0 -758
- data/test/cxx/EventedClientTest.cpp +0 -523
- data/test/cxx/FileChangeCheckerTest.cpp +0 -331
- data/test/cxx/FileDescriptorTest.cpp +0 -69
- data/test/cxx/FilterSupportTest.cpp +0 -433
- data/test/cxx/IOUtilsTest.cpp +0 -861
- data/test/cxx/MemoryKit/MbufTest.cpp +0 -213
- data/test/cxx/MessageIOTest.cpp +0 -360
- data/test/cxx/MessagePassingTest.cpp +0 -81
- data/test/cxx/MessageReadersWritersTest.cpp +0 -576
- data/test/cxx/MessageServerTest.cpp +0 -393
- data/test/cxx/ProcessMetricsCollectorTest.cpp +0 -123
- data/test/cxx/RequestHandlerTest.cpp +0 -1463
- data/test/cxx/ResponseCacheTest.cpp +0 -322
- data/test/cxx/ServerKit/ChannelTest.cpp +0 -1467
- data/test/cxx/ServerKit/CookieUtilsTest.cpp +0 -274
- data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +0 -992
- data/test/cxx/ServerKit/HeaderTableTest.cpp +0 -177
- data/test/cxx/ServerKit/HttpServerTest.cpp +0 -1580
- data/test/cxx/ServerKit/ServerTest.cpp +0 -408
- data/test/cxx/StaticStringTest.cpp +0 -220
- data/test/cxx/StringMapTest.cpp +0 -131
- data/test/cxx/SystemTimeTest.cpp +0 -37
- data/test/cxx/TemplateTest.cpp +0 -118
- data/test/cxx/TestSupport.cpp +0 -207
- data/test/cxx/TestSupport.h +0 -333
- data/test/cxx/UnionStationTest.cpp +0 -741
- data/test/cxx/Utils/StrIntUtilsTest.cpp +0 -39
- data/test/cxx/UtilsTest.cpp +0 -672
- data/test/cxx/VariantMapTest.cpp +0 -191
- data/test/gdbinit.example +0 -34
- data/test/integration_tests/apache2_tests.rb +0 -585
- data/test/integration_tests/downloaded_binaries_tests.rb +0 -185
- data/test/integration_tests/native_packaging_spec.rb +0 -368
- data/test/integration_tests/nginx_tests.rb +0 -402
- data/test/integration_tests/shared/example_webapp_tests.rb +0 -289
- data/test/integration_tests/source_packaging_test.rb +0 -201
- data/test/integration_tests/spec_helper.rb +0 -22
- data/test/integration_tests/standalone_tests.rb +0 -392
- data/test/node/line_reader_spec.js +0 -338
- data/test/node/spec_helper.js +0 -65
- data/test/oxt/backtrace_test.cpp +0 -88
- data/test/oxt/counter.hpp +0 -55
- data/test/oxt/dynamic_thread_group_test.cpp +0 -131
- data/test/oxt/oxt_test_main.cpp +0 -27
- data/test/oxt/spin_lock_test.cpp +0 -59
- data/test/oxt/syscall_interruption_test.cpp +0 -39
- data/test/ruby/debug_logging_spec.rb +0 -145
- data/test/ruby/message_channel_spec.rb +0 -196
- data/test/ruby/rack/loader_spec.rb +0 -42
- data/test/ruby/rack/preloader_spec.rb +0 -48
- data/test/ruby/rails3.0/loader_spec.rb +0 -26
- data/test/ruby/rails3.0/preloader_spec.rb +0 -32
- data/test/ruby/rails3.1/loader_spec.rb +0 -26
- data/test/ruby/rails3.1/preloader_spec.rb +0 -32
- data/test/ruby/rails3.2/loader_spec.rb +0 -26
- data/test/ruby/rails3.2/preloader_spec.rb +0 -32
- data/test/ruby/rails4.0/loader_spec.rb +0 -28
- data/test/ruby/rails4.0/preloader_spec.rb +0 -34
- data/test/ruby/rails4.1/loader_spec.rb +0 -28
- data/test/ruby/rails4.1/preloader_spec.rb +0 -34
- data/test/ruby/request_handler_spec.rb +0 -747
- data/test/ruby/shared/loader_sharedspec.rb +0 -247
- data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +0 -357
- data/test/ruby/shared/ruby_loader_sharedspec.rb +0 -55
- data/test/ruby/spec_helper.rb +0 -114
- data/test/ruby/standalone/runtime_installer_spec.rb +0 -402
- data/test/ruby/union_station_spec.rb +0 -288
- data/test/ruby/utils/file_system_watcher_spec.rb +0 -229
- data/test/ruby/utils/hosts_file_parser.rb +0 -258
- data/test/ruby/utils/tee_input_spec.rb +0 -235
- data/test/ruby/utils/unseekable_socket_spec.rb +0 -66
- data/test/ruby/utils_spec.rb +0 -41
- data/test/stub/apache2/httpd.conf.erb +0 -122
- data/test/stub/apache2/mime.types +0 -748
- data/test/stub/garbage1.dat +0 -0
- data/test/stub/garbage2.dat +0 -0
- data/test/stub/garbage3.dat +0 -0
- data/test/stub/http_request.yml +0 -23
- data/test/stub/index.html +0 -1
- data/test/stub/nginx/koi-utf +0 -109
- data/test/stub/nginx/koi-win +0 -103
- data/test/stub/nginx/mime.types +0 -70
- data/test/stub/nginx/nginx.conf.erb +0 -70
- data/test/stub/nginx/win-utf +0 -126
- data/test/stub/node/app.js +0 -133
- data/test/stub/node/public/.gitignore +0 -0
- data/test/stub/node/tmp/.gitignore +0 -0
- data/test/stub/rack/config.ru +0 -95
- data/test/stub/rack/library.rb +0 -16
- data/test/stub/rack/public/.gitignore +0 -0
- data/test/stub/rack/start.rb +0 -52
- data/test/stub/rack/tmp/.gitignore +0 -0
- data/test/stub/rails3.0/.gitignore +0 -4
- data/test/stub/rails3.0/Gemfile +0 -22
- data/test/stub/rails3.0/Gemfile.lock +0 -80
- data/test/stub/rails3.0/Rakefile +0 -10
- data/test/stub/rails3.0/app/controllers/application_controller.rb +0 -4
- data/test/stub/rails3.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.0/config.ru +0 -4
- data/test/stub/rails3.0/config/application.rb +0 -48
- data/test/stub/rails3.0/config/boot.rb +0 -13
- data/test/stub/rails3.0/config/database.yml +0 -22
- data/test/stub/rails3.0/config/environment.rb +0 -5
- data/test/stub/rails3.0/config/environments/development.rb +0 -19
- data/test/stub/rails3.0/config/environments/production.rb +0 -48
- data/test/stub/rails3.0/config/environments/test.rb +0 -32
- data/test/stub/rails3.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.0/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.0/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.0/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.0/config/locales/en.yml +0 -5
- data/test/stub/rails3.0/config/routes.rb +0 -58
- data/test/stub/rails3.0/db/seeds.rb +0 -7
- data/test/stub/rails3.0/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.0/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.0/log/.gitignore +0 -0
- data/test/stub/rails3.0/public/404.html +0 -26
- data/test/stub/rails3.0/public/422.html +0 -26
- data/test/stub/rails3.0/public/500.html +0 -26
- data/test/stub/rails3.0/public/favicon.ico +0 -0
- data/test/stub/rails3.0/public/index.html +0 -279
- data/test/stub/rails3.0/public/robots.txt +0 -5
- data/test/stub/rails3.0/public/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.0/script/rails +0 -9
- data/test/stub/rails3.0/test/performance/browsing_test.rb +0 -9
- data/test/stub/rails3.0/test/test_helper.rb +0 -13
- data/test/stub/rails3.0/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.1/.gitignore +0 -15
- data/test/stub/rails3.1/Gemfile +0 -37
- data/test/stub/rails3.1/Gemfile.lock +0 -115
- data/test/stub/rails3.1/README +0 -261
- data/test/stub/rails3.1/Rakefile +0 -7
- data/test/stub/rails3.1/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.1/app/assets/stylesheets/application.css +0 -7
- data/test/stub/rails3.1/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.1/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.1/app/models/.gitkeep +0 -0
- data/test/stub/rails3.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.1/config.ru +0 -4
- data/test/stub/rails3.1/config/application.rb +0 -48
- data/test/stub/rails3.1/config/boot.rb +0 -6
- data/test/stub/rails3.1/config/database.yml +0 -25
- data/test/stub/rails3.1/config/environment.rb +0 -5
- data/test/stub/rails3.1/config/environments/development.rb +0 -30
- data/test/stub/rails3.1/config/environments/production.rb +0 -60
- data/test/stub/rails3.1/config/environments/test.rb +0 -39
- data/test/stub/rails3.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.1/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.1/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.1/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.1/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.1/config/locales/en.yml +0 -5
- data/test/stub/rails3.1/config/routes.rb +0 -58
- data/test/stub/rails3.1/db/seeds.rb +0 -7
- data/test/stub/rails3.1/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.1/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.1/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.1/log/.gitkeep +0 -0
- data/test/stub/rails3.1/public/404.html +0 -26
- data/test/stub/rails3.1/public/422.html +0 -26
- data/test/stub/rails3.1/public/500.html +0 -26
- data/test/stub/rails3.1/public/favicon.ico +0 -0
- data/test/stub/rails3.1/public/index.html +0 -241
- data/test/stub/rails3.1/public/robots.txt +0 -5
- data/test/stub/rails3.1/script/rails +0 -6
- data/test/stub/rails3.1/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.1/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.1/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.1/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.1/test/test_helper.rb +0 -13
- data/test/stub/rails3.1/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.2/.gitignore +0 -15
- data/test/stub/rails3.2/Gemfile +0 -39
- data/test/stub/rails3.2/Gemfile.lock +0 -113
- data/test/stub/rails3.2/Rakefile +0 -7
- data/test/stub/rails3.2/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.2/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails3.2/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.2/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.2/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.2/app/models/.gitkeep +0 -0
- data/test/stub/rails3.2/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.2/config.ru +0 -4
- data/test/stub/rails3.2/config/application.rb +0 -62
- data/test/stub/rails3.2/config/boot.rb +0 -6
- data/test/stub/rails3.2/config/database.yml +0 -25
- data/test/stub/rails3.2/config/environment.rb +0 -5
- data/test/stub/rails3.2/config/environments/development.rb +0 -37
- data/test/stub/rails3.2/config/environments/production.rb +0 -67
- data/test/stub/rails3.2/config/environments/test.rb +0 -37
- data/test/stub/rails3.2/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.2/config/initializers/inflections.rb +0 -15
- data/test/stub/rails3.2/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.2/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.2/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.2/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.2/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.2/config/locales/en.yml +0 -5
- data/test/stub/rails3.2/config/routes.rb +0 -58
- data/test/stub/rails3.2/db/seeds.rb +0 -7
- data/test/stub/rails3.2/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.2/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.2/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.2/log/.gitkeep +0 -0
- data/test/stub/rails3.2/public/404.html +0 -26
- data/test/stub/rails3.2/public/422.html +0 -26
- data/test/stub/rails3.2/public/500.html +0 -25
- data/test/stub/rails3.2/public/favicon.ico +0 -0
- data/test/stub/rails3.2/public/index.html +0 -241
- data/test/stub/rails3.2/public/robots.txt +0 -5
- data/test/stub/rails3.2/script/rails +0 -6
- data/test/stub/rails3.2/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.2/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.2/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.2/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.2/test/test_helper.rb +0 -13
- data/test/stub/rails3.2/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails4.0/.gitignore +0 -16
- data/test/stub/rails4.0/Gemfile +0 -45
- data/test/stub/rails4.0/Gemfile.lock +0 -126
- data/test/stub/rails4.0/README.rdoc +0 -28
- data/test/stub/rails4.0/Rakefile +0 -6
- data/test/stub/rails4.0/app/assets/images/.keep +0 -0
- data/test/stub/rails4.0/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.0/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.0/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.0/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.0/app/mailers/.keep +0 -0
- data/test/stub/rails4.0/app/models/.keep +0 -0
- data/test/stub/rails4.0/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.0/bin/bundle +0 -3
- data/test/stub/rails4.0/bin/rails +0 -4
- data/test/stub/rails4.0/bin/rake +0 -4
- data/test/stub/rails4.0/config.ru +0 -4
- data/test/stub/rails4.0/config/application.rb +0 -23
- data/test/stub/rails4.0/config/boot.rb +0 -4
- data/test/stub/rails4.0/config/database.yml +0 -25
- data/test/stub/rails4.0/config/environment.rb +0 -5
- data/test/stub/rails4.0/config/environments/development.rb +0 -29
- data/test/stub/rails4.0/config/environments/production.rb +0 -80
- data/test/stub/rails4.0/config/environments/test.rb +0 -36
- data/test/stub/rails4.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.0/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.0/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails4.0/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.0/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.0/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.0/config/locales/en.yml +0 -23
- data/test/stub/rails4.0/config/routes.rb +0 -57
- data/test/stub/rails4.0/db/seeds.rb +0 -7
- data/test/stub/rails4.0/lib/assets/.keep +0 -0
- data/test/stub/rails4.0/lib/tasks/.keep +0 -0
- data/test/stub/rails4.0/log/.keep +0 -0
- data/test/stub/rails4.0/public/404.html +0 -58
- data/test/stub/rails4.0/public/422.html +0 -58
- data/test/stub/rails4.0/public/500.html +0 -57
- data/test/stub/rails4.0/public/favicon.ico +0 -0
- data/test/stub/rails4.0/public/robots.txt +0 -5
- data/test/stub/rails4.0/test/controllers/.keep +0 -0
- data/test/stub/rails4.0/test/fixtures/.keep +0 -0
- data/test/stub/rails4.0/test/helpers/.keep +0 -0
- data/test/stub/rails4.0/test/integration/.keep +0 -0
- data/test/stub/rails4.0/test/mailers/.keep +0 -0
- data/test/stub/rails4.0/test/models/.keep +0 -0
- data/test/stub/rails4.0/test/test_helper.rb +0 -15
- data/test/stub/rails4.0/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.0/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/rails4.1/.gitignore +0 -16
- data/test/stub/rails4.1/Gemfile +0 -45
- data/test/stub/rails4.1/Gemfile.lock +0 -129
- data/test/stub/rails4.1/README.rdoc +0 -28
- data/test/stub/rails4.1/Rakefile +0 -6
- data/test/stub/rails4.1/app/assets/images/.keep +0 -0
- data/test/stub/rails4.1/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.1/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.1/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.1/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.1/app/mailers/.keep +0 -0
- data/test/stub/rails4.1/app/models/.keep +0 -0
- data/test/stub/rails4.1/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.1/bin/bundle +0 -3
- data/test/stub/rails4.1/bin/rails +0 -4
- data/test/stub/rails4.1/bin/rake +0 -4
- data/test/stub/rails4.1/config.ru +0 -4
- data/test/stub/rails4.1/config/application.rb +0 -23
- data/test/stub/rails4.1/config/boot.rb +0 -4
- data/test/stub/rails4.1/config/database.yml +0 -25
- data/test/stub/rails4.1/config/environment.rb +0 -5
- data/test/stub/rails4.1/config/environments/development.rb +0 -29
- data/test/stub/rails4.1/config/environments/production.rb +0 -80
- data/test/stub/rails4.1/config/environments/test.rb +0 -36
- data/test/stub/rails4.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.1/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.1/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.1/config/initializers/passenger.rb +0 -5
- data/test/stub/rails4.1/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.1/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.1/config/locales/en.yml +0 -23
- data/test/stub/rails4.1/config/routes.rb +0 -57
- data/test/stub/rails4.1/db/seeds.rb +0 -7
- data/test/stub/rails4.1/lib/assets/.keep +0 -0
- data/test/stub/rails4.1/lib/tasks/.keep +0 -0
- data/test/stub/rails4.1/log/.keep +0 -0
- data/test/stub/rails4.1/public/404.html +0 -58
- data/test/stub/rails4.1/public/422.html +0 -58
- data/test/stub/rails4.1/public/500.html +0 -57
- data/test/stub/rails4.1/public/favicon.ico +0 -0
- data/test/stub/rails4.1/public/robots.txt +0 -5
- data/test/stub/rails4.1/test/controllers/.keep +0 -0
- data/test/stub/rails4.1/test/fixtures/.keep +0 -0
- data/test/stub/rails4.1/test/helpers/.keep +0 -0
- data/test/stub/rails4.1/test/integration/.keep +0 -0
- data/test/stub/rails4.1/test/mailers/.keep +0 -0
- data/test/stub/rails4.1/test/models/.keep +0 -0
- data/test/stub/rails4.1/test/test_helper.rb +0 -15
- data/test/stub/rails4.1/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.1/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/start_error.pl +0 -24
- data/test/stub/upload_data.txt +0 -494
- data/test/stub/wsgi/passenger_wsgi.py +0 -212
- data/test/stub/wsgi/public/.gitignore +0 -0
- data/test/stub/wsgi/tmp/.gitignore +0 -0
- data/test/support/allocate_memory.c +0 -14
- data/test/support/apache2_controller.rb +0 -258
- data/test/support/multipart.rb +0 -62
- data/test/support/nginx_controller.rb +0 -97
- data/test/support/placebo-preloader.rb +0 -88
- data/test/support/test_helper.rb +0 -455
- data/test/support/valgrind.h +0 -2539
- data/test/tut/tut.h +0 -1310
- data/test/tut/tut_reporter.h +0 -256
- data/test/valgrind-osx.supp +0 -7
@@ -1,258 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
2
|
-
PhusionPassenger.require_passenger_lib 'utils/hosts_file_parser'
|
3
|
-
require 'stringio'
|
4
|
-
|
5
|
-
module PhusionPassenger
|
6
|
-
|
7
|
-
describe Utils::HostsFileParser do
|
8
|
-
before :each do
|
9
|
-
@io = StringIO.new
|
10
|
-
end
|
11
|
-
|
12
|
-
def create
|
13
|
-
@io.rewind
|
14
|
-
@parser = Utils::HostsFileParser.new(@io)
|
15
|
-
end
|
16
|
-
|
17
|
-
describe "parsing" do
|
18
|
-
it "ignores comments" do
|
19
|
-
@io.puts("# 127.0.0.1 foo.com")
|
20
|
-
create
|
21
|
-
@parser.ip_count.should == 0
|
22
|
-
@parser.host_count.should == 0
|
23
|
-
end
|
24
|
-
|
25
|
-
it "ignores comments that come after leading spaces" do
|
26
|
-
@io.puts(" # 127.0.0.1 foo.com")
|
27
|
-
create
|
28
|
-
@parser.ip_count.should == 0
|
29
|
-
@parser.host_count.should == 0
|
30
|
-
end
|
31
|
-
|
32
|
-
it "ignores comments that come after leading tabs" do
|
33
|
-
@io.puts("\t# 127.0.0.1 foo.com")
|
34
|
-
create
|
35
|
-
@parser.ip_count.should == 0
|
36
|
-
@parser.host_count.should == 0
|
37
|
-
end
|
38
|
-
|
39
|
-
it "ignores empty lines" do
|
40
|
-
@io.puts("127.0.0.1 foo.com")
|
41
|
-
@io.puts
|
42
|
-
@io.puts("127.0.0.1 bar.com")
|
43
|
-
@io.puts("127.0.0.2 baz.com")
|
44
|
-
create
|
45
|
-
@parser.ip_count.should == 2
|
46
|
-
@parser.host_count.should == 3
|
47
|
-
end
|
48
|
-
|
49
|
-
it "ignores leading and trailing spaces" do
|
50
|
-
@io.puts(" 127.0.0.1 foo.com")
|
51
|
-
@io.puts
|
52
|
-
@io.puts(" 127.0.0.1 bar.com ")
|
53
|
-
@io.puts("127.0.0.2 baz.com ")
|
54
|
-
create
|
55
|
-
@parser.ip_count.should == 2
|
56
|
-
@parser.host_count.should == 3
|
57
|
-
@parser.resolve("foo.com").should == "127.0.0.1"
|
58
|
-
@parser.resolve("bar.com").should == "127.0.0.1"
|
59
|
-
@parser.resolve("baz.com").should == "127.0.0.2"
|
60
|
-
end
|
61
|
-
|
62
|
-
it "ignores leading and trailing tabs" do
|
63
|
-
@io.puts("\t\t127.0.0.1 foo.com")
|
64
|
-
@io.puts
|
65
|
-
@io.puts("\t127.0.0.1 bar.com\t")
|
66
|
-
@io.puts("127.0.0.2 baz.com\t\t")
|
67
|
-
create
|
68
|
-
@parser.ip_count.should == 2
|
69
|
-
@parser.host_count.should == 3
|
70
|
-
@parser.resolve("foo.com").should == "127.0.0.1"
|
71
|
-
@parser.resolve("bar.com").should == "127.0.0.1"
|
72
|
-
@parser.resolve("baz.com").should == "127.0.0.2"
|
73
|
-
end
|
74
|
-
|
75
|
-
it "correctly handles spaces as seperators" do
|
76
|
-
@io.puts("127.0.0.1 foo.com bar.com baz.com")
|
77
|
-
create
|
78
|
-
@parser.ip_count.should == 1
|
79
|
-
@parser.host_count.should == 3
|
80
|
-
@parser.resolve("foo.com").should == "127.0.0.1"
|
81
|
-
@parser.resolve("bar.com").should == "127.0.0.1"
|
82
|
-
@parser.resolve("baz.com").should == "127.0.0.1"
|
83
|
-
end
|
84
|
-
|
85
|
-
it "correctly handles tabs as seperators" do
|
86
|
-
@io.puts("127.0.0.1\tfoo.com\t\tbar.com baz.com")
|
87
|
-
create
|
88
|
-
@parser.ip_count.should == 1
|
89
|
-
@parser.host_count.should == 3
|
90
|
-
@parser.resolve("foo.com").should == "127.0.0.1"
|
91
|
-
@parser.resolve("bar.com").should == "127.0.0.1"
|
92
|
-
@parser.resolve("baz.com").should == "127.0.0.1"
|
93
|
-
end
|
94
|
-
end
|
95
|
-
|
96
|
-
describe "#resolve" do
|
97
|
-
it "returns nil if the host name is not in the file" do
|
98
|
-
@io.puts("127.0.0.1 foo.com")
|
99
|
-
create
|
100
|
-
@parser.resolve("bar.com").should be_nil
|
101
|
-
end
|
102
|
-
|
103
|
-
it "returns the IP address associated with the host name if it exists" do
|
104
|
-
@io.puts("255.255.255.255 foo.com")
|
105
|
-
create
|
106
|
-
@parser.resolve("foo.com").should == "255.255.255.255"
|
107
|
-
end
|
108
|
-
|
109
|
-
it "is case-insensitive" do
|
110
|
-
@io.puts("255.255.255.255 fOO.com")
|
111
|
-
create
|
112
|
-
@parser.resolve("foo.COM").should == "255.255.255.255"
|
113
|
-
end
|
114
|
-
|
115
|
-
it "correctly handles lines that contain multiple host names" do
|
116
|
-
@io.puts("255.255.255.255 foo.com bar.com")
|
117
|
-
create
|
118
|
-
@parser.resolve("foo.com").should == "255.255.255.255"
|
119
|
-
@parser.resolve("bar.com").should == "255.255.255.255"
|
120
|
-
@parser.resolve("baz.com").should be_nil
|
121
|
-
end
|
122
|
-
|
123
|
-
it "always returns 127.0.0.1 for localhost" do
|
124
|
-
create
|
125
|
-
@parser.resolve("localhost").should == "127.0.0.1"
|
126
|
-
@parser.resolve("localHOST").should == "127.0.0.1"
|
127
|
-
end
|
128
|
-
end
|
129
|
-
|
130
|
-
describe "#resolves_to_localhost?" do
|
131
|
-
before :each do
|
132
|
-
@io.puts "127.0.0.1 kotori"
|
133
|
-
@io.puts "192.168.0.1 kanako"
|
134
|
-
@io.puts "::1 ageha"
|
135
|
-
@io.puts "::2 sawako"
|
136
|
-
@io.puts "0.0.0.0 mizusawa"
|
137
|
-
create
|
138
|
-
end
|
139
|
-
|
140
|
-
it "returns true if the host name resolves to 127.0.0.1" do
|
141
|
-
@parser.resolves_to_localhost?("kotori").should be_true
|
142
|
-
end
|
143
|
-
|
144
|
-
it "returns true if the host name resolves to ::1" do
|
145
|
-
@parser.resolves_to_localhost?("ageha").should be_true
|
146
|
-
end
|
147
|
-
|
148
|
-
it "returns true if the host name resolves to 0.0.0.0" do
|
149
|
-
@parser.resolves_to_localhost?("mizusawa").should be_true
|
150
|
-
end
|
151
|
-
|
152
|
-
it "returns false if the host name resolves to something else" do
|
153
|
-
@parser.resolves_to_localhost?("sawako").should be_false
|
154
|
-
@parser.resolves_to_localhost?("kanako").should be_false
|
155
|
-
end
|
156
|
-
|
157
|
-
it "returns false if the host name does not resolve" do
|
158
|
-
@parser.resolves_to_localhost?("foo.com").should be_false
|
159
|
-
end
|
160
|
-
end
|
161
|
-
|
162
|
-
describe "#add_group_data" do
|
163
|
-
before :each do
|
164
|
-
@standard_entries =
|
165
|
-
"127.0.0.1 kotori hazuki\n" +
|
166
|
-
" 192.168.0.1 kanako\n\n" +
|
167
|
-
"\t::1 ageha sawako\n" +
|
168
|
-
"0.0.0.0 mizusawa naru\n"
|
169
|
-
@target = StringIO.new
|
170
|
-
end
|
171
|
-
|
172
|
-
it "adds the group data if it doesn't exist" do
|
173
|
-
@io.puts @standard_entries
|
174
|
-
create
|
175
|
-
|
176
|
-
@parser.add_group_data("some marker",
|
177
|
-
"# a comment\n" +
|
178
|
-
"127.0.0.1 foo\n")
|
179
|
-
@parser.write(@target)
|
180
|
-
@target.string.should ==
|
181
|
-
@standard_entries +
|
182
|
-
"###### BEGIN some marker ######\n" +
|
183
|
-
"# a comment\n" +
|
184
|
-
"127.0.0.1 foo\n" +
|
185
|
-
"###### END some marker ######\n"
|
186
|
-
end
|
187
|
-
|
188
|
-
it "replaces the existing group data if it does exist" do
|
189
|
-
@io.puts "###### BEGIN some marker ######\n" +
|
190
|
-
"# another comment\n" +
|
191
|
-
"127.0.0.1 bar\n" +
|
192
|
-
"###### END some marker ######\n" +
|
193
|
-
"\n" +
|
194
|
-
@standard_entries +
|
195
|
-
"###### BEGIN some other marker ######\n" +
|
196
|
-
"# another comment\n" +
|
197
|
-
"127.0.0.1 bar\n" +
|
198
|
-
"###### END some other marker ######\n"
|
199
|
-
create
|
200
|
-
|
201
|
-
@parser.add_group_data("some marker", "127.0.0.1 foo\n")
|
202
|
-
@parser.write(@target)
|
203
|
-
@target.string.should ==
|
204
|
-
"###### BEGIN some marker ######\n" +
|
205
|
-
"127.0.0.1 foo\n" +
|
206
|
-
"###### END some marker ######\n" +
|
207
|
-
"\n" +
|
208
|
-
@standard_entries +
|
209
|
-
"###### BEGIN some other marker ######\n" +
|
210
|
-
"# another comment\n" +
|
211
|
-
"127.0.0.1 bar\n" +
|
212
|
-
"###### END some other marker ######\n"
|
213
|
-
end
|
214
|
-
|
215
|
-
it "correctly handles the lack of a terminating newline in the group data" do
|
216
|
-
@io.puts @standard_entries
|
217
|
-
create
|
218
|
-
|
219
|
-
@parser.add_group_data("some marker",
|
220
|
-
"# a comment\n" +
|
221
|
-
"127.0.0.1 foo")
|
222
|
-
@parser.write(@target)
|
223
|
-
@target.string.should ==
|
224
|
-
@standard_entries +
|
225
|
-
"###### BEGIN some marker ######\n" +
|
226
|
-
"# a comment\n" +
|
227
|
-
"127.0.0.1 foo\n" +
|
228
|
-
"###### END some marker ######\n"
|
229
|
-
end
|
230
|
-
|
231
|
-
it "ensures that the group data starts at a new line" do
|
232
|
-
@io.write "127.0.0.1 foo.com"
|
233
|
-
create
|
234
|
-
@parser.add_group_data("some marker", "127.0.0.1 bar.com")
|
235
|
-
@parser.write(@target)
|
236
|
-
@target.string.should ==
|
237
|
-
"127.0.0.1 foo.com\n" +
|
238
|
-
"###### BEGIN some marker ######\n" +
|
239
|
-
"127.0.0.1 bar.com\n" +
|
240
|
-
"###### END some marker ######\n"
|
241
|
-
end
|
242
|
-
end
|
243
|
-
|
244
|
-
describe "#write" do
|
245
|
-
it "preserves all comments and leading and trailing whitespaces" do
|
246
|
-
@io.puts "127.0.0.1 foo.com "
|
247
|
-
@io.puts "# a comment"
|
248
|
-
@io.puts "\t127.0.0.1 bar.com\t"
|
249
|
-
create
|
250
|
-
original_data = @io.string
|
251
|
-
target = StringIO.new
|
252
|
-
@parser.write(target)
|
253
|
-
target.string.should == original_data
|
254
|
-
end
|
255
|
-
end
|
256
|
-
end
|
257
|
-
|
258
|
-
end # module PhusionPassenger
|
@@ -1,235 +0,0 @@
|
|
1
|
-
# encoding: binary
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
3
|
-
PhusionPassenger.require_passenger_lib 'utils/tee_input'
|
4
|
-
require 'stringio'
|
5
|
-
|
6
|
-
module PhusionPassenger
|
7
|
-
|
8
|
-
shared_examples "TeeInput#gets" do
|
9
|
-
context "if Content-Length is given" do
|
10
|
-
before :each do
|
11
|
-
init_input("hello\nworld\nlast line!", "CONTENT_LENGTH" => 21)
|
12
|
-
end
|
13
|
-
|
14
|
-
it "reads a line, including newline character" do
|
15
|
-
@input.gets.should == "hello\n"
|
16
|
-
@input.gets.should == "world\n"
|
17
|
-
end
|
18
|
-
|
19
|
-
it "reads until EOF if no newline is encountered before EOF" do
|
20
|
-
@input.gets
|
21
|
-
@input.gets
|
22
|
-
@input.gets.should == "last line"
|
23
|
-
end
|
24
|
-
|
25
|
-
it "returns nil if EOF is reached" do
|
26
|
-
@input.gets
|
27
|
-
@input.gets
|
28
|
-
@input.gets
|
29
|
-
@input.gets.should be_nil
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
context "if Transfer-Encoding is chunked" do
|
34
|
-
before :each do
|
35
|
-
init_input("hello\nworld\nlast line", "TRANSFER_ENCODING" => "chunked")
|
36
|
-
end
|
37
|
-
|
38
|
-
it "reads a line, including newline character" do
|
39
|
-
@input.gets.should == "hello\n"
|
40
|
-
@input.gets.should == "world\n"
|
41
|
-
end
|
42
|
-
|
43
|
-
it "reads until EOF if no newline is encountered before EOF" do
|
44
|
-
@input.gets
|
45
|
-
@input.gets
|
46
|
-
@input.gets.should == "last line"
|
47
|
-
end
|
48
|
-
|
49
|
-
it "returns nil if EOF is reached" do
|
50
|
-
@input.gets
|
51
|
-
@input.gets
|
52
|
-
@input.gets
|
53
|
-
@input.gets.should be_nil
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
|
-
context "if neither Content-Length nor Transfer-Encoding chunked are given" do
|
58
|
-
before :each do
|
59
|
-
init_input("hello\nworld\nlast line")
|
60
|
-
end
|
61
|
-
|
62
|
-
it "returns nil" do
|
63
|
-
@input.gets.should be_nil
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
shared_examples "TeeInput#read" do
|
69
|
-
describe "with no arguments" do
|
70
|
-
context "if Content-Length is given" do
|
71
|
-
before :each do
|
72
|
-
init_input("hello!", "CONTENT_LENGTH" => 5)
|
73
|
-
end
|
74
|
-
|
75
|
-
it "slurps up to Content-Length bytes from the socket" do
|
76
|
-
@input.read.should == "hello"
|
77
|
-
end
|
78
|
-
|
79
|
-
it "returns the empty string if EOF is reached" do
|
80
|
-
@input.read
|
81
|
-
@input.read.should == ""
|
82
|
-
end
|
83
|
-
end
|
84
|
-
|
85
|
-
context "if Transfer-Encoding is chunked" do
|
86
|
-
before :each do
|
87
|
-
init_input("hello!", "TRANSFER_ENCODING" => "chunked")
|
88
|
-
end
|
89
|
-
|
90
|
-
it "slurps the entire socket" do
|
91
|
-
@input.read.should == "hello!"
|
92
|
-
end
|
93
|
-
|
94
|
-
it "returns the empty string if EOF is reached" do
|
95
|
-
@input.read
|
96
|
-
@input.read.should == ""
|
97
|
-
end
|
98
|
-
end
|
99
|
-
|
100
|
-
context "if neither Content-Length nor Transfer-Encoding chunked are given" do
|
101
|
-
before :each do
|
102
|
-
init_input("hello!")
|
103
|
-
end
|
104
|
-
|
105
|
-
it "returns the empty string" do
|
106
|
-
@input.read.should == ""
|
107
|
-
end
|
108
|
-
end
|
109
|
-
end
|
110
|
-
|
111
|
-
describe "with a length argument" do
|
112
|
-
it "raises ArgumentError if len < 0" do
|
113
|
-
init_input("")
|
114
|
-
lambda { @input.read(-1) }.should raise_error(ArgumentError)
|
115
|
-
end
|
116
|
-
|
117
|
-
it "returns the empty string if len == 0" do
|
118
|
-
init_input("hello", "TRANSFER_ENCODING" => "chunked")
|
119
|
-
@input.read(0).should == ""
|
120
|
-
end
|
121
|
-
|
122
|
-
context "if Content-Length is given" do
|
123
|
-
before :each do
|
124
|
-
init_input("hello!", "CONTENT_LENGTH" => 5)
|
125
|
-
end
|
126
|
-
|
127
|
-
it "reads exactly len bytes if available" do
|
128
|
-
@input.read(2).should == "he"
|
129
|
-
@input.read(2).should == "ll"
|
130
|
-
end
|
131
|
-
|
132
|
-
it "reads at most Content-Length bytes if Content-Length < len are available" do
|
133
|
-
@input.read(2).should == "he"
|
134
|
-
@input.read(4).should == "llo"
|
135
|
-
end
|
136
|
-
|
137
|
-
it "returns nil if Content-Length is reached" do
|
138
|
-
@input.read(5).should == "hello"
|
139
|
-
@input.read(1).should be_nil
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
143
|
-
context "if Transfer-Encoding is chunked" do
|
144
|
-
before :each do
|
145
|
-
init_input("hello", "TRANSFER_ENCODING" => "chunked")
|
146
|
-
end
|
147
|
-
|
148
|
-
it "reads exactly len bytes if available" do
|
149
|
-
@input.read(2).should == "he"
|
150
|
-
@input.read(2).should == "ll"
|
151
|
-
end
|
152
|
-
|
153
|
-
it "reads until EOF if less than len bytes are available" do
|
154
|
-
@input.read(2).should == "he"
|
155
|
-
@input.read(4).should == "llo"
|
156
|
-
end
|
157
|
-
|
158
|
-
it "returns nil if EOF is reached" do
|
159
|
-
@input.read(5).should == "hello"
|
160
|
-
@input.read(1).should be_nil
|
161
|
-
end
|
162
|
-
end
|
163
|
-
|
164
|
-
context "if neither Content-Length nor Transfer-Encoding chunked are given" do
|
165
|
-
it "returns nil" do
|
166
|
-
init_input("hello")
|
167
|
-
@input.read(2).should be_nil
|
168
|
-
end
|
169
|
-
end
|
170
|
-
end
|
171
|
-
end
|
172
|
-
|
173
|
-
shared_examples "TeeInput#size" do
|
174
|
-
context "if Content-Length is given" do
|
175
|
-
it "returns the value in Content-Length" do
|
176
|
-
init_input("hello world", "CONTENT_LENGTH" => 10)
|
177
|
-
@input.size.should == 10
|
178
|
-
end
|
179
|
-
end
|
180
|
-
|
181
|
-
context "if Transfer-Encoding is chunked" do
|
182
|
-
it "returns the number of bytes that can be read from the socket until EOF" do
|
183
|
-
init_input("hello world", "TRANSFER_ENCODING" => "chunked")
|
184
|
-
@input.size.should == 11
|
185
|
-
end
|
186
|
-
end
|
187
|
-
|
188
|
-
context "if neither Content-Length nor Transfer-Encoding chunked are given" do
|
189
|
-
it "returns 0" do
|
190
|
-
init_input("hello world")
|
191
|
-
@input.size.should == 0
|
192
|
-
end
|
193
|
-
end
|
194
|
-
end
|
195
|
-
|
196
|
-
describe Utils::TeeInput do
|
197
|
-
before :each do
|
198
|
-
@sock, @sock2 = UNIXSocket.pair
|
199
|
-
end
|
200
|
-
|
201
|
-
after :each do
|
202
|
-
[@sock, @sock2].each do |sock|
|
203
|
-
sock.close if sock && !sock.closed?
|
204
|
-
end
|
205
|
-
@input.close if @input
|
206
|
-
end
|
207
|
-
|
208
|
-
context "when unbuffered" do
|
209
|
-
def init_input(data, env = {})
|
210
|
-
@input = Utils::TeeInput.new(@sock2, env)
|
211
|
-
@sock.write(data)
|
212
|
-
@sock.close
|
213
|
-
end
|
214
|
-
|
215
|
-
describe("#gets") { include_examples "TeeInput#gets" }
|
216
|
-
describe("#read") { include_examples "TeeInput#read" }
|
217
|
-
describe("#size") { include_examples "TeeInput#size" }
|
218
|
-
end
|
219
|
-
|
220
|
-
context "when buffered" do
|
221
|
-
def init_input(data, env = {})
|
222
|
-
@input = Utils::TeeInput.new(@sock2, env)
|
223
|
-
@sock.write(data)
|
224
|
-
@sock.close
|
225
|
-
@input.read
|
226
|
-
@input.rewind
|
227
|
-
end
|
228
|
-
|
229
|
-
describe("#gets") { include_examples "TeeInput#gets" }
|
230
|
-
describe("#read") { include_examples "TeeInput#read" }
|
231
|
-
describe("#size") { include_examples "TeeInput#size" }
|
232
|
-
end
|
233
|
-
end
|
234
|
-
|
235
|
-
end # module PhusionPassenger
|