1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
// Copyright 2014 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.
#include "core/loader/MixedContentChecker.h"
#include "core/frame/Settings.h"
#include "core/loader/EmptyClients.h"
#include "core/testing/DummyPageHolder.h"
#include "platform/network/ResourceResponse.h"
#include "platform/weborigin/KURL.h"
#include "platform/weborigin/SecurityOrigin.h"
#include "public/platform/WebMixedContent.h"
#include "public/platform/WebMixedContentContextType.h"
#include "testing/gmock/include/gmock/gmock-generated-function-mockers.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "wtf/RefPtr.h"
#include <base/macros.h>
#include <memory>
namespace blink {
TEST(MixedContentCheckerTest, IsMixedContent) {
struct TestCase {
const char* origin;
const char* target;
bool expectation;
} cases[] = {
{"http://example.com/foo", "http://example.com/foo", false},
{"http://example.com/foo", "https://example.com/foo", false},
{"http://example.com/foo", "data:text/html,<p>Hi!</p>", false},
{"http://example.com/foo", "about:blank", false},
{"https://example.com/foo", "https://example.com/foo", false},
{"https://example.com/foo", "wss://example.com/foo", false},
{"https://example.com/foo", "data:text/html,<p>Hi!</p>", false},
{"https://example.com/foo", "http://127.0.0.1/", false},
{"https://example.com/foo", "http://[::1]/", false},
{"https://example.com/foo", "blob:https://example.com/foo", false},
{"https://example.com/foo", "blob:http://example.com/foo", false},
{"https://example.com/foo", "blob:null/foo", false},
{"https://example.com/foo", "filesystem:https://example.com/foo", false},
{"https://example.com/foo", "filesystem:http://example.com/foo", false},
{"https://example.com/foo", "http://example.com/foo", true},
{"https://example.com/foo", "http://google.com/foo", true},
{"https://example.com/foo", "ws://example.com/foo", true},
{"https://example.com/foo", "ws://google.com/foo", true},
{"https://example.com/foo", "http://192.168.1.1/", true},
{"https://example.com/foo", "http://localhost/", true},
};
for (const auto& test : cases) {
SCOPED_TRACE(::testing::Message() << "Origin: " << test.origin
<< ", Target: " << test.target
<< ", Expectation: " << test.expectation);
KURL originUrl(KURL(), test.origin);
RefPtr<SecurityOrigin> securityOrigin(SecurityOrigin::create(originUrl));
KURL targetUrl(KURL(), test.target);
EXPECT_EQ(test.expectation, MixedContentChecker::isMixedContent(
securityOrigin.get(), targetUrl));
}
}
TEST(MixedContentCheckerTest, ContextTypeForInspector) {
std::unique_ptr<DummyPageHolder> dummyPageHolder =
DummyPageHolder::create(IntSize(1, 1));
dummyPageHolder->frame().document()->setSecurityOrigin(
SecurityOrigin::createFromString("http://example.test"));
ResourceRequest notMixedContent("https://example.test/foo.jpg");
notMixedContent.setFrameType(WebURLRequest::FrameTypeAuxiliary);
notMixedContent.setRequestContext(WebURLRequest::RequestContextScript);
EXPECT_EQ(WebMixedContentContextType::NotMixedContent,
MixedContentChecker::contextTypeForInspector(
&dummyPageHolder->frame(), notMixedContent));
dummyPageHolder->frame().document()->setSecurityOrigin(
SecurityOrigin::createFromString("https://example.test"));
EXPECT_EQ(WebMixedContentContextType::NotMixedContent,
MixedContentChecker::contextTypeForInspector(
&dummyPageHolder->frame(), notMixedContent));
ResourceRequest blockableMixedContent("http://example.test/foo.jpg");
blockableMixedContent.setFrameType(WebURLRequest::FrameTypeAuxiliary);
blockableMixedContent.setRequestContext(WebURLRequest::RequestContextScript);
EXPECT_EQ(WebMixedContentContextType::Blockable,
MixedContentChecker::contextTypeForInspector(
&dummyPageHolder->frame(), blockableMixedContent));
ResourceRequest optionallyBlockableMixedContent(
"http://example.test/foo.jpg");
blockableMixedContent.setFrameType(WebURLRequest::FrameTypeAuxiliary);
blockableMixedContent.setRequestContext(WebURLRequest::RequestContextImage);
EXPECT_EQ(WebMixedContentContextType::OptionallyBlockable,
MixedContentChecker::contextTypeForInspector(
&dummyPageHolder->frame(), blockableMixedContent));
}
namespace {
class MockFrameLoaderClient : public EmptyFrameLoaderClient {
public:
MockFrameLoaderClient() : EmptyFrameLoaderClient() {}
MOCK_METHOD1(didDisplayContentWithCertificateErrors, void(const KURL&));
MOCK_METHOD1(didRunContentWithCertificateErrors, void(const KURL&));
};
} // namespace
TEST(MixedContentCheckerTest, HandleCertificateError) {
MockFrameLoaderClient* client = new MockFrameLoaderClient;
std::unique_ptr<DummyPageHolder> dummyPageHolder =
DummyPageHolder::create(IntSize(1, 1), nullptr, client);
KURL mainResourceUrl(KURL(), "https://example.test");
KURL displayedUrl(KURL(), "https://example-displayed.test");
KURL ranUrl(KURL(), "https://example-ran.test");
dummyPageHolder->frame().document()->setURL(mainResourceUrl);
ResourceResponse response1;
response1.setURL(ranUrl);
EXPECT_CALL(*client, didRunContentWithCertificateErrors(ranUrl));
MixedContentChecker::handleCertificateError(
&dummyPageHolder->frame(), response1, WebURLRequest::FrameTypeNone,
WebURLRequest::RequestContextScript);
ResourceResponse response2;
WebURLRequest::RequestContext requestContext =
WebURLRequest::RequestContextImage;
ASSERT_EQ(
WebMixedContentContextType::OptionallyBlockable,
WebMixedContent::contextTypeFromRequestContext(
requestContext, dummyPageHolder->frame()
.settings()
->getStrictMixedContentCheckingForPlugin()));
response2.setURL(displayedUrl);
EXPECT_CALL(*client, didDisplayContentWithCertificateErrors(displayedUrl));
MixedContentChecker::handleCertificateError(
&dummyPageHolder->frame(), response2, WebURLRequest::FrameTypeNone,
requestContext);
}
} // namespace blink
|