| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 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 "components/image_fetcher/request_metadata.h" | |
| 6 | |
| 7 #include "testing/gtest/include/gtest/gtest.h" | |
| 8 | |
| 9 namespace image_fetcher { | |
| 10 | |
| 11 TEST(RequestMetadataTest, Equality) { | |
| 12 RequestMetadata rhs; | |
| 13 RequestMetadata lhs; | |
| 14 rhs.mime_type = "testMimeType"; | |
| 15 lhs.mime_type = "testMimeType"; | |
| 16 rhs.http_response_code = 1; | |
| 17 lhs.http_response_code = 1; | |
| 18 rhs.from_http_cache = true; | |
| 19 lhs.from_http_cache = true; | |
| 20 | |
| 21 EXPECT_EQ(rhs, lhs); | |
| 22 } | |
| 23 | |
| 24 TEST(RequestMetadataTest, NoEquality) { | |
| 25 RequestMetadata rhs; | |
| 26 RequestMetadata lhs; | |
| 27 rhs.mime_type = "testMimeType"; | |
| 28 lhs.mime_type = "testMimeType"; | |
| 29 rhs.http_response_code = 1; | |
| 30 lhs.http_response_code = 1; | |
| 31 rhs.from_http_cache = true; | |
| 32 lhs.from_http_cache = true; | |
| 33 | |
| 34 lhs.mime_type = "testOtherMimeType"; | |
| 35 EXPECT_NE(rhs, lhs); | |
| 36 lhs.mime_type = "testMimeType"; | |
| 37 | |
| 38 lhs.http_response_code = 2; | |
| 39 EXPECT_NE(rhs, lhs); | |
| 40 lhs.http_response_code = 1; | |
| 41 | |
| 42 lhs.from_http_cache = false; | |
| 43 EXPECT_NE(rhs, lhs); | |
| 44 lhs.from_http_cache = true; | |
| 45 } | |
| 46 | |
| 47 } // namespace image_fetcher | |
| OLD | NEW |