| 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 // A test application for the RLZ library. | 5 // A test application for the RLZ library. |
| 6 // | 6 // |
| 7 // These tests should not be executed on the build server: | 7 // These tests should not be executed on the build server: |
| 8 // - They assert for the failed cases. | 8 // - They assert for the failed cases. |
| 9 // - They modify machine state (registry). | 9 // - They modify machine state (registry). |
| 10 // | 10 // |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 base::Thread io_thread("rlz_unittest_io_thread"); | 432 base::Thread io_thread("rlz_unittest_io_thread"); |
| 433 ASSERT_TRUE(io_thread.StartWithOptions(options)); | 433 ASSERT_TRUE(io_thread.StartWithOptions(options)); |
| 434 | 434 |
| 435 scoped_refptr<net::TestURLRequestContextGetter> context = | 435 scoped_refptr<net::TestURLRequestContextGetter> context = |
| 436 new net::TestURLRequestContextGetter( | 436 new net::TestURLRequestContextGetter( |
| 437 io_thread.message_loop()->message_loop_proxy()); | 437 io_thread.message_loop()->message_loop_proxy()); |
| 438 rlz_lib::SetURLRequestContext(context.get()); | 438 rlz_lib::SetURLRequestContext(context.get()); |
| 439 | 439 |
| 440 class URLRequestRAII { | 440 class URLRequestRAII { |
| 441 public: | 441 public: |
| 442 URLRequestRAII(net::URLRequestContextGetter* context) { | 442 explicit URLRequestRAII(net::URLRequestContextGetter* context) { |
| 443 rlz_lib::SetURLRequestContext(context); | 443 rlz_lib::SetURLRequestContext(context); |
| 444 } | 444 } |
| 445 ~URLRequestRAII() { | 445 ~URLRequestRAII() { |
| 446 rlz_lib::SetURLRequestContext(NULL); | 446 rlz_lib::SetURLRequestContext(NULL); |
| 447 } | 447 } |
| 448 }; | 448 }; |
| 449 | 449 |
| 450 URLRequestRAII set_context(context.get()); | 450 URLRequestRAII set_context(context.get()); |
| 451 #endif | 451 #endif |
| 452 | 452 |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 int mkdir_result = mkdir(rlz_lib::testing::RlzStoreFilenameStr().c_str(), | 883 int mkdir_result = mkdir(rlz_lib::testing::RlzStoreFilenameStr().c_str(), |
| 884 0500); | 884 0500); |
| 885 ASSERT_EQ(0, mkdir_result); | 885 ASSERT_EQ(0, mkdir_result); |
| 886 | 886 |
| 887 rlz_lib::SupplementaryBranding branding("TEST"); | 887 rlz_lib::SupplementaryBranding branding("TEST"); |
| 888 EXPECT_FALSE(rlz_lib::RecordProductEvent(rlz_lib::TOOLBAR_NOTIFIER, | 888 EXPECT_FALSE(rlz_lib::RecordProductEvent(rlz_lib::TOOLBAR_NOTIFIER, |
| 889 rlz_lib::IE_DEFAULT_SEARCH, rlz_lib::INSTALL)); | 889 rlz_lib::IE_DEFAULT_SEARCH, rlz_lib::INSTALL)); |
| 890 } | 890 } |
| 891 | 891 |
| 892 #endif | 892 #endif |
| OLD | NEW |