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,213 +0,0 @@
|
|
1
|
-
#include <TestSupport.h>
|
2
|
-
#include <boost/move/move.hpp>
|
3
|
-
#include <Constants.h>
|
4
|
-
#include <MemoryKit/mbuf.h>
|
5
|
-
|
6
|
-
using namespace Passenger;
|
7
|
-
using namespace Passenger::MemoryKit;
|
8
|
-
using namespace std;
|
9
|
-
|
10
|
-
namespace tut {
|
11
|
-
struct MemoryKit_MbufTest {
|
12
|
-
struct mbuf_pool pool;
|
13
|
-
|
14
|
-
MemoryKit_MbufTest() {
|
15
|
-
pool.mbuf_block_chunk_size = DEFAULT_MBUF_CHUNK_SIZE;
|
16
|
-
mbuf_pool_init(&pool);
|
17
|
-
}
|
18
|
-
|
19
|
-
~MemoryKit_MbufTest() {
|
20
|
-
mbuf_pool_deinit(&pool);
|
21
|
-
}
|
22
|
-
};
|
23
|
-
|
24
|
-
DEFINE_TEST_GROUP(MemoryKit_MbufTest);
|
25
|
-
|
26
|
-
TEST_METHOD(1) {
|
27
|
-
set_test_name("Initial pool state");
|
28
|
-
ensure_equals(pool.nfree_mbuf_blockq, 0u);
|
29
|
-
ensure_equals(pool.nactive_mbuf_blockq, 0u);
|
30
|
-
}
|
31
|
-
|
32
|
-
TEST_METHOD(2) {
|
33
|
-
set_test_name("mbuf_block_get() and mbuf_block_put()");
|
34
|
-
|
35
|
-
struct mbuf_block *block = mbuf_block_get(&pool);
|
36
|
-
ensure_equals("(1)", block->refcount, 1u);
|
37
|
-
ensure_equals("(2)", pool.nfree_mbuf_blockq, 0u);
|
38
|
-
ensure_equals("(3)", pool.nactive_mbuf_blockq, 1u);
|
39
|
-
|
40
|
-
struct mbuf_block *block2 = mbuf_block_get(&pool);
|
41
|
-
ensure_equals("(4)", block->refcount, 1u);
|
42
|
-
ensure_equals("(5)", block2->refcount, 1u);
|
43
|
-
ensure_equals("(6)", pool.nfree_mbuf_blockq, 0u);
|
44
|
-
ensure_equals("(7)", pool.nactive_mbuf_blockq, 2u);
|
45
|
-
|
46
|
-
block->refcount = 0;
|
47
|
-
mbuf_block_put(block);
|
48
|
-
ensure_equals("(8)", pool.nfree_mbuf_blockq, 1u);
|
49
|
-
ensure_equals("(9)", pool.nactive_mbuf_blockq, 1u);
|
50
|
-
|
51
|
-
block2->refcount = 0;
|
52
|
-
mbuf_block_put(block2);
|
53
|
-
ensure_equals("(10)", pool.nfree_mbuf_blockq, 2u);
|
54
|
-
ensure_equals("(11)", pool.nactive_mbuf_blockq, 0u);
|
55
|
-
}
|
56
|
-
|
57
|
-
TEST_METHOD(3) {
|
58
|
-
set_test_name("mbuf_block reference counting");
|
59
|
-
struct mbuf_block *block = mbuf_block_get(&pool);
|
60
|
-
|
61
|
-
mbuf_block_ref(block);
|
62
|
-
ensure_equals("(1)", block->refcount, 2u);
|
63
|
-
ensure_equals("(2)", pool.nfree_mbuf_blockq, 0u);
|
64
|
-
ensure_equals("(3)", pool.nactive_mbuf_blockq, 1u);
|
65
|
-
|
66
|
-
mbuf_block_unref(block);
|
67
|
-
ensure_equals("(4)", block->refcount, 1u);
|
68
|
-
ensure_equals("(5)", pool.nfree_mbuf_blockq, 0u);
|
69
|
-
ensure_equals("(6)", pool.nactive_mbuf_blockq, 1u);
|
70
|
-
|
71
|
-
mbuf_block_unref(block);
|
72
|
-
ensure_equals("(7)", pool.nfree_mbuf_blockq, 1u);
|
73
|
-
ensure_equals("(8)", pool.nactive_mbuf_blockq, 0u);
|
74
|
-
}
|
75
|
-
|
76
|
-
TEST_METHOD(4) {
|
77
|
-
set_test_name("mbuf_block freelist reuse");
|
78
|
-
struct mbuf_block *block = mbuf_block_get(&pool);
|
79
|
-
struct mbuf_block *block2 = mbuf_block_get(&pool);
|
80
|
-
mbuf_block_unref(block);
|
81
|
-
block = mbuf_block_get(&pool);
|
82
|
-
|
83
|
-
ensure_equals("(1)", pool.nfree_mbuf_blockq, 0u);
|
84
|
-
ensure_equals("(2)", pool.nactive_mbuf_blockq, 2u);
|
85
|
-
mbuf_block_unref(block);
|
86
|
-
mbuf_block_unref(block2);
|
87
|
-
}
|
88
|
-
|
89
|
-
TEST_METHOD(5) {
|
90
|
-
set_test_name("mbuf class");
|
91
|
-
mbuf buffer(mbuf_get(&pool));
|
92
|
-
ensure_equals("(1)", buffer.mbuf_block->refcount, 1u);
|
93
|
-
ensure_equals("(2)", pool.nfree_mbuf_blockq, 0u);
|
94
|
-
ensure_equals("(3)", pool.nactive_mbuf_blockq, 1u);
|
95
|
-
|
96
|
-
buffer = mbuf();
|
97
|
-
ensure_equals("(2)", pool.nfree_mbuf_blockq, 1u);
|
98
|
-
ensure_equals("(3)", pool.nactive_mbuf_blockq, 0u);
|
99
|
-
}
|
100
|
-
|
101
|
-
TEST_METHOD(6) {
|
102
|
-
set_test_name("mbuf class copy constructor");
|
103
|
-
mbuf buffer(mbuf_get(&pool));
|
104
|
-
|
105
|
-
{
|
106
|
-
mbuf buffer2(buffer);
|
107
|
-
ensure_equals("(1)", buffer.mbuf_block, buffer2.mbuf_block);
|
108
|
-
ensure_equals("(2)", buffer.mbuf_block->refcount, 2u);
|
109
|
-
ensure_equals("(3)", pool.nfree_mbuf_blockq, 0u);
|
110
|
-
ensure_equals("(4)", pool.nactive_mbuf_blockq, 1u);
|
111
|
-
}
|
112
|
-
|
113
|
-
ensure_equals("(5)", buffer.mbuf_block->refcount, 1u);
|
114
|
-
ensure_equals("(6)", pool.nfree_mbuf_blockq, 0u);
|
115
|
-
ensure_equals("(7)", pool.nactive_mbuf_blockq, 1u);
|
116
|
-
|
117
|
-
buffer = mbuf();
|
118
|
-
ensure_equals("(8)", pool.nfree_mbuf_blockq, 1u);
|
119
|
-
ensure_equals("(9)", pool.nactive_mbuf_blockq, 0u);
|
120
|
-
}
|
121
|
-
|
122
|
-
TEST_METHOD(7) {
|
123
|
-
set_test_name("mbuf class move constructor");
|
124
|
-
mbuf buffer(mbuf_get(&pool));
|
125
|
-
|
126
|
-
{
|
127
|
-
mbuf buffer2(boost::move(buffer));
|
128
|
-
ensure_equals<void *>("(1)", buffer.mbuf_block, NULL);
|
129
|
-
ensure_equals<void *>("(2)", buffer.start, NULL);
|
130
|
-
ensure_equals<void *>("(3)", buffer.end, NULL);
|
131
|
-
ensure_equals("(4)", buffer2.mbuf_block->refcount, 1u);
|
132
|
-
ensure_equals("(5)", pool.nfree_mbuf_blockq, 0u);
|
133
|
-
ensure_equals("(6)", pool.nactive_mbuf_blockq, 1u);
|
134
|
-
}
|
135
|
-
|
136
|
-
ensure_equals("(8)", pool.nfree_mbuf_blockq, 1u);
|
137
|
-
ensure_equals("(9)", pool.nactive_mbuf_blockq, 0u);
|
138
|
-
}
|
139
|
-
|
140
|
-
TEST_METHOD(8) {
|
141
|
-
set_test_name("mbuf class copy assignment");
|
142
|
-
mbuf buffer(mbuf_get(&pool));
|
143
|
-
|
144
|
-
{
|
145
|
-
mbuf buffer2;
|
146
|
-
buffer2 = buffer;
|
147
|
-
ensure_equals("(1)", buffer.mbuf_block, buffer2.mbuf_block);
|
148
|
-
ensure_equals("(2)", buffer.mbuf_block->refcount, 2u);
|
149
|
-
ensure_equals("(3)", pool.nfree_mbuf_blockq, 0u);
|
150
|
-
ensure_equals("(4)", pool.nactive_mbuf_blockq, 1u);
|
151
|
-
}
|
152
|
-
|
153
|
-
ensure_equals("(5)", buffer.mbuf_block->refcount, 1u);
|
154
|
-
ensure_equals("(6)", pool.nfree_mbuf_blockq, 0u);
|
155
|
-
ensure_equals("(7)", pool.nactive_mbuf_blockq, 1u);
|
156
|
-
|
157
|
-
buffer = mbuf();
|
158
|
-
ensure_equals("(8)", pool.nfree_mbuf_blockq, 1u);
|
159
|
-
ensure_equals("(9)", pool.nactive_mbuf_blockq, 0u);
|
160
|
-
}
|
161
|
-
|
162
|
-
TEST_METHOD(9) {
|
163
|
-
set_test_name("mbuf class move assignment");
|
164
|
-
mbuf buffer(mbuf_get(&pool));
|
165
|
-
|
166
|
-
{
|
167
|
-
mbuf buffer2;
|
168
|
-
buffer2 = boost::move(buffer);
|
169
|
-
ensure_equals<void *>("(1)", buffer.mbuf_block, NULL);
|
170
|
-
ensure_equals<void *>("(2)", buffer.start, NULL);
|
171
|
-
ensure_equals<void *>("(3)", buffer.end, NULL);
|
172
|
-
ensure_equals("(4)", buffer2.mbuf_block->refcount, 1u);
|
173
|
-
ensure_equals("(5)", pool.nfree_mbuf_blockq, 0u);
|
174
|
-
ensure_equals("(6)", pool.nactive_mbuf_blockq, 1u);
|
175
|
-
}
|
176
|
-
|
177
|
-
ensure_equals("(8)", pool.nfree_mbuf_blockq, 1u);
|
178
|
-
ensure_equals("(9)", pool.nactive_mbuf_blockq, 0u);
|
179
|
-
}
|
180
|
-
|
181
|
-
TEST_METHOD(10) {
|
182
|
-
set_test_name("mbuf class slicing");
|
183
|
-
mbuf buffer(mbuf_get(&pool));
|
184
|
-
|
185
|
-
{
|
186
|
-
mbuf buffer2(buffer, 1, 2);
|
187
|
-
ensure_equals("(1)", buffer.mbuf_block, buffer2.mbuf_block);
|
188
|
-
ensure_equals("(2)", buffer.mbuf_block->refcount, 2u);
|
189
|
-
ensure_equals("(3)", buffer2.start, buffer.start + 1);
|
190
|
-
ensure_equals("(4)", buffer2.end, buffer.start + 3);
|
191
|
-
ensure_equals("(5)", pool.nfree_mbuf_blockq, 0u);
|
192
|
-
ensure_equals("(6)", pool.nactive_mbuf_blockq, 1u);
|
193
|
-
}
|
194
|
-
|
195
|
-
ensure_equals("(7)", buffer.mbuf_block->refcount, 1u);
|
196
|
-
ensure_equals("(8)", pool.nfree_mbuf_blockq, 0u);
|
197
|
-
ensure_equals("(9)", pool.nactive_mbuf_blockq, 1u);
|
198
|
-
|
199
|
-
buffer = mbuf();
|
200
|
-
ensure_equals("(10)", pool.nfree_mbuf_blockq, 1u);
|
201
|
-
ensure_equals("(11)", pool.nactive_mbuf_blockq, 0u);
|
202
|
-
}
|
203
|
-
|
204
|
-
TEST_METHOD(11) {
|
205
|
-
set_test_name("mbuf class freelist reuse");
|
206
|
-
mbuf buffer(mbuf_get(&pool));
|
207
|
-
mbuf buffer2(mbuf_get(&pool));
|
208
|
-
buffer = mbuf();
|
209
|
-
buffer = mbuf_get(&pool);
|
210
|
-
ensure_equals("(1)", pool.nfree_mbuf_blockq, 0u);
|
211
|
-
ensure_equals("(2)", pool.nactive_mbuf_blockq, 2u);
|
212
|
-
}
|
213
|
-
}
|
data/test/cxx/MessageIOTest.cpp
DELETED
@@ -1,360 +0,0 @@
|
|
1
|
-
#include <TestSupport.h>
|
2
|
-
#include <Utils/IOUtils.h>
|
3
|
-
#include <Utils/MessageIO.h>
|
4
|
-
#include <Utils/SystemTime.h>
|
5
|
-
|
6
|
-
using namespace Passenger;
|
7
|
-
using namespace std;
|
8
|
-
using namespace boost;
|
9
|
-
|
10
|
-
namespace tut {
|
11
|
-
struct MessageIOTest {
|
12
|
-
Pipe pipes;
|
13
|
-
|
14
|
-
MessageIOTest() {
|
15
|
-
pipes = createPipe();
|
16
|
-
}
|
17
|
-
};
|
18
|
-
|
19
|
-
DEFINE_TEST_GROUP(MessageIOTest);
|
20
|
-
|
21
|
-
/***** Test readUint16() and writeUint16() *****/
|
22
|
-
|
23
|
-
TEST_METHOD(1) {
|
24
|
-
// They work.
|
25
|
-
writeUint16(pipes[1], 0x3F56);
|
26
|
-
writeUint16(pipes[1], 0x3F57);
|
27
|
-
writeUint16(pipes[1], 0x3F58);
|
28
|
-
|
29
|
-
unsigned char buf[2];
|
30
|
-
ensure_equals(readExact(pipes[0], buf, 2), 2u);
|
31
|
-
ensure_equals(buf[0], 0x3F);
|
32
|
-
ensure_equals(buf[1], 0x56);
|
33
|
-
|
34
|
-
ensure_equals(readUint16(pipes[0]), 0x3F57u);
|
35
|
-
|
36
|
-
uint16_t out;
|
37
|
-
ensure(readUint16(pipes[0], out));
|
38
|
-
ensure_equals(out, 0x3F58);
|
39
|
-
}
|
40
|
-
|
41
|
-
TEST_METHOD(2) {
|
42
|
-
// readUint16() throws EOFException on premature EOF.
|
43
|
-
writeExact(pipes[1], "x", 1);
|
44
|
-
pipes[1].close();
|
45
|
-
try {
|
46
|
-
readUint16(pipes[0]);
|
47
|
-
fail("EOFException expected");
|
48
|
-
} catch (const EOFException &) {
|
49
|
-
}
|
50
|
-
}
|
51
|
-
|
52
|
-
TEST_METHOD(3) {
|
53
|
-
// readUint16(uint32_t &) returns false EOFException on premature EOF.
|
54
|
-
writeExact(pipes[1], "x", 1);
|
55
|
-
pipes[1].close();
|
56
|
-
uint16_t out;
|
57
|
-
ensure(!readUint16(pipes[0], out));
|
58
|
-
}
|
59
|
-
|
60
|
-
TEST_METHOD(4) {
|
61
|
-
// Test timeout.
|
62
|
-
unsigned long long timeout = 30000;
|
63
|
-
unsigned long long startTime = SystemTime::getUsec();
|
64
|
-
try {
|
65
|
-
readUint16(pipes[0], &timeout);
|
66
|
-
fail("TimeoutException expected");
|
67
|
-
} catch (const TimeoutException &) {
|
68
|
-
unsigned long long elapsed = SystemTime::getUsec() - startTime;
|
69
|
-
ensure("About 30 ms elapsed (1)", elapsed >= 29000 && elapsed <= 95000);
|
70
|
-
ensure("Time is correctly deducted from 'timeout' (1)", timeout <= 2000);
|
71
|
-
}
|
72
|
-
|
73
|
-
writeUntilFull(pipes[1]);
|
74
|
-
|
75
|
-
timeout = 30000;
|
76
|
-
startTime = SystemTime::getUsec();
|
77
|
-
try {
|
78
|
-
writeUint16(pipes[1], 0x12, &timeout);
|
79
|
-
fail("TimeoutException expected");
|
80
|
-
} catch (const TimeoutException &) {
|
81
|
-
unsigned long long elapsed = SystemTime::getUsec() - startTime;
|
82
|
-
ensure("About 30 ms elapsed (3)", elapsed >= 29000 && elapsed <= 95000);
|
83
|
-
ensure("Time is correctly deducted from 'timeout' (4)", timeout <= 2000);
|
84
|
-
}
|
85
|
-
}
|
86
|
-
|
87
|
-
/***** Test readUint32() and writeUint32() *****/
|
88
|
-
|
89
|
-
TEST_METHOD(10) {
|
90
|
-
// They work.
|
91
|
-
writeUint32(pipes[1], 0x12343F56);
|
92
|
-
writeUint32(pipes[1], 0x12343F57);
|
93
|
-
writeUint32(pipes[1], 0x12343F58);
|
94
|
-
|
95
|
-
unsigned char buf[4];
|
96
|
-
ensure_equals(readExact(pipes[0], buf, 4), 4u);
|
97
|
-
ensure_equals(buf[0], 0x12);
|
98
|
-
ensure_equals(buf[1], 0x34);
|
99
|
-
ensure_equals(buf[2], 0x3F);
|
100
|
-
ensure_equals(buf[3], 0x56);
|
101
|
-
|
102
|
-
ensure_equals(readUint32(pipes[0]), 0x12343F57u);
|
103
|
-
|
104
|
-
uint32_t out;
|
105
|
-
ensure(readUint32(pipes[0], out));
|
106
|
-
ensure_equals(out, 0x12343F58u);
|
107
|
-
}
|
108
|
-
|
109
|
-
TEST_METHOD(11) {
|
110
|
-
// readUint32() throws EOFException on premature EOF.
|
111
|
-
writeExact(pipes[1], "xyz", 3);
|
112
|
-
pipes[1].close();
|
113
|
-
try {
|
114
|
-
readUint32(pipes[0]);
|
115
|
-
fail("EOFException expected");
|
116
|
-
} catch (const EOFException &) {
|
117
|
-
}
|
118
|
-
}
|
119
|
-
|
120
|
-
TEST_METHOD(12) {
|
121
|
-
// readUint16(uint32_t &) returns false EOFException on premature EOF.
|
122
|
-
writeExact(pipes[1], "xyz", 3);
|
123
|
-
pipes[1].close();
|
124
|
-
uint32_t out;
|
125
|
-
ensure(!readUint32(pipes[0], out));
|
126
|
-
}
|
127
|
-
|
128
|
-
TEST_METHOD(13) {
|
129
|
-
// Test timeout.
|
130
|
-
unsigned long long timeout = 30000;
|
131
|
-
unsigned long long startTime = SystemTime::getUsec();
|
132
|
-
try {
|
133
|
-
readUint32(pipes[0], &timeout);
|
134
|
-
fail("TimeoutException expected");
|
135
|
-
} catch (const TimeoutException &) {
|
136
|
-
unsigned long long elapsed = SystemTime::getUsec() - startTime;
|
137
|
-
ensure(elapsed >= 29000 && elapsed <= 90000);
|
138
|
-
ensure(timeout <= 2000);
|
139
|
-
}
|
140
|
-
|
141
|
-
writeUntilFull(pipes[1]);
|
142
|
-
|
143
|
-
timeout = 30000;
|
144
|
-
startTime = SystemTime::getUsec();
|
145
|
-
try {
|
146
|
-
writeUint32(pipes[1], 0x1234, &timeout);
|
147
|
-
fail("TimeoutException expected");
|
148
|
-
} catch (const TimeoutException &) {
|
149
|
-
unsigned long long elapsed = SystemTime::getUsec() - startTime;
|
150
|
-
ensure(elapsed >= 29000 && elapsed <= 90000);
|
151
|
-
ensure(timeout <= 2000);
|
152
|
-
}
|
153
|
-
}
|
154
|
-
|
155
|
-
/***** Test readArrayMessage() and writeArrayMessage() *****/
|
156
|
-
|
157
|
-
TEST_METHOD(20) {
|
158
|
-
// Test <= 10 arguments.
|
159
|
-
writeArrayMessage(pipes[1], "ab", "cd", "efg", NULL);
|
160
|
-
writeArrayMessage(pipes[1], "ab", "cd", "efh", NULL);
|
161
|
-
|
162
|
-
unsigned char buf[12];
|
163
|
-
readExact(pipes[0], buf, 12);
|
164
|
-
ensure_equals(buf[0], 0u);
|
165
|
-
ensure_equals(buf[1], 10u);
|
166
|
-
ensure_equals(buf[2], 'a');
|
167
|
-
ensure_equals(buf[3], 'b');
|
168
|
-
ensure_equals(buf[4], '\0');
|
169
|
-
ensure_equals(buf[5], 'c');
|
170
|
-
ensure_equals(buf[6], 'd');
|
171
|
-
ensure_equals(buf[7], '\0');
|
172
|
-
ensure_equals(buf[8], 'e');
|
173
|
-
ensure_equals(buf[9], 'f');
|
174
|
-
ensure_equals(buf[10], 'g');
|
175
|
-
ensure_equals(buf[11], '\0');
|
176
|
-
|
177
|
-
vector<string> args = readArrayMessage(pipes[0]);
|
178
|
-
ensure_equals(args.size(), 3u);
|
179
|
-
ensure_equals(args[0], "ab");
|
180
|
-
ensure_equals(args[1], "cd");
|
181
|
-
ensure_equals(args[2], "efh");
|
182
|
-
}
|
183
|
-
|
184
|
-
TEST_METHOD(21) {
|
185
|
-
// Test > 10 arguments.
|
186
|
-
writeArrayMessage(pipes[1], "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "a", "b", NULL);
|
187
|
-
writeArrayMessage(pipes[1], "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", NULL);
|
188
|
-
|
189
|
-
unsigned char buf[26];
|
190
|
-
readExact(pipes[0], buf, 26);
|
191
|
-
ensure_equals(buf[0], 0u);
|
192
|
-
ensure_equals(buf[1], 24u);
|
193
|
-
ensure_equals(buf[2], '1');
|
194
|
-
ensure_equals(buf[3], '\0');
|
195
|
-
ensure_equals(buf[4], '2');
|
196
|
-
ensure_equals(buf[5], '\0');
|
197
|
-
ensure_equals(buf[6], '3');
|
198
|
-
ensure_equals(buf[7], '\0');
|
199
|
-
ensure_equals(buf[8], '4');
|
200
|
-
ensure_equals(buf[9], '\0');
|
201
|
-
ensure_equals(buf[10], '5');
|
202
|
-
ensure_equals(buf[11], '\0');
|
203
|
-
ensure_equals(buf[12], '6');
|
204
|
-
ensure_equals(buf[13], '\0');
|
205
|
-
ensure_equals(buf[14], '7');
|
206
|
-
ensure_equals(buf[15], '\0');
|
207
|
-
ensure_equals(buf[16], '8');
|
208
|
-
ensure_equals(buf[17], '\0');
|
209
|
-
ensure_equals(buf[18], '9');
|
210
|
-
ensure_equals(buf[19], '\0');
|
211
|
-
ensure_equals(buf[20], '0');
|
212
|
-
ensure_equals(buf[21], '\0');
|
213
|
-
ensure_equals(buf[22], 'a');
|
214
|
-
ensure_equals(buf[23], '\0');
|
215
|
-
ensure_equals(buf[24], 'b');
|
216
|
-
ensure_equals(buf[25], '\0');
|
217
|
-
|
218
|
-
vector<string> args = readArrayMessage(pipes[0]);
|
219
|
-
ensure_equals(args.size(), 12u);
|
220
|
-
ensure_equals(args[0], "c");
|
221
|
-
ensure_equals(args[1], "d");
|
222
|
-
ensure_equals(args[2], "e");
|
223
|
-
ensure_equals(args[3], "f");
|
224
|
-
ensure_equals(args[4], "g");
|
225
|
-
ensure_equals(args[5], "h");
|
226
|
-
ensure_equals(args[6], "i");
|
227
|
-
ensure_equals(args[7], "j");
|
228
|
-
ensure_equals(args[8], "k");
|
229
|
-
ensure_equals(args[9], "l");
|
230
|
-
ensure_equals(args[10], "m");
|
231
|
-
ensure_equals(args[11], "n");
|
232
|
-
}
|
233
|
-
|
234
|
-
TEST_METHOD(22) {
|
235
|
-
// readArrayMessage() throws EOFException on premature EOF.
|
236
|
-
writeExact(pipes[1], "\x00");
|
237
|
-
pipes[1].close();
|
238
|
-
try {
|
239
|
-
readArrayMessage(pipes[0]);
|
240
|
-
fail("EOFException expected (1)");
|
241
|
-
} catch (const EOFException &) {
|
242
|
-
}
|
243
|
-
|
244
|
-
pipes = createPipe();
|
245
|
-
writeExact(pipes[1], "\x00\x04a\x00b");
|
246
|
-
pipes[1].close();
|
247
|
-
try {
|
248
|
-
readArrayMessage(pipes[0]);
|
249
|
-
fail("EOFException expected (2)");
|
250
|
-
} catch (const EOFException &) {
|
251
|
-
}
|
252
|
-
}
|
253
|
-
|
254
|
-
TEST_METHOD(23) {
|
255
|
-
// Test timeout.
|
256
|
-
unsigned long long timeout = 30000;
|
257
|
-
unsigned long long startTime = SystemTime::getUsec();
|
258
|
-
try {
|
259
|
-
readArrayMessage(pipes[0], &timeout);
|
260
|
-
fail("TimeoutException expected (1)");
|
261
|
-
} catch (const TimeoutException &) {
|
262
|
-
unsigned long long elapsed = SystemTime::getUsec() - startTime;
|
263
|
-
ensure(elapsed >= 29000 && elapsed <= 90000);
|
264
|
-
ensure(timeout <= 2000);
|
265
|
-
}
|
266
|
-
|
267
|
-
writeUntilFull(pipes[1]);
|
268
|
-
|
269
|
-
timeout = 30000;
|
270
|
-
startTime = SystemTime::getUsec();
|
271
|
-
try {
|
272
|
-
writeArrayMessage(pipes[1], &timeout, "hi", "ho", NULL);
|
273
|
-
fail("TimeoutException expected (2)");
|
274
|
-
} catch (const TimeoutException &) {
|
275
|
-
unsigned long long elapsed = SystemTime::getUsec() - startTime;
|
276
|
-
ensure(elapsed >= 29000 && elapsed <= 90000);
|
277
|
-
ensure(timeout <= 2000);
|
278
|
-
}
|
279
|
-
}
|
280
|
-
|
281
|
-
/***** Test readScalarMessage() and writeScalarMessage() *****/
|
282
|
-
|
283
|
-
TEST_METHOD(30) {
|
284
|
-
// They work.
|
285
|
-
writeScalarMessage(pipes[1], "hello");
|
286
|
-
writeScalarMessage(pipes[1], "world");
|
287
|
-
|
288
|
-
unsigned char buf[4 + 5];
|
289
|
-
readExact(pipes[0], buf, 4 + 5);
|
290
|
-
ensure_equals(buf[0], 0u);
|
291
|
-
ensure_equals(buf[1], 0u);
|
292
|
-
ensure_equals(buf[2], 0u);
|
293
|
-
ensure_equals(buf[3], 5u);
|
294
|
-
ensure_equals(buf[4], 'h');
|
295
|
-
ensure_equals(buf[5], 'e');
|
296
|
-
ensure_equals(buf[6], 'l');
|
297
|
-
ensure_equals(buf[7], 'l');
|
298
|
-
ensure_equals(buf[8], 'o');
|
299
|
-
|
300
|
-
ensure_equals(readScalarMessage(pipes[0]), "world");
|
301
|
-
}
|
302
|
-
|
303
|
-
TEST_METHOD(31) {
|
304
|
-
// readScalarMessage() throws EOFException on premature EOF.
|
305
|
-
writeExact(pipes[1], StaticString("\x00", 1));
|
306
|
-
pipes[1].close();
|
307
|
-
try {
|
308
|
-
readScalarMessage(pipes[0]);
|
309
|
-
fail("EOFException expected (1)");
|
310
|
-
} catch (const EOFException &) {
|
311
|
-
}
|
312
|
-
|
313
|
-
pipes = createPipe();
|
314
|
-
writeExact(pipes[1], StaticString("\x00\x00\x00\x04" "abc", 4 + 3));
|
315
|
-
pipes[1].close();
|
316
|
-
try {
|
317
|
-
readScalarMessage(pipes[0]);
|
318
|
-
fail("EOFException expected (2)");
|
319
|
-
} catch (const EOFException &) {
|
320
|
-
}
|
321
|
-
}
|
322
|
-
|
323
|
-
TEST_METHOD(32) {
|
324
|
-
// readScalarMessage() throws SecurityException if the
|
325
|
-
// body larger than the limit
|
326
|
-
writeExact(pipes[1], StaticString("\x00\x00\x00\x05", 4));
|
327
|
-
try {
|
328
|
-
readScalarMessage(pipes[0], 4);
|
329
|
-
fail("SecurityException expected (1)");
|
330
|
-
} catch (const SecurityException &) {
|
331
|
-
}
|
332
|
-
}
|
333
|
-
|
334
|
-
TEST_METHOD(33) {
|
335
|
-
// Test timeout.
|
336
|
-
unsigned long long timeout = 30000;
|
337
|
-
unsigned long long startTime = SystemTime::getUsec();
|
338
|
-
try {
|
339
|
-
readScalarMessage(pipes[0], 0, &timeout);
|
340
|
-
fail("TimeoutException expected (1)");
|
341
|
-
} catch (const TimeoutException &) {
|
342
|
-
unsigned long long elapsed = SystemTime::getUsec() - startTime;
|
343
|
-
ensure(elapsed >= 29000 && elapsed <= 90000);
|
344
|
-
ensure(timeout <= 2000);
|
345
|
-
}
|
346
|
-
|
347
|
-
writeUntilFull(pipes[1]);
|
348
|
-
|
349
|
-
timeout = 30000;
|
350
|
-
startTime = SystemTime::getUsec();
|
351
|
-
try {
|
352
|
-
writeScalarMessage(pipes[1], "hello", &timeout);
|
353
|
-
fail("TimeoutException expected (2)");
|
354
|
-
} catch (const TimeoutException &) {
|
355
|
-
unsigned long long elapsed = SystemTime::getUsec() - startTime;
|
356
|
-
ensure(elapsed >= 29000 && elapsed <= 90000);
|
357
|
-
ensure(timeout <= 2000);
|
358
|
-
}
|
359
|
-
}
|
360
|
-
}
|