Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / content / test / test_web_contents.h
1 // Copyright (c) 2012 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.
4
5 #ifndef CONTENT_TEST_TEST_WEB_CONTENTS_H_
6 #define CONTENT_TEST_TEST_WEB_CONTENTS_H_
7
8 #include "content/browser/web_contents/web_contents_impl.h"
9 #include "content/public/common/page_transition_types.h"
10 #include "content/public/test/web_contents_tester.h"
11 #include "webkit/common/webpreferences.h"
12
13 class SiteInstanceImpl;
14
15 namespace content {
16
17 class RenderViewHost;
18 class TestRenderViewHost;
19 class WebContentsTester;
20
21 // Subclass WebContentsImpl to ensure it creates TestRenderViewHosts
22 // and does not do anything involving views.
23 class TestWebContents : public WebContentsImpl, public WebContentsTester {
24  public:
25   virtual ~TestWebContents();
26
27   static TestWebContents* Create(BrowserContext* browser_context,
28                                  SiteInstance* instance);
29
30   // WebContentsTester implementation.
31   virtual void CommitPendingNavigation() OVERRIDE;
32   virtual RenderViewHost* GetPendingRenderViewHost() const OVERRIDE;
33   virtual void NavigateAndCommit(const GURL& url) OVERRIDE;
34   virtual void TestSetIsLoading(bool value) OVERRIDE;
35   virtual void ProceedWithCrossSiteNavigation() OVERRIDE;
36   virtual void TestDidNavigate(RenderViewHost* render_view_host,
37                                int page_id,
38                                const GURL& url,
39                                PageTransition transition) OVERRIDE;
40   virtual void TestDidNavigateWithReferrer(RenderViewHost* render_view_host,
41                                            int page_id,
42                                            const GURL& url,
43                                            const Referrer& referrer,
44                                            PageTransition transition) OVERRIDE;
45   virtual WebPreferences TestGetWebkitPrefs() OVERRIDE;
46
47   TestRenderViewHost* pending_test_rvh() const;
48
49   // State accessor.
50   bool cross_navigation_pending() {
51     return GetRenderManager()->cross_navigation_pending_;
52   }
53
54   // Overrides WebContentsImpl::ShouldTransitionCrossSite so that we can test
55   // both alternatives without using command-line switches.
56   bool ShouldTransitionCrossSite() { return transition_cross_site; }
57
58   // Prevent interaction with views.
59   virtual bool CreateRenderViewForRenderManager(
60       RenderViewHost* render_view_host,
61       int opener_route_id,
62       CrossProcessFrameConnector* frame_connector) OVERRIDE;
63   virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE {}
64
65   // Returns a clone of this TestWebContents. The returned object is also a
66   // TestWebContents. The caller owns the returned object.
67   virtual WebContents* Clone() OVERRIDE;
68
69   // Set by individual tests.
70   bool transition_cross_site;
71
72   // Allow mocking of the RenderViewHostDelegateView.
73   virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE;
74   void set_delegate_view(RenderViewHostDelegateView* view) {
75     delegate_view_override_ = view;
76   }
77
78   // Allows us to simulate this tab having an opener.
79   void SetOpener(TestWebContents* opener);
80
81   // Allows us to simulate that a contents was created via CreateNewWindow.
82   void AddPendingContents(TestWebContents* contents);
83
84   // Establish expected arguments for |SetHistoryLengthAndPrune()|. When
85   // |SetHistoryLengthAndPrune()| is called, the arguments are compared
86   // with the expected arguments specified here.
87   void ExpectSetHistoryLengthAndPrune(const SiteInstance* site_instance,
88                                       int history_length,
89                                       int32 min_page_id);
90
91   // Compares the arguments passed in with the expected arguments passed in
92   // to |ExpectSetHistoryLengthAndPrune()|.
93   virtual void SetHistoryLengthAndPrune(const SiteInstance* site_instance,
94                                         int history_length,
95                                         int32 min_page_id) OVERRIDE;
96
97   void TestDidFinishLoad(int64 frame_id, const GURL& url, bool is_main_frame);
98   void TestDidFailLoadWithError(int64 frame_id,
99                                 const GURL& url,
100                                 bool is_main_frame,
101                                 int error_code,
102                                 const base::string16& error_description);
103
104  protected:
105   // The deprecated WebContentsTester still needs to subclass this.
106   explicit TestWebContents(BrowserContext* browser_context);
107
108  private:
109   // WebContentsImpl overrides
110   virtual void CreateNewWindow(
111       int render_process_id,
112       int route_id,
113       int main_frame_route_id,
114       const ViewHostMsg_CreateWindow_Params& params,
115       SessionStorageNamespace* session_storage_namespace) OVERRIDE;
116   virtual void CreateNewWidget(int render_process_id,
117                                int route_id,
118                                blink::WebPopupType popup_type) OVERRIDE;
119   virtual void CreateNewFullscreenWidget(int render_process_id,
120                                          int route_id) OVERRIDE;
121   virtual void ShowCreatedWindow(int route_id,
122                                  WindowOpenDisposition disposition,
123                                  const gfx::Rect& initial_pos,
124                                  bool user_gesture) OVERRIDE;
125   virtual void ShowCreatedWidget(int route_id,
126                                  const gfx::Rect& initial_pos) OVERRIDE;
127   virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE;
128
129
130   RenderViewHostDelegateView* delegate_view_override_;
131
132   // Expectations for arguments of |SetHistoryLengthAndPrune()|.
133   bool expect_set_history_length_and_prune_;
134   scoped_refptr<const SiteInstanceImpl>
135     expect_set_history_length_and_prune_site_instance_;
136   int expect_set_history_length_and_prune_history_length_;
137   int32 expect_set_history_length_and_prune_min_page_id_;
138 };
139
140 }  // namespace content
141
142 #endif  // CONTENT_TEST_TEST_WEB_CONTENTS_H_