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,408 +0,0 @@
|
|
1
|
-
#include <TestSupport.h>
|
2
|
-
#include <boost/shared_ptr.hpp>
|
3
|
-
#include <boost/make_shared.hpp>
|
4
|
-
#include <boost/thread.hpp>
|
5
|
-
#include <oxt/system_calls.hpp>
|
6
|
-
#include <vector>
|
7
|
-
#include <BackgroundEventLoop.h>
|
8
|
-
#include <ServerKit/Server.h>
|
9
|
-
#include <ServerKit/ClientRef.h>
|
10
|
-
#include <Logging.h>
|
11
|
-
#include <FileDescriptor.h>
|
12
|
-
#include <Utils/IOUtils.h>
|
13
|
-
|
14
|
-
using namespace Passenger;
|
15
|
-
using namespace Passenger::ServerKit;
|
16
|
-
using namespace Passenger::MemoryKit;
|
17
|
-
using namespace std;
|
18
|
-
using namespace oxt;
|
19
|
-
|
20
|
-
namespace tut {
|
21
|
-
struct ServerKit_ServerTest {
|
22
|
-
typedef ClientRef<Server<Client>, Client> ClientRefType;
|
23
|
-
|
24
|
-
BackgroundEventLoop bg;
|
25
|
-
ServerKit::Context context;
|
26
|
-
boost::shared_ptr< Server<Client> > server;
|
27
|
-
int serverSocket1, serverSocket2;
|
28
|
-
|
29
|
-
ServerKit_ServerTest()
|
30
|
-
: bg(false, true),
|
31
|
-
context(bg.safe)
|
32
|
-
{
|
33
|
-
initializeLibeio();
|
34
|
-
setLogLevel(LVL_CRIT);
|
35
|
-
serverSocket1 = createUnixServer("tmp.server1");
|
36
|
-
serverSocket2 = createUnixServer("tmp.server2");
|
37
|
-
server = boost::make_shared< Server<Client> >(&context);
|
38
|
-
server->listen(serverSocket1);
|
39
|
-
}
|
40
|
-
|
41
|
-
~ServerKit_ServerTest() {
|
42
|
-
if (!bg.isStarted()) {
|
43
|
-
bg.start();
|
44
|
-
}
|
45
|
-
bg.safe->runSync(boost::bind(&Server<Client>::shutdown, server.get(), true));
|
46
|
-
safelyClose(serverSocket1);
|
47
|
-
safelyClose(serverSocket2);
|
48
|
-
unlink("tmp.server1");
|
49
|
-
unlink("tmp.server2");
|
50
|
-
setLogLevel(DEFAULT_LOG_LEVEL);
|
51
|
-
bg.stop();
|
52
|
-
shutdownLibeio();
|
53
|
-
}
|
54
|
-
|
55
|
-
void startServer() {
|
56
|
-
bg.start();
|
57
|
-
}
|
58
|
-
|
59
|
-
FileDescriptor connectToServer1() {
|
60
|
-
return FileDescriptor(connectToUnixServer("tmp.server1"));
|
61
|
-
}
|
62
|
-
|
63
|
-
FileDescriptor connectToServer2() {
|
64
|
-
return FileDescriptor(connectToUnixServer("tmp.server2"));
|
65
|
-
}
|
66
|
-
|
67
|
-
unsigned int getActiveClientCount() {
|
68
|
-
int result;
|
69
|
-
bg.safe->runSync(boost::bind(&ServerKit_ServerTest::_getActiveClientCount,
|
70
|
-
this, &result));
|
71
|
-
return result;
|
72
|
-
}
|
73
|
-
|
74
|
-
void _getActiveClientCount(int *result) {
|
75
|
-
*result = server->activeClientCount;
|
76
|
-
}
|
77
|
-
|
78
|
-
unsigned int getDisconnectedClientCount() {
|
79
|
-
int result;
|
80
|
-
bg.safe->runSync(boost::bind(&ServerKit_ServerTest::_getDisconnectedClientCount,
|
81
|
-
this, &result));
|
82
|
-
return result;
|
83
|
-
}
|
84
|
-
|
85
|
-
void _getDisconnectedClientCount(int *result) {
|
86
|
-
*result = server->disconnectedClientCount;
|
87
|
-
}
|
88
|
-
|
89
|
-
unsigned int getFreeClientCount() {
|
90
|
-
int result;
|
91
|
-
bg.safe->runSync(boost::bind(&ServerKit_ServerTest::_getFreeClientCount,
|
92
|
-
this, &result));
|
93
|
-
return result;
|
94
|
-
}
|
95
|
-
|
96
|
-
void _getFreeClientCount(int *result) {
|
97
|
-
*result = server->freeClientCount;
|
98
|
-
}
|
99
|
-
|
100
|
-
vector<ClientRefType> getActiveClients() {
|
101
|
-
vector<ClientRefType> result;
|
102
|
-
bg.safe->runSync(boost::bind(&ServerKit_ServerTest::_getActiveClients,
|
103
|
-
this, &result));
|
104
|
-
return result;
|
105
|
-
}
|
106
|
-
|
107
|
-
void _getActiveClients(vector<ClientRefType> *result) {
|
108
|
-
*result = server->getActiveClients();
|
109
|
-
}
|
110
|
-
|
111
|
-
bool clientIsConnected(Client *client) {
|
112
|
-
bool result;
|
113
|
-
bg.safe->runSync(boost::bind(&ServerKit_ServerTest::_clientIsConnected,
|
114
|
-
this, client, &result));
|
115
|
-
return result;
|
116
|
-
}
|
117
|
-
|
118
|
-
void _clientIsConnected(Client *client, bool *result) {
|
119
|
-
*result = client->connected();
|
120
|
-
}
|
121
|
-
};
|
122
|
-
|
123
|
-
DEFINE_TEST_GROUP(ServerKit_ServerTest);
|
124
|
-
|
125
|
-
#define USE_CUSTOM_SERVER_CLASS(Klass) \
|
126
|
-
server->shutdown(); \
|
127
|
-
server = boost::make_shared< Klass >(&context); \
|
128
|
-
server->listen(serverSocket1)
|
129
|
-
|
130
|
-
|
131
|
-
/***** Initial state *****/
|
132
|
-
|
133
|
-
TEST_METHOD(1) {
|
134
|
-
set_test_name("It has no clients at startup");
|
135
|
-
ensure_equals(server->activeClientCount, 0u);
|
136
|
-
ensure_equals(server->disconnectedClientCount, 0u);
|
137
|
-
ensure_equals(server->freeClientCount, 0u);
|
138
|
-
}
|
139
|
-
|
140
|
-
|
141
|
-
/***** Client object management *****/
|
142
|
-
|
143
|
-
TEST_METHOD(5) {
|
144
|
-
set_test_name("Accepting a new client works");
|
145
|
-
|
146
|
-
startServer();
|
147
|
-
FileDescriptor fd = connectToServer1();
|
148
|
-
EVENTUALLY(5,
|
149
|
-
result = getActiveClientCount() == 1u;
|
150
|
-
);
|
151
|
-
}
|
152
|
-
|
153
|
-
TEST_METHOD(6) {
|
154
|
-
set_test_name("When a client is accepted, and the freelist is non-empty, "
|
155
|
-
"the object is checked out from the freelist");
|
156
|
-
|
157
|
-
server->minSpareClients = 1;
|
158
|
-
server->createSpareClients();
|
159
|
-
startServer();
|
160
|
-
|
161
|
-
ensure_equals(getActiveClientCount(), 0u);
|
162
|
-
ensure_equals(getDisconnectedClientCount(), 0u);
|
163
|
-
ensure_equals(getFreeClientCount(), 1u);
|
164
|
-
|
165
|
-
FileDescriptor fd = connectToServer1();
|
166
|
-
EVENTUALLY(5,
|
167
|
-
result = getActiveClientCount() == 1u;
|
168
|
-
);
|
169
|
-
ensure_equals(getDisconnectedClientCount(), 0u);
|
170
|
-
ensure_equals(getFreeClientCount(), 0u);
|
171
|
-
}
|
172
|
-
|
173
|
-
TEST_METHOD(7) {
|
174
|
-
set_test_name("When a client is accepted, and the freelist is empty, "
|
175
|
-
"the object is allocated");
|
176
|
-
|
177
|
-
startServer();
|
178
|
-
FileDescriptor fd = connectToServer1();
|
179
|
-
EVENTUALLY(5,
|
180
|
-
result = getActiveClientCount() == 1u;
|
181
|
-
);
|
182
|
-
ensure_equals(getDisconnectedClientCount(), 0u);
|
183
|
-
ensure_equals(getFreeClientCount(), 0u);
|
184
|
-
}
|
185
|
-
|
186
|
-
TEST_METHOD(8) {
|
187
|
-
set_test_name("Once a client has been disconnected, and the freelist has not "
|
188
|
-
"yet reached the limit, the client object is put on the freelist");
|
189
|
-
|
190
|
-
server->clientFreelistLimit = 10;
|
191
|
-
startServer();
|
192
|
-
|
193
|
-
FileDescriptor fd = connectToServer1();
|
194
|
-
EVENTUALLY(5,
|
195
|
-
result = getActiveClientCount() == 1u;
|
196
|
-
);
|
197
|
-
fd.close();
|
198
|
-
EVENTUALLY(5,
|
199
|
-
result = getActiveClientCount() == 0u;
|
200
|
-
);
|
201
|
-
ensure_equals(getDisconnectedClientCount(), 0u);
|
202
|
-
ensure_equals(getFreeClientCount(), 1u);
|
203
|
-
}
|
204
|
-
|
205
|
-
TEST_METHOD(9) {
|
206
|
-
set_test_name("Once a client has been disconnected, and the freelist has "
|
207
|
-
"reached the limit, the client object is destroyed");
|
208
|
-
|
209
|
-
server->clientFreelistLimit = 0;
|
210
|
-
startServer();
|
211
|
-
|
212
|
-
FileDescriptor fd = connectToServer1();
|
213
|
-
EVENTUALLY(5,
|
214
|
-
result = getActiveClientCount() == 1u;
|
215
|
-
);
|
216
|
-
fd.close();
|
217
|
-
EVENTUALLY(5,
|
218
|
-
result = getActiveClientCount() == 0u;
|
219
|
-
);
|
220
|
-
ensure_equals(getDisconnectedClientCount(), 0u);
|
221
|
-
ensure_equals(getFreeClientCount(), 0u);
|
222
|
-
}
|
223
|
-
|
224
|
-
TEST_METHOD(10) {
|
225
|
-
set_test_name("Once a client has been disconnected, the freelist has not yet reached "
|
226
|
-
"the limit, and there are still references to the client, then the client is first "
|
227
|
-
"put in the disconnecting list, then in the freelist when the last references disappear");
|
228
|
-
|
229
|
-
vector<ClientRefType> clients;
|
230
|
-
server->clientFreelistLimit = 10;
|
231
|
-
startServer();
|
232
|
-
|
233
|
-
FileDescriptor fd = connectToServer1();
|
234
|
-
EVENTUALLY(5,
|
235
|
-
result = getActiveClientCount() == 1u;
|
236
|
-
);
|
237
|
-
|
238
|
-
clients = getActiveClients();
|
239
|
-
fd.close();
|
240
|
-
EVENTUALLY(5,
|
241
|
-
result = getActiveClientCount() == 0u;
|
242
|
-
);
|
243
|
-
ensure_equals(getDisconnectedClientCount(), 1u);
|
244
|
-
ensure_equals(getFreeClientCount(), 0u);
|
245
|
-
|
246
|
-
clients.clear();
|
247
|
-
EVENTUALLY(5,
|
248
|
-
result = getDisconnectedClientCount() == 0u;
|
249
|
-
);
|
250
|
-
ensure_equals(getActiveClientCount(), 0u);
|
251
|
-
ensure_equals(getFreeClientCount(), 1u);
|
252
|
-
}
|
253
|
-
|
254
|
-
TEST_METHOD(11) {
|
255
|
-
set_test_name("Once a client has been disconnected, the freelist has reached the limit, "
|
256
|
-
"and there are still references to the client, then the client is first put in the "
|
257
|
-
"disconnecting list, then destroyed when the last references disappear");
|
258
|
-
|
259
|
-
vector<ClientRefType> clients;
|
260
|
-
server->clientFreelistLimit = 0;
|
261
|
-
startServer();
|
262
|
-
|
263
|
-
FileDescriptor fd = connectToServer1();
|
264
|
-
EVENTUALLY(5,
|
265
|
-
result = getActiveClientCount() == 1u;
|
266
|
-
);
|
267
|
-
|
268
|
-
clients = getActiveClients();
|
269
|
-
fd.close();
|
270
|
-
EVENTUALLY(5,
|
271
|
-
result = getActiveClientCount() == 0u;
|
272
|
-
);
|
273
|
-
ensure_equals(getDisconnectedClientCount(), 1u);
|
274
|
-
ensure_equals(getFreeClientCount(), 0u);
|
275
|
-
|
276
|
-
clients.clear();
|
277
|
-
EVENTUALLY(5,
|
278
|
-
result = getDisconnectedClientCount() == 0u;
|
279
|
-
);
|
280
|
-
ensure_equals(getActiveClientCount(), 0u);
|
281
|
-
ensure_equals(getFreeClientCount(), 0u);
|
282
|
-
}
|
283
|
-
|
284
|
-
|
285
|
-
/****** Multiple listen endpoints *****/
|
286
|
-
|
287
|
-
TEST_METHOD(20) {
|
288
|
-
set_test_name("It can listen on multiple endpoints");
|
289
|
-
|
290
|
-
server->listen(serverSocket2);
|
291
|
-
startServer();
|
292
|
-
|
293
|
-
FileDescriptor fd1 = connectToServer1();
|
294
|
-
FileDescriptor fd2 = connectToServer2();
|
295
|
-
EVENTUALLY(5,
|
296
|
-
result = getActiveClientCount() == 2u;
|
297
|
-
);
|
298
|
-
}
|
299
|
-
|
300
|
-
|
301
|
-
/****** Input and output *****/
|
302
|
-
|
303
|
-
class Test25Server: public Server<Client> {
|
304
|
-
protected:
|
305
|
-
virtual Channel::Result onClientDataReceived(Client *client,
|
306
|
-
const MemoryKit::mbuf &buffer, int errcode)
|
307
|
-
{
|
308
|
-
if (errcode != 0 || buffer.empty()) {
|
309
|
-
disconnect(&client);
|
310
|
-
} else {
|
311
|
-
boost::lock_guard<boost::mutex> l(syncher);
|
312
|
-
data.append(buffer.start, buffer.size());
|
313
|
-
}
|
314
|
-
return Channel::Result(buffer.size(), false);
|
315
|
-
}
|
316
|
-
|
317
|
-
public:
|
318
|
-
boost::mutex syncher;
|
319
|
-
string data;
|
320
|
-
|
321
|
-
Test25Server(Context *ctx)
|
322
|
-
: Server<Client>(ctx)
|
323
|
-
{ }
|
324
|
-
};
|
325
|
-
|
326
|
-
TEST_METHOD(25) {
|
327
|
-
set_test_name("Input is made available through client->input");
|
328
|
-
|
329
|
-
USE_CUSTOM_SERVER_CLASS(Test25Server);
|
330
|
-
startServer();
|
331
|
-
|
332
|
-
FileDescriptor fd = connectToServer1();
|
333
|
-
writeExact(fd, "hello", 5);
|
334
|
-
|
335
|
-
EVENTUALLY(5,
|
336
|
-
Test25Server *s = (Test25Server *) server.get();
|
337
|
-
boost::lock_guard<boost::mutex> l(s->syncher);
|
338
|
-
result = s->data == "hello";
|
339
|
-
);
|
340
|
-
}
|
341
|
-
|
342
|
-
class Test26Server: public Server<Client> {
|
343
|
-
protected:
|
344
|
-
virtual Channel::Result onClientDataReceived(Client *client,
|
345
|
-
const MemoryKit::mbuf &buffer, int errcode)
|
346
|
-
{
|
347
|
-
if (errcode != 0 || buffer.empty()) {
|
348
|
-
disconnect(&client);
|
349
|
-
} else {
|
350
|
-
client->output.feed(buffer);
|
351
|
-
}
|
352
|
-
return Channel::Result(buffer.size(), false);
|
353
|
-
}
|
354
|
-
|
355
|
-
public:
|
356
|
-
Test26Server(Context *ctx)
|
357
|
-
: Server<Client>(ctx)
|
358
|
-
{ }
|
359
|
-
};
|
360
|
-
|
361
|
-
TEST_METHOD(26) {
|
362
|
-
set_test_name("Output is made available through client->output");
|
363
|
-
|
364
|
-
USE_CUSTOM_SERVER_CLASS(Test26Server);
|
365
|
-
startServer();
|
366
|
-
|
367
|
-
FileDescriptor fd = connectToServer1();
|
368
|
-
writeExact(fd, "hello", 5);
|
369
|
-
syscalls::shutdown(fd, SHUT_WR);
|
370
|
-
ensure_equals(readAll(fd), "hello");
|
371
|
-
}
|
372
|
-
|
373
|
-
TEST_METHOD(27) {
|
374
|
-
set_test_name("The file descriptor can be obtained through client->getFd()");
|
375
|
-
|
376
|
-
startServer();
|
377
|
-
|
378
|
-
FileDescriptor fd = connectToServer1();
|
379
|
-
EVENTUALLY(5,
|
380
|
-
result = getActiveClientCount() == 1u;
|
381
|
-
);
|
382
|
-
|
383
|
-
ClientRefType client = getActiveClients()[0];
|
384
|
-
writeExact(client.get()->getFd(), "hello", 5);
|
385
|
-
|
386
|
-
char buf[5];
|
387
|
-
readExact(fd, buf, 5);
|
388
|
-
ensure_equals(StaticString(buf, 5), StaticString("hello"));
|
389
|
-
}
|
390
|
-
|
391
|
-
TEST_METHOD(28) {
|
392
|
-
set_test_name("When a client is disconnected, client->connected() becomes false");
|
393
|
-
|
394
|
-
startServer();
|
395
|
-
|
396
|
-
FileDescriptor fd = connectToServer1();
|
397
|
-
EVENTUALLY(5,
|
398
|
-
result = getActiveClientCount() == 1u;
|
399
|
-
);
|
400
|
-
|
401
|
-
ClientRefType client = getActiveClients()[0];
|
402
|
-
ensure(clientIsConnected(client.get()));
|
403
|
-
fd.close();
|
404
|
-
EVENTUALLY(5,
|
405
|
-
result = !clientIsConnected(client.get());
|
406
|
-
);
|
407
|
-
}
|
408
|
-
}
|
@@ -1,220 +0,0 @@
|
|
1
|
-
#include "TestSupport.h"
|
2
|
-
#include "StaticString.h"
|
3
|
-
|
4
|
-
using namespace Passenger;
|
5
|
-
using namespace std;
|
6
|
-
|
7
|
-
namespace tut {
|
8
|
-
struct StaticStringTest {
|
9
|
-
};
|
10
|
-
|
11
|
-
DEFINE_TEST_GROUP(StaticStringTest);
|
12
|
-
|
13
|
-
TEST_METHOD(1) {
|
14
|
-
// Test == operator.
|
15
|
-
ensure(StaticString("") == "");
|
16
|
-
ensure(StaticString("foo") == "foo");
|
17
|
-
ensure(!(StaticString("foo") == "bar"));
|
18
|
-
ensure(!(StaticString("barr") == "bar"));
|
19
|
-
ensure(!(StaticString("bar") == "barr"));
|
20
|
-
|
21
|
-
ensure(StaticString("") == StaticString(""));
|
22
|
-
ensure(StaticString("foo") == StaticString("foo"));
|
23
|
-
ensure(!(StaticString("foo") == StaticString("bar")));
|
24
|
-
ensure(!(StaticString("barr") == StaticString("bar")));
|
25
|
-
ensure(!(StaticString("bar") == StaticString("barr")));
|
26
|
-
|
27
|
-
ensure(StaticString("") == string(""));
|
28
|
-
ensure(StaticString("foo") == string("foo"));
|
29
|
-
ensure(!(StaticString("foo") == string("bar")));
|
30
|
-
ensure(!(StaticString("barr") == string("bar")));
|
31
|
-
ensure(!(StaticString("bar") == string("barr")));
|
32
|
-
}
|
33
|
-
|
34
|
-
TEST_METHOD(2) {
|
35
|
-
// Test != operator
|
36
|
-
ensure(!(StaticString("") != ""));
|
37
|
-
ensure(!(StaticString("foo") != "foo"));
|
38
|
-
ensure(StaticString("foo") != "bar");
|
39
|
-
ensure(StaticString("barr") != "bar");
|
40
|
-
ensure(StaticString("bar") != "barr");
|
41
|
-
|
42
|
-
ensure(!(StaticString("") != StaticString("")));
|
43
|
-
ensure(!(StaticString("foo") != StaticString("foo")));
|
44
|
-
ensure(StaticString("foo") != StaticString("bar"));
|
45
|
-
ensure(StaticString("barr") != StaticString("bar"));
|
46
|
-
ensure(StaticString("bar") != StaticString("barr"));
|
47
|
-
|
48
|
-
ensure(!(StaticString("") != string("")));
|
49
|
-
ensure(!(StaticString("foo") != string("foo")));
|
50
|
-
ensure(StaticString("foo") != string("bar"));
|
51
|
-
ensure(StaticString("barr") != string("bar"));
|
52
|
-
ensure(StaticString("bar") != string("barr"));
|
53
|
-
}
|
54
|
-
|
55
|
-
TEST_METHOD(3) {
|
56
|
-
// Test < operator.
|
57
|
-
ensure_equals("Assertion 1",
|
58
|
-
StaticString("") < "",
|
59
|
-
string("") < string("")
|
60
|
-
);
|
61
|
-
ensure_equals("Assertion 2",
|
62
|
-
StaticString("abc") < "abc",
|
63
|
-
string("abc") < string("abc")
|
64
|
-
);
|
65
|
-
ensure_equals("Assertion 3",
|
66
|
-
StaticString("foo") < "bar",
|
67
|
-
string("foo") < string("bar")
|
68
|
-
);
|
69
|
-
ensure_equals("Assertion 4",
|
70
|
-
StaticString("foo") < "bar!",
|
71
|
-
string("foo") < string("bar!")
|
72
|
-
);
|
73
|
-
ensure_equals("Assertion 5",
|
74
|
-
StaticString("bar!") < "foo",
|
75
|
-
string("bar!") < string("foo")
|
76
|
-
);
|
77
|
-
ensure_equals("Assertion 6",
|
78
|
-
StaticString("hello") < "hello world",
|
79
|
-
string("hello") < string("hello world")
|
80
|
-
);
|
81
|
-
ensure_equals("Assertion 7",
|
82
|
-
StaticString("hello world") < "hello",
|
83
|
-
string("hello world") < string("hello")
|
84
|
-
);
|
85
|
-
}
|
86
|
-
|
87
|
-
TEST_METHOD(4) {
|
88
|
-
// Test find(char)
|
89
|
-
ensure_equals("Assertion 1",
|
90
|
-
StaticString("").find('c'),
|
91
|
-
string::npos
|
92
|
-
);
|
93
|
-
ensure_equals("Assertion 2",
|
94
|
-
StaticString("hello world").find('c'),
|
95
|
-
string::npos
|
96
|
-
);
|
97
|
-
ensure_equals("Assertion 3",
|
98
|
-
StaticString("hello world").find('h'),
|
99
|
-
(string::size_type) 0
|
100
|
-
);
|
101
|
-
ensure_equals("Assertion 4",
|
102
|
-
StaticString("hello world").find('o'),
|
103
|
-
(string::size_type) 4
|
104
|
-
);
|
105
|
-
|
106
|
-
ensure_equals("Assertion 5",
|
107
|
-
StaticString("hello world").find('h', 1),
|
108
|
-
string::npos
|
109
|
-
);
|
110
|
-
ensure_equals("Assertion 6",
|
111
|
-
StaticString("hello world").find('o', 1),
|
112
|
-
(string::size_type) 4
|
113
|
-
);
|
114
|
-
ensure_equals("Assertion 7",
|
115
|
-
StaticString("hello world").find('o', 5),
|
116
|
-
(string::size_type) 7
|
117
|
-
);
|
118
|
-
|
119
|
-
ensure_equals("Assertion 8",
|
120
|
-
StaticString("hello world").find('h', 12),
|
121
|
-
string::npos
|
122
|
-
);
|
123
|
-
ensure_equals("Assertion 9",
|
124
|
-
StaticString("hello world").find('h', 20),
|
125
|
-
string::npos
|
126
|
-
);
|
127
|
-
}
|
128
|
-
|
129
|
-
TEST_METHOD(5) {
|
130
|
-
// Test find(str)
|
131
|
-
ensure_equals("Assertion 1",
|
132
|
-
StaticString("").find(""),
|
133
|
-
(string::size_type) 0
|
134
|
-
);
|
135
|
-
ensure_equals("Assertion 2",
|
136
|
-
StaticString("").find("c"),
|
137
|
-
string::npos
|
138
|
-
);
|
139
|
-
ensure_equals("Assertion 3",
|
140
|
-
StaticString("hello world").find("c"),
|
141
|
-
string::npos
|
142
|
-
);
|
143
|
-
ensure_equals("Assertion 4",
|
144
|
-
StaticString("hello world").find("h"),
|
145
|
-
(string::size_type) 0
|
146
|
-
);
|
147
|
-
ensure_equals("Assertion 5",
|
148
|
-
StaticString("hello world").find("o"),
|
149
|
-
(string::size_type) 4
|
150
|
-
);
|
151
|
-
ensure_equals("Assertion 6",
|
152
|
-
StaticString("hello world").find("ello"),
|
153
|
-
(string::size_type) 1
|
154
|
-
);
|
155
|
-
ensure_equals("Assertion 7",
|
156
|
-
StaticString("hello world").find("world"),
|
157
|
-
(string::size_type) 6
|
158
|
-
);
|
159
|
-
ensure_equals("Assertion 8",
|
160
|
-
StaticString("hello world").find("worldd"),
|
161
|
-
string::npos
|
162
|
-
);
|
163
|
-
ensure_equals("Assertion 9",
|
164
|
-
StaticString("hello world").find(""),
|
165
|
-
(string::size_type) 0
|
166
|
-
);
|
167
|
-
|
168
|
-
ensure_equals("Assertion 10",
|
169
|
-
StaticString("hello world").find("h", 1),
|
170
|
-
string::npos
|
171
|
-
);
|
172
|
-
ensure_equals("Assertion 11",
|
173
|
-
StaticString("hello hello").find("ll", 1),
|
174
|
-
(string::size_type) 2
|
175
|
-
);
|
176
|
-
ensure_equals("Assertion 12",
|
177
|
-
StaticString("hello hello").find("ll", 3),
|
178
|
-
(string::size_type) 8
|
179
|
-
);
|
180
|
-
|
181
|
-
ensure_equals("Assertion 13",
|
182
|
-
StaticString("hello world").find("he", 12),
|
183
|
-
string::npos
|
184
|
-
);
|
185
|
-
ensure_equals("Assertion 14",
|
186
|
-
StaticString("hello world").find("he", 20),
|
187
|
-
string::npos
|
188
|
-
);
|
189
|
-
}
|
190
|
-
|
191
|
-
TEST_METHOD(6) {
|
192
|
-
// Test substr()
|
193
|
-
ensure_equals("Assertion 1",
|
194
|
-
StaticString("hello world").substr(),
|
195
|
-
"hello world");
|
196
|
-
ensure_equals("Assertion 2",
|
197
|
-
StaticString("hello world").substr(1),
|
198
|
-
"ello world");
|
199
|
-
ensure_equals("Assertion 3",
|
200
|
-
StaticString("hello world").substr(4),
|
201
|
-
"o world");
|
202
|
-
ensure_equals("Assertion 4",
|
203
|
-
StaticString("hello world").substr(11),
|
204
|
-
"");
|
205
|
-
|
206
|
-
try {
|
207
|
-
StaticString("hello world").substr(12);
|
208
|
-
fail("out_of_range expected");
|
209
|
-
} catch (out_of_range &) {
|
210
|
-
// Success.
|
211
|
-
}
|
212
|
-
|
213
|
-
ensure_equals("Assertion 5",
|
214
|
-
StaticString("hello world").substr(2, 3),
|
215
|
-
"llo");
|
216
|
-
ensure_equals("Assertion 6",
|
217
|
-
StaticString("hello world").substr(6, 10),
|
218
|
-
"world");
|
219
|
-
}
|
220
|
-
}
|