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
data/test/cxx/BufferedIOTest.cpp
DELETED
@@ -1,364 +0,0 @@
|
|
1
|
-
#include "TestSupport.h"
|
2
|
-
#include "Utils/BufferedIO.h"
|
3
|
-
#include "Utils/Timer.h"
|
4
|
-
#include "Utils/IOUtils.h"
|
5
|
-
#include <algorithm>
|
6
|
-
|
7
|
-
using namespace Passenger;
|
8
|
-
using namespace std;
|
9
|
-
|
10
|
-
namespace tut {
|
11
|
-
struct BufferedIOTest {
|
12
|
-
FileDescriptor reader, writer;
|
13
|
-
BufferedIO io;
|
14
|
-
|
15
|
-
string readData;
|
16
|
-
unsigned int counter;
|
17
|
-
char buf[100];
|
18
|
-
BufferedIO::AcceptFunction a_eof;
|
19
|
-
BufferedIO::AcceptFunction a_twoBytesRead;
|
20
|
-
|
21
|
-
BufferedIOTest() {
|
22
|
-
Pipe p = createPipe();
|
23
|
-
reader = p.first;
|
24
|
-
writer = p.second;
|
25
|
-
io = BufferedIO(reader);
|
26
|
-
counter = 0;
|
27
|
-
memset(buf, 0, sizeof(buf));
|
28
|
-
a_eof = boost::bind(&BufferedIOTest::eof, this, _1, _2);
|
29
|
-
a_twoBytesRead = boost::bind(&BufferedIOTest::twoBytesRead, this, _1, _2);
|
30
|
-
}
|
31
|
-
|
32
|
-
void write(const StaticString &data) {
|
33
|
-
::write(writer, data.c_str(), data.size());
|
34
|
-
}
|
35
|
-
|
36
|
-
pair<unsigned int, bool> twoBytesRead(const char *data, unsigned int size) {
|
37
|
-
if (counter == 2) {
|
38
|
-
return make_pair(0, true);
|
39
|
-
} else {
|
40
|
-
unsigned int toRead = min(2u - counter, size);
|
41
|
-
readData.append(data, toRead);
|
42
|
-
counter += toRead;
|
43
|
-
return make_pair(toRead, counter == 2);
|
44
|
-
}
|
45
|
-
}
|
46
|
-
|
47
|
-
pair<unsigned int, bool> eof(const char *data, unsigned int size) {
|
48
|
-
readData.append(data, size);
|
49
|
-
return make_pair(size, false);
|
50
|
-
}
|
51
|
-
|
52
|
-
static void writeAfterSomeTime(int fd, int sleepTime, string data) {
|
53
|
-
syscalls::usleep(sleepTime);
|
54
|
-
writeExact(fd, data);
|
55
|
-
}
|
56
|
-
|
57
|
-
static void closeAfterSomeTime(FileDescriptor fd, int sleepTime) {
|
58
|
-
syscalls::usleep(sleepTime);
|
59
|
-
fd.close();
|
60
|
-
}
|
61
|
-
};
|
62
|
-
|
63
|
-
DEFINE_TEST_GROUP(BufferedIOTest);
|
64
|
-
|
65
|
-
/***** Test readUntil() *****/
|
66
|
-
|
67
|
-
TEST_METHOD(1) {
|
68
|
-
// If the connection is already closed and the buffer is empty, then it returns 0.
|
69
|
-
writer.close();
|
70
|
-
ensure_equals(io.readUntil(a_eof), 0u);
|
71
|
-
ensure_equals(readData, "");
|
72
|
-
ensure_equals(io.getBuffer(), "");
|
73
|
-
}
|
74
|
-
|
75
|
-
TEST_METHOD(2) {
|
76
|
-
// If the connection is already closed and the buffer is non-empty,
|
77
|
-
// then it reads from the buffer.
|
78
|
-
writer.close();
|
79
|
-
io.unread("hello world");
|
80
|
-
ensure_equals(io.readUntil(a_twoBytesRead), 2u);
|
81
|
-
ensure_equals(readData, "he");
|
82
|
-
ensure_equals(io.readUntil(a_eof), 9u);
|
83
|
-
ensure_equals(readData, "hello world");
|
84
|
-
ensure_equals(io.getBuffer(), "");
|
85
|
-
}
|
86
|
-
|
87
|
-
TEST_METHOD(3) {
|
88
|
-
// If the buffer is empty then it reads from the connection.
|
89
|
-
write("hello world");
|
90
|
-
writer.close();
|
91
|
-
ensure_equals("(1)", io.readUntil(a_twoBytesRead), 2u);
|
92
|
-
ensure_equals("(2)", readData, "he");
|
93
|
-
ensure_equals("(5)", io.readUntil(a_eof), 9u);
|
94
|
-
ensure_equals("(6)", readData, "hello world");
|
95
|
-
ensure_equals("(7)", io.readUntil(a_eof), 0u);
|
96
|
-
ensure_equals("(8)", readData, "hello world");
|
97
|
-
ensure_equals(io.getBuffer(), "");
|
98
|
-
}
|
99
|
-
|
100
|
-
TEST_METHOD(4) {
|
101
|
-
// If the buffer is non-empty then it reads from the
|
102
|
-
// buffer first, then from the connection.
|
103
|
-
io.unread("hel");
|
104
|
-
write("lo world");
|
105
|
-
writer.close();
|
106
|
-
|
107
|
-
ensure_equals("(1)", io.readUntil(a_twoBytesRead), 2u);
|
108
|
-
ensure_equals("(2)", readData, "he");
|
109
|
-
counter = 0;
|
110
|
-
ensure_equals("(3)", io.readUntil(a_twoBytesRead), 2u);
|
111
|
-
ensure_equals("(4)", readData, "hell");
|
112
|
-
ensure_equals("(5)", io.readUntil(a_eof), 7u);
|
113
|
-
ensure_equals("(6)", readData, "hello world");
|
114
|
-
ensure_equals("(7)", io.readUntil(a_eof), 0u);
|
115
|
-
ensure_equals("(8)", readData, "hello world");
|
116
|
-
ensure_equals(io.getBuffer(), "");
|
117
|
-
}
|
118
|
-
|
119
|
-
TEST_METHOD(5) {
|
120
|
-
// It blocks until the acceptor function says it's done or until EOF.
|
121
|
-
TempThread thr1(boost::bind(writeAfterSomeTime, writer, 20000, "aa"));
|
122
|
-
Timer timer1;
|
123
|
-
ensure_equals(io.readUntil(a_twoBytesRead), 2u);
|
124
|
-
ensure_equals(readData, "aa");
|
125
|
-
ensure("At least 18 msec elapsed", timer1.elapsed() >= 18);
|
126
|
-
ensure("At most 90 msec elapsed", timer1.elapsed() <= 90);
|
127
|
-
|
128
|
-
TempThread thr2(boost::bind(closeAfterSomeTime, writer, 20000));
|
129
|
-
Timer timer2;
|
130
|
-
ensure_equals(io.readUntil(a_twoBytesRead), 0u);
|
131
|
-
ensure_equals(readData, "aa");
|
132
|
-
ensure("At least 18 msec elapsed", timer2.elapsed() >= 18);
|
133
|
-
ensure("At most 90 msec elapsed", timer2.elapsed() <= 90);
|
134
|
-
}
|
135
|
-
|
136
|
-
TEST_METHOD(6) {
|
137
|
-
// It throws TimeoutException if it cannot read enough data
|
138
|
-
// within the specified timeout.
|
139
|
-
unsigned long long timeout = 50000;
|
140
|
-
io.unread("he");
|
141
|
-
write("llo");
|
142
|
-
Timer timer;
|
143
|
-
try {
|
144
|
-
io.readUntil(a_eof, &timeout);
|
145
|
-
fail("TimeoutException expected");
|
146
|
-
} catch (const TimeoutException &) {
|
147
|
-
ensure("At least 45 msec elapsed", timer.elapsed() >= 45);
|
148
|
-
ensure("At most 90 msec elapsed", timer.elapsed() < 90);
|
149
|
-
ensure("It deducts the waited time from the timeout", timeout < 5000);
|
150
|
-
ensure_equals(readData, "hello");
|
151
|
-
ensure_equals(io.getBuffer(), "");
|
152
|
-
}
|
153
|
-
}
|
154
|
-
|
155
|
-
/***** Test read() *****/
|
156
|
-
|
157
|
-
TEST_METHOD(10) {
|
158
|
-
// If the connection is already closed and the buffer is empty, then it returns 0.
|
159
|
-
writer.close();
|
160
|
-
ensure_equals(io.read(buf, sizeof(buf)), 0u);
|
161
|
-
ensure_equals(io.getBuffer(), "");
|
162
|
-
}
|
163
|
-
|
164
|
-
TEST_METHOD(11) {
|
165
|
-
// If the connection is already closed and the buffer is non-empty
|
166
|
-
// and >= N bytes, then it reads everything from the buffer.
|
167
|
-
io.unread("hel");
|
168
|
-
write("lo world");
|
169
|
-
writer.close();
|
170
|
-
ensure_equals(io.read(buf, 5), 5u);
|
171
|
-
ensure_equals(StaticString(buf), "hello");
|
172
|
-
ensure_equals(io.getBuffer(), " world");
|
173
|
-
}
|
174
|
-
|
175
|
-
TEST_METHOD(12) {
|
176
|
-
// If the connection is already closed and the buffer is non-empty
|
177
|
-
// and < N bytes, then it reads N bytes from the buffer and the rest
|
178
|
-
// from the connection.
|
179
|
-
io.unread("hel");
|
180
|
-
write("lo world");
|
181
|
-
writer.close();
|
182
|
-
ensure_equals(io.read(buf, sizeof(buf)), 11u);
|
183
|
-
ensure_equals(StaticString(buf), "hello world");
|
184
|
-
ensure_equals(io.getBuffer(), "");
|
185
|
-
}
|
186
|
-
|
187
|
-
TEST_METHOD(13) {
|
188
|
-
// If the buffer is empty then it reads from the connection.
|
189
|
-
write("hello world");
|
190
|
-
ensure_equals(io.read(buf, 5), 5u);
|
191
|
-
ensure_equals(StaticString(buf), "hello");
|
192
|
-
ensure_equals(io.getBuffer(), " world");
|
193
|
-
}
|
194
|
-
|
195
|
-
TEST_METHOD(14) {
|
196
|
-
// If the buffer is non-empty then it reads from the
|
197
|
-
// buffer first, then from the connection.
|
198
|
-
write("hello world");
|
199
|
-
|
200
|
-
ensure_equals(io.read(buf, 2), 2u);
|
201
|
-
ensure_equals(StaticString(buf), "he");
|
202
|
-
ensure_equals(io.getBuffer(), "llo world");
|
203
|
-
|
204
|
-
ensure_equals(io.read(buf, 7), 7u);
|
205
|
-
ensure_equals(StaticString(buf), "llo wor");
|
206
|
-
ensure_equals(io.getBuffer(), "ld");
|
207
|
-
}
|
208
|
-
|
209
|
-
TEST_METHOD(15) {
|
210
|
-
// It blocks until the given number of bytes are read or until EOF.
|
211
|
-
TempThread thr1(boost::bind(writeAfterSomeTime, writer, 20000, "aa"));
|
212
|
-
Timer timer1;
|
213
|
-
ensure_equals(io.read(buf, 2), 2u);
|
214
|
-
ensure_equals(StaticString(buf), "aa");
|
215
|
-
ensure("At least 18 msec elapsed", timer1.elapsed() >= 18);
|
216
|
-
ensure("At most 90 msec elapsed", timer1.elapsed() <= 90);
|
217
|
-
|
218
|
-
TempThread thr2(boost::bind(closeAfterSomeTime, writer, 20000));
|
219
|
-
Timer timer2;
|
220
|
-
ensure_equals(io.read(buf, sizeof(buf)), 0u);
|
221
|
-
ensure_equals(StaticString(buf), "aa");
|
222
|
-
ensure("At least 18 msec elapsed", timer2.elapsed() >= 18);
|
223
|
-
ensure("At most 90 msec elapsed", timer2.elapsed() <= 90);
|
224
|
-
}
|
225
|
-
|
226
|
-
TEST_METHOD(16) {
|
227
|
-
// It throws TimeoutException if it cannot read enough data
|
228
|
-
// within the specified timeout.
|
229
|
-
unsigned long long timeout = 50000;
|
230
|
-
io.unread("he");
|
231
|
-
write("llo");
|
232
|
-
Timer timer;
|
233
|
-
try {
|
234
|
-
io.read(buf, sizeof(buf), &timeout);
|
235
|
-
fail("TimeoutException expected");
|
236
|
-
} catch (const TimeoutException &) {
|
237
|
-
ensure("At least 45 msec elapsed", timer.elapsed() >= 45);
|
238
|
-
ensure("At most 95 msec elapsed", timer.elapsed() < 95);
|
239
|
-
ensure("It deducts the waited time from the timeout", timeout < 5000);
|
240
|
-
ensure_equals(io.getBuffer(), "");
|
241
|
-
}
|
242
|
-
}
|
243
|
-
|
244
|
-
/***** Test readAll() *****/
|
245
|
-
|
246
|
-
TEST_METHOD(20) {
|
247
|
-
// It reads everything until EOF.
|
248
|
-
TempThread thr1(boost::bind(writeAfterSomeTime, writer, 20000, "aa"));
|
249
|
-
TempThread thr2(boost::bind(closeAfterSomeTime, writer, 40000));
|
250
|
-
Timer timer;
|
251
|
-
ensure_equals(io.readAll(), "aa");
|
252
|
-
ensure_equals(io.getBuffer(), "");
|
253
|
-
ensure("At least 38 msec elapsed", timer.elapsed() >= 38);
|
254
|
-
ensure("At most 150 msec elapsed", timer.elapsed() <= 150);
|
255
|
-
}
|
256
|
-
|
257
|
-
TEST_METHOD(21) {
|
258
|
-
// It throws TimeoutException if it cannot read enough data
|
259
|
-
// within the specified timeout.
|
260
|
-
unsigned long long timeout = 50000;
|
261
|
-
io.unread("he");
|
262
|
-
write("llo");
|
263
|
-
Timer timer;
|
264
|
-
try {
|
265
|
-
io.readAll(&timeout);
|
266
|
-
fail("TimeoutException expected");
|
267
|
-
} catch (const TimeoutException &) {
|
268
|
-
ensure("At least 45 msec elapsed", timer.elapsed() >= 45);
|
269
|
-
ensure("At most 95 msec elapsed", timer.elapsed() < 95);
|
270
|
-
ensure("It deducts the waited time from the timeout", timeout < 5000);
|
271
|
-
ensure_equals(io.getBuffer(), "");
|
272
|
-
}
|
273
|
-
}
|
274
|
-
|
275
|
-
/***** Test readLine() *****/
|
276
|
-
|
277
|
-
TEST_METHOD(25) {
|
278
|
-
// If the connection is already closed and the buffer is empty,
|
279
|
-
// then it returns the empty string.
|
280
|
-
writer.close();
|
281
|
-
ensure_equals(io.readLine(), "");
|
282
|
-
ensure_equals(io.getBuffer(), "");
|
283
|
-
}
|
284
|
-
|
285
|
-
TEST_METHOD(26) {
|
286
|
-
// If the connection is already closed and the buffer is non-empty,
|
287
|
-
// then it returns the first line in the buffer.
|
288
|
-
writer.close();
|
289
|
-
io.unread("hello\nworld\n.");
|
290
|
-
ensure_equals(io.readLine(), "hello\n");
|
291
|
-
ensure_equals(io.getBuffer(), "world\n.");
|
292
|
-
ensure_equals(io.readLine(), "world\n");
|
293
|
-
ensure_equals(io.getBuffer(), ".");
|
294
|
-
ensure_equals(io.readLine(), ".");
|
295
|
-
ensure_equals(io.getBuffer(), "");
|
296
|
-
}
|
297
|
-
|
298
|
-
TEST_METHOD(27) {
|
299
|
-
// If the buffer is empty then it reads from the connection.
|
300
|
-
write("hello\nworld\n.");
|
301
|
-
ensure_equals(io.readLine(), "hello\n");
|
302
|
-
ensure_equals(io.getBuffer(), "world\n.");
|
303
|
-
}
|
304
|
-
|
305
|
-
TEST_METHOD(28) {
|
306
|
-
// If the buffer is non-empty then it reads from the
|
307
|
-
// buffer first, then from the connection.
|
308
|
-
io.unread("hello");
|
309
|
-
write("\nworld\n.");
|
310
|
-
ensure_equals(io.readLine(), "hello\n");
|
311
|
-
ensure_equals(io.getBuffer(), "world\n.");
|
312
|
-
ensure_equals(io.readLine(), "world\n");
|
313
|
-
ensure_equals(io.getBuffer(), ".");
|
314
|
-
}
|
315
|
-
|
316
|
-
TEST_METHOD(29) {
|
317
|
-
// If the line is too long then it throws a SecurityException.
|
318
|
-
write("abcd");
|
319
|
-
try {
|
320
|
-
io.readLine(3);
|
321
|
-
fail("SecurityException expected");
|
322
|
-
} catch (const SecurityException &) {
|
323
|
-
// Pass.
|
324
|
-
}
|
325
|
-
}
|
326
|
-
|
327
|
-
TEST_METHOD(30) {
|
328
|
-
// It blocks until a line can be read or until EOF.
|
329
|
-
TempThread thr1(boost::bind(writeAfterSomeTime, writer, 20000, "hello"));
|
330
|
-
TempThread thr2(boost::bind(writeAfterSomeTime, writer, 35000, "\nworld\n."));
|
331
|
-
Timer timer1;
|
332
|
-
ensure_equals(io.readLine(), "hello\n");
|
333
|
-
ensure_equals(io.getBuffer(), "world\n.");
|
334
|
-
ensure("At least 33 msec elapsed", timer1.elapsed() >= 33);
|
335
|
-
ensure("At most 95 msec elapsed", timer1.elapsed() <= 90);
|
336
|
-
|
337
|
-
TempThread thr3(boost::bind(closeAfterSomeTime, writer, 20000));
|
338
|
-
Timer timer2;
|
339
|
-
ensure_equals(io.readLine(), "world\n");
|
340
|
-
ensure_equals(io.getBuffer(), ".");
|
341
|
-
ensure_equals(io.readLine(), ".");
|
342
|
-
ensure_equals(io.getBuffer(), "");
|
343
|
-
ensure("At least 18 msec elapsed", timer2.elapsed() >= 18);
|
344
|
-
ensure("At most 95 msec elapsed", timer2.elapsed() <= 95);
|
345
|
-
}
|
346
|
-
|
347
|
-
TEST_METHOD(31) {
|
348
|
-
// It throws TimeoutException if it cannot read enough data
|
349
|
-
// within the specified timeout.
|
350
|
-
unsigned long long timeout = 30000;
|
351
|
-
io.unread("he");
|
352
|
-
write("llo");
|
353
|
-
Timer timer;
|
354
|
-
try {
|
355
|
-
io.readLine(1024, &timeout);
|
356
|
-
fail("TimeoutException expected");
|
357
|
-
} catch (const TimeoutException &) {
|
358
|
-
ensure("At least 25 msec elapsed", timer.elapsed() >= 25);
|
359
|
-
ensure("At most 90 msec elapsed", timer.elapsed() < 90);
|
360
|
-
ensure("It deducts the waited time from the timeout", timeout < 5000);
|
361
|
-
ensure_equals(io.getBuffer(), "");
|
362
|
-
}
|
363
|
-
}
|
364
|
-
}
|
@@ -1,402 +0,0 @@
|
|
1
|
-
#include "TestSupport.h"
|
2
|
-
#include "Utils/CachedFileStat.hpp"
|
3
|
-
#include "Utils/SystemTime.h"
|
4
|
-
#include <sys/types.h>
|
5
|
-
#include <utime.h>
|
6
|
-
|
7
|
-
using namespace std;
|
8
|
-
using namespace Passenger;
|
9
|
-
|
10
|
-
namespace tut {
|
11
|
-
struct CachedFileStatTest {
|
12
|
-
struct stat buf;
|
13
|
-
|
14
|
-
~CachedFileStatTest() {
|
15
|
-
SystemTime::release();
|
16
|
-
unlink("test.txt");
|
17
|
-
unlink("test2.txt");
|
18
|
-
unlink("test3.txt");
|
19
|
-
unlink("test4.txt");
|
20
|
-
}
|
21
|
-
};
|
22
|
-
|
23
|
-
DEFINE_TEST_GROUP(CachedFileStatTest);
|
24
|
-
|
25
|
-
static void touch(const char *filename, time_t timestamp = 0) {
|
26
|
-
FILE *f = fopen(filename, "w");
|
27
|
-
fprintf(f, "hi");
|
28
|
-
fclose(f);
|
29
|
-
if (timestamp != 0) {
|
30
|
-
struct utimbuf buf;
|
31
|
-
buf.actime = timestamp;
|
32
|
-
buf.modtime = timestamp;
|
33
|
-
utime(filename, &buf);
|
34
|
-
}
|
35
|
-
}
|
36
|
-
|
37
|
-
/************ Tests involving a single file ************/
|
38
|
-
|
39
|
-
TEST_METHOD(1) {
|
40
|
-
// Statting a new file works.
|
41
|
-
touch("test.txt");
|
42
|
-
CachedFileStat stat(1);
|
43
|
-
ensure_equals(stat.stat("test.txt", &buf, 1), 0);
|
44
|
-
ensure_equals((long) buf.st_size, (long) 2);
|
45
|
-
}
|
46
|
-
|
47
|
-
TEST_METHOD(2) {
|
48
|
-
// It does not re-stat an existing file until the cache has expired.
|
49
|
-
CachedFileStat stat(1);
|
50
|
-
|
51
|
-
SystemTime::force(5);
|
52
|
-
touch("test.txt", 1);
|
53
|
-
ensure_equals("1st stat succceeded",
|
54
|
-
stat.stat("test.txt", &buf, 1),
|
55
|
-
0);
|
56
|
-
|
57
|
-
touch("test.txt", 1000);
|
58
|
-
ensure_equals("2nd stat succceeded",
|
59
|
-
stat.stat("test.txt", &buf, 1),
|
60
|
-
0);
|
61
|
-
ensure_equals("Cached value was used",
|
62
|
-
buf.st_mtime,
|
63
|
-
(time_t) 1);
|
64
|
-
|
65
|
-
SystemTime::force(6);
|
66
|
-
ensure_equals("3rd stat succceeded",
|
67
|
-
stat.stat("test.txt", &buf, 1),
|
68
|
-
0);
|
69
|
-
ensure_equals("Cache has been invalidated",
|
70
|
-
buf.st_mtime,
|
71
|
-
(time_t) 1000);
|
72
|
-
}
|
73
|
-
|
74
|
-
TEST_METHOD(3) {
|
75
|
-
// Statting a nonexistant file returns an error.
|
76
|
-
CachedFileStat stat(1);
|
77
|
-
ensure_equals(stat.stat("test.txt", &buf, 1), -1);
|
78
|
-
ensure_equals("It sets errno appropriately", errno, ENOENT);
|
79
|
-
}
|
80
|
-
|
81
|
-
TEST_METHOD(4) {
|
82
|
-
// It does not re-stat a previously nonexistant file until
|
83
|
-
// the cache has expired.
|
84
|
-
SystemTime::force(5);
|
85
|
-
CachedFileStat stat(1);
|
86
|
-
ensure_equals("1st stat failed",
|
87
|
-
stat.stat("test.txt", &buf, 1),
|
88
|
-
-1);
|
89
|
-
ensure_equals("It sets errno appropriately", errno, ENOENT);
|
90
|
-
|
91
|
-
errno = EEXIST;
|
92
|
-
touch("test.txt", 1000);
|
93
|
-
ensure_equals("2nd stat failed",
|
94
|
-
stat.stat("test.txt", &buf, 1),
|
95
|
-
-1);
|
96
|
-
ensure_equals("It sets errno appropriately", errno, ENOENT);
|
97
|
-
ensure_equals("Cached value was used",
|
98
|
-
buf.st_mtime,
|
99
|
-
(time_t) 0);
|
100
|
-
|
101
|
-
SystemTime::force(6);
|
102
|
-
ensure_equals("3rd stat succeeded",
|
103
|
-
stat.stat("test.txt", &buf, 1),
|
104
|
-
0);
|
105
|
-
ensure_equals("Cache has been invalidated",
|
106
|
-
buf.st_mtime,
|
107
|
-
(time_t) 1000);
|
108
|
-
|
109
|
-
unlink("test.txt");
|
110
|
-
ensure_equals("4th stat succeeded even though file was unlinked",
|
111
|
-
stat.stat("test.txt", &buf, 1),
|
112
|
-
0);
|
113
|
-
ensure_equals("Cached value was used",
|
114
|
-
buf.st_mtime,
|
115
|
-
(time_t) 1000);
|
116
|
-
}
|
117
|
-
|
118
|
-
TEST_METHOD(5) {
|
119
|
-
// If the throttling rate is 0 then the cache will be bypassed.
|
120
|
-
SystemTime::force(5);
|
121
|
-
CachedFileStat stat(2);
|
122
|
-
ensure_equals("1st stat returns -1",
|
123
|
-
stat.stat("test.txt", &buf, 0),
|
124
|
-
-1);
|
125
|
-
touch("test.txt");
|
126
|
-
ensure_equals("2nd stat did not go through the cache",
|
127
|
-
stat.stat("test.txt", &buf, 0),
|
128
|
-
0);
|
129
|
-
}
|
130
|
-
|
131
|
-
|
132
|
-
/************ Tests involving multiple files ************/
|
133
|
-
|
134
|
-
TEST_METHOD(10) {
|
135
|
-
// Throttling in combination with multiple files works.
|
136
|
-
CachedFileStat stat(2);
|
137
|
-
SystemTime::force(5);
|
138
|
-
|
139
|
-
// Touch and stat test.txt. The next stat should return
|
140
|
-
// the old info.
|
141
|
-
|
142
|
-
touch("test.txt", 10);
|
143
|
-
ensure_equals(
|
144
|
-
stat.stat("test.txt", &buf, 1),
|
145
|
-
0);
|
146
|
-
ensure_equals(buf.st_mtime, (time_t) 10);
|
147
|
-
|
148
|
-
touch("test.txt", 20);
|
149
|
-
ensure_equals(
|
150
|
-
stat.stat("test.txt", &buf, 1),
|
151
|
-
0);
|
152
|
-
ensure_equals(buf.st_mtime, (time_t) 10);
|
153
|
-
|
154
|
-
// Touch and stat test2.txt. The next stat should return
|
155
|
-
// the old info.
|
156
|
-
|
157
|
-
touch("test2.txt", 30);
|
158
|
-
ensure_equals(
|
159
|
-
stat.stat("test2.txt", &buf, 1),
|
160
|
-
0);
|
161
|
-
ensure_equals(buf.st_mtime, (time_t) 30);
|
162
|
-
|
163
|
-
touch("test2.txt", 40);
|
164
|
-
ensure_equals(
|
165
|
-
stat.stat("test2.txt", &buf, 1),
|
166
|
-
0);
|
167
|
-
ensure_equals(buf.st_mtime, (time_t) 30);
|
168
|
-
|
169
|
-
// Forward timer, then stat both files again. The most recent
|
170
|
-
// information should be returned.
|
171
|
-
|
172
|
-
SystemTime::force(6);
|
173
|
-
ensure_equals(
|
174
|
-
stat.stat("test.txt", &buf, 1),
|
175
|
-
0);
|
176
|
-
ensure_equals(buf.st_mtime, (time_t) 20);
|
177
|
-
ensure_equals(
|
178
|
-
stat.stat("test2.txt", &buf, 1),
|
179
|
-
0);
|
180
|
-
ensure_equals(buf.st_mtime, (time_t) 40);
|
181
|
-
}
|
182
|
-
|
183
|
-
TEST_METHOD(11) {
|
184
|
-
// Cache limiting works.
|
185
|
-
CachedFileStat stat(3);
|
186
|
-
SystemTime::force(5);
|
187
|
-
|
188
|
-
// Create and stat test.txt, test2.txt and test3.txt.
|
189
|
-
|
190
|
-
touch("test.txt", 1000);
|
191
|
-
ensure_equals(
|
192
|
-
stat.stat("test.txt", &buf, 1),
|
193
|
-
0);
|
194
|
-
ensure_equals(buf.st_mtime, (time_t) 1000);
|
195
|
-
|
196
|
-
touch("test2.txt", 1001);
|
197
|
-
ensure_equals(
|
198
|
-
stat.stat("test2.txt", &buf, 1),
|
199
|
-
0);
|
200
|
-
ensure_equals(buf.st_mtime, (time_t) 1001);
|
201
|
-
|
202
|
-
touch("test3.txt", 1003);
|
203
|
-
ensure_equals(
|
204
|
-
stat.stat("test3.txt", &buf, 1),
|
205
|
-
0);
|
206
|
-
ensure_equals(buf.st_mtime, (time_t) 1003);
|
207
|
-
|
208
|
-
// Stat test2.txt, then create and stat test4.txt, then touch test.txt.
|
209
|
-
// test.txt should have been removed from the cache, and thus
|
210
|
-
// upon statting it again its new timestamp should be returned.
|
211
|
-
|
212
|
-
ensure_equals(
|
213
|
-
stat.stat("test2.txt", &buf, 1),
|
214
|
-
0);
|
215
|
-
|
216
|
-
touch("test4.txt", 1004);
|
217
|
-
ensure_equals(
|
218
|
-
stat.stat("test4.txt", &buf, 1),
|
219
|
-
0);
|
220
|
-
|
221
|
-
touch("test.txt", 3000);
|
222
|
-
ensure_equals(
|
223
|
-
stat.stat("test.txt", &buf, 1),
|
224
|
-
0);
|
225
|
-
ensure_equals(buf.st_mtime, (time_t) 3000);
|
226
|
-
}
|
227
|
-
|
228
|
-
TEST_METHOD(12) {
|
229
|
-
// Increasing the cache size dynamically works.
|
230
|
-
SystemTime::force(5);
|
231
|
-
CachedFileStat stat(2);
|
232
|
-
touch("test.txt", 1);
|
233
|
-
touch("test2.txt", 2);
|
234
|
-
touch("test3.txt", 3);
|
235
|
-
|
236
|
-
ensure_equals("1st stat succeeded",
|
237
|
-
stat.stat("test.txt", &buf, 1),
|
238
|
-
0);
|
239
|
-
ensure_equals("2nd stat succeeded",
|
240
|
-
stat.stat("test2.txt", &buf, 1),
|
241
|
-
0);
|
242
|
-
ensure_equals("3rd stat succeeded",
|
243
|
-
stat.stat("test3.txt", &buf, 1),
|
244
|
-
0);
|
245
|
-
|
246
|
-
// test.txt should now be removed from the cache.
|
247
|
-
|
248
|
-
touch("test.txt", 10);
|
249
|
-
ensure_equals("4th stat succeeded",
|
250
|
-
stat.stat("test.txt", &buf, 1),
|
251
|
-
0);
|
252
|
-
ensure_equals(buf.st_mtime, (time_t) 10);
|
253
|
-
|
254
|
-
// test2.txt should now be removed from the cache.
|
255
|
-
// If we stat test2.txt now, test3.txt would normally
|
256
|
-
// be removed from the cache. But if we increase the
|
257
|
-
// cache size here then that won't happen:
|
258
|
-
stat.setMaxSize(3);
|
259
|
-
touch("test2.txt", 11);
|
260
|
-
touch("test3.txt", 12);
|
261
|
-
|
262
|
-
ensure_equals("5th stat succeeded",
|
263
|
-
stat.stat("test2.txt", &buf, 1),
|
264
|
-
0);
|
265
|
-
ensure_equals(buf.st_mtime, (time_t) 11);
|
266
|
-
|
267
|
-
ensure_equals("6th stat succeeded",
|
268
|
-
stat.stat("test3.txt", &buf, 1),
|
269
|
-
0);
|
270
|
-
ensure_equals("test3.txt is still cached",
|
271
|
-
buf.st_mtime,
|
272
|
-
(time_t) 3);
|
273
|
-
|
274
|
-
ensure_equals("7th stat succeeded",
|
275
|
-
stat.stat("test.txt", &buf, 1),
|
276
|
-
0);
|
277
|
-
ensure_equals("test.txt is still cached",
|
278
|
-
buf.st_mtime,
|
279
|
-
(time_t) 10);
|
280
|
-
}
|
281
|
-
|
282
|
-
TEST_METHOD(13) {
|
283
|
-
// If we decrease the cache size dynamically, then
|
284
|
-
// the oldest entries will be removed.
|
285
|
-
SystemTime::force(5);
|
286
|
-
CachedFileStat stat(3);
|
287
|
-
touch("test.txt", 1);
|
288
|
-
touch("test2.txt", 2);
|
289
|
-
touch("test3.txt", 3);
|
290
|
-
|
291
|
-
ensure_equals("1st stat succeeded",
|
292
|
-
stat.stat("test.txt", &buf, 1),
|
293
|
-
0);
|
294
|
-
ensure_equals("2nd stat succeeded",
|
295
|
-
stat.stat("test2.txt", &buf, 1),
|
296
|
-
0);
|
297
|
-
ensure_equals("3rd stat succeeded",
|
298
|
-
stat.stat("test3.txt", &buf, 1),
|
299
|
-
0);
|
300
|
-
|
301
|
-
// The following should remove test.txt and test2.txt from the cache.
|
302
|
-
stat.setMaxSize(1);
|
303
|
-
|
304
|
-
touch("test.txt", 10);
|
305
|
-
touch("test2.txt", 11);
|
306
|
-
touch("test3.txt", 12);
|
307
|
-
|
308
|
-
ensure_equals("6th stat succeeded",
|
309
|
-
stat.stat("test3.txt", &buf, 1),
|
310
|
-
0);
|
311
|
-
ensure_equals("test3.txt is still in the cache",
|
312
|
-
buf.st_mtime,
|
313
|
-
(time_t) 3);
|
314
|
-
|
315
|
-
ensure_equals("4th stat succeeded",
|
316
|
-
stat.stat("test.txt", &buf, 1),
|
317
|
-
0);
|
318
|
-
ensure_equals("test.txt is removed from the cache",
|
319
|
-
buf.st_mtime,
|
320
|
-
(time_t) 10);
|
321
|
-
|
322
|
-
ensure_equals("5th stat succeeded",
|
323
|
-
stat.stat("test2.txt", &buf, 1),
|
324
|
-
0);
|
325
|
-
ensure_equals("test2.txt is removed from the cache",
|
326
|
-
buf.st_mtime,
|
327
|
-
(time_t) 11);
|
328
|
-
}
|
329
|
-
|
330
|
-
TEST_METHOD(14) {
|
331
|
-
// An initial cache size of 0 means that the cache size is unlimited.
|
332
|
-
SystemTime::force(1);
|
333
|
-
CachedFileStat stat(0);
|
334
|
-
|
335
|
-
touch("test.txt", 1);
|
336
|
-
touch("test2.txt", 2);
|
337
|
-
touch("test3.txt", 3);
|
338
|
-
stat.stat("test.txt", &buf, 1);
|
339
|
-
stat.stat("test2.txt", &buf, 1);
|
340
|
-
stat.stat("test3.txt", &buf, 1);
|
341
|
-
|
342
|
-
touch("test.txt", 11);
|
343
|
-
touch("test2.txt", 12);
|
344
|
-
touch("test3.txt", 13);
|
345
|
-
stat.stat("test.txt", &buf, 1);
|
346
|
-
ensure_equals(buf.st_mtime, (time_t) 1);
|
347
|
-
stat.stat("test2.txt", &buf, 1);
|
348
|
-
ensure_equals(buf.st_mtime, (time_t) 2);
|
349
|
-
stat.stat("test3.txt", &buf, 1);
|
350
|
-
ensure_equals(buf.st_mtime, (time_t) 3);
|
351
|
-
}
|
352
|
-
|
353
|
-
TEST_METHOD(15) {
|
354
|
-
// Setting the cache size dynamically to 0 makes the cache size unlimited.
|
355
|
-
SystemTime::force(1);
|
356
|
-
CachedFileStat stat(2);
|
357
|
-
|
358
|
-
touch("test.txt", 1);
|
359
|
-
touch("test2.txt", 2);
|
360
|
-
touch("test3.txt", 3);
|
361
|
-
stat.stat("test.txt", &buf, 1);
|
362
|
-
stat.stat("test2.txt", &buf, 1);
|
363
|
-
stat.stat("test3.txt", &buf, 1);
|
364
|
-
|
365
|
-
// test.txt is now no longer in the cache.
|
366
|
-
|
367
|
-
stat.setMaxSize(0);
|
368
|
-
touch("test.txt", 11);
|
369
|
-
touch("test2.txt", 12);
|
370
|
-
touch("test3.txt", 13);
|
371
|
-
stat.stat("test.txt", &buf, 1);
|
372
|
-
stat.stat("test2.txt", &buf, 1);
|
373
|
-
stat.stat("test3.txt", &buf, 1);
|
374
|
-
|
375
|
-
// test.txt should now have been re-statted while test2.txt
|
376
|
-
// and test3.txt are still cached.
|
377
|
-
|
378
|
-
stat.stat("test.txt", &buf, 1);
|
379
|
-
ensure_equals("test.txt is re-statted", buf.st_mtime, (time_t) 11);
|
380
|
-
stat.stat("test2.txt", &buf, 1);
|
381
|
-
ensure_equals("test2.txt is still cached", buf.st_mtime, (time_t) 2);
|
382
|
-
stat.stat("test3.txt", &buf, 1);
|
383
|
-
ensure_equals("test3.txt is still cached", buf.st_mtime, (time_t) 3);
|
384
|
-
}
|
385
|
-
|
386
|
-
TEST_METHOD(16) {
|
387
|
-
// Changing the cache size dynamically from 0 to non-0 works;
|
388
|
-
// it removes the oldest entries, if necessary.
|
389
|
-
CachedFileStat stat(0);
|
390
|
-
stat.stat("test.txt", &buf, 1);
|
391
|
-
stat.stat("test2.txt", &buf, 1);
|
392
|
-
stat.stat("test3.txt", &buf, 1);
|
393
|
-
stat.stat("test4.txt", &buf, 1);
|
394
|
-
stat.stat("test5.txt", &buf, 1);
|
395
|
-
stat.setMaxSize(2);
|
396
|
-
ensure("(1)", !stat.knows("test.txt"));
|
397
|
-
ensure("(2)", !stat.knows("test2.txt"));
|
398
|
-
ensure("(3)", !stat.knows("test3.txt"));
|
399
|
-
ensure("(4)", stat.knows("test4.txt"));
|
400
|
-
ensure("(5)", stat.knows("test5.txt"));
|
401
|
-
}
|
402
|
-
}
|