OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/safe_browsing/incident_reporting/suspicious_module_inci
dent.h" |
| 6 |
| 7 #include <utility> |
| 8 |
| 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/common/safe_browsing/csd.pb.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 |
| 13 namespace safe_browsing { |
| 14 |
| 15 namespace { |
| 16 |
| 17 scoped_ptr<Incident> MakeIncident(const char* path) { |
| 18 scoped_ptr<ClientIncidentReport_IncidentData_SuspiciousModuleIncident> |
| 19 incident(new ClientIncidentReport_IncidentData_SuspiciousModuleIncident); |
| 20 incident->set_path(path); |
| 21 return make_scoped_ptr(new SuspiciousModuleIncident(std::move(incident))); |
| 22 } |
| 23 |
| 24 } // namespace |
| 25 |
| 26 TEST(SuspiciousModuleIncident, GetType) { |
| 27 ASSERT_EQ(IncidentType::SUSPICIOUS_MODULE, MakeIncident("foo")->GetType()); |
| 28 } |
| 29 |
| 30 // Tests that GetKey returns the dll path. |
| 31 TEST(SuspiciousModuleIncident, KeyIsPath) { |
| 32 ASSERT_EQ(std::string("foo"), MakeIncident("foo")->GetKey()); |
| 33 } |
| 34 |
| 35 // Tests that GetDigest returns the same value for the same incident. |
| 36 TEST(SuspiciousModuleIncident, SameIncidentSameDigest) { |
| 37 ASSERT_EQ(MakeIncident("foo")->ComputeDigest(), |
| 38 MakeIncident("foo")->ComputeDigest()); |
| 39 } |
| 40 |
| 41 // Tests that GetDigest returns different values for different incidents. |
| 42 TEST(SuspiciousModuleIncident, DifferentIncidentDifferentDigest) { |
| 43 ASSERT_NE(MakeIncident("foo")->ComputeDigest(), |
| 44 MakeIncident("bar")->ComputeDigest()); |
| 45 } |
| 46 |
| 47 } // namespace safe_browsing |
OLD | NEW |