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
3 // found in the LICENSE file.
5 #import <Cocoa/Cocoa.h>
7 #import "chrome/browser/ui/cocoa/window_size_autosaver.h"
9 #include "base/mac/scoped_nsobject.h"
10 #include "base/prefs/pref_service.h"
11 #include "base/prefs/scoped_user_pref_update.h"
12 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h"
13 #include "chrome/test/base/testing_profile.h"
14 #include "components/pref_registry/pref_registry_syncable.h"
15 #include "testing/gtest/include/gtest/gtest.h"
16 #include "testing/platform_test.h"
20 class WindowSizeAutosaverTest : public CocoaProfileTest {
21 virtual void SetUp() {
22 CocoaProfileTest::SetUp();
23 path_ = "WindowSizeAutosaverTest";
25 [[NSWindow alloc] initWithContentRect:NSMakeRect(100, 101, 150, 151)
26 styleMask:NSTitledWindowMask|
28 backing:NSBackingStoreBuffered
30 // TODO(joi): Do all registration up front.
31 static_cast<user_prefs::PrefRegistrySyncable*>(
32 profile()->GetPrefs()->DeprecatedGetPrefRegistry())->
33 RegisterDictionaryPref(
35 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
38 virtual void TearDown() {
40 CocoaProfileTest::TearDown();
48 TEST_F(WindowSizeAutosaverTest, RestoresAndSavesPos) {
49 PrefService* pref = profile()->GetPrefs();
50 ASSERT_TRUE(pref != NULL);
52 // Check to make sure there is no existing pref for window placement.
53 const base::DictionaryValue* placement = pref->GetDictionary(path_);
54 ASSERT_TRUE(placement);
55 EXPECT_TRUE(placement->empty());
57 // Replace the window with one that doesn't have resize controls.
60 [[NSWindow alloc] initWithContentRect:NSMakeRect(100, 101, 150, 151)
61 styleMask:NSTitledWindowMask
62 backing:NSBackingStoreBuffered
65 // Ask the window to save its position, then check that a preference
66 // exists. We're technically passing in a pointer to the user prefs
67 // and not the local state prefs, but a PrefService* is a
68 // PrefService*, and this is a unittest.
71 NSRect frame = [window_ frame];
72 // Empty state, shouldn't restore:
73 base::scoped_nsobject<WindowSizeAutosaver> sizeSaver(
74 [[WindowSizeAutosaver alloc] initWithWindow:window_
77 EXPECT_EQ(NSMinX(frame), NSMinX([window_ frame]));
78 EXPECT_EQ(NSMinY(frame), NSMinY([window_ frame]));
79 EXPECT_EQ(NSWidth(frame), NSWidth([window_ frame]));
80 EXPECT_EQ(NSHeight(frame), NSHeight([window_ frame]));
82 // Move and resize window, should store position but not size.
83 [window_ setFrame:NSMakeRect(300, 310, 250, 252) display:NO];
86 // Another window movement -- shouldn't be recorded.
87 [window_ setFrame:NSMakeRect(400, 420, 160, 162) display:NO];
90 // Should restore last stored position, but not size.
91 base::scoped_nsobject<WindowSizeAutosaver> sizeSaver(
92 [[WindowSizeAutosaver alloc] initWithWindow:window_
95 EXPECT_EQ(300, NSMinX([window_ frame]));
96 EXPECT_EQ(310, NSMinY([window_ frame]));
97 EXPECT_EQ(160, NSWidth([window_ frame]));
98 EXPECT_EQ(162, NSHeight([window_ frame]));
101 // ...and it should be in the profile, too.
102 EXPECT_TRUE(pref->GetDictionary(path_) != NULL);
104 const base::DictionaryValue* windowPref = pref->GetDictionary(path_);
105 EXPECT_FALSE(windowPref->GetInteger("left", &x));
106 EXPECT_FALSE(windowPref->GetInteger("right", &x));
107 EXPECT_FALSE(windowPref->GetInteger("top", &x));
108 EXPECT_FALSE(windowPref->GetInteger("bottom", &x));
109 ASSERT_TRUE(windowPref->GetInteger("x", &x));
110 ASSERT_TRUE(windowPref->GetInteger("y", &y));
115 TEST_F(WindowSizeAutosaverTest, RestoresAndSavesRect) {
116 PrefService* pref = profile()->GetPrefs();
117 ASSERT_TRUE(pref != NULL);
119 // Check to make sure there is no existing pref for window placement.
120 const base::DictionaryValue* placement = pref->GetDictionary(path_);
121 ASSERT_TRUE(placement);
122 EXPECT_TRUE(placement->empty());
124 // Ask the window to save its position, then check that a preference
125 // exists. We're technically passing in a pointer to the user prefs
126 // and not the local state prefs, but a PrefService* is a
127 // PrefService*, and this is a unittest.
130 NSRect frame = [window_ frame];
131 // Empty state, shouldn't restore:
132 base::scoped_nsobject<WindowSizeAutosaver> sizeSaver(
133 [[WindowSizeAutosaver alloc] initWithWindow:window_
136 EXPECT_EQ(NSMinX(frame), NSMinX([window_ frame]));
137 EXPECT_EQ(NSMinY(frame), NSMinY([window_ frame]));
138 EXPECT_EQ(NSWidth(frame), NSWidth([window_ frame]));
139 EXPECT_EQ(NSHeight(frame), NSHeight([window_ frame]));
141 // Move and resize window, should store
142 [window_ setFrame:NSMakeRect(300, 310, 250, 252) display:NO];
145 // Another window movement -- shouldn't be recorded.
146 [window_ setFrame:NSMakeRect(400, 420, 160, 162) display:NO];
149 // Should restore last stored size
150 base::scoped_nsobject<WindowSizeAutosaver> sizeSaver(
151 [[WindowSizeAutosaver alloc] initWithWindow:window_
154 EXPECT_EQ(300, NSMinX([window_ frame]));
155 EXPECT_EQ(310, NSMinY([window_ frame]));
156 EXPECT_EQ(250, NSWidth([window_ frame]));
157 EXPECT_EQ(252, NSHeight([window_ frame]));
160 // ...and it should be in the profile, too.
161 EXPECT_TRUE(pref->GetDictionary(path_) != NULL);
163 const base::DictionaryValue* windowPref = pref->GetDictionary(path_);
164 EXPECT_FALSE(windowPref->GetInteger("x", &x1));
165 EXPECT_FALSE(windowPref->GetInteger("y", &x1));
166 ASSERT_TRUE(windowPref->GetInteger("left", &x1));
167 ASSERT_TRUE(windowPref->GetInteger("right", &x2));
168 ASSERT_TRUE(windowPref->GetInteger("top", &y1));
169 ASSERT_TRUE(windowPref->GetInteger("bottom", &y2));
172 EXPECT_EQ(300 + 250, x2);
173 EXPECT_EQ(310 + 252, y2);
176 // http://crbug.com/39625
177 TEST_F(WindowSizeAutosaverTest, DoesNotRestoreButClearsEmptyRect) {
178 PrefService* pref = profile()->GetPrefs();
179 ASSERT_TRUE(pref != NULL);
181 DictionaryPrefUpdate update(pref, path_);
182 base::DictionaryValue* windowPref = update.Get();
183 windowPref->SetInteger("left", 50);
184 windowPref->SetInteger("right", 50);
185 windowPref->SetInteger("top", 60);
186 windowPref->SetInteger("bottom", 60);
189 // Window rect shouldn't change...
190 NSRect frame = [window_ frame];
191 base::scoped_nsobject<WindowSizeAutosaver> sizeSaver(
192 [[WindowSizeAutosaver alloc] initWithWindow:window_
195 EXPECT_EQ(NSMinX(frame), NSMinX([window_ frame]));
196 EXPECT_EQ(NSMinY(frame), NSMinY([window_ frame]));
197 EXPECT_EQ(NSWidth(frame), NSWidth([window_ frame]));
198 EXPECT_EQ(NSHeight(frame), NSHeight([window_ frame]));
201 // ...and it should be gone from the profile, too.
202 EXPECT_TRUE(pref->GetDictionary(path_) != NULL);
204 EXPECT_FALSE(windowPref->GetInteger("x", &x1));
205 EXPECT_FALSE(windowPref->GetInteger("y", &x1));
206 ASSERT_FALSE(windowPref->GetInteger("left", &x1));
207 ASSERT_FALSE(windowPref->GetInteger("right", &x2));
208 ASSERT_FALSE(windowPref->GetInteger("top", &y1));
209 ASSERT_FALSE(windowPref->GetInteger("bottom", &y2));