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 "base/command_line.h" | 5 #include "base/command_line.h" |
6 #include "base/json/json_reader.h" | 6 #include "base/json/json_reader.h" |
7 #include "base/json/json_writer.h" | 7 #include "base/json/json_writer.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "chrome/browser/automation/extension_automation_constants.h" | 9 #include "chrome/browser/automation/extension_automation_constants.h" |
10 #include "chrome/browser/extensions/extension_tabs_module_constants.h" | 10 #include "chrome/browser/extensions/extension_tabs_module_constants.h" |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 &ExtensionTestRoundtripApiCall::CheckAndSendResponse)))); | 276 &ExtensionTestRoundtripApiCall::CheckAndSendResponse)))); |
277 | 277 |
278 EXPECT_CALL(*mock_, HandleClosed(_)); | 278 EXPECT_CALL(*mock_, HandleClosed(_)); |
279 | 279 |
280 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab_->NavigateInExternalTab( | 280 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab_->NavigateInExternalTab( |
281 GURL("chrome-extension://ofoknjclcmghjfmbncljcnpjmfmldhno/test.html"), | 281 GURL("chrome-extension://ofoknjclcmghjfmbncljcnpjmfmldhno/test.html"), |
282 GURL(""))); | 282 GURL(""))); |
283 | 283 |
284 // CheckAndSendResponse (called by OnForwardMessageToExternalHost) | 284 // CheckAndSendResponse (called by OnForwardMessageToExternalHost) |
285 // will end the loop once it has received both of our expected messages. | 285 // will end the loop once it has received both of our expected messages. |
286 loop_.RunFor(2 * action_max_timeout_ms()); | 286 loop_.RunFor(action_max_timeout_ms()); |
287 } | 287 } |
288 | 288 |
289 class ExtensionTestBrowserEvents : public ExtensionUITest { | 289 class ExtensionTestBrowserEvents : public ExtensionUITest { |
290 public: | 290 public: |
291 ExtensionTestBrowserEvents() | 291 ExtensionTestBrowserEvents() |
292 : ExtensionUITest(kTestDirectoryBrowserEvent), | 292 : ExtensionUITest(kTestDirectoryBrowserEvent), |
293 response_count_(0) { | 293 response_count_(0) { |
294 } | 294 } |
295 | 295 |
296 void SetUp() { | 296 void SetUp() { |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 &ExtensionTestBrowserEvents::HandleMessageFromChrome)))); | 463 &ExtensionTestBrowserEvents::HandleMessageFromChrome)))); |
464 | 464 |
465 EXPECT_CALL(*mock_, HandleClosed(_)); | 465 EXPECT_CALL(*mock_, HandleClosed(_)); |
466 | 466 |
467 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab_->NavigateInExternalTab( | 467 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab_->NavigateInExternalTab( |
468 GURL("chrome-extension://ofoknjclcmghjfmbncljcnpjmfmldhno/test.html"), | 468 GURL("chrome-extension://ofoknjclcmghjfmbncljcnpjmfmldhno/test.html"), |
469 GURL(""))); | 469 GURL(""))); |
470 | 470 |
471 // HandleMessageFromChrome (called by OnForwardMessageToExternalHost) ends | 471 // HandleMessageFromChrome (called by OnForwardMessageToExternalHost) ends |
472 // the loop when we've received the number of response messages we expect. | 472 // the loop when we've received the number of response messages we expect. |
473 loop_.RunFor(2 * action_max_timeout_ms()); | 473 loop_.RunFor(action_max_timeout_ms()); |
474 | 474 |
475 // If this assert hits and the actual size is 0 then you need to look at: | 475 // If this assert hits and the actual size is 0 then you need to look at: |
476 // src\chrome\test\data\extensions\uitest\event_sink\test.html and see if | 476 // src\chrome\test\data\extensions\uitest\event_sink\test.html and see if |
477 // all the events we are attaching to are valid. Also compare the list against | 477 // all the events we are attaching to are valid. Also compare the list against |
478 // the event_names_ string array above. | 478 // the event_names_ string array above. |
479 ASSERT_EQ(arraysize(events_), event_count_.size()); | 479 ASSERT_EQ(arraysize(events_), event_count_.size()); |
480 for (std::map<std::string, int>::iterator i = event_count_.begin(); | 480 for (std::map<std::string, int>::iterator i = event_count_.begin(); |
481 i != event_count_.end(); ++i) { | 481 i != event_count_.end(); ++i) { |
482 const std::pair<std::string, int>& value = *i; | 482 const std::pair<std::string, int>& value = *i; |
483 EXPECT_EQ(1, value.second); | 483 EXPECT_EQ(1, value.second); |
484 } | 484 } |
485 } | 485 } |
486 #endif // defined(OS_WIN) | 486 #endif // defined(OS_WIN) |
487 | 487 |
488 } // namespace | 488 } // namespace |
OLD | NEW |