| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/automation/chrome_frame_automation_provider.h" | 5 #include "chrome/browser/automation/chrome_frame_automation_provider.h" |
| 6 #include "chrome/test/base/testing_browser_process.h" | 6 #include "chrome/test/base/testing_browser_process.h" |
| 7 #include "chrome/test/base/testing_browser_process_test.h" | |
| 8 #include "content/browser/browser_thread.h" | 7 #include "content/browser/browser_thread.h" |
| 9 #include "testing/gmock/include/gmock/gmock.h" | 8 #include "testing/gmock/include/gmock/gmock.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 10 |
| 12 class MockChromeFrameAutomationProvider | 11 class MockChromeFrameAutomationProvider |
| 13 : public ChromeFrameAutomationProvider { | 12 : public ChromeFrameAutomationProvider { |
| 14 public: | 13 public: |
| 15 explicit MockChromeFrameAutomationProvider(Profile* profile) | 14 explicit MockChromeFrameAutomationProvider(Profile* profile) |
| 16 : ChromeFrameAutomationProvider(profile) {} | 15 : ChromeFrameAutomationProvider(profile) {} |
| 17 | 16 |
| 18 virtual ~MockChromeFrameAutomationProvider() {} | 17 virtual ~MockChromeFrameAutomationProvider() {} |
| 19 | 18 |
| 20 MOCK_METHOD1(OnUnhandledMessage, | 19 MOCK_METHOD1(OnUnhandledMessage, |
| 21 void (const IPC::Message& message)); // NOLINT | 20 void (const IPC::Message& message)); // NOLINT |
| 22 }; | 21 }; |
| 23 | 22 |
| 24 typedef TestingBrowserProcessTest AutomationProviderTest; | 23 typedef testing::Test AutomationProviderTest; |
| 25 | 24 |
| 26 TEST_F(AutomationProviderTest, TestInvalidChromeFrameMessage) { | 25 TEST_F(AutomationProviderTest, TestInvalidChromeFrameMessage) { |
| 27 MessageLoop message_loop; | 26 MessageLoop message_loop; |
| 28 BrowserThread ui_thread(BrowserThread::UI, &message_loop); | 27 BrowserThread ui_thread(BrowserThread::UI, &message_loop); |
| 29 | 28 |
| 30 IPC::Message bad_msg(1, -1, IPC::Message::PRIORITY_NORMAL); | 29 IPC::Message bad_msg(1, -1, IPC::Message::PRIORITY_NORMAL); |
| 31 | 30 |
| 32 scoped_refptr<MockChromeFrameAutomationProvider> | 31 scoped_refptr<MockChromeFrameAutomationProvider> |
| 33 mock(new MockChromeFrameAutomationProvider(NULL)); | 32 mock(new MockChromeFrameAutomationProvider(NULL)); |
| 34 | 33 |
| 35 EXPECT_CALL(*mock, OnUnhandledMessage(testing::Property(&IPC::Message::type, | 34 EXPECT_CALL(*mock, OnUnhandledMessage(testing::Property(&IPC::Message::type, |
| 36 -1))).Times(1); | 35 -1))).Times(1); |
| 37 mock->OnMessageReceived(bad_msg); | 36 mock->OnMessageReceived(bad_msg); |
| 38 } | 37 } |
| 39 | 38 |
| OLD | NEW |