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,16 +0,0 @@
|
|
1
|
-
diff --git a/test/oxt/dynamic_thread_group_test.cpp b/test/oxt/dynamic_thread_group_test.cpp
|
2
|
-
index 003b7ef..5a90463 100644
|
3
|
-
--- a/test/oxt/dynamic_thread_group_test.cpp
|
4
|
-
+++ b/test/oxt/dynamic_thread_group_test.cpp
|
5
|
-
@@ -103,9 +103,9 @@ namespace tut {
|
6
|
-
}
|
7
|
-
|
8
|
-
static void create_threads(dynamic_thread_group *group) {
|
9
|
-
- for (int i = 1000; i >= 0; i--) {
|
10
|
-
+ for (int i = 100; i >= 0; i--) {
|
11
|
-
boost::function<void ()> f(boost::bind(do_nothing, i * 1000));
|
12
|
-
- group->create_thread(f, "", 256 * 1024);
|
13
|
-
+ group->create_thread(f, "", 8 * 1024);
|
14
|
-
}
|
15
|
-
}
|
16
|
-
|
@@ -1,44 +0,0 @@
|
|
1
|
-
diff -up ./test/config.json.example.lindefault ./test/config.json.example
|
2
|
-
--- ./test/config.json.example.lindefault 2013-05-30 16:04:41.206533618 +0200
|
3
|
-
+++ ./test/config.json.example 2013-05-30 16:04:34.070449358 +0200
|
4
|
-
@@ -10,24 +10,24 @@
|
5
|
-
// otherwise the tests will fail.
|
6
|
-
|
7
|
-
//// Good values for OS X:
|
8
|
-
- "normal_user_1": "_www",
|
9
|
-
- "normal_user_2": "daemon",
|
10
|
-
- // Must not be "nobody".
|
11
|
-
- "default_user": "_sandbox",
|
12
|
-
- // Must not be normal_user_1's primary group.
|
13
|
-
- "normal_group_1": "daemon",
|
14
|
-
- // Must not be normal_user_2's primary group.
|
15
|
-
- "normal_group_2": "_sandbox",
|
16
|
-
- // Must not be default_user's primary group. Must not be "nobody".
|
17
|
-
- "default_group": "_www",
|
18
|
-
-
|
19
|
-
- ///// Good values for Linux and FreeBSD. Same restrictions apply.
|
20
|
-
- //"normal_user_1": "games",
|
21
|
-
+ //"normal_user_1": "_www",
|
22
|
-
//"normal_user_2": "daemon",
|
23
|
-
- //"default_user": "man",
|
24
|
-
+ //// Must not be "nobody".
|
25
|
-
+ //"default_user": "_sandbox",
|
26
|
-
+ //// Must not be normal_user_1's primary group.
|
27
|
-
//"normal_group_1": "daemon",
|
28
|
-
- //"normal_group_2": "man",
|
29
|
-
- //"default_group": "games",
|
30
|
-
+ //// Must not be normal_user_2's primary group.
|
31
|
-
+ //"normal_group_2": "_sandbox",
|
32
|
-
+ //// Must not be default_user's primary group. Must not be "nobody".
|
33
|
-
+ //"default_group": "_www",
|
34
|
-
+
|
35
|
-
+ ///// Good values for Linux and FreeBSD. Same restrictions apply.
|
36
|
-
+ "normal_user_1": "games",
|
37
|
-
+ "normal_user_2": "daemon",
|
38
|
-
+ "default_user": "man",
|
39
|
-
+ "normal_group_1": "daemon",
|
40
|
-
+ "normal_group_2": "man",
|
41
|
-
+ "default_group": "games",
|
42
|
-
|
43
|
-
// A nonexistant username, group name, user ID and group ID.
|
44
|
-
"nonexistant_user": "xxxxxxxxxxxxxxxxxxx",
|
@@ -1,21 +0,0 @@
|
|
1
|
-
diff -urp passenger-release-4.0.18.orig/ext/boost/cstdint.hpp passenger-release-4.0.18/ext/boost/cstdint.hpp
|
2
|
-
--- passenger-release-4.0.18.orig/ext/boost/cstdint.hpp 2013-09-17 13:47:54.000000000 -0500
|
3
|
-
+++ passenger-release-4.0.18/ext/boost/cstdint.hpp 2013-09-23 16:34:02.074450639 -0500
|
4
|
-
@@ -41,7 +41,15 @@
|
5
|
-
// so we disable use of stdint.h when GLIBC does not define __GLIBC_HAVE_LONG_LONG.
|
6
|
-
// See https://svn.boost.org/trac/boost/ticket/3548 and http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990
|
7
|
-
//
|
8
|
-
-#if defined(BOOST_HAS_STDINT_H) && (!defined(__GLIBC__) || defined(__GLIBC_HAVE_LONG_LONG))
|
9
|
-
+// This define has been dropped altogether in GLIBC 2.17. As of then,
|
10
|
-
+// support for long long is part of baseline requirements, and
|
11
|
-
+// [u]int64_t is always defined. See here:
|
12
|
-
+// http://sourceware.org/ml/libc-alpha/2013-01/msg00440.html
|
13
|
-
+//
|
14
|
-
+#if defined(BOOST_HAS_STDINT_H) \
|
15
|
-
+ && (!defined(__GLIBC__) \
|
16
|
-
+ || defined(__GLIBC_HAVE_LONG_LONG) \
|
17
|
-
+ || (defined __GLIBC_PREREQ && __GLIBC_PREREQ(2,17)))
|
18
|
-
|
19
|
-
// The following #include is an implementation artifact; not part of interface.
|
20
|
-
# ifdef __hpux
|
21
|
-
Only in passenger-release-4.0.18/ext/boost: cstdint.hpp.glibc-long
|
data/packaging/rpm/repo_update
DELETED
@@ -1,114 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
|
4
|
-
SELFROOT=`dirname "$0"`
|
5
|
-
SELFROOT=`cd "$SELFROOT" && pwd`
|
6
|
-
TEMPDIR=
|
7
|
-
|
8
|
-
PACKAGE_DIR=
|
9
|
-
SIGNING_KEY=
|
10
|
-
PASSPHRASE_FILE=
|
11
|
-
|
12
|
-
function usage()
|
13
|
-
{
|
14
|
-
echo "Usage: ./repo_update [OPTIONS]"
|
15
|
-
echo "Sign RPMs and import them into a YUM repository."
|
16
|
-
echo
|
17
|
-
echo "Required options:"
|
18
|
-
echo " -p PATH Path to a project"
|
19
|
-
echo
|
20
|
-
echo " -r PATH Directory to RPMs"
|
21
|
-
echo " -P PATH Directory to YUM repository"
|
22
|
-
echo
|
23
|
-
echo " -s KEY Signing key to use"
|
24
|
-
echo " -x PATH File containing signing key passphrase"
|
25
|
-
}
|
26
|
-
|
27
|
-
function parse_options()
|
28
|
-
{
|
29
|
-
local OPTIND=1
|
30
|
-
local opt
|
31
|
-
while getopts "p:r:P:s:x:h" opt; do
|
32
|
-
case "$opt" in
|
33
|
-
p)
|
34
|
-
PACKAGE_DIR="$OPTARG/build"
|
35
|
-
REPO_DIR="$OPTARG/repo"
|
36
|
-
;;
|
37
|
-
r)
|
38
|
-
PACKAGE_DIR="$OPTARG"
|
39
|
-
;;
|
40
|
-
P)
|
41
|
-
REPO_DIR="$OPTARG"
|
42
|
-
;;
|
43
|
-
s)
|
44
|
-
SIGNING_KEY="$OPTARG"
|
45
|
-
;;
|
46
|
-
x)
|
47
|
-
PASSPHRASE_FILE="$OPTARG"
|
48
|
-
;;
|
49
|
-
h)
|
50
|
-
usage
|
51
|
-
exit
|
52
|
-
;;
|
53
|
-
*)
|
54
|
-
return 1
|
55
|
-
;;
|
56
|
-
esac
|
57
|
-
done
|
58
|
-
|
59
|
-
if [[ "$PACKAGE_DIR" = "" ]]; then
|
60
|
-
echo "Please specify a project using -p, or an RPM package directory using -r."
|
61
|
-
exit 1
|
62
|
-
fi
|
63
|
-
if [[ "$REPO_DIR" = "" ]]; then
|
64
|
-
echo "Please specify a project using -p, or a YUM repo directory using -P."
|
65
|
-
exit 1
|
66
|
-
fi
|
67
|
-
if [[ "$SIGNING_KEY" = "" ]]; then
|
68
|
-
echo "Please specify a signing key using -s."
|
69
|
-
exit 1
|
70
|
-
fi
|
71
|
-
if [[ "$PASSPHRASE_FILE" = "" ]]; then
|
72
|
-
echo "Please specify a passphrase file using -p."
|
73
|
-
exit 1
|
74
|
-
fi
|
75
|
-
}
|
76
|
-
|
77
|
-
function cleanup()
|
78
|
-
{
|
79
|
-
local pids=`jobs -p`
|
80
|
-
set +e
|
81
|
-
if [[ "$pids" != "" ]]; then
|
82
|
-
kill $pids
|
83
|
-
fi
|
84
|
-
if [[ "$TEMPDIR" != "" ]]; then
|
85
|
-
rm -rf "$TEMPDIR"
|
86
|
-
fi
|
87
|
-
}
|
88
|
-
|
89
|
-
trap cleanup EXIT
|
90
|
-
parse_options "$@"
|
91
|
-
|
92
|
-
if ! gpg --list-keys "$SIGNING_KEY" >/dev/null 2>/dev/null; then
|
93
|
-
echo "ERROR: signing key $SIGNING_KEY not found."
|
94
|
-
exit 1
|
95
|
-
fi
|
96
|
-
|
97
|
-
APP_UID=`id -u`
|
98
|
-
APP_GID=`id -g`
|
99
|
-
TEMPDIR=`mktemp -d /tmp/passenger-rpm.XXXXXXXX`
|
100
|
-
gpg --armor --export-secret-keys "$SIGNING_KEY" > "$TEMPDIR/signing_key"
|
101
|
-
cat "$PASSPHRASE_FILE" > "$TEMPDIR/signing_passphrase"
|
102
|
-
chmod 600 "$TEMPDIR"/*
|
103
|
-
|
104
|
-
docker run --rm \
|
105
|
-
-v "$SELFROOT:/system:ro" \
|
106
|
-
-v "$TEMPDIR:/params:ro" \
|
107
|
-
-v "$PACKAGE_DIR:/packages" \
|
108
|
-
-v "$REPO_DIR:/repo" \
|
109
|
-
-e "APP_UID=$APP_UID" \
|
110
|
-
-e "APP_GID=$APP_GID" \
|
111
|
-
-e "SIGNING_KEY=$SIGNING_KEY" \
|
112
|
-
phusion/passenger_rpm_automation \
|
113
|
-
/system/internal/my_init --skip-runit --skip-startup-files --quiet -- \
|
114
|
-
/system/internal/repo_update
|
data/packaging/rpm/setup-system
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
|
4
|
-
function create_user()
|
5
|
-
{
|
6
|
-
local name="$1"
|
7
|
-
local full_name="$2"
|
8
|
-
local id="$3"
|
9
|
-
create_group $name $id
|
10
|
-
if ! grep -q "^$name:" /etc/passwd; then
|
11
|
-
sudo adduser --uid $id --gid $id --disabled-password --gecos "$full_name" $name
|
12
|
-
fi
|
13
|
-
sudo usermod -L $name
|
14
|
-
}
|
15
|
-
|
16
|
-
function create_group()
|
17
|
-
{
|
18
|
-
local name="$1"
|
19
|
-
local id="$2"
|
20
|
-
if ! grep -q "^$name:" /etc/group >/dev/null; then
|
21
|
-
sudo addgroup --gid $id $name
|
22
|
-
fi
|
23
|
-
}
|
24
|
-
|
25
|
-
set -x
|
26
|
-
|
27
|
-
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
|
28
|
-
echo deb http://pkg.jenkins-ci.org/debian binary/ | sudo tee /etc/apt/sources.list.d/jenkins.list
|
29
|
-
sudo apt-get update
|
30
|
-
sudo apt-get install -y jenkins acl git ca-certificates ruby
|
31
|
-
sudo usermod -a -G docker jenkins
|
32
|
-
if [[ -e /vagrant ]]; then
|
33
|
-
sudo service jenkins stop
|
34
|
-
sudo update-rc.d -f jenkins disable
|
35
|
-
if [[ ! -e /srv/passenger_rpm_automation ]]; then
|
36
|
-
sudo ln -s /vagrant /srv/passenger_rpm_automation
|
37
|
-
fi
|
38
|
-
fi
|
39
|
-
|
40
|
-
create_user psg_rpm_automation "Passenger RPM automation" 2466
|
41
|
-
|
42
|
-
create_group passenger_ci 2450
|
43
|
-
sudo usermod -a -G passenger_ci jenkins
|
44
|
-
sudo usermod -a -G passenger_ci,docker psg_rpm_automation
|
45
|
-
sudo mkdir -p /var/cache/passenger_ci
|
46
|
-
sudo touch /var/cache/passenger_ci/lock
|
47
|
-
sudo chown -R root:passenger_ci /var/cache/passenger_ci
|
48
|
-
sudo chmod 770 /var/cache/passenger_ci
|
49
|
-
sudo chmod 660 /var/cache/passenger_ci/lock
|
50
|
-
|
51
|
-
sudo mkdir -p /etc/passenger_rpm_automation
|
52
|
-
sudo touch /etc/passenger_rpm_automation/signing_passphrase
|
53
|
-
sudo chown jenkins: /etc/passenger_rpm_automation/signing_passphrase
|
54
|
-
sudo chmod 600 /etc/passenger_rpm_automation/signing_passphrase
|
55
|
-
if [[ ! -e signing_passphrase ]]; then
|
56
|
-
sudo ln -s /etc/passenger_rpm_automation/signing_passphrase signing_passphrase
|
57
|
-
fi
|
58
|
-
|
59
|
-
if [[ ! -e /tools ]]; then
|
60
|
-
sudo git clone https://github.com/phusion/phusion-server-tools.git /tools
|
61
|
-
fi
|
data/packaging/rpm/shell
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
SELFDIR=`dirname "$0"`
|
4
|
-
SELFDIR=`cd "$SELFDIR" && pwd`
|
5
|
-
exec docker run --rm --privileged -t -i \
|
6
|
-
-v "$SELFDIR:/system:ro" \
|
7
|
-
"$@" \
|
8
|
-
phusion/passenger_rpm_automation \
|
9
|
-
/system/internal/my_init --skip-runit --skip-startup-files --quiet -- \
|
10
|
-
/bin/bash
|
data/test/.rspec
DELETED
data/test/config.json.example
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
{
|
2
|
-
//// This file contains system-specific configuration options that the test suite needs.
|
3
|
-
//// Please customize it for your system.
|
4
|
-
|
5
|
-
// These are the usernames and group names of normal, non-administrator
|
6
|
-
// users and groups. Preferably, these are user and group accounts that
|
7
|
-
// are normally not used.
|
8
|
-
//
|
9
|
-
// These users and groups MUST be able to access this 'test' directory,
|
10
|
-
// otherwise the tests will fail.
|
11
|
-
|
12
|
-
//// Good values for OS X:
|
13
|
-
"normal_user_1": "_www",
|
14
|
-
"normal_user_2": "daemon",
|
15
|
-
// Must not be "nobody".
|
16
|
-
"default_user": "_sandbox",
|
17
|
-
// Must not be normal_user_1's primary group.
|
18
|
-
"normal_group_1": "daemon",
|
19
|
-
// Must not be normal_user_2's primary group.
|
20
|
-
"normal_group_2": "_sandbox",
|
21
|
-
// Must not be default_user's primary group. Must not be "nobody".
|
22
|
-
"default_group": "_www",
|
23
|
-
|
24
|
-
///// Good values for Linux and FreeBSD. Same restrictions apply.
|
25
|
-
//"normal_user_1": "games",
|
26
|
-
//"normal_user_2": "daemon",
|
27
|
-
//"default_user": "man",
|
28
|
-
//"normal_group_1": "daemon",
|
29
|
-
//"normal_group_2": "man",
|
30
|
-
//"default_group": "games",
|
31
|
-
|
32
|
-
// A nonexistant username, group name, user ID and group ID.
|
33
|
-
"nonexistant_user": "xxxxxxxxxxxxxxxxxxx",
|
34
|
-
"nonexistant_group": "xxxxxxxxxxxxxxxxxxx",
|
35
|
-
"nonexistant_uid": 9999,
|
36
|
-
"nonexistant_gid": 9999,
|
37
|
-
|
38
|
-
// If you want to run the Nginx integration tests, then set the following
|
39
|
-
// config option to the full path of the Nginx binary. This Nginx binary *must*
|
40
|
-
// be compiled with Phusion Passenger support!
|
41
|
-
"nginx": "/usr/local/sbin/nginx"
|
42
|
-
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"normal_user_1": "games",
|
3
|
-
"normal_user_2": "daemon",
|
4
|
-
"default_user": "gopher",
|
5
|
-
"normal_group_1": "daemon",
|
6
|
-
"normal_group_2": "gopher",
|
7
|
-
"default_group": "games",
|
8
|
-
|
9
|
-
"nonexistant_user": "xxxxxxxxxxxxxxxxxxx",
|
10
|
-
"nonexistant_group": "xxxxxxxxxxxxxxxxxxx",
|
11
|
-
"nonexistant_uid": 9999,
|
12
|
-
"nonexistant_gid": 9999,
|
13
|
-
|
14
|
-
"nginx": "/usr/sbin/nginx"
|
15
|
-
}
|
data/test/config.json.travis
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"normal_user_1": "games",
|
3
|
-
"normal_user_2": "daemon",
|
4
|
-
"default_user": "man",
|
5
|
-
"normal_group_1": "daemon",
|
6
|
-
"normal_group_2": "man",
|
7
|
-
"default_group": "games",
|
8
|
-
|
9
|
-
"nonexistant_user": "xxxxxxxxxxxxxxxxxxx",
|
10
|
-
"nonexistant_group": "xxxxxxxxxxxxxxxxxxx",
|
11
|
-
"nonexistant_uid": 9999,
|
12
|
-
"nonexistant_gid": 9999,
|
13
|
-
|
14
|
-
"nginx": "/tmp/nginx/sbin/nginx"
|
15
|
-
}
|
data/test/config.json.vagrant
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
{
|
2
|
-
//// This file contains system-specific configuration options that the test suite needs.
|
3
|
-
//// Please customize it for your system.
|
4
|
-
|
5
|
-
// These are the usernames and group names of normal, non-administrator
|
6
|
-
// users and groups. Preferably, these are user and group accounts that
|
7
|
-
// are normally not used.
|
8
|
-
//
|
9
|
-
// These users and groups MUST be able to access this 'test' directory,
|
10
|
-
// otherwise the tests will fail.
|
11
|
-
|
12
|
-
///// Good values for Linux and FreeBSD. Same restrictions apply.
|
13
|
-
"normal_user_1": "games",
|
14
|
-
"normal_user_2": "daemon",
|
15
|
-
"default_user": "man",
|
16
|
-
"normal_group_1": "daemon",
|
17
|
-
"normal_group_2": "man",
|
18
|
-
"default_group": "games",
|
19
|
-
|
20
|
-
// A nonexistant username, group name, user ID and group ID.
|
21
|
-
"nonexistant_user": "xxxxxxxxxxxxxxxxxxx",
|
22
|
-
"nonexistant_group": "xxxxxxxxxxxxxxxxxxx",
|
23
|
-
"nonexistant_uid": 9999,
|
24
|
-
"nonexistant_gid": 9999,
|
25
|
-
|
26
|
-
// If you want to run the Nginx integration tests, then set the following
|
27
|
-
// config option to the full path of the Nginx binary. This Nginx binary *must*
|
28
|
-
// be compiled with Phusion Passenger support!
|
29
|
-
"nginx": "/home/vagrant/nginx/objs/nginx"
|
30
|
-
}
|
@@ -1,124 +0,0 @@
|
|
1
|
-
#include <TestSupport.h>
|
2
|
-
#include <ApplicationPool2/DirectSpawner.h>
|
3
|
-
#include <Utils/json.h>
|
4
|
-
#include <fcntl.h>
|
5
|
-
|
6
|
-
using namespace Passenger;
|
7
|
-
using namespace Passenger::ApplicationPool2;
|
8
|
-
|
9
|
-
namespace tut {
|
10
|
-
struct ApplicationPool2_DirectSpawnerTest {
|
11
|
-
SpawnObject object;
|
12
|
-
PipeWatcher::DataCallback gatherOutput;
|
13
|
-
string gatheredOutput;
|
14
|
-
boost::mutex gatheredOutputSyncher;
|
15
|
-
|
16
|
-
ApplicationPool2_DirectSpawnerTest() {
|
17
|
-
PipeWatcher::onData = PipeWatcher::DataCallback();
|
18
|
-
gatherOutput = boost::bind(&ApplicationPool2_DirectSpawnerTest::_gatherOutput, this, _1, _2);
|
19
|
-
setLogLevel(LVL_ERROR); // TODO: change to LVL_WARN
|
20
|
-
setPrintAppOutputAsDebuggingMessages(true);
|
21
|
-
}
|
22
|
-
|
23
|
-
~ApplicationPool2_DirectSpawnerTest() {
|
24
|
-
setLogLevel(DEFAULT_LOG_LEVEL);
|
25
|
-
setPrintAppOutputAsDebuggingMessages(false);
|
26
|
-
unlink("stub/wsgi/passenger_wsgi.pyc");
|
27
|
-
PipeWatcher::onData = PipeWatcher::DataCallback();
|
28
|
-
}
|
29
|
-
|
30
|
-
boost::shared_ptr<DirectSpawner> createSpawner(const Options &options) {
|
31
|
-
return boost::make_shared<DirectSpawner>(createSpawnerConfig());
|
32
|
-
}
|
33
|
-
|
34
|
-
SpawnerConfigPtr createSpawnerConfig() {
|
35
|
-
SpawnerConfigPtr config = boost::make_shared<SpawnerConfig>();
|
36
|
-
config->resourceLocator = resourceLocator;
|
37
|
-
config->finalize();
|
38
|
-
return config;
|
39
|
-
}
|
40
|
-
|
41
|
-
Options createOptions() {
|
42
|
-
Options options;
|
43
|
-
options.spawnMethod = "direct";
|
44
|
-
options.loadShellEnvvars = false;
|
45
|
-
return options;
|
46
|
-
}
|
47
|
-
|
48
|
-
void _gatherOutput(const char *data, unsigned int size) {
|
49
|
-
boost::lock_guard<boost::mutex> l(gatheredOutputSyncher);
|
50
|
-
gatheredOutput.append(data, size);
|
51
|
-
}
|
52
|
-
};
|
53
|
-
|
54
|
-
DEFINE_TEST_GROUP_WITH_LIMIT(ApplicationPool2_DirectSpawnerTest, 90);
|
55
|
-
|
56
|
-
#include "SpawnerTestCases.cpp"
|
57
|
-
|
58
|
-
TEST_METHOD(80) {
|
59
|
-
// If the application didn't start within the timeout
|
60
|
-
// then whatever was written to stderr is used as the
|
61
|
-
// SpawnException error page.
|
62
|
-
Options options = createOptions();
|
63
|
-
options.appRoot = "stub";
|
64
|
-
options.startCommand = "perl\t" "-e\t" "print STDERR \"hello world\\n\"; sleep(60)";
|
65
|
-
options.startupFile = ".";
|
66
|
-
options.startTimeout = 300;
|
67
|
-
|
68
|
-
DirectSpawner spawner(createSpawnerConfig());
|
69
|
-
setLogLevel(LVL_CRIT);
|
70
|
-
|
71
|
-
try {
|
72
|
-
object = spawner.spawn(options);
|
73
|
-
object.process->requiresShutdown = false;
|
74
|
-
fail("Timeout expected");
|
75
|
-
} catch (const SpawnException &e) {
|
76
|
-
ensure_equals(e.getErrorKind(),
|
77
|
-
SpawnException::APP_STARTUP_TIMEOUT);
|
78
|
-
ensure(e.getErrorPage().find("hello world\n") != string::npos);
|
79
|
-
}
|
80
|
-
}
|
81
|
-
|
82
|
-
TEST_METHOD(81) {
|
83
|
-
// If the application crashed during startup without returning
|
84
|
-
// a proper error response, then its stderr output is used
|
85
|
-
// as error response instead.
|
86
|
-
Options options = createOptions();
|
87
|
-
options.appRoot = "stub";
|
88
|
-
options.startCommand = "perl\t" "-e\t" "print STDERR \"hello world\\n\"";
|
89
|
-
options.startupFile = ".";
|
90
|
-
|
91
|
-
DirectSpawner spawner(createSpawnerConfig());
|
92
|
-
setLogLevel(LVL_CRIT);
|
93
|
-
|
94
|
-
try {
|
95
|
-
object = spawner.spawn(options);
|
96
|
-
object.process->requiresShutdown = false;
|
97
|
-
fail("SpawnException expected");
|
98
|
-
} catch (const SpawnException &e) {
|
99
|
-
ensure_equals(e.getErrorKind(),
|
100
|
-
SpawnException::APP_STARTUP_ERROR);
|
101
|
-
ensure(e.getErrorPage().find("hello world\n") != string::npos);
|
102
|
-
}
|
103
|
-
}
|
104
|
-
|
105
|
-
TEST_METHOD(82) {
|
106
|
-
SHOW_EXCEPTION_BACKTRACE(
|
107
|
-
// Test that everything works correctly if the app re-execs() itself.
|
108
|
-
// https://code.google.com/p/phusion-passenger/issues/detail?id=842#c19
|
109
|
-
Options options = createOptions();
|
110
|
-
options.appRoot = "stub/rack";
|
111
|
-
options.startCommand = "ruby\t" "start.rb\t" "--execself";
|
112
|
-
options.startupFile = "start.rb";
|
113
|
-
SpawnerPtr spawner = createSpawner(options);
|
114
|
-
object = spawner->spawn(options);
|
115
|
-
object.process->requiresShutdown = false;
|
116
|
-
ensure_equals(object.process->sockets.size(), 1u);
|
117
|
-
|
118
|
-
Connection conn = object.process->sockets.front().checkoutConnection();
|
119
|
-
ScopeGuard guard(boost::bind(checkin, object.process, &conn));
|
120
|
-
writeExact(conn.fd, "ping\n");
|
121
|
-
ensure_equals(readAll(conn.fd), "pong\n");
|
122
|
-
);
|
123
|
-
}
|
124
|
-
}
|