blob: 8c98381c2cc0316b90ae81ad1a472418e270f454 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/web/public/web_state/web_state_observer_bridge.h"
#include "base/memory/ptr_util.h"
#include "base/scoped_observer.h"
#include "ios/web/public/favicon_url.h"
#import "ios/web/public/test/fakes/crw_test_web_state_observer.h"
#import "ios/web/public/test/fakes/test_web_state.h"
#include "ios/web/public/web_state/form_activity_params.h"
#import "ios/web/public/web_state/web_state_observer_bridge.h"
#import "ios/web/web_state/navigation_context_impl.h"
#include "net/http/http_response_headers.h"
#include "testing/platform_test.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
namespace web {
namespace {
const char kRawResponseHeaders[] =
"HTTP/1.1 200 OK\0"
"Content-Length: 450\0"
"Connection: keep-alive\0";
} // namespace
// Test fixture to test WebStateObserverBridge class.
class WebStateObserverBridgeTest : public PlatformTest {
protected:
WebStateObserverBridgeTest()
: observer_([[CRWTestWebStateObserver alloc] init]),
observer_bridge_(observer_),
scoped_observer_(&observer_bridge_),
response_headers_(new net::HttpResponseHeaders(
std::string(kRawResponseHeaders, sizeof(kRawResponseHeaders)))) {
scoped_observer_.Add(&test_web_state_);
}
web::TestWebState test_web_state_;
CRWTestWebStateObserver* observer_;
WebStateObserverBridge observer_bridge_;
ScopedObserver<WebState, WebStateObserver> scoped_observer_;
scoped_refptr<net::HttpResponseHeaders> response_headers_;
};
// Tests |webStateWasShown:| forwarding.
TEST_F(WebStateObserverBridgeTest, WasShown) {
ASSERT_FALSE([observer_ wasShownInfo]);
observer_bridge_.WasShown(&test_web_state_);
ASSERT_TRUE([observer_ wasShownInfo]);
EXPECT_EQ(&test_web_state_, [observer_ wasShownInfo]->web_state);
}
// Tests |webStateWasHidden:| forwarding.
TEST_F(WebStateObserverBridgeTest, WasHidden) {
ASSERT_FALSE([observer_ wasHiddenInfo]);
observer_bridge_.WasHidden(&test_web_state_);
ASSERT_TRUE([observer_ wasHiddenInfo]);
EXPECT_EQ(&test_web_state_, [observer_ wasHiddenInfo]->web_state);
}
// Tests |webState:didPruneNavigationItemsWithCount:| forwarding.
TEST_F(WebStateObserverBridgeTest, NavigationItemsPruned) {
ASSERT_FALSE([observer_ navigationItemsPrunedInfo]);
observer_bridge_.NavigationItemsPruned(&test_web_state_, 1);
ASSERT_TRUE([observer_ navigationItemsPrunedInfo]);
EXPECT_EQ(&test_web_state_, [observer_ navigationItemsPrunedInfo]->web_state);
EXPECT_EQ(1, [observer_ navigationItemsPrunedInfo]->count);
}
// Tests |webState:didStartNavigation:| forwarding.
TEST_F(WebStateObserverBridgeTest, DidStartNavigation) {
ASSERT_FALSE([observer_ didStartNavigationInfo]);
GURL url("https://chromium.test/");
std::unique_ptr<web::NavigationContext> context =
web::NavigationContextImpl::CreateNavigationContext(
&test_web_state_, url,
ui::PageTransition::PAGE_TRANSITION_FORWARD_BACK, false);
observer_bridge_.DidStartNavigation(&test_web_state_, context.get());
ASSERT_TRUE([observer_ didStartNavigationInfo]);
EXPECT_EQ(&test_web_state_, [observer_ didStartNavigationInfo]->web_state);
web::NavigationContext* actual_context =
[observer_ didStartNavigationInfo]->context.get();
ASSERT_TRUE(actual_context);
EXPECT_EQ(&test_web_state_, actual_context->GetWebState());
EXPECT_EQ(context->IsSameDocument(), actual_context->IsSameDocument());
EXPECT_EQ(context->GetError(), actual_context->GetError());
EXPECT_EQ(context->GetUrl(), actual_context->GetUrl());
EXPECT_TRUE(PageTransitionTypeIncludingQualifiersIs(
ui::PageTransition::PAGE_TRANSITION_FORWARD_BACK,
actual_context->GetPageTransition()));
EXPECT_EQ(context->GetResponseHeaders(),
actual_context->GetResponseHeaders());
}
// Tests |webState:didFinishNavigation:| forwarding.
TEST_F(WebStateObserverBridgeTest, DidFinishNavigation) {
ASSERT_FALSE([observer_ didFinishNavigationInfo]);
GURL url("https://chromium.test/");
std::unique_ptr<web::NavigationContext> context =
web::NavigationContextImpl::CreateNavigationContext(
&test_web_state_, url,
ui::PageTransition::PAGE_TRANSITION_FROM_ADDRESS_BAR, false);
observer_bridge_.DidFinishNavigation(&test_web_state_, context.get());
ASSERT_TRUE([observer_ didFinishNavigationInfo]);
EXPECT_EQ(&test_web_state_, [observer_ didFinishNavigationInfo]->web_state);
web::NavigationContext* actual_context =
[observer_ didFinishNavigationInfo]->context.get();
ASSERT_TRUE(actual_context);
EXPECT_EQ(&test_web_state_, actual_context->GetWebState());
EXPECT_EQ(context->IsSameDocument(), actual_context->IsSameDocument());
EXPECT_EQ(context->GetError(), actual_context->GetError());
EXPECT_EQ(context->GetUrl(), actual_context->GetUrl());
EXPECT_TRUE(PageTransitionTypeIncludingQualifiersIs(
ui::PageTransition::PAGE_TRANSITION_FROM_ADDRESS_BAR,
actual_context->GetPageTransition()));
EXPECT_EQ(context->GetResponseHeaders(),
actual_context->GetResponseHeaders());
}
// Tests |webState:didCommitNavigationWithDetails:| forwarding.
TEST_F(WebStateObserverBridgeTest, NavigationItemCommitted) {
ASSERT_FALSE([observer_ commitNavigationInfo]);
LoadCommittedDetails load_details;
load_details.item = reinterpret_cast<web::NavigationItem*>(1);
load_details.previous_item_index = 15;
load_details.previous_url = GURL("https://chromium.test/");
load_details.is_in_page = true;
observer_bridge_.NavigationItemCommitted(&test_web_state_, load_details);
ASSERT_TRUE([observer_ commitNavigationInfo]);
EXPECT_EQ(&test_web_state_, [observer_ commitNavigationInfo]->web_state);
EXPECT_EQ(load_details.item,
[observer_ commitNavigationInfo]->load_details.item);
EXPECT_EQ(load_details.previous_item_index,
[observer_ commitNavigationInfo]->load_details.previous_item_index);
EXPECT_EQ(load_details.previous_url,
[observer_ commitNavigationInfo]->load_details.previous_url);
EXPECT_EQ(load_details.is_in_page,
[observer_ commitNavigationInfo]->load_details.is_in_page);
}
// Tests |webState:didLoadPageWithSuccess:| forwarding.
TEST_F(WebStateObserverBridgeTest, PageLoaded) {
ASSERT_FALSE([observer_ loadPageInfo]);
// Forwarding PageLoadCompletionStatus::SUCCESS.
observer_bridge_.PageLoaded(&test_web_state_,
PageLoadCompletionStatus::SUCCESS);
ASSERT_TRUE([observer_ loadPageInfo]);
EXPECT_EQ(&test_web_state_, [observer_ loadPageInfo]->web_state);
EXPECT_TRUE([observer_ loadPageInfo]->success);
// Forwarding PageLoadCompletionStatus::FAILURE.
observer_bridge_.PageLoaded(&test_web_state_,
PageLoadCompletionStatus::FAILURE);
ASSERT_TRUE([observer_ loadPageInfo]);
EXPECT_EQ(&test_web_state_, [observer_ loadPageInfo]->web_state);
EXPECT_FALSE([observer_ loadPageInfo]->success);
}
// Tests |webState:didChangeLoadingProgress:| forwarding.
TEST_F(WebStateObserverBridgeTest, LoadProgressChanged) {
ASSERT_FALSE([observer_ changeLoadingProgressInfo]);
const double kTestLoadProgress = 0.75;
observer_bridge_.LoadProgressChanged(&test_web_state_, kTestLoadProgress);
ASSERT_TRUE([observer_ changeLoadingProgressInfo]);
EXPECT_EQ(&test_web_state_, [observer_ changeLoadingProgressInfo]->web_state);
EXPECT_EQ(kTestLoadProgress, [observer_ changeLoadingProgressInfo]->progress);
}
// Tests |webStateDidChangeTitle:| forwarding.
TEST_F(WebStateObserverBridgeTest, TitleWasSet) {
ASSERT_FALSE([observer_ titleWasSetInfo]);
observer_bridge_.TitleWasSet(&test_web_state_);
ASSERT_TRUE([observer_ titleWasSetInfo]);
EXPECT_EQ(&test_web_state_, [observer_ titleWasSetInfo]->web_state);
}
// Tests |webStateDidChangeVisibleSecurityState:| forwarding.
TEST_F(WebStateObserverBridgeTest, DidChangeVisibleSecurityState) {
ASSERT_FALSE([observer_ didChangeVisibleSecurityStateInfo]);
observer_bridge_.DidChangeVisibleSecurityState(&test_web_state_);
ASSERT_TRUE([observer_ didChangeVisibleSecurityStateInfo]);
EXPECT_EQ(&test_web_state_,
[observer_ didChangeVisibleSecurityStateInfo]->web_state);
}
// Tests |webStateDidSuppressDialog:| forwarding.
TEST_F(WebStateObserverBridgeTest, DidSuppressDialog) {
ASSERT_FALSE([observer_ didSuppressDialogInfo]);
observer_bridge_.DidSuppressDialog(&test_web_state_);
ASSERT_TRUE([observer_ didSuppressDialogInfo]);
EXPECT_EQ(&test_web_state_, [observer_ didSuppressDialogInfo]->web_state);
}
// Tests |webState:didRegisterFormActivityWithParams:| forwarding.
TEST_F(WebStateObserverBridgeTest, DocumentSubmitted) {
ASSERT_FALSE([observer_ submitDocumentInfo]);
std::string kTestFormName("form-name");
bool user_initiated = true;
bool is_main_frame = true;
observer_bridge_.DocumentSubmitted(&test_web_state_, kTestFormName,
user_initiated, is_main_frame);
ASSERT_TRUE([observer_ submitDocumentInfo]);
EXPECT_EQ(&test_web_state_, [observer_ submitDocumentInfo]->web_state);
EXPECT_EQ(kTestFormName, [observer_ submitDocumentInfo]->form_name);
EXPECT_EQ(user_initiated, [observer_ submitDocumentInfo]->user_initiated);
EXPECT_EQ(is_main_frame, [observer_ submitDocumentInfo]->is_main_frame);
}
// Tests |webState:didRegisterFormActivity:...| forwarding.
TEST_F(WebStateObserverBridgeTest, FormActivityRegistered) {
ASSERT_FALSE([observer_ formActivityInfo]);
FormActivityParams params;
params.form_name = "form-name";
params.field_name = "field-name";
params.field_type = "field-type";
params.type = "type";
params.value = "value";
params.input_missing = true;
observer_bridge_.FormActivityRegistered(&test_web_state_, params);
ASSERT_TRUE([observer_ formActivityInfo]);
EXPECT_EQ(&test_web_state_, [observer_ formActivityInfo]->web_state);
EXPECT_EQ(params.form_name,
[observer_ formActivityInfo]->form_activity.form_name);
EXPECT_EQ(params.field_name,
[observer_ formActivityInfo]->form_activity.field_name);
EXPECT_EQ(params.field_type,
[observer_ formActivityInfo]->form_activity.field_type);
EXPECT_EQ(params.type, [observer_ formActivityInfo]->form_activity.type);
EXPECT_EQ(params.value, [observer_ formActivityInfo]->form_activity.value);
EXPECT_TRUE([observer_ formActivityInfo]->form_activity.input_missing);
}
// Tests |webState:didUpdateFaviconURLCandidates:| forwarding.
TEST_F(WebStateObserverBridgeTest, FaviconUrlUpdated) {
ASSERT_FALSE([observer_ updateFaviconUrlCandidatesInfo]);
web::FaviconURL url(GURL("https://chromium.test/"),
web::FaviconURL::IconType::kTouchIcon, {gfx::Size(5, 6)});
observer_bridge_.FaviconUrlUpdated(&test_web_state_, {url});
ASSERT_TRUE([observer_ updateFaviconUrlCandidatesInfo]);
EXPECT_EQ(&test_web_state_,
[observer_ updateFaviconUrlCandidatesInfo]->web_state);
ASSERT_EQ(1U, [observer_ updateFaviconUrlCandidatesInfo]->candidates.size());
const web::FaviconURL& actual_url =
[observer_ updateFaviconUrlCandidatesInfo]->candidates[0];
EXPECT_EQ(url.icon_url, actual_url.icon_url);
EXPECT_EQ(url.icon_type, actual_url.icon_type);
ASSERT_EQ(url.icon_sizes.size(), actual_url.icon_sizes.size());
EXPECT_EQ(url.icon_sizes[0].width(), actual_url.icon_sizes[0].width());
EXPECT_EQ(url.icon_sizes[0].height(), actual_url.icon_sizes[0].height());
}
// Tests |webState:renderProcessGoneForWebState:| forwarding.
TEST_F(WebStateObserverBridgeTest, RenderProcessGone) {
ASSERT_FALSE([observer_ renderProcessGoneInfo]);
observer_bridge_.RenderProcessGone(&test_web_state_);
ASSERT_TRUE([observer_ renderProcessGoneInfo]);
EXPECT_EQ(&test_web_state_, [observer_ renderProcessGoneInfo]->web_state);
}
// Tests |webState:webStateDestroyed:| forwarding.
TEST_F(WebStateObserverBridgeTest, WebStateDestroyed) {
ASSERT_FALSE([observer_ webStateDestroyedInfo]);
observer_bridge_.WebStateDestroyed(&test_web_state_);
ASSERT_TRUE([observer_ webStateDestroyedInfo]);
EXPECT_EQ(&test_web_state_, [observer_ webStateDestroyedInfo]->web_state);
}
// Tests |webState:webStateDidStopLoading:| forwarding.
TEST_F(WebStateObserverBridgeTest, DidStopLoading) {
ASSERT_FALSE([observer_ stopLoadingInfo]);
observer_bridge_.DidStopLoading(&test_web_state_);
ASSERT_TRUE([observer_ stopLoadingInfo]);
EXPECT_EQ(&test_web_state_, [observer_ stopLoadingInfo]->web_state);
}
// Tests |webState:webStateDidStartLoading:| forwarding.
TEST_F(WebStateObserverBridgeTest, DidStartLoading) {
ASSERT_FALSE([observer_ startLoadingInfo]);
observer_bridge_.DidStartLoading(&test_web_state_);
ASSERT_TRUE([observer_ startLoadingInfo]);
EXPECT_EQ(&test_web_state_, [observer_ startLoadingInfo]->web_state);
}
} // namespace web