| /* |
| * Copyright (C) 2013 University of Szeged. All rights reserved. |
| * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
| * Copyright (C) 2015-2018 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF SZEGED ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL UNIVERSITY OF SZEGED OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "Options.h" |
| |
| #include "StringFunctions.h" |
| #include <string.h> |
| |
| namespace WTR { |
| |
| static bool handleOptionNoTimeout(Options& options, const char*, const char*) |
| { |
| options.useWaitToDumpWatchdogTimer = false; |
| options.forceNoTimeout = true; |
| return true; |
| } |
| |
| static bool handleOptionVerbose(Options& options, const char*, const char*) |
| { |
| options.verbose = true; |
| return true; |
| } |
| |
| static bool handleOptionGcBetweenTests(Options& options, const char*, const char*) |
| { |
| options.gcBetweenTests = true; |
| return true; |
| } |
| |
| static bool handleOptionPixelTests(Options& options, const char*, const char*) |
| { |
| options.shouldDumpPixelsForAllTests = true; |
| return true; |
| } |
| |
| static bool handleOptionComplexText(Options& options, const char*, const char*) |
| { |
| options.forceComplexText = true; |
| return true; |
| } |
| |
| static bool handleOptionAcceleratedDrawing(Options& options, const char*, const char*) |
| { |
| options.features.boolWebPreferenceFeatures.insert_or_assign("AcceleratedDrawingEnabled", true); |
| return true; |
| } |
| |
| static bool handleOptionRemoteLayerTree(Options& options, const char*, const char*) |
| { |
| options.features.boolTestRunnerFeatures.insert_or_assign("useRemoteLayerTree", true); |
| return true; |
| } |
| |
| static bool handleOptionShowWindow(Options& options, const char*, const char*) |
| { |
| options.features.boolTestRunnerFeatures.insert_or_assign("shouldShowWindow", true); |
| return true; |
| } |
| |
| static bool handleOptionShowTouches(Options& options, const char*, const char*) |
| { |
| options.features.boolTestRunnerFeatures.insert_or_assign("shouldShowTouches", true); |
| return true; |
| } |
| |
| static bool handleOptionCheckForWorldLeaks(Options& options, const char*, const char*) |
| { |
| options.checkForWorldLeaks = true; |
| return true; |
| } |
| |
| static bool handleOptionAllowAnyHTTPSCertificateForAllowedHosts(Options& options, const char*, const char*) |
| { |
| options.allowAnyHTTPSCertificateForAllowedHosts = true; |
| return true; |
| } |
| |
| #if ENABLE(ACCESSIBILITY_ISOLATED_TREE) |
| static bool handleOptionAccessibilityIsolatedTreeMode(Options& options, const char*, const char*) |
| { |
| options.features.boolWebPreferenceFeatures.insert_or_assign("IsAccessibilityIsolatedTreeEnabled", true); |
| return true; |
| } |
| #endif |
| |
| static bool handleOptionAllowedHost(Options& options, const char*, const char* host) |
| { |
| options.allowedHosts.insert(host); |
| return true; |
| } |
| |
| static bool parseFeature(std::string_view featureString, TestFeatures& features) |
| { |
| auto strings = split(featureString, '='); |
| if (strings.empty() || strings.size() > 2) |
| return false; |
| |
| auto featureName = strings[0]; |
| bool enabled = strings.size() == 1 || strings[1] == "true"; |
| |
| // FIXME: Generalize this to work for any type of web preference using test header logic in TestFeatures.cpp |
| features.boolWebPreferenceFeatures.insert({ std::string { featureName }, enabled }); |
| return true; |
| } |
| |
| static bool handleOptionNoEnableAllExperimentalFeatures(Options& options, const char*, const char* feature) |
| { |
| options.enableAllExperimentalFeatures = false; |
| return true; |
| } |
| |
| static bool handleOptionExperimentalFeature(Options& options, const char*, const char* feature) |
| { |
| return parseFeature(feature, options.features); |
| } |
| |
| static bool handleOptionInternalFeature(Options& options, const char*, const char* feature) |
| { |
| return parseFeature(feature, options.features); |
| } |
| |
| static bool handleOptionWebCoreLogging(Options& options, const char*, const char* channels) |
| { |
| options.webCoreLogChannels = channels; |
| return true; |
| } |
| |
| static bool handleOptionWebKitLogging(Options& options, const char*, const char* channels) |
| { |
| options.webKitLogChannels = channels; |
| return true; |
| } |
| |
| static bool handleOptionUnmatched(Options& options, const char* option, const char*) |
| { |
| if (option[0] && option[1] && option[0] == '-' && option[1] == '-') |
| return true; |
| options.paths.push_back(option); |
| return true; |
| } |
| |
| OptionsHandler::OptionsHandler(Options& o) |
| : options(o) |
| { |
| optionList.append(Option("--no-timeout", "Disables all timeouts.", handleOptionNoTimeout)); |
| optionList.append(Option("--verbose", "Turns on messages.", handleOptionVerbose)); |
| optionList.append(Option("--gc-between-tests", "Garbage collection between tests.", handleOptionGcBetweenTests)); |
| optionList.append(Option("--pixel-tests", "Check pixels.", handleOptionPixelTests)); |
| optionList.append(Option("-p", "Check pixels.", handleOptionPixelTests)); |
| optionList.append(Option("--complex-text", "Force complex tests.", handleOptionComplexText)); |
| optionList.append(Option("--accelerated-drawing", "Use accelerated drawing.", handleOptionAcceleratedDrawing)); |
| optionList.append(Option("--remote-layer-tree", "Use remote layer tree.", handleOptionRemoteLayerTree)); |
| optionList.append(Option("--allowed-host", "Allows access to the specified host from tests.", handleOptionAllowedHost, true)); |
| optionList.append(Option("--allow-any-certificate-for-allowed-hosts", "Allows any HTTPS certificate for an allowed host.", handleOptionAllowAnyHTTPSCertificateForAllowedHosts)); |
| optionList.append(Option("--show-webview", "DEPRECATED. Same as --show-window", handleOptionShowWindow)); |
| optionList.append(Option("--show-window", "Make the test runner window visible during testing", handleOptionShowWindow)); |
| optionList.append(Option("--show-touches", "Show the touches during test runs (for debugging)", handleOptionShowTouches)); |
| optionList.append(Option("--world-leaks", "Check for leaks of world objects (currently, documents)", handleOptionCheckForWorldLeaks)); |
| optionList.append(Option("--no-enable-all-experimental-features", "Do not enable all experimental features by default", handleOptionNoEnableAllExperimentalFeatures)); |
| optionList.append(Option("--experimental-feature", "Enable experimental feature", handleOptionExperimentalFeature, true)); |
| optionList.append(Option("--internal-feature", "Enable internal feature", handleOptionInternalFeature, true)); |
| #if ENABLE(ACCESSIBILITY_ISOLATED_TREE) |
| optionList.append(Option("--accessibility-isolated-tree", "Enable accessibility isolated tree mode for tests", handleOptionAccessibilityIsolatedTreeMode)); |
| #endif |
| optionList.append(Option("--webcore-logging", "Enable WebCore log channels", handleOptionWebCoreLogging, true)); |
| optionList.append(Option("--webkit-logging", "Enable WebKit log channels", handleOptionWebKitLogging, true)); |
| |
| optionList.append(Option(0, 0, handleOptionUnmatched)); |
| } |
| |
| const char * OptionsHandler::usage = "Usage: WebKitTestRunner [options] filename [filename2..n]"; |
| const char * OptionsHandler::help = "Displays this help."; |
| |
| Option::Option(const char* name, const char* description, std::function<bool(Options&, const char*, const char*)> parameterHandler, bool hasArgument) |
| : name(name) |
| , description(description) |
| , parameterHandler(parameterHandler) |
| , hasArgument(hasArgument) |
| { |
| } |
| |
| bool Option::matches(const char* option) |
| { |
| return !name || !strcmp(name, option); |
| } |
| |
| bool OptionsHandler::parse(int argc, const char* argv[]) |
| { |
| bool status = true; |
| for (int argCounter = 1; argCounter < argc; ++argCounter) { |
| if (!strcmp(argv[argCounter], "--help") || !strcmp(argv[argCounter], "-h")) { |
| printHelp(); |
| return false; |
| } |
| const char* currentOption = argv[argCounter]; |
| for (Option& option : optionList) { |
| if (option.matches(currentOption)) { |
| if (!option.parameterHandler) |
| status = false; |
| else if (option.hasArgument) { |
| const char * currentArgument = argv[++argCounter]; |
| if (currentArgument) |
| status &= option.parameterHandler(options, currentOption, currentArgument); |
| else |
| status = false; |
| } else |
| status &= option.parameterHandler(options, currentOption, 0); |
| break; |
| } |
| } |
| } |
| return status; |
| } |
| |
| void OptionsHandler::printHelp(FILE* channel) |
| { |
| fputs(usage, channel); |
| fputs("\n\n -h|--help\n\t", channel); |
| fputs(help, channel); |
| fputs("\n\n", channel); |
| for (Option& option : optionList) { |
| if (!option.name) |
| continue; |
| fputs(" ", channel); |
| fputs(option.name, channel); |
| fputs((option.hasArgument ? " <param>\n\t" : "\n\t"), channel); |
| fputs(option.description, channel); |
| fputs("\n\n", channel); |
| } |
| } |
| |
| } // namespace WTR |