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 "base/file_path.h" | 5 #include "base/file_path.h" |
6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/scoped_temp_dir.h" | 10 #include "base/scoped_temp_dir.h" |
11 #include "base/stl_util.h" | 11 #include "base/stl_util.h" |
12 #include "chrome/browser/extensions/app_notification.h" | 12 #include "chrome/browser/extensions/app_notification.h" |
13 #include "chrome/browser/extensions/app_notification_storage.h" | 13 #include "chrome/browser/extensions/app_notification_storage.h" |
14 #include "chrome/browser/extensions/app_notification_test_util.h" | 14 #include "chrome/browser/extensions/app_notification_test_util.h" |
15 #include "chrome/common/extensions/extension_test_util.h" | 15 #include "chrome/common/extensions/extension_test_util.h" |
16 #include "content/test/test_browser_thread.h" | 16 #include "content/public/test/test_browser_thread.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
18 | 18 |
19 using content::BrowserThread; | 19 using content::BrowserThread; |
20 | 20 |
21 namespace util = app_notification_test_util; | 21 namespace util = app_notification_test_util; |
22 | 22 |
23 class AppNotificationStorageTest : public testing::Test { | 23 class AppNotificationStorageTest : public testing::Test { |
24 public: | 24 public: |
25 AppNotificationStorageTest() : | 25 AppNotificationStorageTest() : |
26 file_thread_(BrowserThread::FILE, &message_loop_) {} | 26 file_thread_(BrowserThread::FILE, &message_loop_) {} |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 util::AddNotifications(&list1, id, 5, "one"); | 130 util::AddNotifications(&list1, id, 5, "one"); |
131 util::AddNotifications(&list2, id, 7, "two"); | 131 util::AddNotifications(&list2, id, 7, "two"); |
132 | 132 |
133 // Put list1 in, then replace with list2 and verify we get list2 back. | 133 // Put list1 in, then replace with list2 and verify we get list2 back. |
134 EXPECT_TRUE(storage_->Set(id, list1)); | 134 EXPECT_TRUE(storage_->Set(id, list1)); |
135 EXPECT_TRUE(storage_->Set(id, list2)); | 135 EXPECT_TRUE(storage_->Set(id, list2)); |
136 AppNotificationList tmp_list; | 136 AppNotificationList tmp_list; |
137 EXPECT_TRUE(storage_->Get(id, &tmp_list)); | 137 EXPECT_TRUE(storage_->Get(id, &tmp_list)); |
138 util::ExpectListsEqual(list2, tmp_list); | 138 util::ExpectListsEqual(list2, tmp_list); |
139 } | 139 } |
OLD | NEW |