| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <string.h> | 5 #include <string.h> |
| 6 #include <string> | 6 #include <string> |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/md5.h" | 10 #include "base/md5.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/googletest/include/gtest/gtest.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 | 14 |
| 15 TEST(MD5, DigestToBase16) { | 15 TEST(MD5, DigestToBase16) { |
| 16 MD5Digest digest; | 16 MD5Digest digest; |
| 17 | 17 |
| 18 int data[] = { | 18 int data[] = { |
| 19 0xd4, 0x1d, 0x8c, 0xd9, | 19 0xd4, 0x1d, 0x8c, 0xd9, |
| 20 0x8f, 0x00, 0xb2, 0x04, | 20 0x8f, 0x00, 0xb2, 0x04, |
| 21 0xe9, 0x80, 0x09, 0x98, | 21 0xe9, 0x80, 0x09, 0x98, |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 243 |
| 244 // The header and full digest pairs are the same, and they aren't the same as | 244 // The header and full digest pairs are the same, and they aren't the same as |
| 245 // each other. | 245 // each other. |
| 246 EXPECT_TRUE(!memcmp(&header_digest, &check_header_digest, | 246 EXPECT_TRUE(!memcmp(&header_digest, &check_header_digest, |
| 247 sizeof(header_digest))); | 247 sizeof(header_digest))); |
| 248 EXPECT_TRUE(!memcmp(&digest, &check_full_digest, sizeof(digest))); | 248 EXPECT_TRUE(!memcmp(&digest, &check_full_digest, sizeof(digest))); |
| 249 EXPECT_TRUE(memcmp(&digest, &header_digest, sizeof(digest))); | 249 EXPECT_TRUE(memcmp(&digest, &header_digest, sizeof(digest))); |
| 250 } | 250 } |
| 251 | 251 |
| 252 } // namespace base | 252 } // namespace base |
| OLD | NEW |