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,39 +0,0 @@
|
|
1
|
-
#include "TestSupport.h"
|
2
|
-
#include <Utils/StrIntUtils.h>
|
3
|
-
|
4
|
-
using namespace Passenger;
|
5
|
-
using namespace std;
|
6
|
-
|
7
|
-
namespace tut {
|
8
|
-
struct StrIntUtilsTest {
|
9
|
-
};
|
10
|
-
|
11
|
-
void testTruncate(const char* str, const char *tokens, int maxBetweenTokens, const char* expected) {
|
12
|
-
std::stringstream sstream;
|
13
|
-
truncateBeforeTokens(str, tokens, maxBetweenTokens, sstream);
|
14
|
-
ensure("got [" + sstream.str() + "], expected [" + expected + "]", sstream.str() == expected);
|
15
|
-
}
|
16
|
-
|
17
|
-
DEFINE_TEST_GROUP(StrIntUtilsTest);
|
18
|
-
|
19
|
-
TEST_METHOD(1) {
|
20
|
-
set_test_name("no change should occur");
|
21
|
-
testTruncate("", "", 0, "");
|
22
|
-
testTruncate("testwithout/tokens", "", 2, "testwithout/tokens");
|
23
|
-
testTruncate("", "/", 2, "");
|
24
|
-
testTruncate("/", "", 2, "/");
|
25
|
-
testTruncate("/", "/", 2, "/");
|
26
|
-
testTruncate("hello", "/", 2, "hello");
|
27
|
-
testTruncate("/hello", "/", 3, "/hello");
|
28
|
-
} TEST_METHOD(2) {
|
29
|
-
set_test_name("truncation must not touch begin/end token");
|
30
|
-
testTruncate("hello/", "/", 3, "hel/");
|
31
|
-
testTruncate("/hello/", "/", 3, "/hel/");
|
32
|
-
} TEST_METHOD(3) {
|
33
|
-
set_test_name("exact truncation and multiple split tokens");
|
34
|
-
testTruncate("hello/world/Main.cpp", "/", 2, "he/wo/Main.cpp");
|
35
|
-
testTruncate("hello/world\\Main.cpp", "/\\", 1, "h/w\\Main.cpp");
|
36
|
-
testTruncate("hello/world\\Main.cpp", "/", 1, "h/world\\Main.cpp");
|
37
|
-
testTruncate("/he/llo/worl/", "/", 3, "/he/llo/wor/");
|
38
|
-
}
|
39
|
-
}
|
data/test/cxx/UtilsTest.cpp
DELETED
@@ -1,672 +0,0 @@
|
|
1
|
-
#include <TestSupport.h>
|
2
|
-
#include <Utils.h>
|
3
|
-
#include <Utils/StrIntUtils.h>
|
4
|
-
#include <Utils/MemZeroGuard.h>
|
5
|
-
#include <sys/types.h>
|
6
|
-
#include <sys/stat.h>
|
7
|
-
#include <stdio.h>
|
8
|
-
#include <unistd.h>
|
9
|
-
#include <limits.h>
|
10
|
-
#include <string.h>
|
11
|
-
|
12
|
-
using namespace Passenger;
|
13
|
-
using namespace std;
|
14
|
-
|
15
|
-
namespace tut {
|
16
|
-
struct UtilsTest {
|
17
|
-
vector<string> output;
|
18
|
-
string cwd;
|
19
|
-
string oldPath;
|
20
|
-
TempDir tempDir;
|
21
|
-
|
22
|
-
UtilsTest(): tempDir("tmp.dir") {
|
23
|
-
char buffer[PATH_MAX];
|
24
|
-
cwd = getcwd(buffer, sizeof(buffer));
|
25
|
-
oldPath = getenv("PATH");
|
26
|
-
unsetenv("TMPDIR");
|
27
|
-
}
|
28
|
-
|
29
|
-
~UtilsTest() {
|
30
|
-
setenv("PATH", oldPath.c_str(), 1);
|
31
|
-
unsetenv("TMPDIR");
|
32
|
-
chdir(cwd.c_str());
|
33
|
-
}
|
34
|
-
|
35
|
-
void testMakeDirTreeMode(const char *name, const char *mode, mode_t expected) {
|
36
|
-
TempDir td("tmp.dir2");
|
37
|
-
struct stat buf;
|
38
|
-
mode_t allModes = S_IRWXU | S_ISUID | S_IRWXG | S_ISGID | S_IRWXO;
|
39
|
-
|
40
|
-
makeDirTree("tmp.dir2/foo", mode);
|
41
|
-
stat("tmp.dir2/foo", &buf);
|
42
|
-
ensure_equals(name, buf.st_mode & allModes, expected);
|
43
|
-
}
|
44
|
-
};
|
45
|
-
|
46
|
-
DEFINE_TEST_GROUP_WITH_LIMIT(UtilsTest, 100);
|
47
|
-
|
48
|
-
/***** Test split() *****/
|
49
|
-
|
50
|
-
TEST_METHOD(1) {
|
51
|
-
split("", ':', output);
|
52
|
-
ensure_equals(output.size(), 0u);
|
53
|
-
|
54
|
-
splitIncludeSep("", ':', output);
|
55
|
-
ensure_equals(output.size(), 0u);
|
56
|
-
}
|
57
|
-
|
58
|
-
TEST_METHOD(2) {
|
59
|
-
split("hello world", ':', output);
|
60
|
-
ensure_equals(output.size(), 1u);
|
61
|
-
ensure_equals(output[0], "hello world");
|
62
|
-
|
63
|
-
splitIncludeSep("hello world", ':', output);
|
64
|
-
ensure_equals(output.size(), 1u);
|
65
|
-
ensure_equals(output[0], "hello world");
|
66
|
-
}
|
67
|
-
|
68
|
-
TEST_METHOD(3) {
|
69
|
-
split("hello world:foo bar", ':', output);
|
70
|
-
ensure_equals(output.size(), 2u);
|
71
|
-
ensure_equals(output[0], "hello world");
|
72
|
-
ensure_equals(output[1], "foo bar");
|
73
|
-
|
74
|
-
splitIncludeSep("hello world:foo bar", ':', output);
|
75
|
-
ensure_equals(output.size(), 2u);
|
76
|
-
ensure_equals(output[0], "hello world:");
|
77
|
-
ensure_equals(output[1], "foo bar");
|
78
|
-
}
|
79
|
-
|
80
|
-
TEST_METHOD(4) {
|
81
|
-
split("hello world:", ':', output);
|
82
|
-
ensure_equals("(1)", output.size(), 2u);
|
83
|
-
ensure_equals("(2)", output[0], "hello world");
|
84
|
-
ensure_equals("(3)", output[1], "");
|
85
|
-
|
86
|
-
splitIncludeSep("hello world:", ':', output);
|
87
|
-
ensure_equals("(4)", output.size(), 1u);
|
88
|
-
ensure_equals("(5)", output[0], "hello world:");
|
89
|
-
}
|
90
|
-
|
91
|
-
TEST_METHOD(5) {
|
92
|
-
split(":hello world", ':', output);
|
93
|
-
ensure_equals(output.size(), 2u);
|
94
|
-
ensure_equals(output[0], "");
|
95
|
-
ensure_equals(output[1], "hello world");
|
96
|
-
|
97
|
-
splitIncludeSep(":hello world", ':', output);
|
98
|
-
ensure_equals(output.size(), 2u);
|
99
|
-
ensure_equals(output[0], ":");
|
100
|
-
ensure_equals(output[1], "hello world");
|
101
|
-
}
|
102
|
-
|
103
|
-
TEST_METHOD(6) {
|
104
|
-
split("abc:def::ghi", ':', output);
|
105
|
-
ensure_equals(output.size(), 4u);
|
106
|
-
ensure_equals(output[0], "abc");
|
107
|
-
ensure_equals(output[1], "def");
|
108
|
-
ensure_equals(output[2], "");
|
109
|
-
ensure_equals(output[3], "ghi");
|
110
|
-
|
111
|
-
splitIncludeSep("abc:def::ghi", ':', output);
|
112
|
-
ensure_equals(output.size(), 4u);
|
113
|
-
ensure_equals(output[0], "abc:");
|
114
|
-
ensure_equals(output[1], "def:");
|
115
|
-
ensure_equals(output[2], ":");
|
116
|
-
ensure_equals(output[3], "ghi");
|
117
|
-
}
|
118
|
-
|
119
|
-
TEST_METHOD(7) {
|
120
|
-
split("abc:::def", ':', output);
|
121
|
-
ensure_equals(output.size(), 4u);
|
122
|
-
ensure_equals(output[0], "abc");
|
123
|
-
ensure_equals(output[1], "");
|
124
|
-
ensure_equals(output[2], "");
|
125
|
-
ensure_equals(output[3], "def");
|
126
|
-
|
127
|
-
splitIncludeSep("abc:::def", ':', output);
|
128
|
-
ensure_equals(output.size(), 4u);
|
129
|
-
ensure_equals(output[0], "abc:");
|
130
|
-
ensure_equals(output[1], ":");
|
131
|
-
ensure_equals(output[2], ":");
|
132
|
-
ensure_equals(output[3], "def");
|
133
|
-
}
|
134
|
-
|
135
|
-
|
136
|
-
/***** Test getSystemTempDir() *****/
|
137
|
-
|
138
|
-
TEST_METHOD(11) {
|
139
|
-
// It returns "/tmp" if the TMPDIR environment is NULL.
|
140
|
-
ensure_equals(string(getSystemTempDir()), "/tmp");
|
141
|
-
}
|
142
|
-
|
143
|
-
TEST_METHOD(12) {
|
144
|
-
// It returns "/tmp" if the TMPDIR environment is an empty string.
|
145
|
-
setenv("TMPDIR", "", 1);
|
146
|
-
ensure_equals(string(getSystemTempDir()), "/tmp");
|
147
|
-
}
|
148
|
-
|
149
|
-
TEST_METHOD(13) {
|
150
|
-
// It returns the value of the TMPDIR environment if it is not NULL and not empty.
|
151
|
-
setenv("TMPDIR", "/foo", 1);
|
152
|
-
ensure_equals(string(getSystemTempDir()), "/foo");
|
153
|
-
}
|
154
|
-
|
155
|
-
|
156
|
-
/***** Test escapeForXml() *****/
|
157
|
-
|
158
|
-
TEST_METHOD(25) {
|
159
|
-
ensure_equals(escapeForXml(""), "");
|
160
|
-
ensure_equals(escapeForXml("hello world"), "hello world");
|
161
|
-
ensure_equals(escapeForXml("./hello_world/foo.txt"), "./hello_world/foo.txt");
|
162
|
-
ensure_equals(escapeForXml("hello<world"), "hello<world");
|
163
|
-
ensure_equals(escapeForXml("hello\xFFworld"), "helloÿworld");
|
164
|
-
ensure_equals(escapeForXml("hello\xFF\xCCworld"), "helloÿÌworld");
|
165
|
-
ensure_equals(escapeForXml("hello\xFFworld\xCC"), "helloÿworldÌ");
|
166
|
-
ensure_equals(escapeForXml("hello\nworld"), "hello world");
|
167
|
-
}
|
168
|
-
|
169
|
-
/***** Test extractDirName() *****/
|
170
|
-
|
171
|
-
TEST_METHOD(26) {
|
172
|
-
ensure_equals("Test 1", extractDirName("/usr/lib"), "/usr");
|
173
|
-
ensure_equals("Test 2", extractDirName("/usr/lib/"), "/usr");
|
174
|
-
ensure_equals("Test 3", extractDirName("/usr/"), "/");
|
175
|
-
ensure_equals("Test 4", extractDirName("usr"), ".");
|
176
|
-
ensure_equals("Test 5", extractDirName("/"), "/");
|
177
|
-
ensure_equals("Test 6", extractDirName("///"), "/");
|
178
|
-
ensure_equals("Test 7", extractDirName("."), ".");
|
179
|
-
ensure_equals("Test 8", extractDirName(".."), ".");
|
180
|
-
ensure_equals("Test 9", extractDirName("./foo"), ".");
|
181
|
-
ensure_equals("Test 10", extractDirName("../foo"), "..");
|
182
|
-
ensure_equals("Test 11", extractDirName(""), ".");
|
183
|
-
ensure_equals("Test 12", extractDirName(".///"), ".");
|
184
|
-
ensure_equals("Test 13", extractDirName("foo//bar"), "foo");
|
185
|
-
}
|
186
|
-
|
187
|
-
TEST_METHOD(27) {
|
188
|
-
ensure_equals("Test 1", extractDirNameStatic("/usr/lib"), "/usr");
|
189
|
-
ensure_equals("Test 2", extractDirNameStatic("/usr/lib/"), "/usr");
|
190
|
-
ensure_equals("Test 3", extractDirNameStatic("/usr/"), "/");
|
191
|
-
ensure_equals("Test 4", extractDirNameStatic("usr"), ".");
|
192
|
-
ensure_equals("Test 5", extractDirNameStatic("/"), "/");
|
193
|
-
ensure_equals("Test 6", extractDirNameStatic("///"), "/");
|
194
|
-
ensure_equals("Test 7", extractDirNameStatic("."), ".");
|
195
|
-
ensure_equals("Test 8", extractDirNameStatic(".."), ".");
|
196
|
-
ensure_equals("Test 9", extractDirNameStatic("./foo"), ".");
|
197
|
-
ensure_equals("Test 10", extractDirNameStatic("../foo"), "..");
|
198
|
-
ensure_equals("Test 11", extractDirNameStatic(""), ".");
|
199
|
-
ensure_equals("Test 12", extractDirNameStatic(".///"), ".");
|
200
|
-
ensure_equals("Test 13", extractDirNameStatic("foo//bar"), "foo");
|
201
|
-
}
|
202
|
-
|
203
|
-
/***** Test resolveSymlink() *****/
|
204
|
-
|
205
|
-
TEST_METHOD(28) {
|
206
|
-
TempDir d("tmp.symlinks");
|
207
|
-
runShellCommand("touch tmp.symlinks/foo.txt");
|
208
|
-
runShellCommand("ln -s /usr/bin tmp.symlinks/absolute_symlink");
|
209
|
-
runShellCommand("ln -s foo.txt tmp.symlinks/file");
|
210
|
-
runShellCommand("ln -s file tmp.symlinks/file2");
|
211
|
-
runShellCommand("ln -s file2 tmp.symlinks/file3");
|
212
|
-
ensure_equals(resolveSymlink("tmp.symlinks/file"), "tmp.symlinks/foo.txt");
|
213
|
-
ensure_equals(resolveSymlink("tmp.symlinks/file2"), "tmp.symlinks/file");
|
214
|
-
ensure_equals(resolveSymlink("tmp.symlinks/file3"), "tmp.symlinks/file2");
|
215
|
-
ensure_equals(resolveSymlink("tmp.symlinks/absolute_symlink"), "/usr/bin");
|
216
|
-
}
|
217
|
-
|
218
|
-
/***** Test fillInMiddle() *****/
|
219
|
-
|
220
|
-
TEST_METHOD(30) {
|
221
|
-
ensure_equals(fillInMiddle(20, "server.", "123456", ".socket"), "server.123456.socket");
|
222
|
-
ensure_equals(fillInMiddle(25, "server.", "123456", ".socket"), "server.123456.socket");
|
223
|
-
ensure_equals(fillInMiddle(19, "server.", "123456", ".socket"), "server.12345.socket");
|
224
|
-
ensure_equals(fillInMiddle(16, "server.", "123456", ".socket"), "server.12.socket");
|
225
|
-
|
226
|
-
ensure_equals(fillInMiddle(10, "", "1234", ""), "1234");
|
227
|
-
ensure_equals(fillInMiddle(4, "", "1234", ""), "1234");
|
228
|
-
ensure_equals(fillInMiddle(2, "", "1234", ""), "12");
|
229
|
-
|
230
|
-
ensure_equals(fillInMiddle(20, "", "1234", ".socket"), "1234.socket");
|
231
|
-
ensure_equals(fillInMiddle(11, "", "1234", ".socket"), "1234.socket");
|
232
|
-
ensure_equals(fillInMiddle(9, "", "1234", ".socket"), "12.socket");
|
233
|
-
|
234
|
-
try {
|
235
|
-
fillInMiddle(14, "server.", "123456", ".socket");
|
236
|
-
fail();
|
237
|
-
} catch (const ArgumentException &) { }
|
238
|
-
|
239
|
-
try {
|
240
|
-
fillInMiddle(10, "server.", "123456", ".socket");
|
241
|
-
fail();
|
242
|
-
} catch (const ArgumentException &) { }
|
243
|
-
|
244
|
-
try {
|
245
|
-
fillInMiddle(10, "server.", "", ".socket");
|
246
|
-
fail();
|
247
|
-
} catch (const ArgumentException &) { }
|
248
|
-
}
|
249
|
-
|
250
|
-
/***** Test MemZeroGuard *****/
|
251
|
-
|
252
|
-
TEST_METHOD(31) {
|
253
|
-
char buf[12] = "hello world";
|
254
|
-
{
|
255
|
-
MemZeroGuard g(buf, 2);
|
256
|
-
}
|
257
|
-
ensure(memcmp(buf, "\0\0llo world", sizeof(buf)) == 0);
|
258
|
-
}
|
259
|
-
|
260
|
-
TEST_METHOD(32) {
|
261
|
-
string str("hello ");
|
262
|
-
{
|
263
|
-
MemZeroGuard g(str);
|
264
|
-
str.append("world");
|
265
|
-
}
|
266
|
-
ensure(memcmp(str.c_str(), "\0\0\0\0\0\0\0\0\0\0\0", 11) == 0);
|
267
|
-
}
|
268
|
-
|
269
|
-
TEST_METHOD(33) {
|
270
|
-
string str("hello ");
|
271
|
-
{
|
272
|
-
MemZeroGuard g(str);
|
273
|
-
g.zeroNow();
|
274
|
-
ensure(memcmp(str.c_str(), "\0\0\0\0\0\0", 6) == 0);
|
275
|
-
str.append("world");
|
276
|
-
ensure(memcmp(str.c_str(), "\0\0\0\0\0\0world", 11) == 0);
|
277
|
-
}
|
278
|
-
ensure(memcmp(str.c_str(), "\0\0\0\0\0\0\0\0\0\0\0", 11) == 0);
|
279
|
-
}
|
280
|
-
|
281
|
-
/***** Test parseModeString() *****/
|
282
|
-
|
283
|
-
static bool modeStringCannotBeParsed(const StaticString &modeString) {
|
284
|
-
try {
|
285
|
-
parseModeString(modeString);
|
286
|
-
return false;
|
287
|
-
} catch (const InvalidModeStringException &) {
|
288
|
-
return true;
|
289
|
-
}
|
290
|
-
}
|
291
|
-
|
292
|
-
TEST_METHOD(36) {
|
293
|
-
ensure_equals(parseModeString(""), (mode_t) 0);
|
294
|
-
ensure_equals(parseModeString("u="), (mode_t) 0);
|
295
|
-
ensure_equals(parseModeString("u=,u="), (mode_t) 0);
|
296
|
-
ensure_equals(parseModeString("u=,g="), (mode_t) 0);
|
297
|
-
ensure_equals(parseModeString("u=,g=,o="), (mode_t) 0);
|
298
|
-
ensure_equals(parseModeString("u=,g=,o=,u=,g="), (mode_t) 0);
|
299
|
-
ensure_equals(parseModeString("o="), (mode_t) 0);
|
300
|
-
}
|
301
|
-
|
302
|
-
TEST_METHOD(37) {
|
303
|
-
ensure_equals("(1)", parseModeString("u=rwx"), (mode_t) S_IRWXU);
|
304
|
-
ensure_equals("(2)", parseModeString("g=rwx"), (mode_t) S_IRWXG);
|
305
|
-
ensure_equals("(3)", parseModeString("o=rwx"), (mode_t) S_IRWXO);
|
306
|
-
ensure_equals("(4)", parseModeString("u=r,g=,o=rx"),
|
307
|
-
(mode_t) (S_IRUSR | S_IROTH | S_IXOTH));
|
308
|
-
ensure_equals("(5)", parseModeString("o=r,g=wx"),
|
309
|
-
(mode_t) (S_IROTH | S_IWGRP | S_IXGRP));
|
310
|
-
ensure_equals("(6)", parseModeString("u=r,g=w,o=x,u=x"),
|
311
|
-
(mode_t) (S_IRUSR | S_IXUSR | S_IWGRP | S_IXOTH));
|
312
|
-
ensure_equals("(7)", parseModeString("u=rs,g=ws"),
|
313
|
-
(mode_t) (S_IRUSR | S_ISUID | S_IWGRP | S_ISGID));
|
314
|
-
ensure_equals("(7)", parseModeString("u=rwx,g=rwx,+t"),
|
315
|
-
(mode_t) (S_IRWXU | S_IRWXG | S_ISVTX));
|
316
|
-
}
|
317
|
-
|
318
|
-
TEST_METHOD(38) {
|
319
|
-
ensure(modeStringCannotBeParsed("0"));
|
320
|
-
ensure(modeStringCannotBeParsed("0600"));
|
321
|
-
ensure(modeStringCannotBeParsed("600"));
|
322
|
-
ensure(modeStringCannotBeParsed("x=rs"));
|
323
|
-
ensure(modeStringCannotBeParsed("u=rs,g=rs,x=rs"));
|
324
|
-
ensure(modeStringCannotBeParsed("x=rs"));
|
325
|
-
ensure(modeStringCannotBeParsed("rwxrwxrwx"));
|
326
|
-
}
|
327
|
-
|
328
|
-
/***** Test makeDirTree() *****/
|
329
|
-
|
330
|
-
TEST_METHOD(40) {
|
331
|
-
// Creating a single subdirectory works.
|
332
|
-
makeDirTree("tmp.dir/foo");
|
333
|
-
ensure_equals(getFileType("tmp.dir/foo"), FT_DIRECTORY);
|
334
|
-
}
|
335
|
-
|
336
|
-
TEST_METHOD(41) {
|
337
|
-
// Creating multiple subdirectories works.
|
338
|
-
makeDirTree("tmp.dir/foo/bar");
|
339
|
-
ensure_equals(getFileType("tmp.dir/foo"), FT_DIRECTORY);
|
340
|
-
ensure_equals(getFileType("tmp.dir/foo/bar"), FT_DIRECTORY);
|
341
|
-
}
|
342
|
-
|
343
|
-
TEST_METHOD(42) {
|
344
|
-
// It applies the permissions to all created directories.
|
345
|
-
struct stat buf, buf2;
|
346
|
-
|
347
|
-
stat("tmp.dir", &buf);
|
348
|
-
makeDirTree("tmp.dir/foo/bar", "u=rwxs,g=,o=rx");
|
349
|
-
stat("tmp.dir", &buf2);
|
350
|
-
ensure_equals(buf.st_mode, buf2.st_mode);
|
351
|
-
|
352
|
-
stat("tmp.dir/foo", &buf);
|
353
|
-
stat("tmp.dir/foo/bar", &buf2);
|
354
|
-
ensure_equals(buf.st_mode, buf2.st_mode);
|
355
|
-
ensure_equals((mode_t) (buf.st_mode & 0xFFF),
|
356
|
-
(mode_t) (S_IRUSR | S_IWUSR | S_IXUSR | S_ISUID |
|
357
|
-
S_IROTH | S_IXOTH));
|
358
|
-
}
|
359
|
-
|
360
|
-
TEST_METHOD(43) {
|
361
|
-
// It correctly parses the permission string.
|
362
|
-
testMakeDirTreeMode("empty 1", "", (mode_t) 0);
|
363
|
-
testMakeDirTreeMode("empty 2", "u=", (mode_t) 0);
|
364
|
-
testMakeDirTreeMode("empty 3", "g=", (mode_t) 0);
|
365
|
-
testMakeDirTreeMode("empty 4", "o=", (mode_t) 0);
|
366
|
-
testMakeDirTreeMode("empty 5", "u=,g=", (mode_t) 0);
|
367
|
-
testMakeDirTreeMode("empty 6", "g=,o=", (mode_t) 0);
|
368
|
-
|
369
|
-
testMakeDirTreeMode("(1)", "u=rwxs,g=rwxs,o=rwx",
|
370
|
-
S_IRWXU | S_ISUID | S_IRWXG | S_ISGID | S_IRWXO);
|
371
|
-
testMakeDirTreeMode("(2)", "u=s,g=rx,o=w",
|
372
|
-
S_ISUID | S_IRGRP | S_IXGRP | S_IWOTH);
|
373
|
-
testMakeDirTreeMode("(3)", "u=rwxs,g=,o=rwx",
|
374
|
-
S_IRWXU | S_ISUID | S_IRWXO);
|
375
|
-
}
|
376
|
-
|
377
|
-
TEST_METHOD(44) {
|
378
|
-
// It doesn't do anything if the directory already exists.
|
379
|
-
struct stat buf, buf2;
|
380
|
-
stat("tmp.dir", &buf);
|
381
|
-
makeDirTree("tmp.dir");
|
382
|
-
stat("tmp.dir", &buf2);
|
383
|
-
ensure_equals(buf.st_mode, buf2.st_mode);
|
384
|
-
}
|
385
|
-
|
386
|
-
/***** Test stringToULL(), stringToUint *****/
|
387
|
-
|
388
|
-
TEST_METHOD(47) {
|
389
|
-
ensure_equals(stringToULL(""), 0ull);
|
390
|
-
ensure_equals(stringToULL("bla"), 0ull);
|
391
|
-
ensure_equals(stringToULL("0"), 0ull);
|
392
|
-
ensure_equals(stringToULL("000"), 0ull);
|
393
|
-
ensure_equals(stringToULL("1"), 1ull);
|
394
|
-
ensure_equals(stringToULL("9"), 9ull);
|
395
|
-
ensure_equals(stringToULL("010"), 10ull);
|
396
|
-
ensure_equals(stringToULL("928"), 928ull);
|
397
|
-
ensure_equals(stringToULL("2937104"), 2937104ull);
|
398
|
-
ensure_equals(stringToULL("18446744073709551615"), 18446744073709551615ull);
|
399
|
-
ensure_equals(stringToULL(" 5abcdef1234"), 5ull);
|
400
|
-
|
401
|
-
ensure_equals(stringToUint(""), 0u);
|
402
|
-
ensure_equals(stringToUint("bla"), 0u);
|
403
|
-
ensure_equals(stringToUint("0"), 0u);
|
404
|
-
ensure_equals(stringToUint("000"), 0u);
|
405
|
-
ensure_equals(stringToUint("1"), 1u);
|
406
|
-
ensure_equals(stringToUint("9"), 9u);
|
407
|
-
ensure_equals(stringToUint("010"), 10u);
|
408
|
-
ensure_equals(stringToUint("928"), 928u);
|
409
|
-
ensure_equals(stringToUint("2937104"), 2937104u);
|
410
|
-
ensure_equals(stringToUint(" 5abcdef1234"), 5u);
|
411
|
-
}
|
412
|
-
|
413
|
-
/***** Test integerToHex() and integerToHexatri() *****/
|
414
|
-
|
415
|
-
TEST_METHOD(48) {
|
416
|
-
char buf[sizeof(int) * 2 + 1];
|
417
|
-
|
418
|
-
ensure_equals("(1)", integerToHex<int>(0x0, buf), 1u);
|
419
|
-
ensure("(1)", strcmp(buf, "0") == 0);
|
420
|
-
|
421
|
-
ensure_equals("(2)", integerToHex<int>(0x1, buf), 1u);
|
422
|
-
ensure("(2)", strcmp(buf, "1") == 0);
|
423
|
-
|
424
|
-
ensure_equals("(3)", integerToHex<int>(0x9, buf), 1u);
|
425
|
-
ensure("(3)", strcmp(buf, "9") == 0);
|
426
|
-
|
427
|
-
ensure_equals("(4)", integerToHex<int>(0xe, buf), 1u);
|
428
|
-
ensure("(4)", strcmp(buf, "e") == 0);
|
429
|
-
|
430
|
-
ensure_equals("(5)", integerToHex<unsigned int>(0xdeadbeef, buf), 8u);
|
431
|
-
ensure("(5)", strcmp(buf, "deadbeef") == 0);
|
432
|
-
|
433
|
-
ensure_equals("(6)", integerToHex<int>(0x1234f, buf), 5u);
|
434
|
-
ensure("(6)", strcmp(buf, "1234f") == 0);
|
435
|
-
|
436
|
-
|
437
|
-
ensure_equals("(7)", integerToHexatri<int>(0x0, buf), 1u);
|
438
|
-
ensure("(7)", strcmp(buf, "0") == 0);
|
439
|
-
|
440
|
-
ensure_equals("(8)", integerToHexatri<int>(0x1, buf), 1u);
|
441
|
-
ensure("(8)", strcmp(buf, "1") == 0);
|
442
|
-
|
443
|
-
ensure_equals("(9)", integerToHexatri<int>(0x9, buf), 1u);
|
444
|
-
ensure("(9)", strcmp(buf, "9") == 0);
|
445
|
-
|
446
|
-
ensure_equals("(10)", integerToHexatri<int>(0xe, buf), 1u);
|
447
|
-
ensure("(10)", strcmp(buf, "e") == 0);
|
448
|
-
|
449
|
-
ensure_equals("(11)", integerToHexatri<int>(35, buf), 1u);
|
450
|
-
ensure("(11)", strcmp(buf, "z") == 0);
|
451
|
-
|
452
|
-
ensure_equals(integerToHexatri<unsigned int>(0xdeadbeef, buf), 7u);
|
453
|
-
ensure(strcmp(buf, "1ps9wxb") == 0);
|
454
|
-
|
455
|
-
ensure_equals(integerToHexatri<int>(0x1234f, buf), 4u);
|
456
|
-
ensure(strcmp(buf, "1ljj") == 0);
|
457
|
-
}
|
458
|
-
|
459
|
-
/***** Test hexToULL(), hexToUint() and hexatriToULL() *****/
|
460
|
-
|
461
|
-
TEST_METHOD(49) {
|
462
|
-
ensure_equals(hexToULL(""), 0ull);
|
463
|
-
ensure_equals(hexToULL(" "), 0ull);
|
464
|
-
ensure_equals(hexToULL("1"), 1ull);
|
465
|
-
ensure_equals(hexToULL("9"), 9ull);
|
466
|
-
ensure_equals(hexToULL("a"), 10ull);
|
467
|
-
ensure_equals(hexToULL("B"), 11ull);
|
468
|
-
ensure_equals(hexToULL("1234"), 4660ull);
|
469
|
-
ensure_equals(hexToULL("1a6b"), 6763ull);
|
470
|
-
ensure_equals(hexToULL("1A6B"), 6763ull);
|
471
|
-
ensure_equals(hexToULL("1a6B"), 6763ull);
|
472
|
-
ensure_equals(hexToULL("deadbeef"), 3735928559ull);
|
473
|
-
ensure_equals(hexToULL("dEaDbEeF"), 3735928559ull);
|
474
|
-
ensure_equals(hexToULL("09a2s89"), 2466ull);
|
475
|
-
ensure_equals(hexToULL(" 9a2s89"), 0ull);
|
476
|
-
|
477
|
-
ensure_equals(hexToUint(""), 0u);
|
478
|
-
ensure_equals(hexToUint(" "), 0u);
|
479
|
-
ensure_equals(hexToUint("1"), 1u);
|
480
|
-
ensure_equals(hexToUint("9"), 9u);
|
481
|
-
ensure_equals(hexToUint("a"), 10u);
|
482
|
-
ensure_equals(hexToUint("B"), 11u);
|
483
|
-
ensure_equals(hexToUint("1234"), 4660u);
|
484
|
-
ensure_equals(hexToUint("1a6b"), 6763u);
|
485
|
-
ensure_equals(hexToUint("1A6B"), 6763u);
|
486
|
-
ensure_equals(hexToUint("1a6B"), 6763u);
|
487
|
-
ensure_equals(hexToUint("deadbeef"), 3735928559u);
|
488
|
-
ensure_equals(hexToUint("dEaDbEeF"), 3735928559u);
|
489
|
-
ensure_equals(hexToUint("09a2s89"), 2466u);
|
490
|
-
ensure_equals(hexToUint(" 9a2s89"), 0u);
|
491
|
-
|
492
|
-
ensure_equals(hexatriToULL(""), 0ull);
|
493
|
-
ensure_equals(hexatriToULL(" "), 0ull);
|
494
|
-
ensure_equals(hexatriToULL("1"), 1ull);
|
495
|
-
ensure_equals(hexatriToULL("9"), 9ull);
|
496
|
-
ensure_equals(hexatriToULL("a"), 10ull);
|
497
|
-
ensure_equals(hexatriToULL("B"), 11ull);
|
498
|
-
ensure_equals(hexatriToULL("1234"), 49360ull);
|
499
|
-
ensure_equals(hexatriToULL("1a6z"), 59867ull);
|
500
|
-
ensure_equals(hexatriToULL("1A6Z"), 59867ull);
|
501
|
-
ensure_equals(hexatriToULL("1a6Z"), 59867ull);
|
502
|
-
ensure_equals(hexatriToULL("deadroof"), 1049836874415ull);
|
503
|
-
ensure_equals(hexatriToULL("dEaDrOoF"), 1049836874415ull);
|
504
|
-
ensure_equals(hexatriToULL("09a2s89"), 561121641ull);
|
505
|
-
ensure_equals(hexatriToULL(" 9a2s89"), 0ull);
|
506
|
-
}
|
507
|
-
|
508
|
-
/***** Test stringToLL(), stringToInt() *****/
|
509
|
-
|
510
|
-
TEST_METHOD(50) {
|
511
|
-
ensure_equals(stringToLL(""), 0ll);
|
512
|
-
ensure_equals(stringToLL("bla"), 0ll);
|
513
|
-
ensure_equals(stringToLL("0"), 0ll);
|
514
|
-
ensure_equals(stringToLL("000"), 0ll);
|
515
|
-
ensure_equals(stringToLL("1"), 1ll);
|
516
|
-
ensure_equals(stringToLL("9"), 9ll);
|
517
|
-
ensure_equals(stringToLL("010"), 10ll);
|
518
|
-
ensure_equals(stringToLL("928"), 928ll);
|
519
|
-
ensure_equals(stringToLL("2937104"), 2937104ll);
|
520
|
-
ensure_equals(stringToLL("9223372036854775807"), 9223372036854775807ll);
|
521
|
-
ensure_equals(stringToLL(" 5abcdef1234"), 5ll);
|
522
|
-
|
523
|
-
ensure_equals(stringToLL("-0"), 0ll);
|
524
|
-
ensure_equals(stringToLL("-1"), -1ll);
|
525
|
-
ensure_equals(stringToLL("-010"), -10ll);
|
526
|
-
ensure_equals(stringToLL("-9876"), -9876ll);
|
527
|
-
ensure_equals(stringToLL("-9223372036854775807"), -9223372036854775807ll);
|
528
|
-
ensure_equals(stringToLL(" -5abcdef1234"), -5ll);
|
529
|
-
|
530
|
-
ensure_equals(stringToInt(""), 0);
|
531
|
-
ensure_equals(stringToInt("bla"), 0);
|
532
|
-
ensure_equals(stringToInt("0"), 0);
|
533
|
-
ensure_equals(stringToInt("000"), 0);
|
534
|
-
ensure_equals(stringToInt("1"), 1);
|
535
|
-
ensure_equals(stringToInt("9"), 9);
|
536
|
-
ensure_equals(stringToInt("010"), 10);
|
537
|
-
ensure_equals(stringToInt("928"), 928);
|
538
|
-
ensure_equals(stringToInt("2937104"), 2937104);
|
539
|
-
ensure_equals(stringToInt(" 5abcdef1234"), 5);
|
540
|
-
|
541
|
-
ensure_equals(stringToInt("-0"), 0ll);
|
542
|
-
ensure_equals(stringToInt("-1"), -1ll);
|
543
|
-
ensure_equals(stringToInt("-010"), -10ll);
|
544
|
-
ensure_equals(stringToInt("-9876"), -9876);
|
545
|
-
ensure_equals(stringToInt(" -5abcdef1234"), -5);
|
546
|
-
}
|
547
|
-
|
548
|
-
/***** Test cEscapeString() *****/
|
549
|
-
|
550
|
-
TEST_METHOD(51) {
|
551
|
-
ensure_equals(cEscapeString(""), "");
|
552
|
-
ensure_equals(cEscapeString("abcdXYZ123!?"), "abcdXYZ123!?");
|
553
|
-
ensure_equals(cEscapeString("foo\n"), "foo\\n");
|
554
|
-
ensure_equals(cEscapeString("foo\r\nbar\e"), "foo\\r\\nbar\\e");
|
555
|
-
ensure_equals(cEscapeString(StaticString("\0\x1\x2\x3\x4\x5\x6\x7\x8\x9", 10)),
|
556
|
-
"\\000\\001\\002\\003\\004\\005\\006\\007\\010\\t");
|
557
|
-
ensure_equals(cEscapeString("\xFF\xFE\t\xD0"), "\\377\\376\\t\\320");
|
558
|
-
}
|
559
|
-
|
560
|
-
/***** Test escapeHTML() *****/
|
561
|
-
|
562
|
-
TEST_METHOD(52) {
|
563
|
-
const char weird[] = "Weird \x01\x00 characters?";
|
564
|
-
ensure_equals(escapeHTML(""), "");
|
565
|
-
ensure_equals(escapeHTML("hello\n\r\t WORLD!"), "hello\n\r\t WORLD!");
|
566
|
-
ensure_equals(escapeHTML("<b>bold</b>"), "<b>bold</b>");
|
567
|
-
ensure_equals(escapeHTML(StaticString(weird, sizeof(weird) - 1)),
|
568
|
-
"Weird � characters?");
|
569
|
-
ensure_equals(escapeHTML("UTF-8: ☃ ☀; ☁ ☂\x01"), "UTF-8: ☃ ☀; ☁ ☂");
|
570
|
-
}
|
571
|
-
|
572
|
-
/***** Test absolutizePath() *****/
|
573
|
-
|
574
|
-
TEST_METHOD(53) {
|
575
|
-
ensure_equals(absolutizePath(""), cwd);
|
576
|
-
ensure_equals(absolutizePath("."), cwd);
|
577
|
-
ensure_equals(absolutizePath("foo"), cwd + "/foo");
|
578
|
-
ensure_equals(absolutizePath("foo/bar"), cwd + "/foo/bar");
|
579
|
-
ensure_equals(absolutizePath("foo//bar"), cwd + "/foo/bar");
|
580
|
-
ensure_equals(absolutizePath("foo/bar///baz"), cwd + "/foo/bar/baz");
|
581
|
-
ensure_equals(absolutizePath("foo/./bar"), cwd + "/foo/bar");
|
582
|
-
ensure_equals(absolutizePath("foo/bar/../baz"), cwd + "/foo/baz");
|
583
|
-
ensure_equals(absolutizePath("foo/bar/../.."), cwd);
|
584
|
-
ensure_equals(absolutizePath("foo/.././bar"), cwd + "/bar");
|
585
|
-
ensure_equals(absolutizePath("foo/../bar/./baz"), cwd + "/bar/baz");
|
586
|
-
ensure_equals(absolutizePath("foo/"), cwd + "/foo");
|
587
|
-
ensure_equals(absolutizePath("foo//"), cwd + "/foo");
|
588
|
-
|
589
|
-
ensure_equals(absolutizePath("/"), "/");
|
590
|
-
ensure_equals(absolutizePath("////"), "/");
|
591
|
-
ensure_equals(absolutizePath("/."), "/");
|
592
|
-
ensure_equals(absolutizePath("/foo"), "/foo");
|
593
|
-
ensure_equals(absolutizePath("/foo/bar"), "/foo/bar");
|
594
|
-
ensure_equals(absolutizePath("/foo//bar"), "/foo/bar");
|
595
|
-
ensure_equals(absolutizePath("/foo/bar///baz"), "/foo/bar/baz");
|
596
|
-
ensure_equals(absolutizePath("/foo/./bar"), "/foo/bar");
|
597
|
-
ensure_equals(absolutizePath("/foo/bar/../baz"), "/foo/baz");
|
598
|
-
ensure_equals(absolutizePath("/foo/bar/../.."), "/");
|
599
|
-
ensure_equals(absolutizePath("/foo/.././bar"), "/bar");
|
600
|
-
ensure_equals(absolutizePath("/foo/../bar/./baz"), "/bar/baz");
|
601
|
-
ensure_equals(absolutizePath("/foo/"), "/foo");
|
602
|
-
ensure_equals(absolutizePath("/foo//"), "/foo");
|
603
|
-
ensure_equals(absolutizePath("//foo/bar"), "/foo/bar");
|
604
|
-
ensure_equals(absolutizePath("///foo//bar"), "/foo/bar");
|
605
|
-
ensure_equals(absolutizePath("/../.."), "/");
|
606
|
-
ensure_equals(absolutizePath("/../.././foo"), "/foo");
|
607
|
-
|
608
|
-
chdir("/usr/lib");
|
609
|
-
ensure_equals(absolutizePath(".."), "/usr");
|
610
|
-
ensure_equals(absolutizePath("."), "/usr/lib");
|
611
|
-
ensure_equals(absolutizePath("../.."), "/");
|
612
|
-
ensure_equals(absolutizePath("../../foo"), "/foo");
|
613
|
-
ensure_equals(absolutizePath("../.././foo/bar"), "/foo/bar");
|
614
|
-
|
615
|
-
ensure_equals(absolutizePath("..", "/usr/local/bin"), "/usr/local");
|
616
|
-
ensure_equals(absolutizePath(".", "/usr/local/bin"), "/usr/local/bin");
|
617
|
-
ensure_equals(absolutizePath("../..", "/usr/local/bin"), "/usr");
|
618
|
-
ensure_equals(absolutizePath("../../foo", "/usr/local/bin"), "/usr/foo");
|
619
|
-
ensure_equals(absolutizePath("../.././foo/bar", "/usr/local/bin"), "/usr/foo/bar");
|
620
|
-
}
|
621
|
-
|
622
|
-
/***** Test constantTimeCompare() *****/
|
623
|
-
|
624
|
-
TEST_METHOD(54) {
|
625
|
-
ensure("(1)", constantTimeCompare("", ""));
|
626
|
-
ensure("(2)", constantTimeCompare("a", "a"));
|
627
|
-
ensure("(3)", constantTimeCompare("aa", "aa"));
|
628
|
-
ensure("(4)", constantTimeCompare("abc", "abc"));
|
629
|
-
|
630
|
-
ensure("(5)", !constantTimeCompare("", "a"));
|
631
|
-
ensure("(6)", !constantTimeCompare("", "abcd"));
|
632
|
-
ensure("(7)", !constantTimeCompare("ab", "cd"));
|
633
|
-
ensure("(8)", !constantTimeCompare("ab", "abc"));
|
634
|
-
ensure("(9)", !constantTimeCompare("ab", "abcd"));
|
635
|
-
|
636
|
-
ensure("(10)", !constantTimeCompare("a", ""));
|
637
|
-
ensure("(11)", !constantTimeCompare("abcd", ""));
|
638
|
-
ensure("(12)", !constantTimeCompare("cd", "ab"));
|
639
|
-
ensure("(13)", !constantTimeCompare("abc", "ab"));
|
640
|
-
ensure("(14)", !constantTimeCompare("abcd", "ab"));
|
641
|
-
}
|
642
|
-
|
643
|
-
/***** Test integerToOtherBase() *****/
|
644
|
-
|
645
|
-
TEST_METHOD(56) {
|
646
|
-
char buf[20], smallbuf[4];
|
647
|
-
|
648
|
-
ensure_equals("(1)", integerToOtherBase<int, 10>(0, buf, sizeof(buf)), 1u);
|
649
|
-
ensure_equals("(1.1)", buf[0], '0');
|
650
|
-
ensure_equals("(1.2)", buf[1], '\0');
|
651
|
-
|
652
|
-
ensure_equals("(2)", integerToOtherBase<int, 10>(1234, buf, sizeof(buf)), 4u);
|
653
|
-
ensure_equals("(2.1)", buf[0], '1');
|
654
|
-
ensure_equals("(2.2)", buf[1], '2');
|
655
|
-
ensure_equals("(2.3)", buf[2], '3');
|
656
|
-
ensure_equals("(2.4)", buf[3], '4');
|
657
|
-
ensure_equals("(2.5)", buf[4], '\0');
|
658
|
-
|
659
|
-
ensure_equals("(3)", integerToOtherBase<int, 10>(123, smallbuf, sizeof(smallbuf)), 3u);
|
660
|
-
ensure_equals("(3.1)", smallbuf[0], '1');
|
661
|
-
ensure_equals("(3.2)", smallbuf[1], '2');
|
662
|
-
ensure_equals("(3.3)", smallbuf[2], '3');
|
663
|
-
ensure_equals("(3.4)", smallbuf[3], '\0');
|
664
|
-
|
665
|
-
try {
|
666
|
-
integerToOtherBase<int, 10>(1234, smallbuf, sizeof(smallbuf));
|
667
|
-
fail("Exception expected");
|
668
|
-
} catch (const std::length_error &) {
|
669
|
-
// Pass.
|
670
|
-
}
|
671
|
-
}
|
672
|
-
}
|