OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 #include <algorithm> |
| 6 #include "chrome/browser/renderer_host/test/test_render_view_host.h" |
| 7 |
| 8 #include "chrome/browser/browser_thread.h" |
| 9 #include "chrome/browser/safe_browsing/malware_report.h" |
| 10 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 11 #include "chrome/browser/tab_contents/test_tab_contents.h" |
| 12 #include "chrome/common/render_messages.h" |
| 13 #include "chrome/common/render_messages_params.h" |
| 14 |
| 15 static const char* kOriginalLandingURL = "http://www.originallandingpage.com/"; |
| 16 static const char* kLandingURL = "http://www.landingpage.com/"; |
| 17 static const char* kMalwareURL = "http://www.malware.com/"; |
| 18 static const char* kHttpsURL = "https://www.url.com/"; |
| 19 |
| 20 class SafeBrowsingMalwareReportTest : public RenderViewHostTestHarness { |
| 21 public: |
| 22 SafeBrowsingMalwareReportTest() |
| 23 : ui_thread_(BrowserThread::UI, MessageLoop::current()), |
| 24 io_thread_(BrowserThread::IO, MessageLoop::current()) { |
| 25 } |
| 26 |
| 27 virtual void SetUp() { |
| 28 RenderViewHostTestHarness::SetUp(); |
| 29 } |
| 30 |
| 31 static bool ResourceLessThan( |
| 32 const safe_browsing::ClientMalwareReportRequest::Resource* lhs, |
| 33 const safe_browsing::ClientMalwareReportRequest::Resource* rhs) { |
| 34 return lhs->url() < rhs->url(); |
| 35 } |
| 36 |
| 37 protected: |
| 38 void InitResource(SafeBrowsingService::UnsafeResource* resource, |
| 39 ResourceType::Type resource_type, |
| 40 const GURL& url) { |
| 41 resource->client = NULL; |
| 42 resource->url = url; |
| 43 resource->resource_type = resource_type; |
| 44 resource->threat_type = SafeBrowsingService::URL_MALWARE; |
| 45 resource->render_process_host_id = contents_->GetRenderProcessHost()->id(); |
| 46 resource->render_view_id = contents_->render_view_host()->routing_id(); |
| 47 } |
| 48 |
| 49 void VerifyResults( |
| 50 const safe_browsing::ClientMalwareReportRequest& report_pb, |
| 51 const safe_browsing::ClientMalwareReportRequest& expected_pb) { |
| 52 EXPECT_EQ(expected_pb.malware_url(), report_pb.malware_url()); |
| 53 EXPECT_EQ(expected_pb.page_url(), report_pb.page_url()); |
| 54 EXPECT_EQ(expected_pb.referrer_url(), report_pb.referrer_url()); |
| 55 |
| 56 ASSERT_EQ(expected_pb.nodes_size(), report_pb.nodes_size()); |
| 57 // Sort the nodes, to make the test deterministic |
| 58 std::vector<const safe_browsing::ClientMalwareReportRequest::Resource*> |
| 59 nodes; |
| 60 for (int i = 0; i < report_pb.nodes_size(); ++i) { |
| 61 const safe_browsing::ClientMalwareReportRequest::Resource& resource = |
| 62 report_pb.nodes(i); |
| 63 nodes.push_back(&resource); |
| 64 } |
| 65 std::sort(nodes.begin(), nodes.end(), |
| 66 &SafeBrowsingMalwareReportTest::ResourceLessThan); |
| 67 |
| 68 std::vector<const safe_browsing::ClientMalwareReportRequest::Resource*> |
| 69 expected; |
| 70 for (int i = 0; i < report_pb.nodes_size(); ++i) { |
| 71 const safe_browsing::ClientMalwareReportRequest::Resource& resource = |
| 72 expected_pb.nodes(i); |
| 73 expected.push_back(&resource); |
| 74 } |
| 75 std::sort(expected.begin(), expected.end(), |
| 76 &SafeBrowsingMalwareReportTest::ResourceLessThan); |
| 77 |
| 78 for (uint i = 0; i < expected.size(); ++i) { |
| 79 EXPECT_EQ(expected[i]->url(), nodes[i]->url()); |
| 80 EXPECT_EQ(expected[i]->parent(), nodes[i]->parent()); |
| 81 } |
| 82 } |
| 83 |
| 84 BrowserThread ui_thread_; |
| 85 BrowserThread io_thread_; |
| 86 }; |
| 87 |
| 88 // Tests creating a simple malware report. |
| 89 TEST_F(SafeBrowsingMalwareReportTest, MalwareSubResource) { |
| 90 // Start a load. |
| 91 controller().LoadURL(GURL(kLandingURL), GURL(), PageTransition::TYPED); |
| 92 |
| 93 SafeBrowsingService::UnsafeResource resource; |
| 94 InitResource(&resource, ResourceType::SUB_RESOURCE, GURL(kMalwareURL)); |
| 95 |
| 96 SafeBrowsingMalwareReport* report = new SafeBrowsingMalwareReport( |
| 97 contents(), resource); |
| 98 |
| 99 scoped_ptr<const std::string> serialized(report->GetSerializedReport()); |
| 100 safe_browsing::ClientMalwareReportRequest actual; |
| 101 actual.ParseFromString(*serialized); |
| 102 |
| 103 safe_browsing::ClientMalwareReportRequest expected; |
| 104 expected.set_malware_url(kMalwareURL); |
| 105 expected.set_page_url(kLandingURL); |
| 106 expected.set_referrer_url(""); |
| 107 |
| 108 safe_browsing::ClientMalwareReportRequest::Resource* node = |
| 109 expected.add_nodes(); |
| 110 node->set_url(kLandingURL); |
| 111 node = expected.add_nodes(); |
| 112 node->set_url(kMalwareURL); |
| 113 |
| 114 VerifyResults(actual, expected); |
| 115 } |
| 116 |
| 117 // Tests creating a simple malware report where the subresource has a |
| 118 // different original_url. |
| 119 TEST_F(SafeBrowsingMalwareReportTest, MalwareSubResourceWithOriginalUrl) { |
| 120 controller().LoadURL(GURL(kLandingURL), GURL(), PageTransition::TYPED); |
| 121 |
| 122 SafeBrowsingService::UnsafeResource resource; |
| 123 InitResource(&resource, ResourceType::SUB_RESOURCE, GURL(kMalwareURL)); |
| 124 resource.original_url = GURL(kOriginalLandingURL); |
| 125 |
| 126 SafeBrowsingMalwareReport* report = new SafeBrowsingMalwareReport( |
| 127 contents(), resource); |
| 128 |
| 129 scoped_ptr<const std::string> serialized(report->GetSerializedReport()); |
| 130 safe_browsing::ClientMalwareReportRequest actual; |
| 131 actual.ParseFromString(*serialized); |
| 132 |
| 133 safe_browsing::ClientMalwareReportRequest expected; |
| 134 expected.set_malware_url(kMalwareURL); |
| 135 expected.set_page_url(kLandingURL); |
| 136 expected.set_referrer_url(""); |
| 137 |
| 138 safe_browsing::ClientMalwareReportRequest::Resource* node = |
| 139 expected.add_nodes(); |
| 140 node->set_url(kLandingURL); |
| 141 |
| 142 // Malware url should have originalurl as parent. |
| 143 node = expected.add_nodes(); |
| 144 node->set_url(kMalwareURL); |
| 145 node->set_parent(kOriginalLandingURL); |
| 146 |
| 147 node = expected.add_nodes(); |
| 148 node->set_url(kOriginalLandingURL); |
| 149 |
| 150 VerifyResults(actual, expected); |
| 151 } |
| 152 |
| 153 // Verify that https:// urls are dropped. |
| 154 TEST_F(SafeBrowsingMalwareReportTest, NotPublicUrl) { |
| 155 controller().LoadURL(GURL(kHttpsURL), GURL(), PageTransition::TYPED); |
| 156 SafeBrowsingService::UnsafeResource resource; |
| 157 InitResource(&resource, ResourceType::SUB_RESOURCE, GURL(kMalwareURL)); |
| 158 SafeBrowsingMalwareReport* report = new SafeBrowsingMalwareReport( |
| 159 contents(), resource); |
| 160 |
| 161 scoped_ptr<const std::string> serialized(report->GetSerializedReport()); |
| 162 safe_browsing::ClientMalwareReportRequest actual; |
| 163 actual.ParseFromString(*serialized); |
| 164 |
| 165 safe_browsing::ClientMalwareReportRequest expected; |
| 166 expected.set_malware_url(kMalwareURL); // No page_url |
| 167 expected.set_referrer_url(""); |
| 168 |
| 169 safe_browsing::ClientMalwareReportRequest::Resource* node = |
| 170 expected.add_nodes(); |
| 171 node->set_url(kMalwareURL); // Only one node |
| 172 |
| 173 VerifyResults(actual, expected); |
| 174 } |
OLD | NEW |