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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 // We don't really check a value or result in this test. All this does is | 420 // We don't really check a value or result in this test. All this does is |
421 // attempt to ping the financial server, which you can verify in Fiddler. | 421 // attempt to ping the financial server, which you can verify in Fiddler. |
422 // TODO: Make this a measurable test. | 422 // TODO: Make this a measurable test. |
423 | 423 |
424 #if defined(RLZ_NETWORK_IMPLEMENTATION_CHROME_NET) | 424 #if defined(RLZ_NETWORK_IMPLEMENTATION_CHROME_NET) |
425 #if defined(OS_MACOSX) | 425 #if defined(OS_MACOSX) |
426 base::mac::ScopedNSAutoreleasePool pool; | 426 base::mac::ScopedNSAutoreleasePool pool; |
427 #endif | 427 #endif |
428 | 428 |
429 base::Thread::Options options; | 429 base::Thread::Options options; |
430 options.message_loop_type = MessageLoop::TYPE_IO; | 430 options.message_loop_type = base::MessageLoop::TYPE_IO; |
431 | 431 |
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 { |
(...skipping 442 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 |