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
|
// Copyright 2015 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/html/parser/HTMLResourcePreloader.h"
#include "core/html/parser/PreloadRequest.h"
#include "core/testing/DummyPageHolder.h"
#include "testing/gtest/include/gtest/gtest.h"
#include <memory>
namespace blink {
struct PreconnectTestCase {
const char* baseURL;
const char* url;
bool isCORS;
bool isHTTPS;
};
class PreloaderNetworkHintsMock : public NetworkHintsInterface {
public:
PreloaderNetworkHintsMock() : m_didPreconnect(false) {}
void dnsPrefetchHost(const String& host) const {}
void preconnectHost(
const KURL& host,
const CrossOriginAttributeValue crossOrigin) const override {
m_didPreconnect = true;
m_isHTTPS = host.protocolIs("https");
m_isCrossOrigin = (crossOrigin == CrossOriginAttributeAnonymous);
}
bool didPreconnect() { return m_didPreconnect; }
bool isHTTPS() { return m_isHTTPS; }
bool isCrossOrigin() { return m_isCrossOrigin; }
private:
mutable bool m_didPreconnect;
mutable bool m_isHTTPS;
mutable bool m_isCrossOrigin;
};
class HTMLResourcePreloaderTest : public testing::Test {
protected:
HTMLResourcePreloaderTest() : m_dummyPageHolder(DummyPageHolder::create()) {}
void test(PreconnectTestCase testCase) {
// TODO(yoav): Need a mock loader here to verify things are happenning
// beyond preconnect.
PreloaderNetworkHintsMock networkHints;
auto preloadRequest = PreloadRequest::createIfNeeded(
String(), TextPosition(), testCase.url,
KURL(ParsedURLStringTag(), testCase.baseURL), Resource::Image,
ReferrerPolicy(), FetchRequest::ResourceWidth(),
ClientHintsPreferences(), PreloadRequest::RequestTypePreconnect);
DCHECK(preloadRequest);
if (testCase.isCORS)
preloadRequest->setCrossOrigin(CrossOriginAttributeAnonymous);
HTMLResourcePreloader* preloader =
HTMLResourcePreloader::create(m_dummyPageHolder->document());
preloader->preload(std::move(preloadRequest), networkHints);
ASSERT_TRUE(networkHints.didPreconnect());
ASSERT_EQ(testCase.isCORS, networkHints.isCrossOrigin());
ASSERT_EQ(testCase.isHTTPS, networkHints.isHTTPS());
}
private:
std::unique_ptr<DummyPageHolder> m_dummyPageHolder;
};
TEST_F(HTMLResourcePreloaderTest, testPreconnect) {
PreconnectTestCase testCases[] = {
{"http://example.test", "http://example.com", false, false},
{"http://example.test", "http://example.com", true, false},
{"http://example.test", "https://example.com", true, true},
{"http://example.test", "https://example.com", false, true},
{"http://example.test", "//example.com", false, false},
{"http://example.test", "//example.com", true, false},
{"https://example.test", "//example.com", false, true},
{"https://example.test", "//example.com", true, true},
};
for (const auto& testCase : testCases)
test(testCase);
}
} // namespace blink
|