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

Unified Diff: chrome/test/live_sync/performance/passwords_sync_perf_test.cc

Issue 7484007: Move sync performance tests into new target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re-upload again Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/live_sync/performance/passwords_sync_perf_test.cc
diff --git a/chrome/test/live_sync/performance_live_passwords_sync_test.cc b/chrome/test/live_sync/performance/passwords_sync_perf_test.cc
similarity index 76%
rename from chrome/test/live_sync/performance_live_passwords_sync_test.cc
rename to chrome/test/live_sync/performance/passwords_sync_perf_test.cc
index 05aae472947f4cf985668051337393d30af69e81..27b8aa69cc62802c5791a493d707b75140a40476 100644
--- a/chrome/test/live_sync/performance_live_passwords_sync_test.cc
+++ b/chrome/test/live_sync/performance/passwords_sync_perf_test.cc
@@ -6,7 +6,7 @@
#include "chrome/browser/password_manager/password_store.h"
#include "chrome/browser/sync/profile_sync_service_harness.h"
#include "chrome/test/live_sync/live_passwords_sync_test.h"
-#include "chrome/test/live_sync/live_sync_timing_helper.h"
+#include "chrome/test/live_sync/performance/sync_timing_helper.h"
static const int kNumPasswords = 150;
@@ -18,10 +18,10 @@ static const int kBenchmarkPoints[] = {1, 10, 20, 30, 40, 50, 75, 100, 125,
// TODO(braffert): Move this class into its own .h/.cc files. What should the
// class files be named as opposed to the file containing the tests themselves?
-class PerformanceLivePasswordsSyncTest
+class PasswordsSyncPerfTest
: public TwoClientLivePasswordsSyncTest {
public:
- PerformanceLivePasswordsSyncTest() : password_number_(0) {}
+ PasswordsSyncPerfTest() : password_number_(0) {}
// Adds |num_logins| new unique passwords to |profile|.
void AddLogins(int profile, int num_logins);
@@ -43,16 +43,16 @@ class PerformanceLivePasswordsSyncTest
std::string NextPassword();
int password_number_;
- DISALLOW_COPY_AND_ASSIGN(PerformanceLivePasswordsSyncTest);
+ DISALLOW_COPY_AND_ASSIGN(PasswordsSyncPerfTest);
};
-void PerformanceLivePasswordsSyncTest::AddLogins(int profile, int num_logins) {
+void PasswordsSyncPerfTest::AddLogins(int profile, int num_logins) {
for (int i = 0; i < num_logins; ++i) {
AddLogin(GetPasswordStore(profile), NextLogin());
}
}
-void PerformanceLivePasswordsSyncTest::UpdateLogins(int profile) {
+void PasswordsSyncPerfTest::UpdateLogins(int profile) {
std::vector<webkit_glue::PasswordForm> logins;
GetLogins(GetPasswordStore(profile), logins);
for (std::vector<webkit_glue::PasswordForm>::iterator it = logins.begin();
@@ -62,11 +62,11 @@ void PerformanceLivePasswordsSyncTest::UpdateLogins(int profile) {
}
}
-void PerformanceLivePasswordsSyncTest::RemoveLogins(int profile) {
+void PasswordsSyncPerfTest::RemoveLogins(int profile) {
LivePasswordsSyncTest::RemoveLogins(GetPasswordStore(profile));
}
-void PerformanceLivePasswordsSyncTest::Cleanup() {
+void PasswordsSyncPerfTest::Cleanup() {
for (int i = 0; i < num_clients(); ++i) {
RemoveLogins(i);
}
@@ -75,21 +75,21 @@ void PerformanceLivePasswordsSyncTest::Cleanup() {
ASSERT_TRUE(AllProfilesContainSamePasswordForms());
}
-webkit_glue::PasswordForm PerformanceLivePasswordsSyncTest::NextLogin() {
+webkit_glue::PasswordForm PasswordsSyncPerfTest::NextLogin() {
return CreateTestPasswordForm(password_number_++);
}
-std::string PerformanceLivePasswordsSyncTest::NextPassword() {
+std::string PasswordsSyncPerfTest::NextPassword() {
return base::StringPrintf("password%d", password_number_++);
}
// TCM ID - 7567749.
-IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Add) {
+IN_PROC_BROWSER_TEST_F(PasswordsSyncPerfTest, Add) {
ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
AddLogins(0, kNumPasswords);
base::TimeDelta dt =
- LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
+ SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(kNumPasswords, GetPasswordCount(0));
ASSERT_TRUE(AllProfilesContainSamePasswordForms());
@@ -98,7 +98,7 @@ IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Add) {
}
// TCM ID - 7365093.
-IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Update) {
+IN_PROC_BROWSER_TEST_F(PasswordsSyncPerfTest, Update) {
ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
AddLogins(0, kNumPasswords);
@@ -106,7 +106,7 @@ IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Update) {
UpdateLogins(0);
base::TimeDelta dt =
- LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
+ SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(kNumPasswords, GetPasswordCount(0));
ASSERT_TRUE(AllProfilesContainSamePasswordForms());
@@ -115,7 +115,7 @@ IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Update) {
}
// TCM ID - 7557852.
-IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Delete) {
+IN_PROC_BROWSER_TEST_F(PasswordsSyncPerfTest, Delete) {
ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
AddLogins(0, kNumPasswords);
@@ -123,7 +123,7 @@ IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Delete) {
RemoveLogins(0);
base::TimeDelta dt =
- LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
+ SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(0, GetPasswordCount(0));
ASSERT_TRUE(AllProfilesContainSamePasswordForms());
@@ -131,14 +131,14 @@ IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Delete) {
VLOG(0) << std::endl << "dt: " << dt.InSecondsF() << " s";
}
-IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, DISABLED_Benchmark) {
+IN_PROC_BROWSER_TEST_F(PasswordsSyncPerfTest, DISABLED_Benchmark) {
ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
for (int i = 0; i < kNumBenchmarkPoints; ++i) {
int num_passwords = kBenchmarkPoints[i];
AddLogins(0, num_passwords);
base::TimeDelta dt_add =
- LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
+ SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(num_passwords, GetPasswordCount(0));
ASSERT_TRUE(AllProfilesContainSamePasswordForms());
VLOG(0) << std::endl << "Add: " << num_passwords << " "
@@ -146,7 +146,7 @@ IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, DISABLED_Benchmark) {
UpdateLogins(0);
base::TimeDelta dt_update =
- LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
+ SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(num_passwords, GetPasswordCount(0));
ASSERT_TRUE(AllProfilesContainSamePasswordForms());
VLOG(0) << std::endl << "Update: " << num_passwords << " "
@@ -154,7 +154,7 @@ IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, DISABLED_Benchmark) {
RemoveLogins(0);
base::TimeDelta dt_delete =
- LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
+ SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
ASSERT_EQ(0, GetPasswordCount(0));
ASSERT_TRUE(AllProfilesContainSamePasswordForms());
VLOG(0) << std::endl << "Delete: " << num_passwords << " "
« no previous file with comments | « chrome/test/live_sync/performance/extensions_sync_perf_test.cc ('k') | chrome/test/live_sync/performance/sync_timing_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698