Update mojo sdk to rev c02a28868825edfa57ab77947b8cb15e741c5598
[chromium-blink-merge.git] / components / test_runner / test_runner.h
blob6b389b1417476b7ef7be9f020e0de8596547a4f9
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.
525 void SetBluetoothMockDataSet(const std::string& name);
527 // Enables mock geofencing service while running a layout test.
528 // |service_available| indicates if the mock service should mock geofencing
529 // being available or not.
530 void SetGeofencingMockProvider(bool service_available);
532 // Disables mock geofencing service while running a layout test.
533 void ClearGeofencingMockProvider();
535 // Set the mock geofencing position while running a layout test.
536 void SetGeofencingMockPosition(double latitude, double longitude);
538 // Sets the permission's |name| to |value| for a given {origin, embedder}
539 // tuple.
540 void SetPermission(const std::string& name,
541 const std::string& value,
542 const GURL& origin,
543 const GURL& embedding_origin);
545 // Causes the beforeinstallprompt event to be sent to the renderer.
546 void DispatchBeforeInstallPromptEvent(
547 int request_id,
548 const std::vector<std::string>& event_platforms,
549 v8::Local<v8::Function> callback);
551 // Resolve the beforeinstallprompt event with the matching request id.
552 void ResolveBeforeInstallPromptPromise(int request_id,
553 const std::string& platform);
555 // Calls setlocale(LC_ALL, ...) for a specified locale.
556 // Resets between tests.
557 void SetPOSIXLocale(const std::string& locale);
559 // MIDI function to control permission handling.
560 void SetMIDIAccessorResult(bool result);
562 // Simulates a click on a Web Notification.
563 void SimulateWebNotificationClick(const std::string& title, int action_index);
565 // Speech recognition related functions.
566 void AddMockSpeechRecognitionResult(const std::string& transcript,
567 double confidence);
568 void SetMockSpeechRecognitionError(const std::string& error,
569 const std::string& message);
570 bool WasMockSpeechRecognitionAborted();
572 // Credential Manager mock functions
573 // TODO(mkwst): Support FederatedCredential.
574 void AddMockCredentialManagerResponse(const std::string& id,
575 const std::string& name,
576 const std::string& avatar,
577 const std::string& password);
579 // WebPageOverlay related functions. Permits the adding and removing of only
580 // one opaque overlay.
581 void AddWebPageOverlay();
582 void RemoveWebPageOverlay();
584 void LayoutAndPaintAsync();
585 void LayoutAndPaintAsyncThen(v8::Local<v8::Function> callback);
587 // Similar to LayoutAndPaintAsyncThen(), but pass parameters of the captured
588 // snapshot (width, height, snapshot) to the callback. The snapshot is in
589 // uint8 RGBA format.
590 void CapturePixelsAsyncThen(v8::Local<v8::Function> callback);
591 // Similar to CapturePixelsAsyncThen(). Copies to the clipboard the image
592 // located at a particular point in the WebView (if there is such an image),
593 // reads back its pixels, and provides the snapshot to the callback. If there
594 // is no image at that point, calls the callback with (0, 0, empty_snapshot).
595 void CopyImageAtAndCapturePixelsAsyncThen(
596 int x, int y, const v8::Local<v8::Function> callback);
598 void GetManifestThen(v8::Local<v8::Function> callback);
600 ///////////////////////////////////////////////////////////////////////////
601 // Internal helpers
603 void GetManifestCallback(scoped_ptr<InvokeCallbackTask> task,
604 const blink::WebURLResponse& response,
605 const std::string& data);
606 void CapturePixelsCallback(scoped_ptr<InvokeCallbackTask> task,
607 const SkBitmap& snapshot);
608 void DispatchBeforeInstallPromptCallback(scoped_ptr<InvokeCallbackTask> task,
609 bool canceled);
611 void CheckResponseMimeType();
612 void CompleteNotifyDone();
614 void DidAcquirePointerLockInternal();
615 void DidNotAcquirePointerLockInternal();
616 void DidLosePointerLockInternal();
618 // In the Mac code, this is called to trigger the end of a test after the
619 // page has finished loading. From here, we can generate the dump for the
620 // test.
621 void LocationChangeDone();
623 // Sets a flag causing the next call to WebGLRenderingContext::create to fail.
624 void ForceNextWebGLContextCreationToFail();
626 // Sets a flag causing the next call to DrawingBuffer::create to fail.
627 void ForceNextDrawingBufferCreationToFail();
629 bool test_is_running_;
631 // When reset is called, go through and close all but the main test shell
632 // window. By default, set to true but toggled to false using
633 // setCloseRemainingWindowsWhenComplete().
634 bool close_remaining_windows_;
636 // If true, don't dump output until notifyDone is called.
637 bool wait_until_done_;
639 // If true, ends the test when a URL is loaded externally via
640 // WebFrameClient::loadURLExternally().
641 bool wait_until_external_url_load_;
643 // Causes navigation actions just printout the intended navigation instead
644 // of taking you to the page. This is used for cases like mailto, where you
645 // don't actually want to open the mail program.
646 bool policy_delegate_enabled_;
648 // Toggles the behavior of the policy delegate. If true, then navigations
649 // will be allowed. Otherwise, they will be ignored (dropped).
650 bool policy_delegate_is_permissive_;
652 // If true, the policy delegate will signal layout test completion.
653 bool policy_delegate_should_notify_done_;
655 WorkQueue work_queue_;
657 // Bound variable to return the name of this platform (chromium).
658 std::string platform_name_;
660 // Bound variable to store the last tooltip text
661 std::string tooltip_text_;
663 // Bound variable to disable notifyDone calls. This is used in GC leak
664 // tests, where existing LayoutTests are loaded within an iframe. The GC
665 // test harness will set this flag to ignore the notifyDone calls from the
666 // target LayoutTest.
667 bool disable_notify_done_;
669 // Bound variable counting the number of top URLs visited.
670 int web_history_item_count_;
672 // Bound variable to set whether postMessages should be intercepted or not
673 bool intercept_post_message_;
675 // If true, the test_shell will write a descriptive line for each editing
676 // command.
677 bool dump_editting_callbacks_;
679 // If true, the test_shell will generate pixel results in DumpAsText mode
680 bool generate_pixel_results_;
682 // If true, the test_shell will produce a plain text dump rather than a
683 // text representation of the renderer.
684 bool dump_as_text_;
686 // If true and if dump_as_text_ is true, the test_shell will recursively
687 // dump all frames as plain text.
688 bool dump_child_frames_as_text_;
690 // If true, the test_shell will produce a dump of the DOM rather than a text
691 // representation of the renderer.
692 bool dump_as_markup_;
694 // If true and if dump_as_markup_ is true, the test_shell will recursively
695 // produce a dump of the DOM rather than a text representation of the
696 // renderer.
697 bool dump_child_frames_as_markup_;
699 // If true, the test_shell will print out the child frame scroll offsets as
700 // well.
701 bool dump_child_frame_scroll_positions_;
703 // If true, the test_shell will print out the icon change notifications.
704 bool dump_icon_changes_;
706 // If true, the test_shell will output a base64 encoded WAVE file.
707 bool dump_as_audio_;
709 // If true, the test_shell will output a descriptive line for each frame
710 // load callback.
711 bool dump_frame_load_callbacks_;
713 // If true, the test_shell will output a descriptive line for each
714 // PingLoader dispatched.
715 bool dump_ping_loader_callbacks_;
717 // If true, the test_shell will output a line of the user gesture status
718 // text for some frame load callbacks.
719 bool dump_user_gesture_in_frame_load_callbacks_;
721 // If true, output a message when the page title is changed.
722 bool dump_title_changes_;
724 // If true, output a descriptive line each time WebViewClient::createView
725 // is invoked.
726 bool dump_create_view_;
728 // If true, new windows can be opened via javascript or by plugins. By
729 // default, set to false and can be toggled to true using
730 // setCanOpenWindows().
731 bool can_open_windows_;
733 // If true, the test_shell will output a descriptive line for each resource
734 // load callback.
735 bool dump_resource_load_callbacks_;
737 // If true, the test_shell will output a descriptive line for each resource
738 // request callback.
739 bool dump_resource_request_callbacks_;
741 // If true, the test_shell will output the MIME type for each resource that
742 // was loaded.
743 bool dump_resource_response_mime_types_;
745 // If true, the test_shell will dump all changes to window.status.
746 bool dump_window_status_changes_;
748 // If true, the test_shell will output a descriptive line for the progress
749 // finished callback.
750 bool dump_progress_finished_callback_;
752 // If true, the test_shell will output descriptive test for spellcheck
753 // execution.
754 bool dump_spell_check_callbacks_;
756 // If true, the test_shell will produce a dump of the back forward list as
757 // well.
758 bool dump_back_forward_list_;
760 // If true, the test_shell will draw the bounds of the current selection rect
761 // taking possible transforms of the selection rect into account.
762 bool dump_selection_rect_;
764 // If true, the test_shell will dump the drag image as pixel results.
765 bool dump_drag_image_;
767 // If true, content_shell will dump the default navigation policy passed to
768 // WebFrameClient::decidePolicyForNavigation.
769 bool dump_navigation_policy_;
771 // If true, pixel dump will be produced as a series of 1px-tall, view-wide
772 // individual paints over the height of the view.
773 bool test_repaint_;
775 // If true and test_repaint_ is true as well, pixel dump will be produced as
776 // a series of 1px-wide, view-tall paints across the width of the view.
777 bool sweep_horizontally_;
779 // If true, layout is to target printed pages.
780 bool is_printing_;
782 // If false, MockWebMIDIAccessor fails on startSession() for testing.
783 bool midi_accessor_result_;
785 bool should_stay_on_page_after_handling_before_unload_;
787 bool should_dump_resource_priorities_;
789 bool has_custom_text_output_;
790 std::string custom_text_output_;
792 std::set<std::string> http_headers_to_clear_;
794 // WAV audio data is stored here.
795 std::vector<unsigned char> audio_data_;
797 // Used for test timeouts.
798 WebTaskList task_list_;
800 TestInterfaces* test_interfaces_;
801 WebTestDelegate* delegate_;
802 blink::WebView* web_view_;
803 WebTestProxyBase* proxy_;
805 // This is non-0 IFF a load is in progress.
806 blink::WebFrame* top_loading_frame_;
808 // WebContentSettingsClient mock object.
809 scoped_ptr<WebContentSettings> web_content_settings_;
811 bool pointer_locked_;
812 enum {
813 PointerLockWillSucceed,
814 PointerLockWillRespondAsync,
815 PointerLockWillFailSync,
816 } pointer_lock_planned_result_;
817 bool use_mock_theme_;
819 base::WeakPtrFactory<TestRunner> weak_factory_;
821 DISALLOW_COPY_AND_ASSIGN(TestRunner);
824 } // namespace test_runner
826 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_