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,212 +0,0 @@
|
|
1
|
-
import os, sys, time, cgi
|
2
|
-
|
3
|
-
def file_exist(filename):
|
4
|
-
try:
|
5
|
-
os.stat(filename)
|
6
|
-
return True
|
7
|
-
except OSError:
|
8
|
-
return False
|
9
|
-
|
10
|
-
if sys.version_info[0] >= 3:
|
11
|
-
def bytes_to_str(b):
|
12
|
-
return b.decode()
|
13
|
-
|
14
|
-
def str_to_bytes(s):
|
15
|
-
return s.encode('latin-1')
|
16
|
-
else:
|
17
|
-
def bytes_to_str(b):
|
18
|
-
return b
|
19
|
-
|
20
|
-
def str_to_bytes(s):
|
21
|
-
return s
|
22
|
-
|
23
|
-
def application(env, start_response):
|
24
|
-
status = '200 OK'
|
25
|
-
body = None
|
26
|
-
|
27
|
-
method = env.get('REQUEST_METHOD')
|
28
|
-
if method == 'OOBW':
|
29
|
-
time.sleep(1)
|
30
|
-
start_response(status, [('Content-Type', 'text/html')])
|
31
|
-
return [str('oobw ok')]
|
32
|
-
|
33
|
-
filename = env.get('HTTP_X_WAIT_FOR_FILE')
|
34
|
-
if filename is not None:
|
35
|
-
while not file_exist(filename):
|
36
|
-
time.sleep(0.01)
|
37
|
-
|
38
|
-
path = env['PATH_INFO']
|
39
|
-
if path == '/':
|
40
|
-
if file_exist("front_page.txt"):
|
41
|
-
with file("front_page.txt", "r") as f:
|
42
|
-
body = f.read()
|
43
|
-
else:
|
44
|
-
body = "front page"
|
45
|
-
elif path == '/parameters':
|
46
|
-
method = env['REQUEST_METHOD']
|
47
|
-
params = cgi.parse(env['wsgi.input'], env)
|
48
|
-
first = params['first'][0]
|
49
|
-
second = params['second'][0]
|
50
|
-
body = "Method: %s\nFirst: %s\nSecond: %s\n" % (method, first, second)
|
51
|
-
elif path == '/chunked':
|
52
|
-
def body():
|
53
|
-
yield str("7\r\nchunk1\n\r\n")
|
54
|
-
yield str("7\r\nchunk2\n\r\n")
|
55
|
-
yield str("7\r\nchunk3\n\r\n")
|
56
|
-
yield str("0\r\n\r\n")
|
57
|
-
sleep_time = float(env.get('HTTP_X_SLEEP_WHEN_DONE', 0))
|
58
|
-
time.sleep(sleep_time)
|
59
|
-
if env.get('HTTP_X_EXTRA_DATA') is not None:
|
60
|
-
status = False
|
61
|
-
try:
|
62
|
-
yield str("7\r\nchunk4\n\r\n")
|
63
|
-
status = True
|
64
|
-
finally:
|
65
|
-
filename = env.get('HTTP_X_TAIL_STATUS_FILE')
|
66
|
-
if filename is not None:
|
67
|
-
f = open(filename, "w")
|
68
|
-
try:
|
69
|
-
f.write(str(status))
|
70
|
-
finally:
|
71
|
-
f.close()
|
72
|
-
start_response(status, [('Content-Type', 'text/html'), ('Transfer-Encoding', 'chunked')])
|
73
|
-
return body()
|
74
|
-
elif path == '/pid':
|
75
|
-
body = os.getpid()
|
76
|
-
elif path.startswith('/env'):
|
77
|
-
body = ''
|
78
|
-
for pair in env.iteritems():
|
79
|
-
body += pair[0] + ' = ' + str(pair[1]) + "\n"
|
80
|
-
body = body
|
81
|
-
elif path == '/touch_file':
|
82
|
-
params = cgi.parse(env['wsgi.input'], env)
|
83
|
-
filename = params["file"][0]
|
84
|
-
file(filename, 'w').close()
|
85
|
-
body = "ok"
|
86
|
-
elif path == '/extra_header':
|
87
|
-
start_response(status, [('Content-Type', 'text/html'), ('X-Foo', 'Bar')])
|
88
|
-
return ["ok"]
|
89
|
-
elif path == '/cached':
|
90
|
-
body = "This is the uncached version of /cached"
|
91
|
-
elif path == '/upload_with_params':
|
92
|
-
params = cgi.FieldStorage(fp = env['wsgi.input'], environ = env)
|
93
|
-
name1 = params["name1"].value
|
94
|
-
name2 = params["name2"].value
|
95
|
-
data = params["data"].value
|
96
|
-
format = \
|
97
|
-
b"name 1 = %s\n" + \
|
98
|
-
b"name 2 = %s\n" + \
|
99
|
-
b"data = %s"
|
100
|
-
body = format % (name1, name2, data)
|
101
|
-
elif path == '/raw_upload_to_file':
|
102
|
-
sleep_time = float(env.get('HTTP_X_SLEEP', 0))
|
103
|
-
f = open(env['HTTP_X_OUTPUT'], 'w')
|
104
|
-
try:
|
105
|
-
line = env['wsgi.input'].readline()
|
106
|
-
while line != "":
|
107
|
-
f.write(line)
|
108
|
-
f.flush()
|
109
|
-
line = env['wsgi.input'].readline()
|
110
|
-
if sleep_time > 0:
|
111
|
-
time.sleep(sleep_time)
|
112
|
-
finally:
|
113
|
-
f.close()
|
114
|
-
body = 'ok'
|
115
|
-
elif path == '/custom_status':
|
116
|
-
status = env['HTTP_X_CUSTOM_STATUS']
|
117
|
-
body = 'ok'
|
118
|
-
elif path == '/stream':
|
119
|
-
sleep_time = float(env.get('HTTP_X_SLEEP', 0.1))
|
120
|
-
def body():
|
121
|
-
i = 0
|
122
|
-
while True:
|
123
|
-
data = ' ' * 32 + str(i) + "\n"
|
124
|
-
yield("%x\r\n" % len(data))
|
125
|
-
yield(data)
|
126
|
-
yield("\r\n")
|
127
|
-
time.sleep(sleep_time)
|
128
|
-
i += 1
|
129
|
-
start_response(status, [('Content-Type', 'text/html'), ('Transfer-Encoding', 'chunked')])
|
130
|
-
return body()
|
131
|
-
elif path == '/chunked_stream':
|
132
|
-
sleep_time = float(env.get('HTTP_X_SLEEP', 0.05))
|
133
|
-
count = float(env.get('HTTP_X_COUNT', 3))
|
134
|
-
def body():
|
135
|
-
i = 0
|
136
|
-
while i < count:
|
137
|
-
data = "Counter: " + str(i) + "\n"
|
138
|
-
yield("%x\r\n" % len(data))
|
139
|
-
yield(data)
|
140
|
-
yield("\r\n")
|
141
|
-
time.sleep(sleep_time)
|
142
|
-
i += 1
|
143
|
-
yield("0\r\n\r\n")
|
144
|
-
time.sleep(2)
|
145
|
-
start_response(status, [('Content-Type', 'text/html'), ('Transfer-Encoding', 'chunked')])
|
146
|
-
return body()
|
147
|
-
elif path == '/sleep':
|
148
|
-
sleep_time = float(env.get('HTTP_X_SLEEP', 5))
|
149
|
-
time.sleep(sleep_time)
|
150
|
-
status = 200
|
151
|
-
body = 'ok'
|
152
|
-
elif path == '/blob':
|
153
|
-
size = int(env.get('HTTP_X_SIZE', 1024 * 1024 * 10))
|
154
|
-
headers = [('Content-Type', 'text/plain')]
|
155
|
-
if env.get('HTTP_X_CONTENT_LENGTH') is not None:
|
156
|
-
headers.append(('Content-Length', size))
|
157
|
-
def body():
|
158
|
-
written = 0
|
159
|
-
while written < size:
|
160
|
-
data = 'x' * min(1024 * 8, size - written)
|
161
|
-
yield(data)
|
162
|
-
written += len(data)
|
163
|
-
sleep_time = float(env.get('HTTP_X_SLEEP_WHEN_DONE', 0))
|
164
|
-
time.sleep(sleep_time)
|
165
|
-
if env.get('HTTP_X_EXTRA_DATA') is not None:
|
166
|
-
status = False
|
167
|
-
try:
|
168
|
-
yield str("tail")
|
169
|
-
status = True
|
170
|
-
finally:
|
171
|
-
filename = env.get('HTTP_X_TAIL_STATUS_FILE')
|
172
|
-
if filename is not None:
|
173
|
-
f = open(filename, "w")
|
174
|
-
try:
|
175
|
-
f.write(str(status))
|
176
|
-
finally:
|
177
|
-
f.close()
|
178
|
-
start_response(status, headers)
|
179
|
-
return body()
|
180
|
-
elif path == '/oobw':
|
181
|
-
start_response(status, [('Content-Type', 'text/plain'), ('X-Passenger-Request-OOB-Work', 'true')])
|
182
|
-
return [str(os.getpid())]
|
183
|
-
elif path == '/switch_protocol':
|
184
|
-
if env['HTTP_UPGRADE'] != 'raw' or env['HTTP_CONNECTION'].lower() != 'upgrade':
|
185
|
-
status = '500 Internal Server Error'
|
186
|
-
body = str('Invalid headers')
|
187
|
-
start_response(status, [('Content-Type', 'text/plain'), ('Content-Length', len(body))])
|
188
|
-
return [body]
|
189
|
-
socket = env['passenger.hijack'](True)
|
190
|
-
io = socket.makefile()
|
191
|
-
socket.close()
|
192
|
-
try:
|
193
|
-
io.write(
|
194
|
-
b"HTTP/1.1 101 Switching Protocols\r\n" +
|
195
|
-
b"Upgrade: raw\r\n" +
|
196
|
-
b"Connection: Upgrade\r\n" +
|
197
|
-
b"\r\n")
|
198
|
-
io.flush()
|
199
|
-
line = io.readline()
|
200
|
-
while line != "":
|
201
|
-
io.write("Echo: " + line)
|
202
|
-
io.flush()
|
203
|
-
line = io.readline()
|
204
|
-
finally:
|
205
|
-
io.close()
|
206
|
-
else:
|
207
|
-
status = "404 Not Found"
|
208
|
-
body = "Unknown URI"
|
209
|
-
|
210
|
-
body = str(body)
|
211
|
-
start_response(status, [('Content-Type', 'text/plain'), ('Content-Length', len(body))])
|
212
|
-
return [body]
|
File without changes
|
File without changes
|
@@ -1,14 +0,0 @@
|
|
1
|
-
#include <stdio.h>
|
2
|
-
#include <stdlib.h>
|
3
|
-
#include <unistd.h>
|
4
|
-
#include <string.h>
|
5
|
-
|
6
|
-
int
|
7
|
-
main(int argc, char *argv[]) {
|
8
|
-
long size = atol(argv[1]) * 1024 * 1024;
|
9
|
-
char *memory = (char *) malloc(size);
|
10
|
-
memset(memory, 0, size);
|
11
|
-
sleep(999999999);
|
12
|
-
return 0;
|
13
|
-
}
|
14
|
-
|
@@ -1,258 +0,0 @@
|
|
1
|
-
require 'erb'
|
2
|
-
require 'fileutils'
|
3
|
-
PhusionPassenger.require_passenger_lib 'platform_info/apache'
|
4
|
-
PhusionPassenger.require_passenger_lib 'platform_info/ruby'
|
5
|
-
|
6
|
-
# A class for starting, stopping and restarting Apache, and for manipulating
|
7
|
-
# its configuration file. This is used by the integration tests.
|
8
|
-
#
|
9
|
-
# Before a test begins, the test instructs Apache2Controller to create an Apache
|
10
|
-
# configuration folder, which contains an Apache configuration file and other
|
11
|
-
# configuration resources that Apache needs. The Apache configuration file is
|
12
|
-
# created from a template (see Apache2Controller::STUB_DIR).
|
13
|
-
# The test can define configuration customizations. For example, it can tell
|
14
|
-
# Apache2Controller to add configuration options, virtual host definitions, etc.
|
15
|
-
#
|
16
|
-
# After the configuration folder has been created, Apache2Controller will start
|
17
|
-
# Apache. After Apache has been started, the test will be run. Apache2Controller
|
18
|
-
# will stop Apache after the test is done.
|
19
|
-
#
|
20
|
-
# Apache2Controller ensures that starting, stopping and restarting are not prone
|
21
|
-
# to race conditions. For example, it ensures that when #start returns, Apache
|
22
|
-
# really is listening on its server socket instead of still initializing.
|
23
|
-
#
|
24
|
-
# == Usage
|
25
|
-
#
|
26
|
-
# Suppose that you want to test a hypothetical "AlwaysPrintHelloWorld"
|
27
|
-
# Apache configuration option. Then you can write the following test:
|
28
|
-
#
|
29
|
-
# apache = Apache2Controller.new
|
30
|
-
#
|
31
|
-
# # Add a configuration option to the configuration file.
|
32
|
-
# apache << "AlwaysPrintHelloWorld on"
|
33
|
-
#
|
34
|
-
# # Write configuration file and start Apache with that configuration file.
|
35
|
-
# apache.start
|
36
|
-
#
|
37
|
-
# begin
|
38
|
-
# response_body = http_get("http://localhost:#{apache.port}/some/url")
|
39
|
-
# response_body.should == "hello world!"
|
40
|
-
# ensure
|
41
|
-
# apache.stop
|
42
|
-
# end
|
43
|
-
class Apache2Controller
|
44
|
-
include PhusionPassenger
|
45
|
-
STUB_DIR = File.expand_path(File.dirname(__FILE__) + "/../stub/apache2")
|
46
|
-
|
47
|
-
class VHost
|
48
|
-
attr_accessor :domain
|
49
|
-
attr_accessor :document_root
|
50
|
-
attr_accessor :additional_configs
|
51
|
-
|
52
|
-
def initialize(domain, document_root)
|
53
|
-
@domain = domain
|
54
|
-
@document_root = document_root
|
55
|
-
@additional_configs = []
|
56
|
-
end
|
57
|
-
|
58
|
-
def <<(config)
|
59
|
-
@additional_configs << config
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
attr_accessor :port
|
64
|
-
attr_accessor :vhosts
|
65
|
-
attr_reader :server_root
|
66
|
-
|
67
|
-
def initialize(options = nil)
|
68
|
-
set(options) if options
|
69
|
-
@port = 64506
|
70
|
-
@vhosts = []
|
71
|
-
@extra = []
|
72
|
-
@server_root = File.expand_path('tmp.apache2')
|
73
|
-
@passenger_root = File.expand_path(PhusionPassenger.install_spec)
|
74
|
-
@mod_passenger = PhusionPassenger.apache2_module_path
|
75
|
-
end
|
76
|
-
|
77
|
-
def set(options)
|
78
|
-
options.each_pair do |key, value|
|
79
|
-
instance_variable_set("@#{key}", value)
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
# Create an Apache configuration folder and start Apache on that
|
84
|
-
# configuration folder. This method does not return until Apache
|
85
|
-
# has done initializing.
|
86
|
-
#
|
87
|
-
# If Apache is already started, this this method will stop Apache first.
|
88
|
-
def start
|
89
|
-
if running?
|
90
|
-
stop
|
91
|
-
else
|
92
|
-
File.unlink("#{@server_root}/httpd.pid") rescue nil
|
93
|
-
end
|
94
|
-
|
95
|
-
if File.exist?(@server_root)
|
96
|
-
FileUtils.rm_r(@server_root)
|
97
|
-
end
|
98
|
-
FileUtils.mkdir_p(@server_root)
|
99
|
-
write_config_file
|
100
|
-
FileUtils.cp("#{STUB_DIR}/mime.types", @server_root)
|
101
|
-
|
102
|
-
if !system(PlatformInfo.httpd, "-f", "#{@server_root}/httpd.conf", "-k", "start")
|
103
|
-
raise "Could not start an Apache server."
|
104
|
-
end
|
105
|
-
|
106
|
-
begin
|
107
|
-
# Wait until the PID file has been created.
|
108
|
-
Timeout::timeout(20) do
|
109
|
-
while !File.exist?("#{@server_root}/httpd.pid")
|
110
|
-
sleep(0.1)
|
111
|
-
end
|
112
|
-
end
|
113
|
-
# Wait until Apache is listening on the server port.
|
114
|
-
Timeout::timeout(7) do
|
115
|
-
done = false
|
116
|
-
while !done
|
117
|
-
begin
|
118
|
-
socket = TCPSocket.new('localhost', @port)
|
119
|
-
socket.close
|
120
|
-
done = true
|
121
|
-
rescue Errno::ECONNREFUSED
|
122
|
-
sleep(0.1)
|
123
|
-
end
|
124
|
-
end
|
125
|
-
end
|
126
|
-
rescue Timeout::Error
|
127
|
-
raise "Could not start an Apache server."
|
128
|
-
end
|
129
|
-
Dir["#{@server_root}/*"].each do |filename|
|
130
|
-
if File.file?(filename)
|
131
|
-
File.chmod(0666, filename)
|
132
|
-
end
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
def graceful_restart
|
137
|
-
write_config_file
|
138
|
-
if !system(PlatformInfo.httpd, "-f", "#{@server_root}/httpd.conf", "-k", "graceful")
|
139
|
-
raise "Cannot restart Apache."
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
143
|
-
# Stop Apache and delete its configuration folder. This method waits
|
144
|
-
# until Apache is done with its shutdown procedure.
|
145
|
-
#
|
146
|
-
# This method does nothing if Apache is already stopped.
|
147
|
-
def stop
|
148
|
-
pid_file = "#{@server_root}/httpd.pid"
|
149
|
-
if File.exist?(pid_file)
|
150
|
-
begin
|
151
|
-
pid = File.read(pid_file).strip.to_i
|
152
|
-
Process.kill('SIGTERM', pid)
|
153
|
-
rescue Errno::ESRCH
|
154
|
-
# Looks like a stale pid file.
|
155
|
-
FileUtils.rm_r(@server_root)
|
156
|
-
return
|
157
|
-
end
|
158
|
-
end
|
159
|
-
begin
|
160
|
-
# Wait until the PID file is removed.
|
161
|
-
Timeout::timeout(17) do
|
162
|
-
while File.exist?(pid_file)
|
163
|
-
sleep(0.1)
|
164
|
-
end
|
165
|
-
end
|
166
|
-
# Wait until the server socket is closed.
|
167
|
-
Timeout::timeout(7) do
|
168
|
-
done = false
|
169
|
-
while !done
|
170
|
-
begin
|
171
|
-
socket = TCPSocket.new('localhost', @port)
|
172
|
-
socket.close
|
173
|
-
sleep(0.1)
|
174
|
-
rescue SystemCallError
|
175
|
-
done = true
|
176
|
-
end
|
177
|
-
end
|
178
|
-
end
|
179
|
-
rescue Timeout::Error
|
180
|
-
raise "Unable to stop Apache."
|
181
|
-
end
|
182
|
-
if File.exist?(@server_root)
|
183
|
-
FileUtils.chmod_R(0777, @server_root)
|
184
|
-
FileUtils.rm_r(@server_root)
|
185
|
-
end
|
186
|
-
end
|
187
|
-
|
188
|
-
# Define a virtual host configuration block for the Apache configuration
|
189
|
-
# file. If there was already a vhost definition with the same domain name,
|
190
|
-
# then it will be overwritten.
|
191
|
-
#
|
192
|
-
# The given document root will be created if it doesn't exist.
|
193
|
-
def set_vhost(domain, document_root)
|
194
|
-
FileUtils.mkdir_p(document_root)
|
195
|
-
vhost = VHost.new(domain, document_root)
|
196
|
-
if block_given?
|
197
|
-
yield vhost
|
198
|
-
end
|
199
|
-
vhosts.reject! {|host| host.domain == domain}
|
200
|
-
vhosts << vhost
|
201
|
-
end
|
202
|
-
|
203
|
-
# Checks whether this Apache instance is running.
|
204
|
-
def running?
|
205
|
-
if File.exist?("#{@server_root}/httpd.pid")
|
206
|
-
pid = File.read("#{@server_root}/httpd.pid").strip
|
207
|
-
begin
|
208
|
-
Process.kill(0, pid.to_i)
|
209
|
-
return true
|
210
|
-
rescue Errno::ESRCH
|
211
|
-
return false
|
212
|
-
rescue SystemCallError
|
213
|
-
return true
|
214
|
-
end
|
215
|
-
else
|
216
|
-
return false
|
217
|
-
end
|
218
|
-
end
|
219
|
-
|
220
|
-
# Defines a configuration snippet to be added to the Apache configuration file.
|
221
|
-
def <<(line)
|
222
|
-
@extra << line
|
223
|
-
end
|
224
|
-
|
225
|
-
private
|
226
|
-
def get_binding
|
227
|
-
return binding
|
228
|
-
end
|
229
|
-
|
230
|
-
def write_config_file
|
231
|
-
template = ERB.new(File.read("#{STUB_DIR}/httpd.conf.erb"))
|
232
|
-
File.open("#{@server_root}/httpd.conf", 'w') do |f|
|
233
|
-
f.write(template.result(get_binding))
|
234
|
-
end
|
235
|
-
end
|
236
|
-
|
237
|
-
def modules_dir
|
238
|
-
@@modules_dir ||= `#{PlatformInfo.apxs2} -q LIBEXECDIR`.strip
|
239
|
-
end
|
240
|
-
|
241
|
-
def builtin_modules
|
242
|
-
@@builtin_modules ||= `#{PlatformInfo.httpd} -l`.split("\n").grep(/\.c$/).map do |line|
|
243
|
-
line.strip
|
244
|
-
end
|
245
|
-
end
|
246
|
-
|
247
|
-
def has_builtin_module?(name)
|
248
|
-
return builtin_modules.include?(name)
|
249
|
-
end
|
250
|
-
|
251
|
-
def has_module?(name)
|
252
|
-
return File.exist?("#{modules_dir}/#{name}")
|
253
|
-
end
|
254
|
-
|
255
|
-
def we_are_root?
|
256
|
-
return Process.uid == 0
|
257
|
-
end
|
258
|
-
end
|