Linux: Depend on liberation-fonts package for RPMs.
[chromium-blink-merge.git] / components / test_runner / test_runner.h
blobb8f6284c647c9fc115f4e31938a89e6d1ab6f870
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_
6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_
8 #include <deque>
9 #include <set>
10 #include <string>
11 #include <vector>
13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h"
15 #include "components/test_runner/test_runner_export.h"
16 #include "components/test_runner/web_task.h"
17 #include "components/test_runner/web_test_runner.h"
18 #include "v8/include/v8.h"
20 class GURL;
21 class SkBitmap;
23 namespace blink {
24 class WebContentSettingsClient;
25 class WebFrame;
26 class WebString;
27 class WebView;
28 class WebURLResponse;
31 namespace gin {
32 class ArrayBufferView;
33 class Arguments;
36 namespace test_runner {
38 class InvokeCallbackTask;
39 class TestInterfaces;
40 class WebContentSettings;
41 class WebTestDelegate;
42 class WebTestProxyBase;
44 class TestRunner : public WebTestRunner,
45 public base::SupportsWeakPtr<TestRunner> {
46 public:
47 explicit TestRunner(TestInterfaces*);
48 virtual ~TestRunner();
50 void Install(blink::WebFrame* frame);
52 void SetDelegate(WebTestDelegate*);
53 void SetWebView(blink::WebView*, WebTestProxyBase*);
55 void Reset();
57 WebTaskList* mutable_task_list() { return &task_list_; }
59 void SetTestIsRunning(bool);
60 bool TestIsRunning() const { return test_is_running_; }
62 bool UseMockTheme() const { return use_mock_theme_; }
64 void InvokeCallback(scoped_ptr<InvokeCallbackTask> callback);
66 // WebTestRunner implementation.
67 bool ShouldGeneratePixelResults() override;
68 bool ShouldStayOnPageAfterHandlingBeforeUnload() const override;
69 bool ShouldDumpAsAudio() const override;
70 void GetAudioData(std::vector<unsigned char>* buffer_view) const override;
71 bool ShouldDumpBackForwardList() const override;
72 blink::WebContentSettingsClient* GetWebContentSettings() const override;
74 // Methods used by WebTestProxyBase.
75 bool shouldDumpSelectionRect() const;
76 bool isPrinting() const;
77 bool shouldDumpAsText();
78 bool shouldDumpAsTextWithPixelResults();
79 bool shouldDumpAsCustomText() const;
80 std:: string customDumpText() const;
81 bool shouldDumpAsMarkup();
82 bool shouldDumpChildFrameScrollPositions() const;
83 bool shouldDumpChildFramesAsMarkup() const;
84 bool shouldDumpChildFramesAsText() const;
85 void ShowDevTools(const std::string& settings,
86 const std::string& frontend_url);
87 void ClearDevToolsLocalStorage();
88 void setShouldDumpAsText(bool);
89 void setShouldDumpAsMarkup(bool);
90 void setCustomTextOutput(std::string text);
91 void setShouldGeneratePixelResults(bool);
92 void setShouldDumpFrameLoadCallbacks(bool);
93 void setShouldDumpPingLoaderCallbacks(bool);
94 void setShouldEnableViewSource(bool);
95 bool shouldDumpEditingCallbacks() const;
96 bool shouldDumpFrameLoadCallbacks() const;
97 bool shouldDumpPingLoaderCallbacks() const;
98 bool shouldDumpUserGestureInFrameLoadCallbacks() const;
99 bool shouldDumpTitleChanges() const;
100 bool shouldDumpIconChanges() const;
101 bool shouldDumpCreateView() const;
102 bool canOpenWindows() const;
103 bool shouldDumpResourceLoadCallbacks() const;
104 bool shouldDumpResourceRequestCallbacks() const;
105 bool shouldDumpResourceResponseMIMETypes() const;
106 bool shouldDumpStatusCallbacks() const;
107 bool shouldDumpProgressFinishedCallback() const;
108 bool shouldDumpSpellCheckCallbacks() const;
109 bool shouldWaitUntilExternalURLLoad() const;
110 const std::set<std::string>* httpHeadersToClear() const;
111 void setTopLoadingFrame(blink::WebFrame*, bool);
112 blink::WebFrame* topLoadingFrame() const;
113 void policyDelegateDone();
114 bool policyDelegateEnabled() const;
115 bool policyDelegateIsPermissive() const;
116 bool policyDelegateShouldNotifyDone() const;
117 bool shouldInterceptPostMessage() const;
118 bool shouldDumpResourcePriorities() const;
119 bool RequestPointerLock();
120 void RequestPointerUnlock();
121 bool isPointerLocked();
122 void setToolTipText(const blink::WebString&);
123 bool shouldDumpDragImage();
124 bool shouldDumpNavigationPolicy() const;
126 bool midiAccessorResult();
128 // A single item in the work queue.
129 class WorkItem {
130 public:
131 virtual ~WorkItem() {}
133 // Returns true if this started a load.
134 virtual bool Run(WebTestDelegate*, blink::WebView*) = 0;
137 private:
138 friend class InvokeCallbackTask;
139 friend class TestRunnerBindings;
140 friend class WorkQueue;
142 // Helper class for managing events queued by methods like queueLoad or
143 // queueScript.
144 class WorkQueue {
145 public:
146 explicit WorkQueue(TestRunner* controller);
147 virtual ~WorkQueue();
148 void ProcessWorkSoon();
150 // Reset the state of the class between tests.
151 void Reset();
153 void AddWork(WorkItem*);
155 void set_frozen(bool frozen) { frozen_ = frozen; }
156 bool is_empty() { return queue_.empty(); }
157 WebTaskList* mutable_task_list() { return &task_list_; }
159 private:
160 void ProcessWork();
162 class WorkQueueTask : public WebMethodTask<WorkQueue> {
163 public:
164 WorkQueueTask(WorkQueue* object) : WebMethodTask<WorkQueue>(object) {}
166 void RunIfValid() override;
169 WebTaskList task_list_;
170 std::deque<WorkItem*> queue_;
171 bool frozen_;
172 TestRunner* controller_;
175 ///////////////////////////////////////////////////////////////////////////
176 // Methods dealing with the test logic
178 // By default, tests end when page load is complete. These methods are used
179 // to delay the completion of the test until notifyDone is called.
180 void NotifyDone();
181 void WaitUntilDone();
183 // Methods for adding actions to the work queue. Used in conjunction with
184 // waitUntilDone/notifyDone above.
185 void QueueBackNavigation(int how_far_back);
186 void QueueForwardNavigation(int how_far_forward);
187 void QueueReload();
188 void QueueLoadingScript(const std::string& script);
189 void QueueNonLoadingScript(const std::string& script);
190 void QueueLoad(const std::string& url, const std::string& target);
191 void QueueLoadHTMLString(gin::Arguments* args);
193 // Causes navigation actions just printout the intended navigation instead
194 // of taking you to the page. This is used for cases like mailto, where you
195 // don't actually want to open the mail program.
196 void SetCustomPolicyDelegate(gin::Arguments* args);
198 // Delays completion of the test until the policy delegate runs.
199 void WaitForPolicyDelegate();
201 // Functions for dealing with windows. By default we block all new windows.
202 int WindowCount();
203 void SetCloseRemainingWindowsWhenComplete(bool close_remaining_windows);
204 void ResetTestHelperControllers();
206 ///////////////////////////////////////////////////////////////////////////
207 // Methods implemented entirely in terms of chromium's public WebKit API
209 // Method that controls whether pressing Tab key cycles through page elements
210 // or inserts a '\t' char in text area
211 void SetTabKeyCyclesThroughElements(bool tab_key_cycles_through_elements);
213 // Executes an internal command (superset of document.execCommand() commands).
214 void ExecCommand(gin::Arguments* args);
216 // Checks if an internal command is currently available.
217 bool IsCommandEnabled(const std::string& command);
219 bool CallShouldCloseOnWebView();
220 void SetDomainRelaxationForbiddenForURLScheme(bool forbidden,
221 const std::string& scheme);
222 v8::Local<v8::Value> EvaluateScriptInIsolatedWorldAndReturnValue(
223 int world_id, const std::string& script);
224 void EvaluateScriptInIsolatedWorld(int world_id, const std::string& script);
225 void SetIsolatedWorldSecurityOrigin(int world_id,
226 v8::Local<v8::Value> origin);
227 void SetIsolatedWorldContentSecurityPolicy(int world_id,
228 const std::string& policy);
230 // Allows layout tests to manage origins' whitelisting.
231 void AddOriginAccessWhitelistEntry(const std::string& source_origin,
232 const std::string& destination_protocol,
233 const std::string& destination_host,
234 bool allow_destination_subdomains);
235 void RemoveOriginAccessWhitelistEntry(const std::string& source_origin,
236 const std::string& destination_protocol,
237 const std::string& destination_host,
238 bool allow_destination_subdomains);
240 // Returns true if the current page box has custom page size style for
241 // printing.
242 bool HasCustomPageSizeStyle(int page_index);
244 // Forces the selection colors for testing under Linux.
245 void ForceRedSelectionColors();
247 // Add |source_code| as an injected stylesheet to the active document of the
248 // window of the current V8 context.
249 void InsertStyleSheet(const std::string& source_code);
251 bool FindString(const std::string& search_text,
252 const std::vector<std::string>& options_array);
254 std::string SelectionAsMarkup();
256 // Enables or disables subpixel positioning (i.e. fractional X positions for
257 // glyphs) in text rendering on Linux. Since this method changes global
258 // settings, tests that call it must use their own custom font family for
259 // all text that they render. If not, an already-cached style will be used,
260 // resulting in the changed setting being ignored.
261 void SetTextSubpixelPositioning(bool value);
263 // Switch the visibility of the page.
264 void SetPageVisibility(const std::string& new_visibility);
266 // Changes the direction of the focused element.
267 void SetTextDirection(const std::string& direction_name);
269 // After this function is called, all window-sizing machinery is
270 // short-circuited inside the renderer. This mode is necessary for
271 // some tests that were written before browsers had multi-process architecture
272 // and rely on window resizes to happen synchronously.
273 // The function has "unfortunate" it its name because we must strive to remove
274 // all tests that rely on this... well, unfortunate behavior. See
275 // http://crbug.com/309760 for the plan.
276 void UseUnfortunateSynchronousResizeMode();
278 bool EnableAutoResizeMode(int min_width,
279 int min_height,
280 int max_width,
281 int max_height);
282 bool DisableAutoResizeMode(int new_width, int new_height);
284 void SetMockDeviceLight(double value);
285 void ResetDeviceLight();
286 // Device Motion / Device Orientation related functions
287 void SetMockDeviceMotion(bool has_acceleration_x, double acceleration_x,
288 bool has_acceleration_y, double acceleration_y,
289 bool has_acceleration_z, double acceleration_z,
290 bool has_acceleration_including_gravity_x,
291 double acceleration_including_gravity_x,
292 bool has_acceleration_including_gravity_y,
293 double acceleration_including_gravity_y,
294 bool has_acceleration_including_gravity_z,
295 double acceleration_including_gravity_z,
296 bool has_rotation_rate_alpha,
297 double rotation_rate_alpha,
298 bool has_rotation_rate_beta,
299 double rotation_rate_beta,
300 bool has_rotation_rate_gamma,
301 double rotation_rate_gamma,
302 double interval);
303 void SetMockDeviceOrientation(bool has_alpha, double alpha,
304 bool has_beta, double beta,
305 bool has_gamma, double gamma,
306 bool has_absolute, bool absolute);
308 void SetMockScreenOrientation(const std::string& orientation);
310 void DidChangeBatteryStatus(bool charging,
311 double chargingTime,
312 double dischargingTime,
313 double level);
314 void ResetBatteryStatus();
316 void DidAcquirePointerLock();
317 void DidNotAcquirePointerLock();
318 void DidLosePointerLock();
319 void SetPointerLockWillFailSynchronously();
320 void SetPointerLockWillRespondAsynchronously();
322 ///////////////////////////////////////////////////////////////////////////
323 // Methods modifying WebPreferences.
325 // Set the WebPreference that controls webkit's popup blocking.
326 void SetPopupBlockingEnabled(bool block_popups);
328 void SetJavaScriptCanAccessClipboard(bool can_access);
329 void SetXSSAuditorEnabled(bool enabled);
330 void SetAllowUniversalAccessFromFileURLs(bool allow);
331 void SetAllowFileAccessFromFileURLs(bool allow);
332 void OverridePreference(const std::string key, v8::Local<v8::Value> value);
334 // Modify accept_languages in RendererPreferences.
335 void SetAcceptLanguages(const std::string& accept_languages);
337 // Enable or disable plugins.
338 void SetPluginsEnabled(bool enabled);
340 ///////////////////////////////////////////////////////////////////////////
341 // Methods that modify the state of TestRunner
343 // This function sets a flag that tells the test_shell to print a line of
344 // descriptive text for each editing command. It takes no arguments, and
345 // ignores any that may be present.
346 void DumpEditingCallbacks();
348 // This function sets a flag that tells the test_shell to dump pages as
349 // plain text, rather than as a text representation of the renderer's state.
350 // The pixel results will not be generated for this test.
351 void DumpAsText();
353 // This function sets a flag that tells the test_shell to dump pages as
354 // the DOM contents, rather than as a text representation of the renderer's
355 // state. The pixel results will not be generated for this test.
356 void DumpAsMarkup();
358 // This function sets a flag that tells the test_shell to dump pages as
359 // plain text, rather than as a text representation of the renderer's state.
360 // It will also generate a pixel dump for the test.
361 void DumpAsTextWithPixelResults();
363 // This function sets a flag that tells the test_shell to print out the
364 // scroll offsets of the child frames. It ignores all.
365 void DumpChildFrameScrollPositions();
367 // This function sets a flag that tells the test_shell to recursively
368 // dump all frames as plain text if the DumpAsText flag is set.
369 // It takes no arguments, and ignores any that may be present.
370 void DumpChildFramesAsText();
372 // This function sets a flag that tells the test_shell to recursively
373 // dump all frames as the DOM contents if the DumpAsMarkup flag is set.
374 // It takes no arguments, and ignores any that may be present.
375 void DumpChildFramesAsMarkup();
377 // This function sets a flag that tells the test_shell to print out the
378 // information about icon changes notifications from WebKit.
379 void DumpIconChanges();
381 // Deals with Web Audio WAV file data.
382 void SetAudioData(const gin::ArrayBufferView& view);
384 // This function sets a flag that tells the test_shell to print a line of
385 // descriptive text for each frame load callback. It takes no arguments, and
386 // ignores any that may be present.
387 void DumpFrameLoadCallbacks();
389 // This function sets a flag that tells the test_shell to print a line of
390 // descriptive text for each PingLoader dispatch. It takes no arguments, and
391 // ignores any that may be present.
392 void DumpPingLoaderCallbacks();
394 // This function sets a flag that tells the test_shell to print a line of
395 // user gesture status text for some frame load callbacks. It takes no
396 // arguments, and ignores any that may be present.
397 void DumpUserGestureInFrameLoadCallbacks();
399 void DumpTitleChanges();
401 // This function sets a flag that tells the test_shell to dump all calls to
402 // WebViewClient::createView().
403 // It takes no arguments, and ignores any that may be present.
404 void DumpCreateView();
406 void SetCanOpenWindows();
408 // This function sets a flag that tells the test_shell to dump a descriptive
409 // line for each resource load callback. It takes no arguments, and ignores
410 // any that may be present.
411 void DumpResourceLoadCallbacks();
413 // This function sets a flag that tells the test_shell to print a line of
414 // descriptive text for each element that requested a resource. It takes no
415 // arguments, and ignores any that may be present.
416 void DumpResourceRequestCallbacks();
418 // This function sets a flag that tells the test_shell to dump the MIME type
419 // for each resource that was loaded. It takes no arguments, and ignores any
420 // that may be present.
421 void DumpResourceResponseMIMETypes();
423 // WebContentSettingsClient related.
424 void SetImagesAllowed(bool allowed);
425 void SetMediaAllowed(bool allowed);
426 void SetScriptsAllowed(bool allowed);
427 void SetStorageAllowed(bool allowed);
428 void SetPluginsAllowed(bool allowed);
429 void SetAllowDisplayOfInsecureContent(bool allowed);
430 void SetAllowRunningOfInsecureContent(bool allowed);
431 void DumpPermissionClientCallbacks();
433 // This function sets a flag that tells the test_shell to dump all calls
434 // to window.status().
435 // It takes no arguments, and ignores any that may be present.
436 void DumpWindowStatusChanges();
438 // This function sets a flag that tells the test_shell to print a line of
439 // descriptive text for the progress finished callback. It takes no
440 // arguments, and ignores any that may be present.
441 void DumpProgressFinishedCallback();
443 // This function sets a flag that tells the test_shell to dump all
444 // the lines of descriptive text about spellcheck execution.
445 void DumpSpellCheckCallbacks();
447 // This function sets a flag that tells the test_shell to print out a text
448 // representation of the back/forward list. It ignores all arguments.
449 void DumpBackForwardList();
451 void DumpSelectionRect();
453 // Causes layout to happen as if targetted to printed pages.
454 void SetPrinting();
456 // Clears the state from SetPrinting().
457 void ClearPrinting();
459 void SetShouldStayOnPageAfterHandlingBeforeUnload(bool value);
461 // Causes WillSendRequest to clear certain headers.
462 void SetWillSendRequestClearHeader(const std::string& header);
464 // This function sets a flag that tells the test_shell to dump a descriptive
465 // line for each resource load's priority and any time that priority
466 // changes. It takes no arguments, and ignores any that may be present.
467 void DumpResourceRequestPriorities();
469 // Sets a flag to enable the mock theme.
470 void SetUseMockTheme(bool use);
472 // Sets a flag that causes the test to be marked as completed when the
473 // WebFrameClient receives a loadURLExternally() call.
474 void WaitUntilExternalURLLoad();
476 // This function sets a flag which tells the WebTestProxy to dump the drag
477 // image when the next drag-and-drop is initiated. It is equivalent to
478 // DumpAsTextWithPixelResults but the pixel results will be the drag image
479 // instead of a snapshot of the page.
480 void DumpDragImage();
482 // Sets a flag that tells the WebTestProxy to dump the default navigation
483 // policy passed to the decidePolicyForNavigation callback.
484 void DumpNavigationPolicy();
486 ///////////////////////////////////////////////////////////////////////////
487 // Methods interacting with the WebTestProxy
489 ///////////////////////////////////////////////////////////////////////////
490 // Methods forwarding to the WebTestDelegate
492 // Shows DevTools window.
493 void ShowWebInspector(const std::string& str,
494 const std::string& frontend_url);
495 void CloseWebInspector();
497 // Inspect chooser state
498 bool IsChooserShown();
500 // Allows layout tests to exec scripts at WebInspector side.
501 void EvaluateInWebInspector(int call_id, const std::string& script);
503 // Clears all databases.
504 void ClearAllDatabases();
505 // Sets the default quota for all origins
506 void SetDatabaseQuota(int quota);
508 // Changes the cookie policy from the default to allow all cookies.
509 void SetAlwaysAcceptCookies(bool accept);
511 // Gives focus to the window.
512 void SetWindowIsKey(bool value);
514 // Converts a URL starting with file:///tmp/ to the local mapping.
515 std::string PathToLocalResource(const std::string& path);
517 // Used to set the device scale factor.
518 void SetBackingScaleFactor(double value, v8::Local<v8::Function> callback);
520 // Change the device color profile while running a layout test.
521 void SetColorProfile(const std::string& name,
522 v8::Local<v8::Function> callback);
524 // Change the bluetooth test data while running a layout test and resets the
525 // chooser to accept the first device.
526 void SetBluetoothMockDataSet(const std::string& name);
528 // Makes the Bluetooth chooser record its input and wait for instructions from
529 // the test program on how to proceed.
530 void SetBluetoothManualChooser();
532 // Returns the events recorded since the last call to this function.
533 std::vector<std::string> GetBluetoothManualChooserEvents();
535 // Calls the BluetoothChooser::EventHandler with the arguments here. Valid
536 // event strings are:
537 // * "cancel" - simulates the user canceling the chooser.
538 // * "select" - simulates the user selecting a device whose device ID is in
539 // |argument|.
540 void SendBluetoothManualChooserEvent(const std::string& event,
541 const std::string& argument);
543 // Enables mock geofencing service while running a layout test.
544 // |service_available| indicates if the mock service should mock geofencing
545 // being available or not.
546 void SetGeofencingMockProvider(bool service_available);
548 // Disables mock geofencing service while running a layout test.
549 void ClearGeofencingMockProvider();
551 // Set the mock geofencing position while running a layout test.
552 void SetGeofencingMockPosition(double latitude, double longitude);
554 // Sets the permission's |name| to |value| for a given {origin, embedder}
555 // tuple.
556 void SetPermission(const std::string& name,
557 const std::string& value,
558 const GURL& origin,
559 const GURL& embedding_origin);
561 // Causes the beforeinstallprompt event to be sent to the renderer.
562 void DispatchBeforeInstallPromptEvent(
563 int request_id,
564 const std::vector<std::string>& event_platforms,
565 v8::Local<v8::Function> callback);
567 // Resolve the beforeinstallprompt event with the matching request id.
568 void ResolveBeforeInstallPromptPromise(int request_id,
569 const std::string& platform);
571 // Calls setlocale(LC_ALL, ...) for a specified locale.
572 // Resets between tests.
573 void SetPOSIXLocale(const std::string& locale);
575 // MIDI function to control permission handling.
576 void SetMIDIAccessorResult(bool result);
578 // Simulates a click on a Web Notification.
579 void SimulateWebNotificationClick(const std::string& title, int action_index);
581 // Speech recognition related functions.
582 void AddMockSpeechRecognitionResult(const std::string& transcript,
583 double confidence);
584 void SetMockSpeechRecognitionError(const std::string& error,
585 const std::string& message);
586 bool WasMockSpeechRecognitionAborted();
588 // Credential Manager mock functions
589 // TODO(mkwst): Support FederatedCredential.
590 void AddMockCredentialManagerResponse(const std::string& id,
591 const std::string& name,
592 const std::string& avatar,
593 const std::string& password);
595 // WebPageOverlay related functions. Permits the adding and removing of only
596 // one opaque overlay.
597 void AddWebPageOverlay();
598 void RemoveWebPageOverlay();
600 void LayoutAndPaintAsync();
601 void LayoutAndPaintAsyncThen(v8::Local<v8::Function> callback);
603 // Similar to LayoutAndPaintAsyncThen(), but pass parameters of the captured
604 // snapshot (width, height, snapshot) to the callback. The snapshot is in
605 // uint8 RGBA format.
606 void CapturePixelsAsyncThen(v8::Local<v8::Function> callback);
607 // Similar to CapturePixelsAsyncThen(). Copies to the clipboard the image
608 // located at a particular point in the WebView (if there is such an image),
609 // reads back its pixels, and provides the snapshot to the callback. If there
610 // is no image at that point, calls the callback with (0, 0, empty_snapshot).
611 void CopyImageAtAndCapturePixelsAsyncThen(
612 int x, int y, const v8::Local<v8::Function> callback);
614 void GetManifestThen(v8::Local<v8::Function> callback);
616 ///////////////////////////////////////////////////////////////////////////
617 // Internal helpers
619 void GetManifestCallback(scoped_ptr<InvokeCallbackTask> task,
620 const blink::WebURLResponse& response,
621 const std::string& data);
622 void CapturePixelsCallback(scoped_ptr<InvokeCallbackTask> task,
623 const SkBitmap& snapshot);
624 void DispatchBeforeInstallPromptCallback(scoped_ptr<InvokeCallbackTask> task,
625 bool canceled);
627 void CheckResponseMimeType();
628 void CompleteNotifyDone();
630 void DidAcquirePointerLockInternal();
631 void DidNotAcquirePointerLockInternal();
632 void DidLosePointerLockInternal();
634 // In the Mac code, this is called to trigger the end of a test after the
635 // page has finished loading. From here, we can generate the dump for the
636 // test.
637 void LocationChangeDone();
639 // Sets a flag causing the next call to WebGLRenderingContext::create to fail.
640 void ForceNextWebGLContextCreationToFail();
642 // Sets a flag causing the next call to DrawingBuffer::create to fail.
643 void ForceNextDrawingBufferCreationToFail();
645 bool test_is_running_;
647 // When reset is called, go through and close all but the main test shell
648 // window. By default, set to true but toggled to false using
649 // setCloseRemainingWindowsWhenComplete().
650 bool close_remaining_windows_;
652 // If true, don't dump output until notifyDone is called.
653 bool wait_until_done_;
655 // If true, ends the test when a URL is loaded externally via
656 // WebFrameClient::loadURLExternally().
657 bool wait_until_external_url_load_;
659 // Causes navigation actions just printout the intended navigation instead
660 // of taking you to the page. This is used for cases like mailto, where you
661 // don't actually want to open the mail program.
662 bool policy_delegate_enabled_;
664 // Toggles the behavior of the policy delegate. If true, then navigations
665 // will be allowed. Otherwise, they will be ignored (dropped).
666 bool policy_delegate_is_permissive_;
668 // If true, the policy delegate will signal layout test completion.
669 bool policy_delegate_should_notify_done_;
671 WorkQueue work_queue_;
673 // Bound variable to return the name of this platform (chromium).
674 std::string platform_name_;
676 // Bound variable to store the last tooltip text
677 std::string tooltip_text_;
679 // Bound variable to disable notifyDone calls. This is used in GC leak
680 // tests, where existing LayoutTests are loaded within an iframe. The GC
681 // test harness will set this flag to ignore the notifyDone calls from the
682 // target LayoutTest.
683 bool disable_notify_done_;
685 // Bound variable counting the number of top URLs visited.
686 int web_history_item_count_;
688 // Bound variable to set whether postMessages should be intercepted or not
689 bool intercept_post_message_;
691 // If true, the test_shell will write a descriptive line for each editing
692 // command.
693 bool dump_editting_callbacks_;
695 // If true, the test_shell will generate pixel results in DumpAsText mode
696 bool generate_pixel_results_;
698 // If true, the test_shell will produce a plain text dump rather than a
699 // text representation of the renderer.
700 bool dump_as_text_;
702 // If true and if dump_as_text_ is true, the test_shell will recursively
703 // dump all frames as plain text.
704 bool dump_child_frames_as_text_;
706 // If true, the test_shell will produce a dump of the DOM rather than a text
707 // representation of the renderer.
708 bool dump_as_markup_;
710 // If true and if dump_as_markup_ is true, the test_shell will recursively
711 // produce a dump of the DOM rather than a text representation of the
712 // renderer.
713 bool dump_child_frames_as_markup_;
715 // If true, the test_shell will print out the child frame scroll offsets as
716 // well.
717 bool dump_child_frame_scroll_positions_;
719 // If true, the test_shell will print out the icon change notifications.
720 bool dump_icon_changes_;
722 // If true, the test_shell will output a base64 encoded WAVE file.
723 bool dump_as_audio_;
725 // If true, the test_shell will output a descriptive line for each frame
726 // load callback.
727 bool dump_frame_load_callbacks_;
729 // If true, the test_shell will output a descriptive line for each
730 // PingLoader dispatched.
731 bool dump_ping_loader_callbacks_;
733 // If true, the test_shell will output a line of the user gesture status
734 // text for some frame load callbacks.
735 bool dump_user_gesture_in_frame_load_callbacks_;
737 // If true, output a message when the page title is changed.
738 bool dump_title_changes_;
740 // If true, output a descriptive line each time WebViewClient::createView
741 // is invoked.
742 bool dump_create_view_;
744 // If true, new windows can be opened via javascript or by plugins. By
745 // default, set to false and can be toggled to true using
746 // setCanOpenWindows().
747 bool can_open_windows_;
749 // If true, the test_shell will output a descriptive line for each resource
750 // load callback.
751 bool dump_resource_load_callbacks_;
753 // If true, the test_shell will output a descriptive line for each resource
754 // request callback.
755 bool dump_resource_request_callbacks_;
757 // If true, the test_shell will output the MIME type for each resource that
758 // was loaded.
759 bool dump_resource_response_mime_types_;
761 // If true, the test_shell will dump all changes to window.status.
762 bool dump_window_status_changes_;
764 // If true, the test_shell will output a descriptive line for the progress
765 // finished callback.
766 bool dump_progress_finished_callback_;
768 // If true, the test_shell will output descriptive test for spellcheck
769 // execution.
770 bool dump_spell_check_callbacks_;
772 // If true, the test_shell will produce a dump of the back forward list as
773 // well.
774 bool dump_back_forward_list_;
776 // If true, the test_shell will draw the bounds of the current selection rect
777 // taking possible transforms of the selection rect into account.
778 bool dump_selection_rect_;
780 // If true, the test_shell will dump the drag image as pixel results.
781 bool dump_drag_image_;
783 // If true, content_shell will dump the default navigation policy passed to
784 // WebFrameClient::decidePolicyForNavigation.
785 bool dump_navigation_policy_;
787 // If true, pixel dump will be produced as a series of 1px-tall, view-wide
788 // individual paints over the height of the view.
789 bool test_repaint_;
791 // If true and test_repaint_ is true as well, pixel dump will be produced as
792 // a series of 1px-wide, view-tall paints across the width of the view.
793 bool sweep_horizontally_;
795 // If true, layout is to target printed pages.
796 bool is_printing_;
798 // If false, MockWebMIDIAccessor fails on startSession() for testing.
799 bool midi_accessor_result_;
801 bool should_stay_on_page_after_handling_before_unload_;
803 bool should_dump_resource_priorities_;
805 bool has_custom_text_output_;
806 std::string custom_text_output_;
808 std::set<std::string> http_headers_to_clear_;
810 // WAV audio data is stored here.
811 std::vector<unsigned char> audio_data_;
813 // Used for test timeouts.
814 WebTaskList task_list_;
816 TestInterfaces* test_interfaces_;
817 WebTestDelegate* delegate_;
818 blink::WebView* web_view_;
819 WebTestProxyBase* proxy_;
821 // This is non-0 IFF a load is in progress.
822 blink::WebFrame* top_loading_frame_;
824 // WebContentSettingsClient mock object.
825 scoped_ptr<WebContentSettings> web_content_settings_;
827 bool pointer_locked_;
828 enum {
829 PointerLockWillSucceed,
830 PointerLockWillRespondAsync,
831 PointerLockWillFailSync,
832 } pointer_lock_planned_result_;
833 bool use_mock_theme_;
835 base::WeakPtrFactory<TestRunner> weak_factory_;
837 DISALLOW_COPY_AND_ASSIGN(TestRunner);
840 } // namespace test_runner
842 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_