Index: chrome/test/live_sync/live_bookmarks_sync_test.h |
diff --git a/chrome/test/live_sync/live_bookmarks_sync_test.h b/chrome/test/live_sync/live_bookmarks_sync_test.h |
deleted file mode 100644 |
index 9ed22da086b69483874584bce93bf8d1698367e0..0000000000000000000000000000000000000000 |
--- a/chrome/test/live_sync/live_bookmarks_sync_test.h |
+++ /dev/null |
@@ -1,234 +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. |
- |
-#ifndef CHROME_TEST_LIVE_SYNC_LIVE_BOOKMARKS_SYNC_TEST_H_ |
-#define CHROME_TEST_LIVE_SYNC_LIVE_BOOKMARKS_SYNC_TEST_H_ |
-#pragma once |
- |
-#include <string> |
-#include <vector> |
- |
-#include "base/compiler_specific.h" |
-#include "chrome/browser/bookmarks/bookmark_model.h" |
-#include "chrome/test/live_sync/bookmark_model_verifier.h" |
-#include "chrome/test/live_sync/live_sync_test.h" |
-#include "testing/gtest/include/gtest/gtest.h" |
- |
-class GURL; |
-class Profile; |
- |
-class LiveBookmarksSyncTest : public LiveSyncTest { |
- public: |
- explicit LiveBookmarksSyncTest(TestType test_type); |
- virtual ~LiveBookmarksSyncTest(); |
- |
- // Sets up sync profiles and clients and initializes the bookmark verifier. |
- virtual bool SetupClients() WARN_UNUSED_RESULT; |
- |
- // Used to access the bookmark model within a particular sync profile. |
- BookmarkModel* GetBookmarkModel(int index) WARN_UNUSED_RESULT; |
- |
- // Used to access the bookmark bar within a particular sync profile. |
- const BookmarkNode* GetBookmarkBarNode(int index) WARN_UNUSED_RESULT; |
- |
- // Used to access the "other bookmarks" node within a particular sync profile. |
- const BookmarkNode* GetOtherNode(int index) WARN_UNUSED_RESULT; |
- |
- // Used to access the bookmarks within the verifier sync profile. |
- BookmarkModel* GetVerifierBookmarkModel() WARN_UNUSED_RESULT; |
- |
- // After calling this method, changes made to a bookmark model will no longer |
- // be reflected in the verifier model. |
- void DisableVerifier(); |
- |
- // Encrypt Bookmarks datatype. |
- bool EnableEncryption(int index); |
- |
- // Check if Bookmarks are encrypted. |
- bool IsEncrypted(int index); |
- |
- // Adds a URL with address |url| and title |title| to the bookmark bar of |
- // profile |profile|. Returns a pointer to the node that was added. |
- const BookmarkNode* AddURL(int profile, |
- const std::wstring& title, |
- const GURL& url) WARN_UNUSED_RESULT; |
- |
- // Adds a URL with address |url| and title |title| to the bookmark bar of |
- // profile |profile| at position |index|. Returns a pointer to the node that |
- // was added. |
- const BookmarkNode* AddURL(int profile, |
- int index, |
- const std::wstring& title, |
- const GURL& url) WARN_UNUSED_RESULT; |
- |
- // Adds a URL with address |url| and title |title| under the node |parent| of |
- // profile |profile| at position |index|. Returns a pointer to the node that |
- // was added. |
- const BookmarkNode* AddURL(int profile, |
- const BookmarkNode* parent, |
- int index, |
- const std::wstring& title, |
- const GURL& url) WARN_UNUSED_RESULT; |
- |
- // Adds a folder named |title| to the bookmark bar of profile |profile|. |
- // Returns a pointer to the folder that was added. |
- const BookmarkNode* AddFolder(int profile, |
- const std::wstring& title) WARN_UNUSED_RESULT; |
- |
- // Adds a folder named |title| to the bookmark bar of profile |profile| at |
- // position |index|. Returns a pointer to the folder that was added. |
- const BookmarkNode* AddFolder(int profile, |
- int index, |
- const std::wstring& title) WARN_UNUSED_RESULT; |
- |
- // Adds a folder named |title| to the node |parent| in the bookmark model of |
- // profile |profile| at position |index|. Returns a pointer to the node that |
- // was added. |
- const BookmarkNode* AddFolder(int profile, |
- const BookmarkNode* parent, |
- int index, |
- const std::wstring& title) WARN_UNUSED_RESULT; |
- |
- // Changes the title of the node |node| in the bookmark model of profile |
- // |profile| to |new_title|. |
- void SetTitle(int profile, |
- const BookmarkNode* node, |
- const std::wstring& new_title); |
- |
- // Sets the favicon of the node |node| (of type BookmarkNode::URL) in the |
- // bookmark model of profile |profile| using the data in |icon_bytes_vector|. |
- void SetFavicon(int profile, |
- const BookmarkNode* node, |
- const std::vector<unsigned char>& icon_bytes_vector); |
- |
- // Changes the url of the node |node| in the bookmark model of profile |
- // |profile| to |new_url|. Returns a pointer to the node with the changed url. |
- const BookmarkNode* SetURL(int profile, |
- const BookmarkNode* node, |
- const GURL& new_url) WARN_UNUSED_RESULT; |
- |
- // Moves the node |node| in the bookmark model of profile |profile| so it ends |
- // up under the node |new_parent| at position |index|. |
- void Move(int profile, |
- const BookmarkNode* node, |
- const BookmarkNode* new_parent, |
- int index); |
- |
- // Removes the node in the bookmark model of profile |profile| under the node |
- // |parent| at position |index|. |
- void Remove(int profile, const BookmarkNode* parent, int index); |
- |
- // Sorts the children of the node |parent| in the bookmark model of profile |
- // |profile|. |
- void SortChildren(int profile, const BookmarkNode* parent); |
- |
- // Reverses the order of the children of the node |parent| in the bookmark |
- // model of profile |profile|. |
- void ReverseChildOrder(int profile, const BookmarkNode* parent); |
- |
- // Checks if the bookmark model of profile |profile| matches the verifier |
- // bookmark model. Returns true if they match. |
- bool ModelMatchesVerifier(int profile) WARN_UNUSED_RESULT; |
- |
- // Checks if the bookmark models of all sync profiles match the verifier |
- // bookmark model. Returns true if they match. |
- bool AllModelsMatchVerifier() WARN_UNUSED_RESULT; |
- |
- // Checks if the bookmark models of |profile_a| and |profile_b| match each |
- // other. Returns true if they match. |
- bool ModelsMatch(int profile_a, int profile_b) WARN_UNUSED_RESULT; |
- |
- // Checks if the bookmark models of all sync profiles match each other. Does |
- // not compare them with the verifier bookmark model. Returns true if they |
- // match. |
- bool AllModelsMatch() WARN_UNUSED_RESULT; |
- |
- // Checks if the bookmark model of profile |profile| contains any instances of |
- // two bookmarks with the same URL under the same parent folder. Returns true |
- // if even one instance is found. |
- bool ContainsDuplicateBookmarks(int profile); |
- |
- // Gets the node in the bookmark model of profile |profile| that has the url |
- // |url|. Note: Only one instance of |url| is assumed to be present. |
- const BookmarkNode* GetUniqueNodeByURL(int profile, |
- const GURL& url) WARN_UNUSED_RESULT; |
- |
- // Returns the number of bookmarks in bookmark model of profile |profile| |
- // whose titles match the string |title|. |
- int CountBookmarksWithTitlesMatching(int profile, const std::wstring& title) |
- WARN_UNUSED_RESULT; |
- |
- // Returns the number of bookmark folders in the bookmark model of profile |
- // |profile| whose titles contain the query string |title|. |
- int CountFoldersWithTitlesMatching( |
- int profile, |
- const std::wstring& title) WARN_UNUSED_RESULT; |
- |
- // Creates a unique favicon using |seed|. |
- static std::vector<unsigned char> CreateFavicon(int seed); |
- |
- // Returns a URL identifiable by |i|. |
- static std::string IndexedURL(int i); |
- |
- // Returns a URL title identifiable by |i|. |
- static std::wstring IndexedURLTitle(int i); |
- |
- // Returns a folder name identifiable by |i|. |
- static std::wstring IndexedFolderName(int i); |
- |
- // Returns a subfolder name identifiable by |i|. |
- static std::wstring IndexedSubfolderName(int i); |
- |
- // Returns a subsubfolder name identifiable by |i|. |
- static std::wstring IndexedSubsubfolderName(int i); |
- |
- private: |
- // Helper object that has the functionality to verify changes made to the |
- // bookmarks of individual profiles. |
- scoped_ptr<BookmarkModelVerifier> verifier_helper_; |
- |
- DISALLOW_COPY_AND_ASSIGN(LiveBookmarksSyncTest); |
-}; |
- |
-class SingleClientLiveBookmarksSyncTest : public LiveBookmarksSyncTest { |
- public: |
- SingleClientLiveBookmarksSyncTest() |
- : LiveBookmarksSyncTest(SINGLE_CLIENT) {} |
- virtual ~SingleClientLiveBookmarksSyncTest() {} |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(SingleClientLiveBookmarksSyncTest); |
-}; |
- |
-class TwoClientLiveBookmarksSyncTest : public LiveBookmarksSyncTest { |
- public: |
- TwoClientLiveBookmarksSyncTest() |
- : LiveBookmarksSyncTest(TWO_CLIENT) {} |
- virtual ~TwoClientLiveBookmarksSyncTest() {} |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(TwoClientLiveBookmarksSyncTest); |
-}; |
- |
-class MultipleClientLiveBookmarksSyncTest : public LiveBookmarksSyncTest { |
- public: |
- MultipleClientLiveBookmarksSyncTest() |
- : LiveBookmarksSyncTest(MULTIPLE_CLIENT) {} |
- virtual ~MultipleClientLiveBookmarksSyncTest() {} |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(MultipleClientLiveBookmarksSyncTest); |
-}; |
- |
-class ManyClientLiveBookmarksSyncTest : public LiveBookmarksSyncTest { |
- public: |
- ManyClientLiveBookmarksSyncTest() |
- : LiveBookmarksSyncTest(MANY_CLIENT) {} |
- virtual ~ManyClientLiveBookmarksSyncTest() {} |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(ManyClientLiveBookmarksSyncTest); |
-}; |
- |
-#endif // CHROME_TEST_LIVE_SYNC_LIVE_BOOKMARKS_SYNC_TEST_H_ |