| 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 "chrome/browser/chromeos/status/clock_menu_button.h" | 5 #include "chrome/browser/chromeos/status/clock_menu_button.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "chrome/browser/chromeos/cros/cros_library.h" | 8 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 9 #include "chrome/browser/chromeos/frame/browser_view.h" | 9 #include "chrome/browser/chromeos/frame/browser_view.h" |
| 10 #include "chrome/browser/chromeos/system/timezone_settings.h" | 10 #include "chrome/browser/chromeos/system/timezone_settings.h" |
| 11 #include "chrome/browser/chromeos/view_ids.h" | 11 #include "chrome/browser/chromeos/view_ids.h" |
| 12 #include "chrome/browser/prefs/pref_member.h" | 12 #include "chrome/browser/prefs/pref_member.h" |
| 13 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
| 14 #include "chrome/browser/ui/browser_window.h" | 14 #include "chrome/browser/ui/browser_window.h" |
| 15 #include "chrome/test/base/in_process_browser_test.h" | 15 #include "chrome/test/base/in_process_browser_test.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 #include "unicode/calendar.h" | 17 #include "unicode/calendar.h" |
| 18 #include "unicode/timezone.h" | 18 #include "unicode/timezone.h" |
| 19 | 19 |
| 20 #if defined(USE_AURA) | |
| 21 #include "chrome/browser/ui/views/aura/chrome_shell_delegate.h" | |
| 22 #endif | |
| 23 | |
| 24 namespace chromeos { | 20 namespace chromeos { |
| 25 | 21 |
| 26 class ClockMenuButtonTest : public InProcessBrowserTest { | 22 class ClockMenuButtonTest : public InProcessBrowserTest { |
| 27 protected: | 23 protected: |
| 28 ClockMenuButtonTest() : InProcessBrowserTest() {} | 24 ClockMenuButtonTest() : InProcessBrowserTest() {} |
| 29 virtual void SetUpInProcessBrowserTestFixture() { | 25 virtual void SetUpInProcessBrowserTestFixture() { |
| 30 // This test requires actual libcros, but InProcessBrowserTest has set | 26 // This test requires actual libcros, but InProcessBrowserTest has set |
| 31 // to use stub, so reset it here. | 27 // to use stub, so reset it here. |
| 32 CrosLibrary::Get()->GetTestApi()->ResetUseStubImpl(); | 28 CrosLibrary::Get()->GetTestApi()->ResetUseStubImpl(); |
| 33 } | 29 } |
| 34 const ClockMenuButton* GetClockMenuButton() { | 30 ClockMenuButton* GetClockMenuButton() { |
| 35 const views::View* parent = NULL; | 31 BrowserView* view = static_cast<BrowserView*>(browser()->window()); |
| 36 #if defined(USE_AURA) | 32 return static_cast<ClockMenuButton*>(view->GetViewByID( |
| 37 parent = ChromeShellDelegate::instance()->GetStatusArea(); | |
| 38 #else | |
| 39 parent = static_cast<const BrowserView*>(browser()->window()); | |
| 40 #endif | |
| 41 return static_cast<const ClockMenuButton*>(parent->GetViewByID( | |
| 42 VIEW_ID_STATUS_BUTTON_CLOCK)); | 33 VIEW_ID_STATUS_BUTTON_CLOCK)); |
| 43 } | 34 } |
| 44 }; | 35 }; |
| 45 | 36 |
| 46 IN_PROC_BROWSER_TEST_F(ClockMenuButtonTest, TimezoneTest) { | 37 IN_PROC_BROWSER_TEST_F(ClockMenuButtonTest, TimezoneTest) { |
| 47 const ClockMenuButton* clock = GetClockMenuButton(); | 38 ClockMenuButton* clock = GetClockMenuButton(); |
| 48 ASSERT_TRUE(clock != NULL); | 39 ASSERT_TRUE(clock != NULL); |
| 49 | 40 |
| 50 // Update timezone and make sure clock text changes. | 41 // Update timezone and make sure clock text changes. |
| 51 scoped_ptr<icu::TimeZone> timezone_first(icu::TimeZone::createTimeZone( | 42 scoped_ptr<icu::TimeZone> timezone_first(icu::TimeZone::createTimeZone( |
| 52 icu::UnicodeString::fromUTF8("Asia/Hong_Kong"))); | 43 icu::UnicodeString::fromUTF8("Asia/Hong_Kong"))); |
| 53 system::TimezoneSettings::GetInstance()->SetTimezone(*timezone_first); | 44 system::TimezoneSettings::GetInstance()->SetTimezone(*timezone_first); |
| 54 string16 text_before = clock->text(); | 45 string16 text_before = clock->text(); |
| 55 scoped_ptr<icu::TimeZone> timezone_second(icu::TimeZone::createTimeZone( | 46 scoped_ptr<icu::TimeZone> timezone_second(icu::TimeZone::createTimeZone( |
| 56 icu::UnicodeString::fromUTF8("Pacific/Samoa"))); | 47 icu::UnicodeString::fromUTF8("Pacific/Samoa"))); |
| 57 system::TimezoneSettings::GetInstance()->SetTimezone(*timezone_second); | 48 system::TimezoneSettings::GetInstance()->SetTimezone(*timezone_second); |
| 58 string16 text_after = clock->text(); | 49 string16 text_after = clock->text(); |
| 59 EXPECT_NE(text_before, text_after); | 50 EXPECT_NE(text_before, text_after); |
| 60 } | 51 } |
| 61 | 52 |
| 62 } // namespace chromeos | 53 } // namespace chromeos |
| OLD | NEW |