| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/extensions/api/messaging/native_message_process_host.h" | 5 #include "chrome/browser/extensions/api/messaging/native_message_process_host.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 run_loop_.reset(new base::RunLoop()); | 296 run_loop_.reset(new base::RunLoop()); |
| 297 run_loop_->Run(); | 297 run_loop_->Run(); |
| 298 EXPECT_TRUE(last_message_parsed_->GetInteger("id", &id)); | 298 EXPECT_TRUE(last_message_parsed_->GetInteger("id", &id)); |
| 299 EXPECT_EQ(2, id); | 299 EXPECT_EQ(2, id); |
| 300 EXPECT_TRUE(last_message_parsed_->GetString("echo.foo", &text)); | 300 EXPECT_TRUE(last_message_parsed_->GetString("echo.foo", &text)); |
| 301 EXPECT_EQ("bar", text); | 301 EXPECT_EQ("bar", text); |
| 302 EXPECT_TRUE(last_message_parsed_->GetString("caller_url", &url)); | 302 EXPECT_TRUE(last_message_parsed_->GetString("caller_url", &url)); |
| 303 EXPECT_EQ(expected_url, url); | 303 EXPECT_EQ(expected_url, url); |
| 304 } | 304 } |
| 305 | 305 |
| 306 TEST_F(NativeMessagingTest, UserLevel) { | 306 // http://crbug.com/723291 |
| 307 #if defined(OS_WIN) |
| 308 #define MAYBE_UserLevel DISABLED_UserLevel |
| 309 #else |
| 310 #define MAYBE_UserLevel UserLevel |
| 311 #endif |
| 312 TEST_F(NativeMessagingTest, MAYBE_UserLevel) { |
| 307 ScopedTestNativeMessagingHost test_host; | 313 ScopedTestNativeMessagingHost test_host; |
| 308 ASSERT_NO_FATAL_FAILURE(test_host.RegisterTestHost(true)); | 314 ASSERT_NO_FATAL_FAILURE(test_host.RegisterTestHost(true)); |
| 309 | 315 |
| 310 std::string error_message; | 316 std::string error_message; |
| 311 native_message_host_ = NativeMessageProcessHost::Create( | 317 native_message_host_ = NativeMessageProcessHost::Create( |
| 312 NULL, | 318 NULL, |
| 313 ScopedTestNativeMessagingHost::kExtensionId, | 319 ScopedTestNativeMessagingHost::kExtensionId, |
| 314 ScopedTestNativeMessagingHost::kHostName, | 320 ScopedTestNativeMessagingHost::kHostName, |
| 315 true, | 321 true, |
| 316 &error_message); | 322 &error_message); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 338 native_message_host_->Start(this); | 344 native_message_host_->Start(this); |
| 339 ASSERT_TRUE(native_message_host_.get()); | 345 ASSERT_TRUE(native_message_host_.get()); |
| 340 run_loop_.reset(new base::RunLoop()); | 346 run_loop_.reset(new base::RunLoop()); |
| 341 run_loop_->Run(); | 347 run_loop_->Run(); |
| 342 | 348 |
| 343 // The host should fail to start. | 349 // The host should fail to start. |
| 344 ASSERT_TRUE(channel_closed_); | 350 ASSERT_TRUE(channel_closed_); |
| 345 } | 351 } |
| 346 | 352 |
| 347 } // namespace extensions | 353 } // namespace extensions |
| OLD | NEW |