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,338 +0,0 @@
|
|
1
|
-
var Helper = require('./spec_helper').Helper;
|
2
|
-
var FakeStream = require('./spec_helper').FakeStream;
|
3
|
-
var sinon = require('sinon');
|
4
|
-
var should = require('should');
|
5
|
-
var assert = require('assert');
|
6
|
-
var LineReader = require('phusion_passenger/line_reader').LineReader;
|
7
|
-
|
8
|
-
describe('LineReader', function() {
|
9
|
-
this.timeout(1000);
|
10
|
-
|
11
|
-
beforeEach(function() {
|
12
|
-
this.stream = new FakeStream();
|
13
|
-
this.reader = new LineReader(this.stream);
|
14
|
-
});
|
15
|
-
|
16
|
-
it('does nothing when the stream is idle', function(done) {
|
17
|
-
var finished;
|
18
|
-
this.reader.readLine(function(line) {
|
19
|
-
if (!finished) {
|
20
|
-
finished = true;
|
21
|
-
assert.fail();
|
22
|
-
}
|
23
|
-
});
|
24
|
-
setTimeout(function() {
|
25
|
-
if (!finished) {
|
26
|
-
finished = true;
|
27
|
-
done();
|
28
|
-
}
|
29
|
-
}, 50);
|
30
|
-
});
|
31
|
-
|
32
|
-
describe('when one partial line has been received', function() {
|
33
|
-
beforeEach(function() {
|
34
|
-
this.stream.emit('data', 'hello');
|
35
|
-
});
|
36
|
-
|
37
|
-
it('buffers the data', function() {
|
38
|
-
this.reader.buffer.should.equal('hello');
|
39
|
-
});
|
40
|
-
|
41
|
-
it('resumes the stream', function() {
|
42
|
-
this.stream.paused.should.be.false;
|
43
|
-
this.reader.paused.should.be.false;
|
44
|
-
});
|
45
|
-
|
46
|
-
describe('when the rest of the line is received later', function() {
|
47
|
-
beforeEach(function() {
|
48
|
-
this.stream.emit('data', " world\n");
|
49
|
-
});
|
50
|
-
|
51
|
-
it('memorizes a line', function() {
|
52
|
-
this.reader.lines.should.eql(["hello world\n"]);
|
53
|
-
});
|
54
|
-
|
55
|
-
it('empties the buffer', function() {
|
56
|
-
this.reader.buffer.should.eql('');
|
57
|
-
});
|
58
|
-
|
59
|
-
it('pauses the stream', function() {
|
60
|
-
this.stream.paused.should.be.true;
|
61
|
-
this.reader.paused.should.be.true;
|
62
|
-
});
|
63
|
-
});
|
64
|
-
|
65
|
-
describe('when the rest of the line, plus a partial line, is received later', function() {
|
66
|
-
beforeEach(function() {
|
67
|
-
this.stream.emit('data', " world\nhey");
|
68
|
-
});
|
69
|
-
|
70
|
-
it('memorizes a line', function() {
|
71
|
-
this.reader.lines.should.eql(["hello world\n"]);
|
72
|
-
});
|
73
|
-
|
74
|
-
it('buffers the partial line', function() {
|
75
|
-
this.reader.buffer.should.eql('hey');
|
76
|
-
});
|
77
|
-
|
78
|
-
it('pauses the stream', function() {
|
79
|
-
this.stream.paused.should.be.true;
|
80
|
-
this.reader.paused.should.be.true;
|
81
|
-
});
|
82
|
-
});
|
83
|
-
|
84
|
-
describe('when the rest of the line, plus a full line, is received later', function() {
|
85
|
-
beforeEach(function() {
|
86
|
-
this.stream.emit('data', " world\nhey\n");
|
87
|
-
});
|
88
|
-
|
89
|
-
it('memorizes two lines', function() {
|
90
|
-
this.reader.lines.should.eql(["hello world\n", "hey\n"]);
|
91
|
-
});
|
92
|
-
|
93
|
-
it('empties the buffer', function() {
|
94
|
-
this.reader.buffer.should.eql('');
|
95
|
-
});
|
96
|
-
|
97
|
-
it('pauses the stream', function() {
|
98
|
-
this.stream.paused.should.be.true;
|
99
|
-
this.reader.paused.should.be.true;
|
100
|
-
});
|
101
|
-
});
|
102
|
-
});
|
103
|
-
|
104
|
-
describe('when one full line has been received', function() {
|
105
|
-
beforeEach(function() {
|
106
|
-
this.stream.emit('data', "hello world\n");
|
107
|
-
});
|
108
|
-
|
109
|
-
it('memorizes the line', function() {
|
110
|
-
this.reader.lines.should.eql(["hello world\n"]);
|
111
|
-
});
|
112
|
-
|
113
|
-
it('empties the buffer', function() {
|
114
|
-
this.reader.buffer.should.eql('');
|
115
|
-
});
|
116
|
-
|
117
|
-
it('pauses the stream', function() {
|
118
|
-
this.stream.paused.should.be.true;
|
119
|
-
this.reader.paused.should.be.true;
|
120
|
-
});
|
121
|
-
});
|
122
|
-
|
123
|
-
describe('when multiple full lines have been received', function() {
|
124
|
-
beforeEach(function() {
|
125
|
-
this.stream.emit('data', "hello world\nhey\n");
|
126
|
-
});
|
127
|
-
|
128
|
-
it('memorizes all lines', function() {
|
129
|
-
this.reader.lines.should.eql(["hello world\n", "hey\n"]);
|
130
|
-
});
|
131
|
-
|
132
|
-
it('empties the buffer', function() {
|
133
|
-
this.reader.buffer.should.eql('');
|
134
|
-
});
|
135
|
-
|
136
|
-
it('pauses the stream', function() {
|
137
|
-
this.stream.paused.should.be.true;
|
138
|
-
this.reader.paused.should.be.true;
|
139
|
-
});
|
140
|
-
});
|
141
|
-
|
142
|
-
describe('when multiple full lines and one partial line have been received', function() {
|
143
|
-
beforeEach(function() {
|
144
|
-
this.stream.emit('data', "hello world\nhey\nfoo");
|
145
|
-
});
|
146
|
-
|
147
|
-
it('memorizes all full lines', function() {
|
148
|
-
this.reader.lines.should.eql(["hello world\n", "hey\n"]);
|
149
|
-
});
|
150
|
-
|
151
|
-
it('buffers the partial line', function() {
|
152
|
-
this.reader.buffer.should.eql('foo');
|
153
|
-
});
|
154
|
-
|
155
|
-
it('pauses the stream', function() {
|
156
|
-
this.stream.paused.should.be.true;
|
157
|
-
this.reader.paused.should.be.true;
|
158
|
-
});
|
159
|
-
});
|
160
|
-
|
161
|
-
describe('on EOF', function() {
|
162
|
-
describe('if the buffer is non-empty', function() {
|
163
|
-
beforeEach(function() {
|
164
|
-
this.reader.buffer = 'hello';
|
165
|
-
this.stream.emit('end');
|
166
|
-
});
|
167
|
-
|
168
|
-
it('memorizes the buffer contents as a line', function() {
|
169
|
-
this.reader.lines.should.eql(["hello"]);
|
170
|
-
});
|
171
|
-
});
|
172
|
-
|
173
|
-
it('marks the reader as having reached EOF', function() {
|
174
|
-
this.stream.emit('end');
|
175
|
-
this.reader.endReached().should.be.true;
|
176
|
-
});
|
177
|
-
|
178
|
-
it('pauses the stream', function() {
|
179
|
-
this.stream.emit('end');
|
180
|
-
this.stream.paused.should.be.true;
|
181
|
-
this.reader.paused.should.be.true;
|
182
|
-
})
|
183
|
-
});
|
184
|
-
|
185
|
-
describe('.readLine', function() {
|
186
|
-
describe('if there is at least one line in memory', function() {
|
187
|
-
beforeEach(function() {
|
188
|
-
this.reader.lines = ["hello\n", "world\n"];
|
189
|
-
});
|
190
|
-
|
191
|
-
it('pops the first line in memory', function(done) {
|
192
|
-
this.reader.readLine(function(line) {
|
193
|
-
line.should.eql("hello\n");
|
194
|
-
done();
|
195
|
-
});
|
196
|
-
});
|
197
|
-
|
198
|
-
describe('if the line memory is non-empty after reading', function() {
|
199
|
-
it('pauses the stream', function(done) {
|
200
|
-
var self = this;
|
201
|
-
this.reader.readLine(function(line) {
|
202
|
-
line.should.eql("hello\n");
|
203
|
-
process.nextTick(function() {
|
204
|
-
self.stream.paused.should.be.true;
|
205
|
-
self.reader.paused.should.be.true;
|
206
|
-
done();
|
207
|
-
});
|
208
|
-
});
|
209
|
-
});
|
210
|
-
});
|
211
|
-
|
212
|
-
describe('if the line memory is empty after reading', function() {
|
213
|
-
beforeEach(function() {
|
214
|
-
this.reader.lines = ["hello\n"];
|
215
|
-
});
|
216
|
-
|
217
|
-
it('resumes the stream', function(done) {
|
218
|
-
var self = this;
|
219
|
-
this.reader.readLine(function(line) {
|
220
|
-
line.should.eql("hello\n");
|
221
|
-
process.nextTick(function() {
|
222
|
-
self.stream.paused.should.be.false;
|
223
|
-
self.reader.paused.should.be.false;
|
224
|
-
done();
|
225
|
-
});
|
226
|
-
});
|
227
|
-
});
|
228
|
-
});
|
229
|
-
|
230
|
-
describe('if the stream had already reached EOF', function() {
|
231
|
-
beforeEach(function() {
|
232
|
-
this.reader.eof = true;
|
233
|
-
this.reader.lines = ["hello\n"];
|
234
|
-
});
|
235
|
-
|
236
|
-
it('yields the line upon first call', function(done) {
|
237
|
-
this.reader.readLine(function(line) {
|
238
|
-
line.should.eql("hello\n");
|
239
|
-
done();
|
240
|
-
});
|
241
|
-
});
|
242
|
-
|
243
|
-
it('yields undefined once the line memory has become empty', function(done) {
|
244
|
-
var self = this;
|
245
|
-
this.reader.readLine(function(line) {
|
246
|
-
line.should.eql("hello\n");
|
247
|
-
self.reader.readLine(function(line2) {
|
248
|
-
should(line2).equal(undefined);
|
249
|
-
self.reader.readLine(function(line3) {
|
250
|
-
should(line3).equal(undefined);
|
251
|
-
done();
|
252
|
-
});
|
253
|
-
});
|
254
|
-
});
|
255
|
-
});
|
256
|
-
});
|
257
|
-
|
258
|
-
describe('when calling readLine again in the callback', function() {
|
259
|
-
beforeEach(function() {
|
260
|
-
this.reader.lines = ["hello\n"];
|
261
|
-
});
|
262
|
-
|
263
|
-
it('waits until another line has been memorized', function(done) {
|
264
|
-
var self = this;
|
265
|
-
var finished;
|
266
|
-
this.reader.readLine(function(line) {
|
267
|
-
line.should.eql("hello\n");
|
268
|
-
self.reader.readLine(function(line2) {
|
269
|
-
if (!finished) {
|
270
|
-
finished = true;
|
271
|
-
line2.should.eql("world\n");
|
272
|
-
done();
|
273
|
-
}
|
274
|
-
});
|
275
|
-
setTimeout(function() {
|
276
|
-
if (!finished) {
|
277
|
-
finished = true;
|
278
|
-
self.stream.emit('data', "world\n");
|
279
|
-
done();
|
280
|
-
}
|
281
|
-
}, 50);
|
282
|
-
});
|
283
|
-
});
|
284
|
-
|
285
|
-
it('resumes the stream', function(done) {
|
286
|
-
var self = this;
|
287
|
-
var finished;
|
288
|
-
this.reader.readLine(function(line) {
|
289
|
-
line.should.eql("hello\n");
|
290
|
-
self.reader.readLine(function(line2) {
|
291
|
-
if (!finished) {
|
292
|
-
finished = true;
|
293
|
-
assert.fail("never reached");
|
294
|
-
}
|
295
|
-
});
|
296
|
-
process.nextTick(function() {
|
297
|
-
if (!finished) {
|
298
|
-
finished = true;
|
299
|
-
self.stream.paused.should.be.false;
|
300
|
-
self.reader.paused.should.be.false;
|
301
|
-
done();
|
302
|
-
}
|
303
|
-
});
|
304
|
-
});
|
305
|
-
});
|
306
|
-
});
|
307
|
-
});
|
308
|
-
|
309
|
-
describe('if there is no line in memory', function() {
|
310
|
-
it('waits until a line has been memorized', function(done) {
|
311
|
-
var state = 'waiting';
|
312
|
-
var self = this;
|
313
|
-
this.reader.readLine(function(line) {
|
314
|
-
state.should.eql('line fed');
|
315
|
-
line.should.eql("hello\n");
|
316
|
-
done();
|
317
|
-
});
|
318
|
-
setTimeout(function() {
|
319
|
-
state.should.eql('waiting');
|
320
|
-
state = 'line fed';
|
321
|
-
self.stream.emit('data', "hello\n");
|
322
|
-
}, 50);
|
323
|
-
});
|
324
|
-
|
325
|
-
describe('if the stream had already reached EOF', function(done) {
|
326
|
-
beforeEach(function() {
|
327
|
-
this.reader.eof = true;
|
328
|
-
})
|
329
|
-
|
330
|
-
it('yields undefined', function() {
|
331
|
-
this.reader.readLine(function(line) {
|
332
|
-
should(line).equal(undefined);
|
333
|
-
});
|
334
|
-
});
|
335
|
-
});
|
336
|
-
});
|
337
|
-
});
|
338
|
-
});
|
data/test/node/spec_helper.js
DELETED
@@ -1,65 +0,0 @@
|
|
1
|
-
var util = require('util');
|
2
|
-
var EventEmitter = require('events').EventEmitter;
|
3
|
-
var assert = require('assert');
|
4
|
-
require('should');
|
5
|
-
|
6
|
-
|
7
|
-
function FakeStream() {
|
8
|
-
EventEmitter.call(this);
|
9
|
-
this.paused = false;
|
10
|
-
this.connection = {};
|
11
|
-
}
|
12
|
-
|
13
|
-
util.inherits(FakeStream, EventEmitter);
|
14
|
-
|
15
|
-
FakeStream.prototype.resume = function() {
|
16
|
-
this.paused = false;
|
17
|
-
this.flowing = true;
|
18
|
-
}
|
19
|
-
|
20
|
-
FakeStream.prototype.pause = function() {
|
21
|
-
this.paused = true;
|
22
|
-
this.flowing = false;
|
23
|
-
}
|
24
|
-
|
25
|
-
FakeStream.prototype.on = function(event, listener) {
|
26
|
-
EventEmitter.prototype.on.call(this, event, listener);
|
27
|
-
// If listening to data, and it has not explicitly been paused,
|
28
|
-
// then call resume to start the flow of data.
|
29
|
-
if (event == 'data' && this.flowing !== false) {
|
30
|
-
this.resume();
|
31
|
-
}
|
32
|
-
}
|
33
|
-
|
34
|
-
exports.FakeStream = FakeStream;
|
35
|
-
|
36
|
-
|
37
|
-
var Helper = {
|
38
|
-
eventually: function(timeout, check, done) {
|
39
|
-
var startTime = new Date();
|
40
|
-
var id = setInterval(function() {
|
41
|
-
if (check()) {
|
42
|
-
clearInterval(id);
|
43
|
-
done();
|
44
|
-
} else if (new Date() - startTime > timeout) {
|
45
|
-
clearInterval(id);
|
46
|
-
assert.fail("Something which should eventually happen never happened");
|
47
|
-
}
|
48
|
-
}, 10);
|
49
|
-
},
|
50
|
-
|
51
|
-
shouldNeverHappen: function(timeout, check, done) {
|
52
|
-
var startTime = new Date();
|
53
|
-
var id = setInterval(function() {
|
54
|
-
if (check()) {
|
55
|
-
clearInterval(id);
|
56
|
-
assert.fail("Something which should never happen, happened anyway");
|
57
|
-
} else if (new Date() - startTime > timeout) {
|
58
|
-
clearInterval(id);
|
59
|
-
done();
|
60
|
-
}
|
61
|
-
}, 10);
|
62
|
-
}
|
63
|
-
};
|
64
|
-
|
65
|
-
exports.Helper = Helper;
|
data/test/oxt/backtrace_test.cpp
DELETED
@@ -1,88 +0,0 @@
|
|
1
|
-
#include "../tut/tut.h"
|
2
|
-
#include "counter.hpp"
|
3
|
-
#include <oxt/backtrace.hpp>
|
4
|
-
#include <oxt/tracable_exception.hpp>
|
5
|
-
#include <oxt/thread.hpp>
|
6
|
-
|
7
|
-
using namespace oxt;
|
8
|
-
using namespace std;
|
9
|
-
|
10
|
-
namespace tut {
|
11
|
-
struct backtrace_test {
|
12
|
-
};
|
13
|
-
|
14
|
-
DEFINE_TEST_GROUP(backtrace_test);
|
15
|
-
|
16
|
-
TEST_METHOD(1) {
|
17
|
-
// Test TRACE_POINT() and tracable_exception.
|
18
|
-
struct {
|
19
|
-
void foo() {
|
20
|
-
TRACE_POINT();
|
21
|
-
bar();
|
22
|
-
}
|
23
|
-
|
24
|
-
void bar() {
|
25
|
-
TRACE_POINT();
|
26
|
-
baz();
|
27
|
-
}
|
28
|
-
|
29
|
-
void baz() {
|
30
|
-
TRACE_POINT();
|
31
|
-
throw tracable_exception();
|
32
|
-
}
|
33
|
-
} object;
|
34
|
-
|
35
|
-
try {
|
36
|
-
object.foo();
|
37
|
-
fail("tracable_exception expected.");
|
38
|
-
} catch (const tracable_exception &e) {
|
39
|
-
ensure("Backtrace contains foo()",
|
40
|
-
e.backtrace().find("foo()") != string::npos);
|
41
|
-
ensure("Backtrace contains bar()",
|
42
|
-
e.backtrace().find("bar()") != string::npos);
|
43
|
-
ensure("Backtrace contains baz()",
|
44
|
-
e.backtrace().find("baz()") != string::npos);
|
45
|
-
}
|
46
|
-
}
|
47
|
-
|
48
|
-
static void foo(CounterPtr parent_counter, CounterPtr child_counter) {
|
49
|
-
TRACE_POINT();
|
50
|
-
child_counter->increment(); // Tell parent that we've created the trace point.
|
51
|
-
parent_counter->wait_until(1); // Wait until parent thread says we can exit.
|
52
|
-
}
|
53
|
-
|
54
|
-
static void bar(CounterPtr parent_counter, CounterPtr child_counter) {
|
55
|
-
TRACE_POINT();
|
56
|
-
child_counter->increment(); // Tell parent that we've created the trace point.
|
57
|
-
parent_counter->wait_until(1); // Wait until parent thread says we can exit.
|
58
|
-
}
|
59
|
-
|
60
|
-
TEST_METHOD(2) {
|
61
|
-
// Test whether oxt::thread's backtrace support works.
|
62
|
-
CounterPtr parent_counter = Counter::create_ptr();
|
63
|
-
CounterPtr child_counter = Counter::create_ptr();
|
64
|
-
oxt::thread foo_thread(boost::bind(foo, parent_counter, child_counter));
|
65
|
-
oxt::thread bar_thread(boost::bind(bar, parent_counter, child_counter));
|
66
|
-
|
67
|
-
// Wait until all threads have created trace points.
|
68
|
-
child_counter->wait_until(2);
|
69
|
-
|
70
|
-
ensure("Foo thread's backtrace contains foo()",
|
71
|
-
foo_thread.backtrace().find("foo") != string::npos);
|
72
|
-
ensure("Foo thread's backtrace doesn't contain bar()",
|
73
|
-
foo_thread.backtrace().find("bar") == string::npos);
|
74
|
-
ensure("Bar thread's backtrace contains bar()",
|
75
|
-
bar_thread.backtrace().find("bar") != string::npos);
|
76
|
-
ensure("Bar thread's backtrace doesn't contain foo()",
|
77
|
-
bar_thread.backtrace().find("foo") == string::npos);
|
78
|
-
|
79
|
-
string all_backtraces(oxt::thread::all_backtraces());
|
80
|
-
ensure(all_backtraces.find("foo") != string::npos);
|
81
|
-
ensure(all_backtraces.find("bar") != string::npos);
|
82
|
-
|
83
|
-
parent_counter->increment(); // Tell threads to quit.
|
84
|
-
foo_thread.join();
|
85
|
-
bar_thread.join();
|
86
|
-
}
|
87
|
-
}
|
88
|
-
|