| Index: chrome/test/live_sync/performance_live_passwords_sync_test.cc
|
| diff --git a/chrome/test/live_sync/performance_live_passwords_sync_test.cc b/chrome/test/live_sync/performance_live_passwords_sync_test.cc
|
| deleted file mode 100644
|
| index 05aae472947f4cf985668051337393d30af69e81..0000000000000000000000000000000000000000
|
| --- a/chrome/test/live_sync/performance_live_passwords_sync_test.cc
|
| +++ /dev/null
|
| @@ -1,165 +0,0 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "base/stringprintf.h"
|
| -#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"
|
| -
|
| -static const int kNumPasswords = 150;
|
| -
|
| -// TODO(braffert): Consider the range / resolution of these test points.
|
| -static const int kNumBenchmarkPoints = 18;
|
| -static const int kBenchmarkPoints[] = {1, 10, 20, 30, 40, 50, 75, 100, 125,
|
| - 150, 175, 200, 225, 250, 300, 350, 400,
|
| - 500};
|
| -
|
| -// 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
|
| - : public TwoClientLivePasswordsSyncTest {
|
| - public:
|
| - PerformanceLivePasswordsSyncTest() : password_number_(0) {}
|
| -
|
| - // Adds |num_logins| new unique passwords to |profile|.
|
| - void AddLogins(int profile, int num_logins);
|
| -
|
| - // Updates the password for all logins for |profile|.
|
| - void UpdateLogins(int profile);
|
| -
|
| - // Removes all logins for |profile|.
|
| - void RemoveLogins(int profile);
|
| -
|
| - // Removes all logins for all profiles. Called between benchmark iterations.
|
| - void Cleanup();
|
| -
|
| - private:
|
| - // Returns a new unique login.
|
| - webkit_glue::PasswordForm NextLogin();
|
| -
|
| - // Returns a new unique password value.
|
| - std::string NextPassword();
|
| -
|
| - int password_number_;
|
| - DISALLOW_COPY_AND_ASSIGN(PerformanceLivePasswordsSyncTest);
|
| -};
|
| -
|
| -void PerformanceLivePasswordsSyncTest::AddLogins(int profile, int num_logins) {
|
| - for (int i = 0; i < num_logins; ++i) {
|
| - AddLogin(GetPasswordStore(profile), NextLogin());
|
| - }
|
| -}
|
| -
|
| -void PerformanceLivePasswordsSyncTest::UpdateLogins(int profile) {
|
| - std::vector<webkit_glue::PasswordForm> logins;
|
| - GetLogins(GetPasswordStore(profile), logins);
|
| - for (std::vector<webkit_glue::PasswordForm>::iterator it = logins.begin();
|
| - it != logins.end(); ++it) {
|
| - (*it).password_value = ASCIIToUTF16(NextPassword());
|
| - UpdateLogin(GetPasswordStore(profile), (*it));
|
| - }
|
| -}
|
| -
|
| -void PerformanceLivePasswordsSyncTest::RemoveLogins(int profile) {
|
| - LivePasswordsSyncTest::RemoveLogins(GetPasswordStore(profile));
|
| -}
|
| -
|
| -void PerformanceLivePasswordsSyncTest::Cleanup() {
|
| - for (int i = 0; i < num_clients(); ++i) {
|
| - RemoveLogins(i);
|
| - }
|
| - ASSERT_TRUE(AwaitQuiescence());
|
| - ASSERT_EQ(0, GetPasswordCount(0));
|
| - ASSERT_TRUE(AllProfilesContainSamePasswordForms());
|
| -}
|
| -
|
| -webkit_glue::PasswordForm PerformanceLivePasswordsSyncTest::NextLogin() {
|
| - return CreateTestPasswordForm(password_number_++);
|
| -}
|
| -
|
| -std::string PerformanceLivePasswordsSyncTest::NextPassword() {
|
| - return base::StringPrintf("password%d", password_number_++);
|
| -}
|
| -
|
| -// TCM ID - 7567749.
|
| -IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Add) {
|
| - ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
|
| -
|
| - AddLogins(0, kNumPasswords);
|
| - base::TimeDelta dt =
|
| - LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
|
| - ASSERT_EQ(kNumPasswords, GetPasswordCount(0));
|
| - ASSERT_TRUE(AllProfilesContainSamePasswordForms());
|
| -
|
| - // TODO(braffert): Compare timings against some target value.
|
| - VLOG(0) << std::endl << "dt: " << dt.InSecondsF() << " s";
|
| -}
|
| -
|
| -// TCM ID - 7365093.
|
| -IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Update) {
|
| - ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
|
| -
|
| - AddLogins(0, kNumPasswords);
|
| - ASSERT_TRUE(GetClient(0)->AwaitMutualSyncCycleCompletion(GetClient(1)));
|
| -
|
| - UpdateLogins(0);
|
| - base::TimeDelta dt =
|
| - LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
|
| - ASSERT_EQ(kNumPasswords, GetPasswordCount(0));
|
| - ASSERT_TRUE(AllProfilesContainSamePasswordForms());
|
| -
|
| - // TODO(braffert): Compare timings against some target value.
|
| - VLOG(0) << std::endl << "dt: " << dt.InSecondsF() << " s";
|
| -}
|
| -
|
| -// TCM ID - 7557852.
|
| -IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, Delete) {
|
| - ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
|
| -
|
| - AddLogins(0, kNumPasswords);
|
| - ASSERT_TRUE(GetClient(0)->AwaitMutualSyncCycleCompletion(GetClient(1)));
|
| -
|
| - RemoveLogins(0);
|
| - base::TimeDelta dt =
|
| - LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
|
| - ASSERT_EQ(0, GetPasswordCount(0));
|
| - ASSERT_TRUE(AllProfilesContainSamePasswordForms());
|
| -
|
| - // TODO(braffert): Compare timings against some target value.
|
| - VLOG(0) << std::endl << "dt: " << dt.InSecondsF() << " s";
|
| -}
|
| -
|
| -IN_PROC_BROWSER_TEST_F(PerformanceLivePasswordsSyncTest, 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));
|
| - ASSERT_EQ(num_passwords, GetPasswordCount(0));
|
| - ASSERT_TRUE(AllProfilesContainSamePasswordForms());
|
| - VLOG(0) << std::endl << "Add: " << num_passwords << " "
|
| - << dt_add.InSecondsF();
|
| -
|
| - UpdateLogins(0);
|
| - base::TimeDelta dt_update =
|
| - LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
|
| - ASSERT_EQ(num_passwords, GetPasswordCount(0));
|
| - ASSERT_TRUE(AllProfilesContainSamePasswordForms());
|
| - VLOG(0) << std::endl << "Update: " << num_passwords << " "
|
| - << dt_update.InSecondsF();
|
| -
|
| - RemoveLogins(0);
|
| - base::TimeDelta dt_delete =
|
| - LiveSyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1));
|
| - ASSERT_EQ(0, GetPasswordCount(0));
|
| - ASSERT_TRUE(AllProfilesContainSamePasswordForms());
|
| - VLOG(0) << std::endl << "Delete: " << num_passwords << " "
|
| - << dt_delete.InSecondsF();
|
| -
|
| - Cleanup();
|
| - }
|
| -}
|
|
|