| 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 "content/browser/download/download_id.h" | 5 #include "content/browser/download/download_id.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "content/browser/download/mock_download_manager.h" | 12 #include "content/browser/download/mock_download_manager.h" |
| 13 #include "content/browser/download/mock_download_manager_delegate.h" | 13 #include "content/browser/download/mock_download_manager_delegate.h" |
| 14 #include "content/test/test_browser_thread.h" | 14 #include "content/test/test_browser_thread.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 using content::BrowserThread; |
| 18 |
| 17 class DownloadIdTest : public testing::Test { | 19 class DownloadIdTest : public testing::Test { |
| 18 public: | 20 public: |
| 19 DownloadIdTest() | 21 DownloadIdTest() |
| 20 : download_manager_delegate_(new MockDownloadManagerDelegate), | 22 : download_manager_delegate_(new MockDownloadManagerDelegate), |
| 21 ui_thread_(BrowserThread::UI, &message_loop_) { | 23 ui_thread_(BrowserThread::UI, &message_loop_) { |
| 22 num_managers_ = ARRAYSIZE_UNSAFE(download_managers_); | 24 num_managers_ = ARRAYSIZE_UNSAFE(download_managers_); |
| 23 std::vector<MockDownloadManager*> managers; | 25 std::vector<MockDownloadManager*> managers; |
| 24 managers.resize(num_managers_); | 26 managers.resize(num_managers_); |
| 25 size_t i; | 27 size_t i; |
| 26 // Create the download managers. | 28 // Create the download managers. |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 EXPECT_EQ(kLocalId[2], map[id3]); | 144 EXPECT_EQ(kLocalId[2], map[id3]); |
| 143 last = map.end(); | 145 last = map.end(); |
| 144 EXPECT_FALSE(last == map.find(id1)); | 146 EXPECT_FALSE(last == map.find(id1)); |
| 145 EXPECT_FALSE(last == map.find(id2)); | 147 EXPECT_FALSE(last == map.find(id2)); |
| 146 EXPECT_FALSE(last == map.find(id3)); | 148 EXPECT_FALSE(last == map.find(id3)); |
| 147 | 149 |
| 148 EXPECT_FALSE(id1 == id2); | 150 EXPECT_FALSE(id1 == id2); |
| 149 EXPECT_LT(id1, id2); | 151 EXPECT_LT(id1, id2); |
| 150 } | 152 } |
| 151 | 153 |
| OLD | NEW |