Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 #import <ChromeWebView/ChromeWebView.h> | |
| 6 #import <Foundation/Foundation.h> | |
| 7 | |
| 8 #import "base/mac/scoped_nsobject.h" | |
| 9 #import "ios/web_view/test/boolean_observer.h" | |
| 10 #import "ios/web_view/test/chrome_web_view_test.h" | |
| 11 #import "ios/web_view/test/web_view_interaction_test_util.h" | |
| 12 #import "net/base/mac/url_conversions.h" | |
| 13 #include "testing/gtest_mac.h" | |
| 14 #include "url/gurl.h" | |
| 15 | |
| 16 #if !defined(__has_feature) || !__has_feature(objc_arc) | |
| 17 #error "This file requires ARC support." | |
| 18 #endif | |
| 19 | |
| 20 class ChromeWebViewKvoTest : public ios_web_view::ChromeWebViewTest { | |
| 21 protected: | |
| 22 ChromeWebViewKvoTest() { | |
| 23 CWVWebViewConfiguration* configuration = | |
| 24 [CWVWebViewConfiguration defaultConfiguration]; | |
| 25 web_view_.reset([[CWVWebView alloc] | |
| 26 initWithFrame:CGRectMake(0.0, 0.0, 100.0, 100.0) | |
| 27 configuration:configuration]); | |
| 28 } | |
| 29 | |
| 30 // Web View used to listen for expected KVO property changes. | |
| 31 base::scoped_nsobject<CWVWebView> web_view_; | |
| 32 }; | |
| 33 | |
| 34 namespace ios_web_view { | |
| 35 | |
| 36 // Test CWVWebView correctly reports |canGoBack| and |canGoForward| state. | |
|
Eugene But (OOO till 7-30)
2017/05/23 19:49:33
s/Test/Tests that ?
michaeldo
2017/05/24 15:02:35
Done.
| |
| 37 TEST_F(ChromeWebViewKvoTest, CanGoBackForward) { | |
| 38 BooleanObserver* back_observer = [[BooleanObserver alloc] init]; | |
| 39 [back_observer setObservedObject:web_view_ keyPath:@"canGoBack"]; | |
| 40 | |
| 41 BooleanObserver* forward_observer = [[BooleanObserver alloc] init]; | |
| 42 [forward_observer setObservedObject:web_view_ keyPath:@"canGoForward"]; | |
| 43 | |
| 44 ASSERT_FALSE(back_observer.lastValue); | |
| 45 ASSERT_FALSE(forward_observer.lastValue); | |
| 46 | |
| 47 // Define pages in reverse order so the links can reference the "next" page. | |
| 48 GURL page_3 = GetURLForPageWithTitle("Page 3"); | |
|
Eugene But (OOO till 7-30)
2017/05/23 19:49:33
nit: page_3_url ?
michaeldo
2017/05/24 15:02:35
Done.
| |
| 49 | |
| 50 std::string page_2_html = | |
| 51 "<a id='link_2' href='" + page_3.spec() + "'>Link 2</a>"; | |
| 52 GURL page_2 = GetURLForPageWithHTMLBody(page_2_html); | |
| 53 | |
| 54 std::string page_1_html = | |
| 55 "<a id='link_1' href='" + page_2.spec() + "'>Link 1</a>"; | |
| 56 GURL page_1 = GetURLForPageWithHTMLBody(page_1_html); | |
| 57 | |
| 58 LoadURL(web_view_, net::NSURLWithGURL(page_1)); | |
| 59 // Loading initial URL should not affect back/forward navigation state. | |
| 60 EXPECT_FALSE(back_observer.lastValue); | |
| 61 EXPECT_FALSE(forward_observer.lastValue); | |
| 62 | |
| 63 // Navigate to page 2. | |
| 64 EXPECT_TRUE(test::TapChromeWebViewElementWithId(web_view_, @"link_1")); | |
| 65 WaitForPageLoadCompletion(web_view_); | |
| 66 EXPECT_TRUE(back_observer.lastValue); | |
| 67 EXPECT_FALSE(forward_observer.lastValue); | |
| 68 | |
| 69 // Navigate back to page 1. | |
| 70 [web_view_ goBack]; | |
| 71 WaitForPageLoadCompletion(web_view_); | |
| 72 EXPECT_FALSE(back_observer.lastValue); | |
| 73 EXPECT_TRUE(forward_observer.lastValue); | |
| 74 | |
| 75 // Navigate forward to page 2. | |
| 76 [web_view_ goForward]; | |
| 77 WaitForPageLoadCompletion(web_view_); | |
| 78 EXPECT_TRUE(back_observer.lastValue); | |
| 79 EXPECT_FALSE(forward_observer.lastValue); | |
| 80 | |
| 81 // Navigate to page 3. | |
| 82 EXPECT_TRUE(test::TapChromeWebViewElementWithId(web_view_, @"link_2")); | |
| 83 WaitForPageLoadCompletion(web_view_); | |
| 84 EXPECT_TRUE(back_observer.lastValue); | |
| 85 EXPECT_FALSE(forward_observer.lastValue); | |
| 86 | |
| 87 // Navigate back to page 2. | |
| 88 [web_view_ goBack]; | |
| 89 WaitForPageLoadCompletion(web_view_); | |
| 90 EXPECT_TRUE(back_observer.lastValue); | |
| 91 EXPECT_TRUE(forward_observer.lastValue); | |
| 92 } | |
| 93 | |
| 94 } // namespace ios_web_view | |
| OLD | NEW |