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,393 +0,0 @@
|
|
1
|
-
#include "TestSupport.h"
|
2
|
-
|
3
|
-
#include <boost/thread.hpp>
|
4
|
-
#include <boost/bind.hpp>
|
5
|
-
|
6
|
-
#include <MessageServer.h>
|
7
|
-
#include <MessageClient.h>
|
8
|
-
#include <Utils.h>
|
9
|
-
#include <string>
|
10
|
-
#include <cstring>
|
11
|
-
#include <unistd.h>
|
12
|
-
#include <errno.h>
|
13
|
-
|
14
|
-
using namespace Passenger;
|
15
|
-
using namespace boost;
|
16
|
-
using namespace std;
|
17
|
-
|
18
|
-
namespace tut {
|
19
|
-
struct MessageServerTest {
|
20
|
-
InstanceDirectoryPtr instanceDir;
|
21
|
-
string socketFilename;
|
22
|
-
string socketAddress;
|
23
|
-
AccountsDatabasePtr accountsDatabase;
|
24
|
-
AccountPtr clientAccount;
|
25
|
-
boost::shared_ptr<MessageServer> server;
|
26
|
-
boost::shared_ptr<oxt::thread> serverThread;
|
27
|
-
|
28
|
-
MessageServerTest() {
|
29
|
-
createInstanceDir(instanceDir);
|
30
|
-
socketFilename = instanceDir->getPath() + "/socket";
|
31
|
-
socketAddress = "unix:" + socketFilename;
|
32
|
-
accountsDatabase = ptr(new AccountsDatabase());
|
33
|
-
clientAccount = accountsDatabase->add("test", "12345", false);
|
34
|
-
|
35
|
-
server = ptr(new MessageServer(socketFilename, accountsDatabase));
|
36
|
-
serverThread = ptr(new oxt::thread(
|
37
|
-
boost::bind(&MessageServer::mainLoop, server.get())
|
38
|
-
));
|
39
|
-
}
|
40
|
-
|
41
|
-
~MessageServerTest() {
|
42
|
-
if (serverThread != NULL) {
|
43
|
-
serverThread->interrupt_and_join();
|
44
|
-
}
|
45
|
-
Passenger::setLogLevel(DEFAULT_LOG_LEVEL);
|
46
|
-
}
|
47
|
-
|
48
|
-
class SlowClient: public MessageClient {
|
49
|
-
private:
|
50
|
-
unsigned int timeToSendUsername;
|
51
|
-
unsigned int timeToSendPassword;
|
52
|
-
|
53
|
-
protected:
|
54
|
-
virtual void sendUsername(int fd, const StaticString &username, unsigned long long *timeout) {
|
55
|
-
if (timeToSendUsername > 0) {
|
56
|
-
usleep(timeToSendUsername * 1000);
|
57
|
-
}
|
58
|
-
writeScalarMessage(fd, username);
|
59
|
-
}
|
60
|
-
|
61
|
-
virtual void sendPassword(int fd, const StaticString &userSuppliedPassword, unsigned long long *timeout) {
|
62
|
-
if (timeToSendPassword > 0) {
|
63
|
-
usleep(timeToSendPassword * 1000);
|
64
|
-
}
|
65
|
-
writeScalarMessage(fd, userSuppliedPassword);
|
66
|
-
}
|
67
|
-
|
68
|
-
public:
|
69
|
-
SlowClient(unsigned int timeToSendUsername,
|
70
|
-
unsigned int timeToSendPassword)
|
71
|
-
: MessageClient()
|
72
|
-
{
|
73
|
-
this->timeToSendUsername = timeToSendUsername;
|
74
|
-
this->timeToSendPassword = timeToSendPassword;
|
75
|
-
}
|
76
|
-
};
|
77
|
-
|
78
|
-
class CustomClient: public MessageClient {
|
79
|
-
public:
|
80
|
-
CustomClient *sendText(const string &text) {
|
81
|
-
write(text.c_str(), NULL);
|
82
|
-
return this;
|
83
|
-
}
|
84
|
-
};
|
85
|
-
|
86
|
-
class LoggingHandler: public MessageServer::Handler {
|
87
|
-
public:
|
88
|
-
struct SpecificContext: public MessageServer::ClientContext {
|
89
|
-
int id;
|
90
|
-
|
91
|
-
SpecificContext(int i) {
|
92
|
-
id = i;
|
93
|
-
}
|
94
|
-
};
|
95
|
-
|
96
|
-
typedef boost::shared_ptr<SpecificContext> SpecificContextPtr;
|
97
|
-
|
98
|
-
boost::mutex mutex;
|
99
|
-
volatile int clientsAccepted;
|
100
|
-
volatile int clientsDisconnected;
|
101
|
-
string receivedData;
|
102
|
-
volatile int id;
|
103
|
-
volatile int returnValue;
|
104
|
-
SpecificContextPtr latestContext;
|
105
|
-
|
106
|
-
LoggingHandler() {
|
107
|
-
clientsAccepted = 0;
|
108
|
-
clientsDisconnected = 0;
|
109
|
-
returnValue = true;
|
110
|
-
}
|
111
|
-
|
112
|
-
virtual MessageServer::ClientContextPtr newClient(MessageServer::CommonClientContext &context) {
|
113
|
-
boost::lock_guard<boost::mutex> l(mutex);
|
114
|
-
clientsAccepted++;
|
115
|
-
return ptr(new SpecificContext(id));
|
116
|
-
}
|
117
|
-
|
118
|
-
virtual void clientDisconnected(MessageServer::CommonClientContext &context,
|
119
|
-
MessageServer::ClientContextPtr &handlerSpecificContext)
|
120
|
-
{
|
121
|
-
boost::lock_guard<boost::mutex> l(mutex);
|
122
|
-
clientsDisconnected++;
|
123
|
-
}
|
124
|
-
|
125
|
-
virtual bool processMessage(MessageServer::CommonClientContext &commonContext,
|
126
|
-
MessageServer::ClientContextPtr &handlerSpecificContext,
|
127
|
-
const vector<string> &args)
|
128
|
-
{
|
129
|
-
boost::lock_guard<boost::mutex> l(mutex);
|
130
|
-
latestContext = static_pointer_cast<SpecificContext>(handlerSpecificContext);
|
131
|
-
receivedData.append(args[0]);
|
132
|
-
return returnValue;
|
133
|
-
}
|
134
|
-
};
|
135
|
-
|
136
|
-
typedef boost::shared_ptr<LoggingHandler> LoggingHandlerPtr;
|
137
|
-
|
138
|
-
class ProcessMessageReturnsFalseHandler: public MessageServer::Handler {
|
139
|
-
public:
|
140
|
-
virtual bool processMessage(MessageServer::CommonClientContext &commonContext,
|
141
|
-
MessageServer::ClientContextPtr &handlerSpecificContext,
|
142
|
-
const vector<string> &args)
|
143
|
-
{
|
144
|
-
return false;
|
145
|
-
}
|
146
|
-
};
|
147
|
-
};
|
148
|
-
|
149
|
-
DEFINE_TEST_GROUP(MessageServerTest);
|
150
|
-
|
151
|
-
TEST_METHOD(1) {
|
152
|
-
// It rejects the connection if the an invalid username or password was sent.
|
153
|
-
accountsDatabase->add("hashed_user", Account::createHash("67890"), true);
|
154
|
-
|
155
|
-
try {
|
156
|
-
MessageClient().connect(socketAddress, "testt", "12345");
|
157
|
-
fail("SecurityException expected when invalid username is given");
|
158
|
-
} catch (const SecurityException &) {
|
159
|
-
// Pass.
|
160
|
-
}
|
161
|
-
try {
|
162
|
-
MessageClient().connect(socketAddress, "test", "123456");
|
163
|
-
fail("SecurityException expected when invalid password is given for an account with plain text password");
|
164
|
-
} catch (const SecurityException &) {
|
165
|
-
// Pass.
|
166
|
-
}
|
167
|
-
try {
|
168
|
-
MessageClient().connect(socketAddress, "test", "678900");
|
169
|
-
fail("SecurityException expected when invalid password is given for an account with hashed password");
|
170
|
-
} catch (const SecurityException &) {
|
171
|
-
// Pass.
|
172
|
-
}
|
173
|
-
}
|
174
|
-
|
175
|
-
TEST_METHOD(2) {
|
176
|
-
// It supports hashed passwords.
|
177
|
-
accountsDatabase->add("hashed_user", Account::createHash("67890"), true);
|
178
|
-
MessageClient().connect(socketAddress, "hashed_user", "67890"); // Should not throw exception.
|
179
|
-
}
|
180
|
-
|
181
|
-
TEST_METHOD(3) {
|
182
|
-
// It disconnects the client if the client does not supply a username and
|
183
|
-
// password within a time limit.
|
184
|
-
Passenger::setLogLevel(LVL_ERROR);
|
185
|
-
server->setLoginTimeout(30000);
|
186
|
-
|
187
|
-
/* These can throw either an IOException or SystemException:
|
188
|
-
* - An IOException is raised when connect() encounters EOF.
|
189
|
-
* - But when connect() fails during the middle of a read()
|
190
|
-
* or write() (e.g. because the server disconnects before
|
191
|
-
* connect() is done writing), then SystemException is raised.
|
192
|
-
*/
|
193
|
-
|
194
|
-
try {
|
195
|
-
// This client takes too much time on sending the username.
|
196
|
-
SlowClient(50, 0).connect(socketAddress, "test", "12345");
|
197
|
-
fail("IOException or SystemException expected (1).");
|
198
|
-
} catch (const IOException &e) {
|
199
|
-
// Pass.
|
200
|
-
} catch (const SystemException &e) {
|
201
|
-
// Pass.
|
202
|
-
}
|
203
|
-
|
204
|
-
try {
|
205
|
-
// This client takes too much time on sending the password.
|
206
|
-
SlowClient(0, 50).connect(socketAddress, "test", "12345");
|
207
|
-
fail("IOException or SystemException expected (2).");
|
208
|
-
} catch (const IOException &e) {
|
209
|
-
// Pass.
|
210
|
-
} catch (const SystemException &e) {
|
211
|
-
// Pass.
|
212
|
-
}
|
213
|
-
|
214
|
-
try {
|
215
|
-
// This client is fast enough at sending the username and
|
216
|
-
// password individually, but the combined time is too long.
|
217
|
-
SlowClient(25, 25).connect(socketAddress, "test", "12345");
|
218
|
-
fail("IOException or SystemException expected (3).");
|
219
|
-
} catch (const IOException &e) {
|
220
|
-
// Pass.
|
221
|
-
} catch (const SystemException &e) {
|
222
|
-
// Pass.
|
223
|
-
}
|
224
|
-
}
|
225
|
-
|
226
|
-
TEST_METHOD(4) {
|
227
|
-
// It disconnects the client if it provides a username that's too large.
|
228
|
-
char username[1024];
|
229
|
-
memset(username, 'x', sizeof(username));
|
230
|
-
username[sizeof(username) - 1] = '\0';
|
231
|
-
try {
|
232
|
-
MessageClient().connect(socketAddress, username, "1234");
|
233
|
-
fail("SecurityException expected");
|
234
|
-
} catch (const SecurityException &e) {
|
235
|
-
// Pass.
|
236
|
-
} catch (const SystemException &e) {
|
237
|
-
if (e.code() != EPIPE) {
|
238
|
-
fail(("Unexpected SystemException: " + string(e.what())).c_str());
|
239
|
-
}
|
240
|
-
}
|
241
|
-
}
|
242
|
-
|
243
|
-
TEST_METHOD(5) {
|
244
|
-
// It disconnects the client if it provides a password that's too large.
|
245
|
-
char password[1024];
|
246
|
-
memset(password, 'x', sizeof(password));
|
247
|
-
password[sizeof(password) - 1] = '\0';
|
248
|
-
try {
|
249
|
-
MessageClient().connect(socketAddress, "test", password);
|
250
|
-
fail("SecurityException expected");
|
251
|
-
} catch (const SecurityException &e) {
|
252
|
-
// Pass.
|
253
|
-
} catch (const SystemException &e) {
|
254
|
-
if (e.code() != EPIPE) {
|
255
|
-
fail(("Unexpected SystemException: " + string(e.what())).c_str());
|
256
|
-
}
|
257
|
-
}
|
258
|
-
}
|
259
|
-
|
260
|
-
TEST_METHOD(6) {
|
261
|
-
// It notifies all handlers when a new client has connected.
|
262
|
-
LoggingHandlerPtr handler1(new LoggingHandler());
|
263
|
-
LoggingHandlerPtr handler2(new LoggingHandler());
|
264
|
-
server->addHandler(handler1);
|
265
|
-
server->addHandler(handler2);
|
266
|
-
MessageClient().connect(socketAddress, "test", "12345");
|
267
|
-
MessageClient().connect(socketAddress, "test", "12345");
|
268
|
-
|
269
|
-
usleep(10000); // Give the threads some time to do work.
|
270
|
-
ensure_equals(handler1->clientsAccepted, 2);
|
271
|
-
ensure_equals(handler2->clientsAccepted, 2);
|
272
|
-
}
|
273
|
-
|
274
|
-
TEST_METHOD(7) {
|
275
|
-
// It notifies all handlers when a message is sent, but stops
|
276
|
-
// at the first handler that returns true.
|
277
|
-
LoggingHandlerPtr handler1(new LoggingHandler());
|
278
|
-
LoggingHandlerPtr handler2(new LoggingHandler());
|
279
|
-
LoggingHandlerPtr handler3(new LoggingHandler());
|
280
|
-
server->addHandler(handler1);
|
281
|
-
server->addHandler(handler2);
|
282
|
-
server->addHandler(handler3);
|
283
|
-
handler1->returnValue = false;
|
284
|
-
|
285
|
-
CustomClient c1, c2;
|
286
|
-
c1.connect(socketAddress, "test", "12345");
|
287
|
-
c1.sendText("hello");
|
288
|
-
c1.sendText(" ");
|
289
|
-
usleep(10000); // Give the thread some time to do work.
|
290
|
-
|
291
|
-
c2.connect(socketAddress, "test", "12345");
|
292
|
-
c2.sendText("world");
|
293
|
-
usleep(10000); // Give the thread some time to do work.
|
294
|
-
|
295
|
-
ensure_equals("(1)", handler1->receivedData, "hello world");
|
296
|
-
ensure_equals("(2)", handler2->receivedData, "hello world");
|
297
|
-
ensure_equals("(3)", handler3->receivedData, "");
|
298
|
-
}
|
299
|
-
|
300
|
-
TEST_METHOD(8) {
|
301
|
-
// It does not close the connection if some, but not all of the handlers'
|
302
|
-
// processMessage() methods return false.
|
303
|
-
MessageServer::HandlerPtr handler1(new LoggingHandler());
|
304
|
-
MessageServer::HandlerPtr handler2(new ProcessMessageReturnsFalseHandler());
|
305
|
-
server->addHandler(handler1);
|
306
|
-
server->addHandler(handler2);
|
307
|
-
|
308
|
-
CustomClient c;
|
309
|
-
c.connect(socketAddress, "test", "12345");
|
310
|
-
c.sendText("hi");
|
311
|
-
usleep(10000); // Give the thread some time to do work.
|
312
|
-
|
313
|
-
c.sendText("hi"); // Connection should still be valid.
|
314
|
-
}
|
315
|
-
|
316
|
-
TEST_METHOD(9) {
|
317
|
-
// It closes the connection if all of the handlers'
|
318
|
-
// processMessage() methods return false.
|
319
|
-
MessageServer::HandlerPtr handler1(new ProcessMessageReturnsFalseHandler());
|
320
|
-
MessageServer::HandlerPtr handler2(new ProcessMessageReturnsFalseHandler());
|
321
|
-
server->addHandler(handler1);
|
322
|
-
server->addHandler(handler2);
|
323
|
-
|
324
|
-
CustomClient c;
|
325
|
-
c.connect(socketAddress, "test", "12345");
|
326
|
-
c.sendText("hi");
|
327
|
-
usleep(10000); // Give the thread some time to do work.
|
328
|
-
|
329
|
-
try {
|
330
|
-
c.sendText("hi");
|
331
|
-
fail("SystemException expected.");
|
332
|
-
} catch (const SystemException &e) {
|
333
|
-
ensure_equals(e.code(), EPIPE);
|
334
|
-
}
|
335
|
-
}
|
336
|
-
|
337
|
-
TEST_METHOD(10) {
|
338
|
-
// The specific context as returned by the handler's newClient()
|
339
|
-
// method is passed to processMessage().
|
340
|
-
LoggingHandlerPtr handler1(new LoggingHandler());
|
341
|
-
LoggingHandlerPtr handler2(new LoggingHandler());
|
342
|
-
LoggingHandlerPtr handler3(new LoggingHandler());
|
343
|
-
server->addHandler(handler1);
|
344
|
-
server->addHandler(handler2);
|
345
|
-
server->addHandler(handler3);
|
346
|
-
handler1->returnValue = false;
|
347
|
-
handler2->returnValue = false;
|
348
|
-
|
349
|
-
CustomClient c1, c2;
|
350
|
-
|
351
|
-
handler1->id = 100;
|
352
|
-
handler2->id = 101;
|
353
|
-
c1.connect(socketAddress, "test", "12345");
|
354
|
-
c1.sendText("hi");
|
355
|
-
usleep(10000); // Give the thread some time to do work.
|
356
|
-
ensure_equals(handler1->latestContext->id, 100);
|
357
|
-
ensure_equals(handler2->latestContext->id, 101);
|
358
|
-
|
359
|
-
handler1->id = 200;
|
360
|
-
handler2->id = 201;
|
361
|
-
c2.connect(socketAddress, "test", "12345");
|
362
|
-
c2.sendText("hi");
|
363
|
-
usleep(10000); // Give the thread some time to do work.
|
364
|
-
ensure_equals(handler1->latestContext->id, 200);
|
365
|
-
ensure_equals(handler2->latestContext->id, 201);
|
366
|
-
|
367
|
-
c1.sendText("hi");
|
368
|
-
usleep(10000); // Give the thread some time to do work.
|
369
|
-
ensure_equals(handler1->latestContext->id, 100);
|
370
|
-
ensure_equals(handler2->latestContext->id, 101);
|
371
|
-
}
|
372
|
-
|
373
|
-
TEST_METHOD(11) {
|
374
|
-
// It notifies all handlers when a client is disconnected.
|
375
|
-
LoggingHandlerPtr handler1(new LoggingHandler());
|
376
|
-
LoggingHandlerPtr handler2(new LoggingHandler());
|
377
|
-
server->addHandler(handler1);
|
378
|
-
server->addHandler(handler2);
|
379
|
-
{
|
380
|
-
{
|
381
|
-
MessageClient().connect(socketAddress, "test", "12345");
|
382
|
-
}
|
383
|
-
usleep(10000); // Give the threads some time to do work.
|
384
|
-
ensure_equals(handler1->clientsDisconnected, 1);
|
385
|
-
ensure_equals(handler2->clientsDisconnected, 1);
|
386
|
-
|
387
|
-
MessageClient().connect(socketAddress, "test", "12345");
|
388
|
-
}
|
389
|
-
usleep(10000); // Give the threads some time to do work.
|
390
|
-
ensure_equals(handler1->clientsDisconnected, 2);
|
391
|
-
ensure_equals(handler2->clientsDisconnected, 2);
|
392
|
-
}
|
393
|
-
}
|
@@ -1,123 +0,0 @@
|
|
1
|
-
#include <sys/wait.h>
|
2
|
-
#include <signal.h>
|
3
|
-
#include <unistd.h>
|
4
|
-
#include <cstdio>
|
5
|
-
#include <cerrno>
|
6
|
-
#include "TestSupport.h"
|
7
|
-
#include "Utils/StrIntUtils.h"
|
8
|
-
#include "Utils/ProcessMetricsCollector.h"
|
9
|
-
|
10
|
-
using namespace Passenger;
|
11
|
-
|
12
|
-
namespace tut {
|
13
|
-
struct ProcessMetricsCollectorTest {
|
14
|
-
ProcessMetricsCollector collector;
|
15
|
-
pid_t child;
|
16
|
-
|
17
|
-
ProcessMetricsCollectorTest() {
|
18
|
-
child = -1;
|
19
|
-
}
|
20
|
-
|
21
|
-
~ProcessMetricsCollectorTest() {
|
22
|
-
if (child != -1) {
|
23
|
-
kill(child, SIGKILL);
|
24
|
-
waitpid(child, NULL, 0);
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
pid_t spawnChild(int memory) {
|
29
|
-
string memoryStr = toString(memory);
|
30
|
-
pid_t pid = fork();
|
31
|
-
if (pid == 0) {
|
32
|
-
execlp("support/allocate_memory",
|
33
|
-
"support/allocate_memory",
|
34
|
-
memoryStr.c_str(),
|
35
|
-
(char *) 0);
|
36
|
-
|
37
|
-
int e = errno;
|
38
|
-
fprintf(stderr, "Cannot execute support/allocate_memory: %s\n",
|
39
|
-
strerror(e));
|
40
|
-
fflush(stderr);
|
41
|
-
_exit(1);
|
42
|
-
} else {
|
43
|
-
return pid;
|
44
|
-
}
|
45
|
-
}
|
46
|
-
};
|
47
|
-
|
48
|
-
DEFINE_TEST_GROUP(ProcessMetricsCollectorTest);
|
49
|
-
|
50
|
-
TEST_METHOD(1) {
|
51
|
-
// It collects the metrics for the given PIDs.
|
52
|
-
collector.setPsOutput(
|
53
|
-
" PID PPID %CPU RSS VSZ PGID UID COMMAND\n"
|
54
|
-
" 1 0 0.0 1276 2456836 1 0 /sbin/launchd\n"
|
55
|
-
"34678 1265 95.2 4128 2437812 34677 123 /bin/bash -li\n"
|
56
|
-
);
|
57
|
-
vector<pid_t> pids;
|
58
|
-
pids.push_back(1);
|
59
|
-
pids.push_back(34678);
|
60
|
-
ProcessMetricMap result = collector.collect(pids);
|
61
|
-
|
62
|
-
ensure_equals(result.size(), 2u);
|
63
|
-
|
64
|
-
ensure_equals(result[1].pid, (pid_t) 1);
|
65
|
-
ensure_equals(result[1].ppid, (pid_t) 0);
|
66
|
-
ensure_equals(result[1].cpu, 0u);
|
67
|
-
ensure_equals(result[1].rss, 1276u);
|
68
|
-
ensure_equals(result[1].processGroupId, (pid_t) 1);
|
69
|
-
ensure_equals(result[1].uid, (uid_t) 0);
|
70
|
-
ensure_equals(result[1].command, "/sbin/launchd");
|
71
|
-
|
72
|
-
ensure_equals(result[34678].pid, (pid_t) 34678);
|
73
|
-
ensure_equals(result[34678].ppid, (pid_t) 1265);
|
74
|
-
ensure_equals(result[34678].cpu, 95u);
|
75
|
-
ensure_equals(result[34678].rss, 4128u);
|
76
|
-
ensure_equals(result[34678].processGroupId, (pid_t) 34677);
|
77
|
-
ensure_equals(result[34678].uid, (uid_t) 123);
|
78
|
-
ensure_equals(result[34678].command, "/bin/bash -li");
|
79
|
-
}
|
80
|
-
|
81
|
-
TEST_METHOD(2) {
|
82
|
-
// It does not collect the metrics for PIDs that don't exist.
|
83
|
-
collector.setPsOutput(
|
84
|
-
" PID PPID %CPU RSS VSZ PGID COMMAND\n"
|
85
|
-
" 1 0 0.0 1276 2456836 1 /sbin/launchd\n"
|
86
|
-
);
|
87
|
-
vector<pid_t> pids;
|
88
|
-
pids.push_back(1);
|
89
|
-
pids.push_back(34678);
|
90
|
-
ProcessMetricMap result = collector.collect(pids);
|
91
|
-
|
92
|
-
ensure_equals(result.size(), 1u);
|
93
|
-
ensure(result.find(1) != result.end());
|
94
|
-
ensure(result.find(34678) == result.end());
|
95
|
-
}
|
96
|
-
|
97
|
-
TEST_METHOD(3) {
|
98
|
-
// Measuring real memory usage works.
|
99
|
-
ssize_t pss, privateDirty, swap;
|
100
|
-
child = spawnChild(50);
|
101
|
-
usleep(500000);
|
102
|
-
collector.measureRealMemory(child, pss, privateDirty, swap);
|
103
|
-
#ifdef __APPLE__
|
104
|
-
if (geteuid() == 0) {
|
105
|
-
ensure(pss > 50000 && pss < 60000);
|
106
|
-
ensure(privateDirty > 50000 && privateDirty < 60000);
|
107
|
-
ensure_equals(swap, (ssize_t) -1);
|
108
|
-
} else {
|
109
|
-
ensure_equals(pss, (ssize_t) -1);
|
110
|
-
ensure_equals(privateDirty, (ssize_t) -1);
|
111
|
-
ensure_equals(swap, (ssize_t) -1);
|
112
|
-
}
|
113
|
-
#elif defined(__linux__)
|
114
|
-
ensure("PSS is correct", (pss > 50000 && pss < 60000) || pss == -1);
|
115
|
-
ensure("Private dirty is correct", privateDirty > 50000 && privateDirty < 60000);
|
116
|
-
ensure("Swap is correct", swap < 10000);
|
117
|
-
#else
|
118
|
-
ensure((pss > 50000 && pss < 60000) || pss == -1);
|
119
|
-
ensure((privateDirty > 50000 && privateDirty < 60000) || privateDirty == -1);
|
120
|
-
ensure(swap < 10000 || swap == -1);
|
121
|
-
#endif
|
122
|
-
}
|
123
|
-
}
|