| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/safe_browsing/incident_reporting/suspicious_module_inci
dent.h" | 5 #include "chrome/browser/safe_browsing/incident_reporting/suspicious_module_inci
dent.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "chrome/common/safe_browsing/csd.pb.h" | 11 #include "chrome/common/safe_browsing/csd.pb.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 namespace safe_browsing { | 14 namespace safe_browsing { |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 std::unique_ptr<Incident> MakeIncident(const char* path) { | 18 std::unique_ptr<Incident> MakeIncident(const char* path) { |
| 19 std::unique_ptr<ClientIncidentReport_IncidentData_SuspiciousModuleIncident> | 19 std::unique_ptr<ClientIncidentReport_IncidentData_SuspiciousModuleIncident> |
| 20 incident(new ClientIncidentReport_IncidentData_SuspiciousModuleIncident); | 20 incident(new ClientIncidentReport_IncidentData_SuspiciousModuleIncident); |
| 21 incident->set_path(path); | 21 incident->set_path(path); |
| 22 return base::WrapUnique(new SuspiciousModuleIncident(std::move(incident))); | 22 return base::MakeUnique<SuspiciousModuleIncident>(std::move(incident)); |
| 23 } | 23 } |
| 24 | 24 |
| 25 } // namespace | 25 } // namespace |
| 26 | 26 |
| 27 TEST(SuspiciousModuleIncident, GetType) { | 27 TEST(SuspiciousModuleIncident, GetType) { |
| 28 ASSERT_EQ(IncidentType::SUSPICIOUS_MODULE, MakeIncident("foo")->GetType()); | 28 ASSERT_EQ(IncidentType::SUSPICIOUS_MODULE, MakeIncident("foo")->GetType()); |
| 29 } | 29 } |
| 30 | 30 |
| 31 // Tests that GetKey returns the dll path. | 31 // Tests that GetKey returns the dll path. |
| 32 TEST(SuspiciousModuleIncident, KeyIsPath) { | 32 TEST(SuspiciousModuleIncident, KeyIsPath) { |
| 33 ASSERT_EQ(std::string("foo"), MakeIncident("foo")->GetKey()); | 33 ASSERT_EQ(std::string("foo"), MakeIncident("foo")->GetKey()); |
| 34 } | 34 } |
| 35 | 35 |
| 36 // Tests that GetDigest returns the same value for the same incident. | 36 // Tests that GetDigest returns the same value for the same incident. |
| 37 TEST(SuspiciousModuleIncident, SameIncidentSameDigest) { | 37 TEST(SuspiciousModuleIncident, SameIncidentSameDigest) { |
| 38 ASSERT_EQ(MakeIncident("foo")->ComputeDigest(), | 38 ASSERT_EQ(MakeIncident("foo")->ComputeDigest(), |
| 39 MakeIncident("foo")->ComputeDigest()); | 39 MakeIncident("foo")->ComputeDigest()); |
| 40 } | 40 } |
| 41 | 41 |
| 42 // Tests that GetDigest returns different values for different incidents. | 42 // Tests that GetDigest returns different values for different incidents. |
| 43 TEST(SuspiciousModuleIncident, DifferentIncidentDifferentDigest) { | 43 TEST(SuspiciousModuleIncident, DifferentIncidentDifferentDigest) { |
| 44 ASSERT_NE(MakeIncident("foo")->ComputeDigest(), | 44 ASSERT_NE(MakeIncident("foo")->ComputeDigest(), |
| 45 MakeIncident("bar")->ComputeDigest()); | 45 MakeIncident("bar")->ComputeDigest()); |
| 46 } | 46 } |
| 47 | 47 |
| 48 } // namespace safe_browsing | 48 } // namespace safe_browsing |
| OLD | NEW |