Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: chrome/browser/safe_browsing/safe_browsing_test.cc

Issue 12378016: chrome: Update include paths of string_split.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 // This test uses the safebrowsing test server published at 5 // This test uses the safebrowsing test server published at
6 // http://code.google.com/p/google-safe-browsing/ to test the safebrowsing 6 // http://code.google.com/p/google-safe-browsing/ to test the safebrowsing
7 // protocol implemetation. Details of the safebrowsing testing flow is 7 // protocol implemetation. Details of the safebrowsing testing flow is
8 // documented at 8 // documented at
9 // http://code.google.com/p/google-safe-browsing/wiki/ProtocolTesting 9 // http://code.google.com/p/google-safe-browsing/wiki/ProtocolTesting
10 // 10 //
11 // This test launches safebrowsing test server and issues several update 11 // This test launches safebrowsing test server and issues several update
12 // requests against that server. Each update would get different data and after 12 // requests against that server. Each update would get different data and after
13 // each update, the test will get a list of URLs from the test server to verify 13 // each update, the test will get a list of URLs from the test server to verify
14 // its repository. The test will succeed only if all updates are performed and 14 // its repository. The test will succeed only if all updates are performed and
15 // URLs match what the server expected. 15 // URLs match what the server expected.
16 16
17 #include <vector> 17 #include <vector>
18 18
19 #include "base/bind.h" 19 #include "base/bind.h"
20 #include "base/command_line.h" 20 #include "base/command_line.h"
21 #include "base/environment.h" 21 #include "base/environment.h"
22 #include "base/path_service.h" 22 #include "base/path_service.h"
23 #include "base/process_util.h" 23 #include "base/process_util.h"
24 #include "base/string_split.h"
25 #include "base/stringprintf.h" 24 #include "base/stringprintf.h"
26 #include "base/strings/string_number_conversions.h" 25 #include "base/strings/string_number_conversions.h"
26 #include "base/strings/string_split.h"
27 #include "base/synchronization/lock.h" 27 #include "base/synchronization/lock.h"
28 #include "base/test/test_timeouts.h" 28 #include "base/test/test_timeouts.h"
29 #include "base/threading/platform_thread.h" 29 #include "base/threading/platform_thread.h"
30 #include "base/threading/thread.h" 30 #include "base/threading/thread.h"
31 #include "base/time.h" 31 #include "base/time.h"
32 #include "base/utf_string_conversions.h" 32 #include "base/utf_string_conversions.h"
33 #include "chrome/browser/browser_process.h" 33 #include "chrome/browser/browser_process.h"
34 #include "chrome/browser/profiles/profile.h" 34 #include "chrome/browser/profiles/profile.h"
35 #include "chrome/browser/safe_browsing/database_manager.h" 35 #include "chrome/browser/safe_browsing/database_manager.h"
36 #include "chrome/browser/safe_browsing/local_safebrowsing_test_server.h" 36 #include "chrome/browser/safe_browsing/local_safebrowsing_test_server.h"
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 safe_browsing_helper->FetchDBToVerify(test_server(), step)); 520 safe_browsing_helper->FetchDBToVerify(test_server(), step));
521 EXPECT_GT(safe_browsing_helper->response_data().size(), 0U); 521 EXPECT_GT(safe_browsing_helper->response_data().size(), 0U);
522 last_step = step; 522 last_step = step;
523 } 523 }
524 524
525 // Verifies with server if test is done and waits till server responses. 525 // Verifies with server if test is done and waits till server responses.
526 EXPECT_EQ(net::URLRequestStatus::SUCCESS, 526 EXPECT_EQ(net::URLRequestStatus::SUCCESS,
527 safe_browsing_helper->VerifyTestComplete(test_server(), last_step)); 527 safe_browsing_helper->VerifyTestComplete(test_server(), last_step));
528 EXPECT_EQ("yes", safe_browsing_helper->response_data()); 528 EXPECT_EQ("yes", safe_browsing_helper->response_data());
529 } 529 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698