Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "components/sync_sessions/sessions_sync_manager.h" | 5 #include "components/sync_sessions/sessions_sync_manager.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 using syncer::DeviceInfo; | 41 using syncer::DeviceInfo; |
| 42 using syncer::LocalDeviceInfoProvider; | 42 using syncer::LocalDeviceInfoProvider; |
| 43 using syncer::LocalDeviceInfoProviderMock; | 43 using syncer::LocalDeviceInfoProviderMock; |
| 44 using syncer::SyncChange; | 44 using syncer::SyncChange; |
| 45 using syncer::SyncData; | 45 using syncer::SyncData; |
| 46 | 46 |
| 47 namespace sync_sessions { | 47 namespace sync_sessions { |
| 48 | 48 |
| 49 namespace { | 49 namespace { |
| 50 | 50 |
| 51 std::string TabNodeIdToTag(const std::string& machine_tag, int tab_node_id) { | |
| 52 return base::StringPrintf("%s %d", machine_tag.c_str(), tab_node_id); | |
| 53 } | |
| 54 | |
| 51 class SessionNotificationObserver { | 55 class SessionNotificationObserver { |
| 52 public: | 56 public: |
| 53 SessionNotificationObserver() | 57 SessionNotificationObserver() |
| 54 : notified_of_update_(false), notified_of_refresh_(false) {} | 58 : notified_of_update_(false), notified_of_refresh_(false) {} |
| 55 void NotifyOfUpdate() { notified_of_update_ = true; } | 59 void NotifyOfUpdate() { notified_of_update_ = true; } |
| 56 void NotifyOfRefresh() { notified_of_refresh_ = true; } | 60 void NotifyOfRefresh() { notified_of_refresh_ = true; } |
| 57 | 61 |
| 58 bool notified_of_update() const { return notified_of_update_; } | 62 bool notified_of_update() const { return notified_of_update_; } |
| 59 bool notified_of_refresh() const { return notified_of_refresh_; } | 63 bool notified_of_refresh() const { return notified_of_refresh_; } |
| 60 | 64 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 121 bool IsSessionRestoreInProgress() const override { | 125 bool IsSessionRestoreInProgress() const override { |
| 122 return wrapped_->IsSessionRestoreInProgress(); | 126 return wrapped_->IsSessionRestoreInProgress(); |
| 123 } | 127 } |
| 124 | 128 |
| 125 bool ShouldSync() const override { return wrapped_->ShouldSync(); } | 129 bool ShouldSync() const override { return wrapped_->ShouldSync(); } |
| 126 | 130 |
| 127 private: | 131 private: |
| 128 std::map<int, SyncedTabDelegate*> tab_overrides_; | 132 std::map<int, SyncedTabDelegate*> tab_overrides_; |
| 129 std::map<int, SessionID::id_type> tab_id_overrides_; | 133 std::map<int, SessionID::id_type> tab_id_overrides_; |
| 130 const SyncedWindowDelegate* const wrapped_; | 134 const SyncedWindowDelegate* const wrapped_; |
| 131 SessionID::id_type session_id_override_ = -1; | 135 SessionID::id_type session_id_override_ = TabNodePool::kInvalidTabID; |
| 132 }; | 136 }; |
| 133 | 137 |
| 134 class TestSyncedWindowDelegatesGetter : public SyncedWindowDelegatesGetter { | 138 class TestSyncedWindowDelegatesGetter : public SyncedWindowDelegatesGetter { |
| 135 public: | 139 public: |
| 136 TestSyncedWindowDelegatesGetter( | 140 TestSyncedWindowDelegatesGetter( |
| 137 const std::set<const SyncedWindowDelegate*>& delegates) | 141 const std::set<const SyncedWindowDelegate*>& delegates) |
| 138 : delegates_(delegates) {} | 142 : delegates_(delegates) {} |
| 139 | 143 |
| 140 std::set<const SyncedWindowDelegate*> GetSyncedWindowDelegates() override { | 144 std::set<const SyncedWindowDelegate*> GetSyncedWindowDelegates() override { |
| 141 return delegates_; | 145 return delegates_; |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 392 } | 396 } |
| 393 } | 397 } |
| 394 EXPECT_TRUE(found); | 398 EXPECT_TRUE(found); |
| 395 return list; | 399 return list; |
| 396 } | 400 } |
| 397 | 401 |
| 398 SyncSessionsClient* GetSyncSessionsClient() { | 402 SyncSessionsClient* GetSyncSessionsClient() { |
| 399 return sessions_client_shim_.get(); | 403 return sessions_client_shim_.get(); |
| 400 } | 404 } |
| 401 | 405 |
| 406 TabNodePool* GetTabPool() { | |
| 407 return &manager()->session_tracker_.local_tab_pool_; | |
| 408 } | |
| 409 | |
| 402 syncer::SyncPrefs* sync_prefs() { return sync_prefs_.get(); } | 410 syncer::SyncPrefs* sync_prefs() { return sync_prefs_.get(); } |
| 403 | 411 |
| 404 SyncedWindowDelegatesGetter* get_synced_window_getter() { | 412 SyncedWindowDelegatesGetter* get_synced_window_getter() { |
| 405 return manager()->synced_window_delegates_getter(); | 413 return manager()->synced_window_delegates_getter(); |
| 406 } | 414 } |
| 407 | 415 |
| 408 void set_synced_window_getter( | 416 void set_synced_window_getter( |
| 409 SyncedWindowDelegatesGetter* synced_window_getter) { | 417 SyncedWindowDelegatesGetter* synced_window_getter) { |
| 410 sessions_client_shim_->set_synced_window_getter(synced_window_getter); | 418 sessions_client_shim_->set_synced_window_getter(synced_window_getter); |
| 411 } | 419 } |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 495 ASSERT_EQ(1U, session->windows[0]->tabs.size()); | 503 ASSERT_EQ(1U, session->windows[0]->tabs.size()); |
| 496 ASSERT_EQ(1, session->windows[0]->selected_tab_index); | 504 ASSERT_EQ(1, session->windows[0]->selected_tab_index); |
| 497 ASSERT_EQ(sessions::SessionWindow::TYPE_TABBED, session->windows[0]->type); | 505 ASSERT_EQ(sessions::SessionWindow::TYPE_TABBED, session->windows[0]->type); |
| 498 ASSERT_EQ(1U, manager()->session_tracker_.num_synced_sessions()); | 506 ASSERT_EQ(1U, manager()->session_tracker_.num_synced_sessions()); |
| 499 ASSERT_EQ(1U, | 507 ASSERT_EQ(1U, |
| 500 manager()->session_tracker_.num_synced_tabs(std::string("tag"))); | 508 manager()->session_tracker_.num_synced_tabs(std::string("tag"))); |
| 501 } | 509 } |
| 502 | 510 |
| 503 namespace { | 511 namespace { |
| 504 | 512 |
| 513 // A SyncedTabDelegate fake for testing. It simulates a normal | |
| 514 // SyncedTabDelegate with a proper WebContents. For a SyncedTabDelegate without | |
| 515 // a WebContents, see PlaceholderTabDelegate below. | |
| 505 class SyncedTabDelegateFake : public SyncedTabDelegate { | 516 class SyncedTabDelegateFake : public SyncedTabDelegate { |
| 506 public: | 517 public: |
| 507 SyncedTabDelegateFake() | 518 SyncedTabDelegateFake() {} |
| 508 : current_entry_index_(0), is_supervised_(false), sync_id_(-1) {} | |
| 509 ~SyncedTabDelegateFake() override {} | 519 ~SyncedTabDelegateFake() override {} |
| 510 | 520 |
| 521 // SyncedTabDelegate overrides. | |
| 511 bool IsInitialBlankNavigation() const override { | 522 bool IsInitialBlankNavigation() const override { |
| 512 // This differs from NavigationControllerImpl, which has an initial blank | 523 // This differs from NavigationControllerImpl, which has an initial blank |
| 513 // NavigationEntry. | 524 // NavigationEntry. |
| 514 return GetEntryCount() == 0; | 525 return GetEntryCount() == 0; |
| 515 } | 526 } |
| 516 int GetCurrentEntryIndex() const override { return current_entry_index_; } | 527 int GetCurrentEntryIndex() const override { return current_entry_index_; } |
| 517 void set_current_entry_index(int i) { | |
| 518 current_entry_index_ = i; | |
| 519 } | |
| 520 | |
| 521 void AppendEntry(std::unique_ptr<content::NavigationEntry> entry) { | |
| 522 entries_.push_back(std::move(entry)); | |
| 523 } | |
| 524 | |
| 525 GURL GetVirtualURLAtIndex(int i) const override { | 528 GURL GetVirtualURLAtIndex(int i) const override { |
| 526 if (static_cast<size_t>(i) >= entries_.size()) | 529 if (static_cast<size_t>(i) >= entries_.size()) |
| 527 return GURL(); | 530 return GURL(); |
| 528 return entries_[i]->GetVirtualURL(); | 531 return entries_[i]->GetVirtualURL(); |
| 529 } | 532 } |
| 530 | |
| 531 GURL GetFaviconURLAtIndex(int i) const override { return GURL(); } | 533 GURL GetFaviconURLAtIndex(int i) const override { return GURL(); } |
| 532 | |
| 533 ui::PageTransition GetTransitionAtIndex(int i) const override { | 534 ui::PageTransition GetTransitionAtIndex(int i) const override { |
| 534 if (static_cast<size_t>(i) >= entries_.size()) | 535 if (static_cast<size_t>(i) >= entries_.size()) |
| 535 return ui::PAGE_TRANSITION_LINK; | 536 return ui::PAGE_TRANSITION_LINK; |
| 536 return entries_[i]->GetTransitionType(); | 537 return entries_[i]->GetTransitionType(); |
| 537 } | 538 } |
| 538 | |
| 539 void GetSerializedNavigationAtIndex( | 539 void GetSerializedNavigationAtIndex( |
| 540 int i, | 540 int i, |
| 541 sessions::SerializedNavigationEntry* serialized_entry) const override { | 541 sessions::SerializedNavigationEntry* serialized_entry) const override { |
| 542 if (static_cast<size_t>(i) >= entries_.size()) | 542 if (static_cast<size_t>(i) >= entries_.size()) |
| 543 return; | 543 return; |
| 544 *serialized_entry = | 544 *serialized_entry = |
| 545 sessions::ContentSerializedNavigationBuilder::FromNavigationEntry( | 545 sessions::ContentSerializedNavigationBuilder::FromNavigationEntry( |
| 546 i, *entries_[i]); | 546 i, *entries_[i]); |
| 547 } | 547 } |
| 548 | |
| 549 int GetEntryCount() const override { return entries_.size(); } | 548 int GetEntryCount() const override { return entries_.size(); } |
| 550 | 549 SessionID::id_type GetWindowId() const override { return window_id_; } |
| 551 SessionID::id_type GetWindowId() const override { | 550 SessionID::id_type GetSessionId() const override { return tab_id_; } |
| 552 return SessionID::id_type(); | |
| 553 } | |
| 554 | |
| 555 SessionID::id_type GetSessionId() const override { | |
| 556 return SessionID::id_type(); | |
| 557 } | |
| 558 | |
| 559 bool IsBeingDestroyed() const override { return false; } | 551 bool IsBeingDestroyed() const override { return false; } |
| 560 std::string GetExtensionAppId() const override { return std::string(); } | 552 std::string GetExtensionAppId() const override { return std::string(); } |
| 561 bool ProfileIsSupervised() const override { return is_supervised_; } | 553 bool ProfileIsSupervised() const override { return is_supervised_; } |
| 562 void set_is_supervised(bool is_supervised) { is_supervised_ = is_supervised; } | 554 void set_is_supervised(bool is_supervised) { is_supervised_ = is_supervised; } |
| 563 const std::vector<std::unique_ptr<const sessions::SerializedNavigationEntry>>* | 555 const std::vector<std::unique_ptr<const sessions::SerializedNavigationEntry>>* |
| 564 GetBlockedNavigations() const override { | 556 GetBlockedNavigations() const override { |
| 565 return &blocked_navigations_; | 557 return &blocked_navigations_; |
| 566 } | 558 } |
| 559 bool IsPlaceholderTab() const override { return false; } | |
| 560 int GetSyncId() const override { return sync_id_; } | |
| 561 void SetSyncId(int sync_id) override { sync_id_ = sync_id; } | |
| 562 bool ShouldSync(SyncSessionsClient* sessions_client) override { | |
| 563 return false; | |
| 564 } | |
| 565 | |
| 566 void AppendEntry(std::unique_ptr<content::NavigationEntry> entry) { | |
| 567 entries_.push_back(std::move(entry)); | |
| 568 } | |
| 569 | |
| 570 void set_current_entry_index(int i) { current_entry_index_ = i; } | |
| 571 | |
| 572 void SetWindowId(SessionID::id_type window_id) { window_id_ = window_id; } | |
| 573 | |
| 574 void SetSessionId(SessionID::id_type id) { tab_id_ = id; } | |
| 575 | |
| 567 void set_blocked_navigations( | 576 void set_blocked_navigations( |
| 568 std::vector<const content::NavigationEntry*>* navs) { | 577 std::vector<const content::NavigationEntry*>* navs) { |
| 569 for (auto* entry : *navs) { | 578 for (auto* entry : *navs) { |
| 570 auto serialized_entry = | 579 auto serialized_entry = |
| 571 base::MakeUnique<sessions::SerializedNavigationEntry>( | 580 base::MakeUnique<sessions::SerializedNavigationEntry>( |
| 572 sessions::ContentSerializedNavigationBuilder::FromNavigationEntry( | 581 sessions::ContentSerializedNavigationBuilder::FromNavigationEntry( |
| 573 blocked_navigations_.size(), *entry)); | 582 blocked_navigations_.size(), *entry)); |
| 574 blocked_navigations_.push_back(std::move(serialized_entry)); | 583 blocked_navigations_.push_back(std::move(serialized_entry)); |
| 575 } | 584 } |
| 576 } | 585 } |
| 577 bool IsPlaceholderTab() const override { return true; } | |
| 578 | |
| 579 // Session sync related methods. | |
| 580 int GetSyncId() const override { return sync_id_; } | |
| 581 void SetSyncId(int sync_id) override { sync_id_ = sync_id; } | |
| 582 | |
| 583 bool ShouldSync(SyncSessionsClient* sessions_client) override { | |
| 584 return false; | |
| 585 } | |
| 586 | 586 |
| 587 void reset() { | 587 void reset() { |
| 588 current_entry_index_ = 0; | 588 current_entry_index_ = 0; |
| 589 sync_id_ = -1; | 589 sync_id_ = TabNodePool::kInvalidTabNodeID; |
| 590 entries_.clear(); | 590 entries_.clear(); |
| 591 } | 591 } |
| 592 | 592 |
| 593 private: | 593 private: |
| 594 int current_entry_index_; | 594 int current_entry_index_ = 0; |
| 595 bool is_supervised_; | 595 bool is_supervised_ = false; |
| 596 int sync_id_; | 596 int sync_id_ = -1; |
| 597 SessionID::id_type tab_id_ = 0; | |
| 598 SessionID::id_type window_id_ = 0; | |
| 597 std::vector<std::unique_ptr<const sessions::SerializedNavigationEntry>> | 599 std::vector<std::unique_ptr<const sessions::SerializedNavigationEntry>> |
| 598 blocked_navigations_; | 600 blocked_navigations_; |
| 599 std::vector<std::unique_ptr<content::NavigationEntry>> entries_; | 601 std::vector<std::unique_ptr<content::NavigationEntry>> entries_; |
| 600 }; | 602 }; |
| 601 | 603 |
| 604 // A placeholder delegate. These delegates have no WebContents, simulating a tab | |
| 605 // that has been restored without bringing its state fully into memory (for | |
| 606 // example on Android), or where the tab's contents have been evicted from | |
| 607 // memory. See SyncedTabDelegate::IsPlaceHolderTab for more info. | |
| 608 class PlaceholderTabDelegate : public SyncedTabDelegate { | |
| 609 public: | |
| 610 PlaceholderTabDelegate(SessionID::id_type session_id, int sync_id) | |
| 611 : session_id_(session_id), sync_id_(sync_id) {} | |
| 612 ~PlaceholderTabDelegate() override {} | |
| 613 | |
| 614 // SyncedTabDelegate overrides. | |
| 615 SessionID::id_type GetSessionId() const override { return session_id_; } | |
| 616 int GetSyncId() const override { return sync_id_; } | |
| 617 void SetSyncId(int sync_id) override { sync_id_ = sync_id; } | |
| 618 bool IsPlaceholderTab() const override { return true; } | |
| 619 | |
| 620 // Everything else is invalid to invoke as it depends on a valid WebContents. | |
| 621 SessionID::id_type GetWindowId() const override { | |
| 622 NOTREACHED(); | |
| 623 return 0; | |
| 624 } | |
| 625 bool IsBeingDestroyed() const override { | |
| 626 NOTREACHED(); | |
| 627 return false; | |
| 628 } | |
| 629 std::string GetExtensionAppId() const override { | |
| 630 NOTREACHED(); | |
| 631 return ""; | |
| 632 } | |
| 633 bool IsInitialBlankNavigation() const override { | |
| 634 NOTREACHED(); | |
| 635 return false; | |
| 636 } | |
| 637 int GetCurrentEntryIndex() const override { | |
| 638 NOTREACHED(); | |
| 639 return 0; | |
| 640 } | |
| 641 int GetEntryCount() const override { | |
| 642 NOTREACHED(); | |
| 643 return 0; | |
| 644 } | |
| 645 GURL GetVirtualURLAtIndex(int i) const override { | |
| 646 NOTREACHED(); | |
| 647 return GURL(); | |
| 648 } | |
| 649 GURL GetFaviconURLAtIndex(int i) const override { | |
| 650 NOTREACHED(); | |
| 651 return GURL(); | |
| 652 } | |
| 653 ui::PageTransition GetTransitionAtIndex(int i) const override { | |
| 654 NOTREACHED(); | |
| 655 return ui::PageTransition(); | |
| 656 } | |
| 657 void GetSerializedNavigationAtIndex( | |
| 658 int i, | |
| 659 sessions::SerializedNavigationEntry* serialized_entry) const override { | |
| 660 NOTREACHED(); | |
| 661 } | |
| 662 bool ProfileIsSupervised() const override { | |
| 663 NOTREACHED(); | |
| 664 return false; | |
| 665 } | |
| 666 const std::vector<std::unique_ptr<const sessions::SerializedNavigationEntry>>* | |
| 667 GetBlockedNavigations() const override { | |
| 668 NOTREACHED(); | |
| 669 return nullptr; | |
| 670 } | |
| 671 bool ShouldSync(SyncSessionsClient* sessions_client) override { | |
| 672 NOTREACHED(); | |
| 673 return false; | |
| 674 } | |
| 675 | |
| 676 private: | |
| 677 SessionID::id_type session_id_; | |
| 678 int sync_id_; | |
| 679 }; | |
| 680 | |
| 602 } // namespace | 681 } // namespace |
| 603 | 682 |
| 604 static const base::Time kTime0 = base::Time::FromInternalValue(100); | 683 static const base::Time kTime0 = base::Time::FromInternalValue(100); |
| 605 static const base::Time kTime1 = base::Time::FromInternalValue(110); | 684 static const base::Time kTime1 = base::Time::FromInternalValue(110); |
| 606 static const base::Time kTime2 = base::Time::FromInternalValue(120); | 685 static const base::Time kTime2 = base::Time::FromInternalValue(120); |
| 607 static const base::Time kTime3 = base::Time::FromInternalValue(130); | 686 static const base::Time kTime3 = base::Time::FromInternalValue(130); |
| 608 static const base::Time kTime4 = base::Time::FromInternalValue(140); | 687 static const base::Time kTime4 = base::Time::FromInternalValue(140); |
| 609 static const base::Time kTime5 = base::Time::FromInternalValue(150); | 688 static const base::Time kTime5 = base::Time::FromInternalValue(150); |
| 610 static const base::Time kTime6 = base::Time::FromInternalValue(160); | 689 static const base::Time kTime6 = base::Time::FromInternalValue(160); |
| 611 static const base::Time kTime7 = base::Time::FromInternalValue(170); | 690 static const base::Time kTime7 = base::Time::FromInternalValue(170); |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 946 new syncer::SyncErrorFactoryMock())); | 1025 new syncer::SyncErrorFactoryMock())); |
| 947 ASSERT_FALSE(result.error().IsSet()); | 1026 ASSERT_FALSE(result.error().IsSet()); |
| 948 | 1027 |
| 949 EXPECT_EQ(1U, out.size()); | 1028 EXPECT_EQ(1U, out.size()); |
| 950 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[0].change_type()); | 1029 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[0].change_type()); |
| 951 EXPECT_TRUE(out[0].sync_data().GetSpecifics().session().has_header()); | 1030 EXPECT_TRUE(out[0].sync_data().GetSpecifics().session().has_header()); |
| 952 } | 1031 } |
| 953 | 1032 |
| 954 // Ensure model association associates the pre-existing tabs. | 1033 // Ensure model association associates the pre-existing tabs. |
| 955 TEST_F(SessionsSyncManagerTest, SwappedOutOnRestore) { | 1034 TEST_F(SessionsSyncManagerTest, SwappedOutOnRestore) { |
| 956 AddTab(browser(), GURL("http://foo1")); | 1035 const char kFoo1[] = "http://foo1/"; |
| 957 NavigateAndCommitActiveTab(GURL("http://foo2")); | 1036 const char kFoo2[] = "http://foo2/"; |
| 958 AddTab(browser(), GURL("http://bar1")); | 1037 const char kBar1[] = "http://bar1/"; |
| 959 NavigateAndCommitActiveTab(GURL("http://bar2")); | 1038 const char kBar2[] = "http://bar2/"; |
| 960 AddTab(browser(), GURL("http://baz1")); | 1039 const char kBaz1[] = "http://baz1/"; |
| 961 NavigateAndCommitActiveTab(GURL("http://baz2")); | 1040 const char kBaz2[] = "http://baz2/"; |
| 962 const int kRestoredTabId = 1337; | 1041 const int kRestoredTabId = 1337; |
| 963 const int kNewTabId = 2468; | 1042 const int kNewTabId = 2468; |
| 964 | 1043 |
| 1044 // AddTab inserts at index 0, so go in reverse order (tab 3 -> tab 1). | |
| 1045 AddTab(browser(), GURL(kBaz1)); | |
| 1046 NavigateAndCommitActiveTab(GURL(kBaz2)); | |
| 1047 AddTab(browser(), GURL(kBar1)); | |
| 1048 NavigateAndCommitActiveTab(GURL(kBar2)); | |
| 1049 AddTab(browser(), GURL(kFoo1)); | |
| 1050 NavigateAndCommitActiveTab(GURL(kFoo2)); | |
| 1051 | |
| 965 syncer::SyncDataList in; | 1052 syncer::SyncDataList in; |
| 966 syncer::SyncChangeList out; | 1053 syncer::SyncChangeList out; |
| 967 InitWithSyncDataTakeOutput(in, &out); | 1054 InitWithSyncDataTakeOutput(in, &out); |
| 968 | 1055 |
| 969 // Should be one header add, 3 tab add/update pairs, one header update. | 1056 // Should be one header add, 3 tab adds, one header update. |
| 970 ASSERT_EQ(8U, out.size()); | 1057 ASSERT_EQ(5U, out.size()); |
| 971 | 1058 |
| 972 // For input, we set up: | 1059 // For input, we set up: |
| 973 // * one "normal" fully loaded tab | 1060 // * one "normal" fully loaded tab |
| 974 // * one "frozen" tab with no WebContents and a tab_id change | 1061 // * one placeholder tab with no WebContents and a tab_id change |
| 975 // * one "frozen" tab with no WebContents and no tab_id change | 1062 // * one placeholder tab with no WebContents and no tab_id change |
| 976 sync_pb::EntitySpecifics t0_entity = out[2].sync_data().GetSpecifics(); | 1063 sync_pb::EntitySpecifics t0_entity = out[1].sync_data().GetSpecifics(); |
| 977 sync_pb::EntitySpecifics t1_entity = out[4].sync_data().GetSpecifics(); | 1064 sync_pb::EntitySpecifics t1_entity = out[2].sync_data().GetSpecifics(); |
| 978 sync_pb::EntitySpecifics t2_entity = out[6].sync_data().GetSpecifics(); | 1065 sync_pb::EntitySpecifics t2_entity = out[3].sync_data().GetSpecifics(); |
| 979 t1_entity.mutable_session()->mutable_tab()->set_tab_id(kRestoredTabId); | 1066 t1_entity.mutable_session()->mutable_tab()->set_tab_id(kRestoredTabId); |
| 980 in.push_back(CreateRemoteData(t0_entity)); | 1067 in.push_back(CreateRemoteData(t0_entity)); |
| 981 in.push_back(CreateRemoteData(t1_entity)); | 1068 in.push_back(CreateRemoteData(t1_entity)); |
| 982 in.push_back(CreateRemoteData(t2_entity)); | 1069 in.push_back(CreateRemoteData(t2_entity)); |
| 983 out.clear(); | 1070 out.clear(); |
| 984 manager()->StopSyncing(syncer::SESSIONS); | 1071 manager()->StopSyncing(syncer::SESSIONS); |
| 985 | 1072 |
| 986 const std::set<const SyncedWindowDelegate*>& windows = | 1073 const std::set<const SyncedWindowDelegate*>& windows = |
| 987 manager()->synced_window_delegates_getter()->GetSyncedWindowDelegates(); | 1074 manager()->synced_window_delegates_getter()->GetSyncedWindowDelegates(); |
| 988 ASSERT_EQ(1U, windows.size()); | 1075 ASSERT_EQ(1U, windows.size()); |
| 989 SyncedTabDelegateFake t1_override, t2_override; | 1076 PlaceholderTabDelegate t1_override(kNewTabId, 1); |
| 990 t1_override.SetSyncId(1); // No WebContents by default. | 1077 PlaceholderTabDelegate t2_override(t2_entity.session().tab().tab_id(), 2); |
| 991 t2_override.SetSyncId(2); // No WebContents by default. | |
| 992 SyncedWindowDelegateOverride window_override(*windows.begin()); | 1078 SyncedWindowDelegateOverride window_override(*windows.begin()); |
| 993 window_override.OverrideTabAt(1, &t1_override, kNewTabId); | 1079 window_override.OverrideTabAt(1, &t1_override, kNewTabId); |
| 994 window_override.OverrideTabAt(2, &t2_override, | 1080 window_override.OverrideTabAt(2, &t2_override, |
| 995 t2_entity.session().tab().tab_id()); | 1081 t2_entity.session().tab().tab_id()); |
| 996 std::set<const SyncedWindowDelegate*> delegates; | 1082 std::set<const SyncedWindowDelegate*> delegates; |
| 997 delegates.insert(&window_override); | 1083 delegates.insert(&window_override); |
| 998 std::unique_ptr<TestSyncedWindowDelegatesGetter> getter( | 1084 std::unique_ptr<TestSyncedWindowDelegatesGetter> getter( |
| 999 new TestSyncedWindowDelegatesGetter(delegates)); | 1085 new TestSyncedWindowDelegatesGetter(delegates)); |
| 1000 set_synced_window_getter(getter.get()); | 1086 set_synced_window_getter(getter.get()); |
| 1001 | 1087 |
| 1002 syncer::SyncMergeResult result = manager()->MergeDataAndStartSyncing( | 1088 syncer::SyncMergeResult result = manager()->MergeDataAndStartSyncing( |
| 1003 syncer::SESSIONS, in, std::unique_ptr<syncer::SyncChangeProcessor>( | 1089 syncer::SESSIONS, in, std::unique_ptr<syncer::SyncChangeProcessor>( |
| 1004 new TestSyncProcessorStub(&out)), | 1090 new TestSyncProcessorStub(&out)), |
| 1005 std::unique_ptr<syncer::SyncErrorFactory>( | 1091 std::unique_ptr<syncer::SyncErrorFactory>( |
| 1006 new syncer::SyncErrorFactoryMock())); | 1092 new syncer::SyncErrorFactoryMock())); |
| 1007 | 1093 |
| 1008 // There should be two changes, one for the fully associated tab, and | 1094 // There should be two changes, one for the fully associated tab, and |
|
Patrick Noland
2017/01/25 19:23:41
Update to say "three changes"
Nicolas Zea
2017/01/25 23:55:04
Done.
| |
| 1009 // one for the tab_id update to t1. t2 shouldn't need to be updated. | 1095 // one each for the tab_id updates to t1 and t2. |
| 1010 ASSERT_EQ(2U, FilterOutLocalHeaderChanges(&out)->size()); | 1096 ASSERT_EQ(3U, FilterOutLocalHeaderChanges(&out)->size()); |
| 1011 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[0].change_type()); | 1097 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[0].change_type()); |
| 1098 EXPECT_EQ(kFoo2, out[0] | |
| 1099 .sync_data() | |
| 1100 .GetSpecifics() | |
| 1101 .session() | |
| 1102 .tab() | |
| 1103 .navigation(1) | |
| 1104 .virtual_url()); | |
| 1105 | |
| 1012 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[1].change_type()); | 1106 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[1].change_type()); |
| 1013 EXPECT_EQ(kNewTabId, | 1107 EXPECT_EQ(kNewTabId, |
| 1014 out[1].sync_data().GetSpecifics().session().tab().tab_id()); | 1108 out[1].sync_data().GetSpecifics().session().tab().tab_id()); |
| 1109 EXPECT_EQ(kBar2, out[1] | |
| 1110 .sync_data() | |
| 1111 .GetSpecifics() | |
| 1112 .session() | |
| 1113 .tab() | |
| 1114 .navigation(1) | |
| 1115 .virtual_url()); | |
| 1015 | 1116 |
| 1016 // Verify TabLinks. | 1117 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[2].change_type()); |
| 1017 SessionsSyncManager::TabLinksMap tab_map = manager()->local_tab_map_; | 1118 EXPECT_EQ(t2_entity.session().tab().tab_id(), |
| 1018 ASSERT_EQ(3U, tab_map.size()); | 1119 out[2].sync_data().GetSpecifics().session().tab().tab_id()); |
| 1019 int t2_tab_id = t2_entity.session().tab().tab_id(); | 1120 EXPECT_EQ(kBaz2, out[2] |
| 1020 EXPECT_EQ(2, tab_map.find(t2_tab_id)->second->tab_node_id()); | 1121 .sync_data() |
| 1021 EXPECT_EQ(1, tab_map.find(kNewTabId)->second->tab_node_id()); | 1122 .GetSpecifics() |
| 1022 int t0_tab_id = out[0].sync_data().GetSpecifics().session().tab().tab_id(); | 1123 .session() |
| 1023 EXPECT_EQ(0, tab_map.find(t0_tab_id)->second->tab_node_id()); | 1124 .tab() |
| 1024 // TODO(tim): Once bug 337057 is fixed, we can issue an OnLocalTabModified | 1125 .navigation(1) |
| 1025 // from here (using an override similar to above) to return a new tab id | 1126 .virtual_url()); |
| 1026 // and verify that we don't see any node creations in the SyncChangeProcessor | |
| 1027 // (similar to how SessionsSyncManagerTest.OnLocalTabModified works.) | |
| 1028 } | 1127 } |
| 1029 | 1128 |
| 1030 // Ensure model association updates the window ID for tabs whose window's ID has | 1129 // Ensure model association updates the window ID for tabs whose window's ID has |
| 1031 // changed. | 1130 // changed. |
| 1032 TEST_F(SessionsSyncManagerTest, WindowIdUpdatedOnRestore) { | 1131 TEST_F(SessionsSyncManagerTest, WindowIdUpdatedOnRestore) { |
| 1132 const char kFoo1[] = "http://foo1/"; | |
|
Patrick Noland
2017/01/25 19:23:41
You've got the same two constants in SwappedOutOnR
Nicolas Zea
2017/01/25 23:55:04
Done.
| |
| 1133 const char kFoo2[] = "http://foo2/"; | |
| 1033 const int kNewWindowId = 1337; | 1134 const int kNewWindowId = 1337; |
| 1034 syncer::SyncDataList in; | 1135 syncer::SyncDataList in; |
| 1035 syncer::SyncChangeList out; | 1136 syncer::SyncChangeList out; |
| 1036 | 1137 |
| 1037 // Set up one tab and start sync with it. | 1138 // Set up one tab and start sync with it. |
| 1038 AddTab(browser(), GURL("http://foo1")); | 1139 AddTab(browser(), GURL(kFoo1)); |
| 1039 NavigateAndCommitActiveTab(GURL("http://foo2")); | 1140 NavigateAndCommitActiveTab(GURL(kFoo2)); |
| 1040 InitWithSyncDataTakeOutput(in, &out); | 1141 InitWithSyncDataTakeOutput(in, &out); |
| 1041 | 1142 |
| 1042 // Should be one header add, 1 tab add/update pair, and one header update. | 1143 // Should be one header add, 1 tab add, and one header update. |
| 1043 ASSERT_EQ(4U, out.size()); | 1144 ASSERT_EQ(3U, out.size()); |
| 1044 const sync_pb::EntitySpecifics t0_entity = out[2].sync_data().GetSpecifics(); | 1145 const sync_pb::EntitySpecifics t0_entity = out[1].sync_data().GetSpecifics(); |
| 1146 ASSERT_TRUE(t0_entity.session().has_tab()); | |
| 1045 | 1147 |
| 1046 in.push_back(CreateRemoteData(t0_entity)); | 1148 in.push_back(CreateRemoteData(t0_entity)); |
| 1047 out.clear(); | 1149 out.clear(); |
| 1048 manager()->StopSyncing(syncer::SESSIONS); | 1150 manager()->StopSyncing(syncer::SESSIONS); |
| 1049 | 1151 |
| 1050 // SyncedTabDelegateFake is a placeholder (no WebContents) by default. | 1152 // Override the tab with a placeholder tab delegate. |
| 1051 SyncedTabDelegateFake t0_override; | 1153 PlaceholderTabDelegate t0_override(t0_entity.session().tab().tab_id(), |
| 1052 t0_override.SetSyncId(t0_entity.session().tab_node_id()); | 1154 t0_entity.session().tab_node_id()); |
| 1053 | 1155 |
| 1054 // Set up the window override with the new window ID and placeholder tab. | 1156 // Set up the window override with the new window ID and placeholder tab. |
| 1055 const std::set<const SyncedWindowDelegate*>& windows = | 1157 const std::set<const SyncedWindowDelegate*>& windows = |
| 1056 get_synced_window_getter()->GetSyncedWindowDelegates(); | 1158 get_synced_window_getter()->GetSyncedWindowDelegates(); |
| 1057 ASSERT_EQ(1U, windows.size()); | 1159 ASSERT_EQ(1U, windows.size()); |
| 1058 SyncedWindowDelegateOverride window_override(*windows.begin()); | 1160 SyncedWindowDelegateOverride window_override(*windows.begin()); |
| 1059 window_override.OverrideSessionId(kNewWindowId); | 1161 window_override.OverrideSessionId(kNewWindowId); |
| 1060 window_override.OverrideTabAt(0, &t0_override, | 1162 window_override.OverrideTabAt(0, &t0_override, |
| 1061 t0_entity.session().tab().tab_id()); | 1163 t0_entity.session().tab().tab_id()); |
| 1062 | 1164 |
| 1063 // Inject the window override. | 1165 // Inject the window override. |
| 1064 std::set<const SyncedWindowDelegate*> delegates; | 1166 std::set<const SyncedWindowDelegate*> delegates; |
| 1065 delegates.insert(&window_override); | 1167 delegates.insert(&window_override); |
| 1066 std::unique_ptr<TestSyncedWindowDelegatesGetter> getter( | 1168 std::unique_ptr<TestSyncedWindowDelegatesGetter> getter( |
| 1067 new TestSyncedWindowDelegatesGetter(delegates)); | 1169 new TestSyncedWindowDelegatesGetter(delegates)); |
| 1068 set_synced_window_getter(getter.get()); | 1170 set_synced_window_getter(getter.get()); |
| 1069 | 1171 |
| 1070 syncer::SyncMergeResult result = manager()->MergeDataAndStartSyncing( | 1172 syncer::SyncMergeResult result = manager()->MergeDataAndStartSyncing( |
| 1071 syncer::SESSIONS, in, std::unique_ptr<syncer::SyncChangeProcessor>( | 1173 syncer::SESSIONS, in, std::unique_ptr<syncer::SyncChangeProcessor>( |
| 1072 new TestSyncProcessorStub(&out)), | 1174 new TestSyncProcessorStub(&out)), |
| 1073 std::unique_ptr<syncer::SyncErrorFactory>( | 1175 std::unique_ptr<syncer::SyncErrorFactory>( |
| 1074 new syncer::SyncErrorFactoryMock())); | 1176 new syncer::SyncErrorFactoryMock())); |
| 1075 | 1177 |
| 1076 // There should be one change for t0's window ID update. | 1178 // There should be one change for t0's window ID update. |
| 1077 ASSERT_EQ(1U, FilterOutLocalHeaderChanges(&out)->size()); | 1179 ASSERT_EQ(1U, FilterOutLocalHeaderChanges(&out)->size()); |
| 1078 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[0].change_type()); | 1180 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[0].change_type()); |
| 1079 EXPECT_EQ(kNewWindowId, | 1181 EXPECT_EQ(kNewWindowId, |
| 1080 out[0].sync_data().GetSpecifics().session().tab().window_id()); | 1182 out[0].sync_data().GetSpecifics().session().tab().window_id()); |
| 1183 EXPECT_EQ(kFoo2, out[0] | |
| 1184 .sync_data() | |
| 1185 .GetSpecifics() | |
| 1186 .session() | |
| 1187 .tab() | |
| 1188 .navigation(1) | |
| 1189 .virtual_url()); | |
| 1190 } | |
| 1191 | |
| 1192 // Ensure that the manager properly ignores a restored placeholder that refers | |
| 1193 // to a tab node that doesn't exist | |
| 1194 TEST_F(SessionsSyncManagerTest, RestoredPlacholderTabNodeDeleted) { | |
| 1195 const char kFoo1[] = "http://foo1/"; | |
| 1196 const char kFoo2[] = "http://foo2/"; | |
| 1197 const int kNewWindowId = 1337; | |
| 1198 syncer::SyncDataList in; | |
| 1199 syncer::SyncChangeList out; | |
| 1200 | |
| 1201 // Set up one tab and start sync with it. | |
| 1202 AddTab(browser(), GURL(kFoo1)); | |
| 1203 NavigateAndCommitActiveTab(GURL(kFoo2)); | |
| 1204 InitWithSyncDataTakeOutput(in, &out); | |
| 1205 | |
| 1206 // Should be one header add, 1 tab add, and one header update. | |
| 1207 ASSERT_EQ(3U, out.size()); | |
| 1208 const sync_pb::EntitySpecifics t0_entity = out[1].sync_data().GetSpecifics(); | |
| 1209 ASSERT_TRUE(t0_entity.session().has_tab()); | |
| 1210 | |
| 1211 out.clear(); | |
| 1212 manager()->StopSyncing(syncer::SESSIONS); | |
| 1213 | |
| 1214 // Override the tab with a placeholder tab delegate. | |
| 1215 PlaceholderTabDelegate t0_override(t0_entity.session().tab().tab_id(), | |
| 1216 t0_entity.session().tab_node_id()); | |
| 1217 | |
| 1218 // Set up the window override with the new window ID and placeholder tab. | |
| 1219 const std::set<const SyncedWindowDelegate*>& windows = | |
| 1220 get_synced_window_getter()->GetSyncedWindowDelegates(); | |
| 1221 ASSERT_EQ(1U, windows.size()); | |
| 1222 SyncedWindowDelegateOverride window_override(*windows.begin()); | |
| 1223 window_override.OverrideSessionId(kNewWindowId); | |
| 1224 window_override.OverrideTabAt(0, &t0_override, | |
| 1225 t0_entity.session().tab().tab_id()); | |
| 1226 | |
| 1227 // Inject the window override. | |
| 1228 std::set<const SyncedWindowDelegate*> delegates; | |
| 1229 delegates.insert(&window_override); | |
| 1230 std::unique_ptr<TestSyncedWindowDelegatesGetter> getter( | |
| 1231 new TestSyncedWindowDelegatesGetter(delegates)); | |
| 1232 set_synced_window_getter(getter.get()); | |
| 1233 | |
| 1234 syncer::SyncMergeResult result = manager()->MergeDataAndStartSyncing( | |
| 1235 syncer::SESSIONS, in, std::unique_ptr<syncer::SyncChangeProcessor>( | |
| 1236 new TestSyncProcessorStub(&out)), | |
| 1237 std::unique_ptr<syncer::SyncErrorFactory>( | |
| 1238 new syncer::SyncErrorFactoryMock())); | |
| 1239 | |
| 1240 // Because no entities were passed in at associate time, there should be no | |
| 1241 // tab changes. | |
| 1242 ASSERT_EQ(0U, FilterOutLocalHeaderChanges(&out)->size()); | |
| 1081 } | 1243 } |
| 1082 | 1244 |
| 1083 // Tests MergeDataAndStartSyncing with sync data but no local data. | 1245 // Tests MergeDataAndStartSyncing with sync data but no local data. |
| 1084 TEST_F(SessionsSyncManagerTest, MergeWithInitialForeignSession) { | 1246 TEST_F(SessionsSyncManagerTest, MergeWithInitialForeignSession) { |
| 1085 std::string tag = "tag1"; | 1247 std::string tag = "tag1"; |
| 1086 | 1248 |
| 1087 SessionID::id_type n1[] = {5, 10, 13, 17}; | 1249 SessionID::id_type n1[] = {5, 10, 13, 17}; |
| 1088 std::vector<SessionID::id_type> tab_list1(n1, n1 + arraysize(n1)); | 1250 std::vector<SessionID::id_type> tab_list1(n1, n1 + arraysize(n1)); |
| 1089 std::vector<sync_pb::SessionSpecifics> tabs1; | 1251 std::vector<sync_pb::SessionSpecifics> tabs1; |
| 1090 sync_pb::SessionSpecifics meta(helper()->BuildForeignSession( | 1252 sync_pb::SessionSpecifics meta(helper()->BuildForeignSession( |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1133 std::vector<SessionID::id_type> tab_list1(n1, n1 + arraysize(n1)); | 1295 std::vector<SessionID::id_type> tab_list1(n1, n1 + arraysize(n1)); |
| 1134 std::vector<sync_pb::SessionSpecifics> tabs1; | 1296 std::vector<sync_pb::SessionSpecifics> tabs1; |
| 1135 sync_pb::SessionSpecifics meta(helper()->BuildForeignSession( | 1297 sync_pb::SessionSpecifics meta(helper()->BuildForeignSession( |
| 1136 tag, tab_list1, &tabs1)); | 1298 tag, tab_list1, &tabs1)); |
| 1137 syncer::SyncDataList foreign_data; | 1299 syncer::SyncDataList foreign_data; |
| 1138 foreign_data.push_back(CreateRemoteData(meta)); | 1300 foreign_data.push_back(CreateRemoteData(meta)); |
| 1139 AddTabsToSyncDataList(tabs1, &foreign_data); | 1301 AddTabsToSyncDataList(tabs1, &foreign_data); |
| 1140 | 1302 |
| 1141 syncer::SyncChangeList output; | 1303 syncer::SyncChangeList output; |
| 1142 InitWithSyncDataTakeOutput(foreign_data, &output); | 1304 InitWithSyncDataTakeOutput(foreign_data, &output); |
| 1143 ASSERT_EQ(4U, output.size()); | 1305 // Should be one header add, 1 tab add, and one header update. |
| 1306 ASSERT_EQ(3U, output.size()); | |
| 1144 | 1307 |
| 1145 // Verify the local header. | 1308 // Verify the local header. |
| 1146 EXPECT_TRUE(output[0].IsValid()); | 1309 EXPECT_TRUE(output[0].IsValid()); |
| 1147 EXPECT_EQ(SyncChange::ACTION_ADD, output[0].change_type()); | 1310 EXPECT_EQ(SyncChange::ACTION_ADD, output[0].change_type()); |
| 1148 const SyncData data(output[0].sync_data()); | 1311 const SyncData data(output[0].sync_data()); |
| 1149 EXPECT_EQ(manager()->current_machine_tag(), | 1312 EXPECT_EQ(manager()->current_machine_tag(), |
| 1150 syncer::SyncDataLocal(data).GetTag()); | 1313 syncer::SyncDataLocal(data).GetTag()); |
| 1151 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); | 1314 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); |
| 1152 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); | 1315 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); |
| 1153 EXPECT_TRUE(specifics.has_header()); | 1316 EXPECT_TRUE(specifics.has_header()); |
| 1154 const sync_pb::SessionHeader& header_s = specifics.header(); | 1317 const sync_pb::SessionHeader& header_s = specifics.header(); |
| 1155 EXPECT_TRUE(header_s.has_device_type()); | 1318 EXPECT_TRUE(header_s.has_device_type()); |
| 1156 EXPECT_EQ(GetLocalDeviceInfo()->client_name(), header_s.client_name()); | 1319 EXPECT_EQ(GetLocalDeviceInfo()->client_name(), header_s.client_name()); |
| 1157 EXPECT_EQ(0, header_s.window_size()); | 1320 EXPECT_EQ(0, header_s.window_size()); |
| 1158 | 1321 |
| 1159 // Verify the tab node creations and updates with content. | 1322 // Verify the tab node creations and updates with content. |
| 1160 for (int i = 1; i < 3; i++) { | 1323 for (int i = 1; i < 3; i++) { |
| 1161 EXPECT_TRUE(output[i].IsValid()); | 1324 EXPECT_TRUE(output[i].IsValid()); |
| 1162 const SyncData data(output[i].sync_data()); | 1325 const SyncData data(output[i].sync_data()); |
| 1163 EXPECT_TRUE(base::StartsWith(syncer::SyncDataLocal(data).GetTag(), | 1326 EXPECT_TRUE(base::StartsWith(syncer::SyncDataLocal(data).GetTag(), |
| 1164 manager()->current_machine_tag(), | 1327 manager()->current_machine_tag(), |
| 1165 base::CompareCase::SENSITIVE)); | 1328 base::CompareCase::SENSITIVE)); |
| 1166 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); | 1329 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); |
| 1167 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); | 1330 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); |
| 1168 } | 1331 } |
| 1169 EXPECT_EQ(SyncChange::ACTION_ADD, output[1].change_type()); | 1332 EXPECT_EQ(SyncChange::ACTION_ADD, output[1].change_type()); |
| 1170 EXPECT_EQ(SyncChange::ACTION_UPDATE, output[2].change_type()); | 1333 EXPECT_EQ(SyncChange::ACTION_UPDATE, output[2].change_type()); |
| 1171 EXPECT_TRUE(output[2].sync_data().GetSpecifics().session().has_tab()); | 1334 EXPECT_TRUE(output[1].sync_data().GetSpecifics().session().has_tab()); |
| 1172 | 1335 |
| 1173 // Verify the header was updated to reflect window state. | 1336 // Verify the header was updated to reflect window state. |
| 1174 EXPECT_TRUE(output[3].IsValid()); | 1337 EXPECT_TRUE(output[2].IsValid()); |
| 1175 EXPECT_EQ(SyncChange::ACTION_UPDATE, output[3].change_type()); | 1338 EXPECT_EQ(SyncChange::ACTION_UPDATE, output[2].change_type()); |
| 1176 const SyncData data_2(output[3].sync_data()); | 1339 const SyncData data_2(output[2].sync_data()); |
| 1177 EXPECT_EQ(manager()->current_machine_tag(), | 1340 EXPECT_EQ(manager()->current_machine_tag(), |
| 1178 syncer::SyncDataLocal(data_2).GetTag()); | 1341 syncer::SyncDataLocal(data_2).GetTag()); |
| 1179 const sync_pb::SessionSpecifics& specifics2(data_2.GetSpecifics().session()); | 1342 const sync_pb::SessionSpecifics& specifics2(data_2.GetSpecifics().session()); |
| 1180 EXPECT_EQ(manager()->current_machine_tag(), specifics2.session_tag()); | 1343 EXPECT_EQ(manager()->current_machine_tag(), specifics2.session_tag()); |
| 1181 EXPECT_TRUE(specifics2.has_header()); | 1344 EXPECT_TRUE(specifics2.has_header()); |
| 1182 const sync_pb::SessionHeader& header_s2 = specifics2.header(); | 1345 const sync_pb::SessionHeader& header_s2 = specifics2.header(); |
| 1183 EXPECT_EQ(1, header_s2.window_size()); | 1346 EXPECT_EQ(1, header_s2.window_size()); |
| 1184 | 1347 |
| 1185 // Verify foreign data. | 1348 // Verify foreign data. |
| 1186 std::vector<const SyncedSession*> foreign_sessions; | 1349 std::vector<const SyncedSession*> foreign_sessions; |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 1209 SessionID::id_type n1[] = {5, 10, 13, 17}; | 1372 SessionID::id_type n1[] = {5, 10, 13, 17}; |
| 1210 std::vector<SessionID::id_type> tab_list1(n1, n1 + arraysize(n1)); | 1373 std::vector<SessionID::id_type> tab_list1(n1, n1 + arraysize(n1)); |
| 1211 meta1_reference.push_back(tab_list1); | 1374 meta1_reference.push_back(tab_list1); |
| 1212 std::vector<sync_pb::SessionSpecifics> tabs1; | 1375 std::vector<sync_pb::SessionSpecifics> tabs1; |
| 1213 meta1 = helper()->BuildForeignSession(tag1, tab_list1, &tabs1); | 1376 meta1 = helper()->BuildForeignSession(tag1, tab_list1, &tabs1); |
| 1214 foreign_data1.push_back(CreateRemoteData(meta1)); | 1377 foreign_data1.push_back(CreateRemoteData(meta1)); |
| 1215 AddTabsToSyncDataList(tabs1, &foreign_data1); | 1378 AddTabsToSyncDataList(tabs1, &foreign_data1); |
| 1216 | 1379 |
| 1217 syncer::SyncChangeList output1; | 1380 syncer::SyncChangeList output1; |
| 1218 InitWithSyncDataTakeOutput(foreign_data1, &output1); | 1381 InitWithSyncDataTakeOutput(foreign_data1, &output1); |
| 1219 ASSERT_EQ(4U, output1.size()); | 1382 |
| 1383 // 1 header add, one tab add, one header update. | |
| 1384 ASSERT_EQ(3U, output1.size()); | |
| 1220 | 1385 |
| 1221 // Add a second window to the foreign session. | 1386 // Add a second window to the foreign session. |
| 1222 // TODO(tim): Bug 98892. Add local window too when observers are hooked up. | 1387 // TODO(tim): Bug 98892. Add local window too when observers are hooked up. |
| 1223 SessionID::id_type tab_nums2[] = {7, 15, 18, 20}; | 1388 SessionID::id_type tab_nums2[] = {7, 15, 18, 20}; |
| 1224 std::vector<SessionID::id_type> tab_list2( | 1389 std::vector<SessionID::id_type> tab_list2( |
| 1225 tab_nums2, tab_nums2 + arraysize(tab_nums2)); | 1390 tab_nums2, tab_nums2 + arraysize(tab_nums2)); |
| 1226 meta1_reference.push_back(tab_list2); | 1391 meta1_reference.push_back(tab_list2); |
| 1227 helper()->AddWindowSpecifics(1, tab_list2, &meta1); | 1392 helper()->AddWindowSpecifics(1, tab_list2, &meta1); |
| 1228 std::vector<sync_pb::SessionSpecifics> tabs2; | 1393 std::vector<sync_pb::SessionSpecifics> tabs2; |
| 1229 tabs2.resize(tab_list2.size()); | 1394 tabs2.resize(tab_list2.size()); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1300 EXPECT_TRUE(changes.empty()); | 1465 EXPECT_TRUE(changes.empty()); |
| 1301 | 1466 |
| 1302 // Fill an instance of session specifics with a foreign session's data. | 1467 // Fill an instance of session specifics with a foreign session's data. |
| 1303 std::vector<sync_pb::SessionSpecifics> tabs; | 1468 std::vector<sync_pb::SessionSpecifics> tabs; |
| 1304 SessionID::id_type n1[] = {5, 10, 13, 17}; | 1469 SessionID::id_type n1[] = {5, 10, 13, 17}; |
| 1305 std::vector<SessionID::id_type> tab_nums1(n1, n1 + arraysize(n1)); | 1470 std::vector<SessionID::id_type> tab_nums1(n1, n1 + arraysize(n1)); |
| 1306 sync_pb::SessionSpecifics meta(helper()->BuildForeignSession( | 1471 sync_pb::SessionSpecifics meta(helper()->BuildForeignSession( |
| 1307 tag, tab_nums1, &tabs)); | 1472 tag, tab_nums1, &tabs)); |
| 1308 | 1473 |
| 1309 // Update associator with the session's meta node, window, and tabs. | 1474 // Update associator with the session's meta node, window, and tabs. |
| 1310 manager()->UpdateTrackerWithForeignSession(meta, base::Time()); | 1475 manager()->UpdateTrackerWithSpecifics(meta, base::Time()); |
| 1311 for (std::vector<sync_pb::SessionSpecifics>::iterator iter = tabs.begin(); | 1476 for (std::vector<sync_pb::SessionSpecifics>::iterator iter = tabs.begin(); |
| 1312 iter != tabs.end(); ++iter) { | 1477 iter != tabs.end(); ++iter) { |
| 1313 manager()->UpdateTrackerWithForeignSession(*iter, base::Time()); | 1478 manager()->UpdateTrackerWithSpecifics(*iter, base::Time()); |
| 1314 } | 1479 } |
| 1315 ASSERT_TRUE(manager()->GetAllForeignSessions(&foreign_sessions)); | 1480 ASSERT_TRUE(manager()->GetAllForeignSessions(&foreign_sessions)); |
| 1316 ASSERT_EQ(1U, foreign_sessions.size()); | 1481 ASSERT_EQ(1U, foreign_sessions.size()); |
| 1317 | 1482 |
| 1318 // Now delete the foreign session. | 1483 // Now delete the foreign session. |
| 1319 manager()->DeleteForeignSessionInternal(tag, &changes); | 1484 manager()->DeleteForeignSessionInternal(tag, &changes); |
| 1320 EXPECT_FALSE(manager()->GetAllForeignSessions(&foreign_sessions)); | 1485 EXPECT_FALSE(manager()->GetAllForeignSessions(&foreign_sessions)); |
| 1321 | 1486 |
| 1322 EXPECT_EQ(5U, changes.size()); | 1487 EXPECT_EQ(5U, changes.size()); |
| 1323 std::set<std::string> expected_tags(&tag, &tag + 1); | 1488 std::set<std::string> expected_tags(&tag, &tag + 1); |
| 1324 for (int i = 0; i < 5; i++) | 1489 for (int i = 0; i < 5; i++) |
| 1325 expected_tags.insert(TabNodePool::TabIdToTag(tag, i)); | 1490 expected_tags.insert(TabNodeIdToTag(tag, i)); |
| 1326 | 1491 |
| 1327 for (int i = 0; i < 5; i++) { | 1492 for (int i = 0; i < 5; i++) { |
| 1328 SCOPED_TRACE(changes[i].ToString()); | 1493 SCOPED_TRACE(changes[i].ToString()); |
| 1329 EXPECT_TRUE(changes[i].IsValid()); | 1494 EXPECT_TRUE(changes[i].IsValid()); |
| 1330 EXPECT_EQ(SyncChange::ACTION_DELETE, changes[i].change_type()); | 1495 EXPECT_EQ(SyncChange::ACTION_DELETE, changes[i].change_type()); |
| 1331 EXPECT_TRUE(changes[i].sync_data().IsValid()); | 1496 EXPECT_TRUE(changes[i].sync_data().IsValid()); |
| 1332 EXPECT_EQ(1U, | 1497 EXPECT_EQ(1U, |
| 1333 expected_tags.erase( | 1498 expected_tags.erase( |
| 1334 syncer::SyncDataLocal(changes[i].sync_data()).GetTag())); | 1499 syncer::SyncDataLocal(changes[i].sync_data()).GetTag())); |
| 1335 } | 1500 } |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1438 | 1603 |
| 1439 // This should trigger repair of the TabNodePool. | 1604 // This should trigger repair of the TabNodePool. |
| 1440 const GURL foo1("http://foo/1"); | 1605 const GURL foo1("http://foo/1"); |
| 1441 AddTab(browser(), foo1); | 1606 AddTab(browser(), foo1); |
| 1442 EXPECT_FALSE(manager()->local_tab_pool_out_of_sync_); | 1607 EXPECT_FALSE(manager()->local_tab_pool_out_of_sync_); |
| 1443 | 1608 |
| 1444 // AddTab triggers two notifications, one for the tab insertion and one for | 1609 // AddTab triggers two notifications, one for the tab insertion and one for |
| 1445 // committing the NavigationEntry. The first notification results in a tab | 1610 // committing the NavigationEntry. The first notification results in a tab |
| 1446 // we don't associate although we do update the header node. The second | 1611 // we don't associate although we do update the header node. The second |
| 1447 // notification triggers association of the tab, and the subsequent window | 1612 // notification triggers association of the tab, and the subsequent window |
| 1448 // update. So we should see 4 changes at the SyncChangeProcessor. | 1613 // update. So we should see 3 changes at the SyncChangeProcessor. |
| 1449 ASSERT_EQ(4U, out.size()); | 1614 ASSERT_EQ(3U, out.size()); |
|
Patrick Noland
2017/01/25 19:23:41
Is there a way to make the verification of the "sh
Nicolas Zea
2017/01/25 23:55:04
I think that's a fair point, although something I'
| |
| 1450 | 1615 |
| 1451 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[0].change_type()); | 1616 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[0].change_type()); |
| 1452 ASSERT_TRUE(out[0].sync_data().GetSpecifics().session().has_header()); | 1617 ASSERT_TRUE(out[0].sync_data().GetSpecifics().session().has_header()); |
| 1453 EXPECT_EQ(SyncChange::ACTION_ADD, out[1].change_type()); | 1618 EXPECT_EQ(SyncChange::ACTION_ADD, out[1].change_type()); |
| 1454 int tab_node_id = out[1].sync_data().GetSpecifics().session().tab_node_id(); | 1619 int tab_node_id = out[1].sync_data().GetSpecifics().session().tab_node_id(); |
| 1455 EXPECT_EQ(TabNodePool::TabIdToTag( | 1620 EXPECT_EQ(TabNodeIdToTag(manager()->current_machine_tag(), tab_node_id), |
| 1456 manager()->current_machine_tag(), tab_node_id), | |
| 1457 syncer::SyncDataLocal(out[1].sync_data()).GetTag()); | 1621 syncer::SyncDataLocal(out[1].sync_data()).GetTag()); |
| 1458 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[2].change_type()); | 1622 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[2].change_type()); |
| 1459 ASSERT_TRUE(out[2].sync_data().GetSpecifics().session().has_tab()); | 1623 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[2].change_type()); |
| 1460 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[3].change_type()); | 1624 ASSERT_TRUE(out[2].sync_data().GetSpecifics().session().has_header()); |
| 1461 ASSERT_TRUE(out[3].sync_data().GetSpecifics().session().has_header()); | |
| 1462 | 1625 |
| 1463 // Verify the actual content. | 1626 // Verify the actual content. |
| 1464 const sync_pb::SessionHeader& session_header = | 1627 const sync_pb::SessionHeader& session_header = |
| 1465 out[3].sync_data().GetSpecifics().session().header(); | 1628 out[2].sync_data().GetSpecifics().session().header(); |
| 1466 ASSERT_EQ(1, session_header.window_size()); | 1629 ASSERT_EQ(1, session_header.window_size()); |
| 1467 EXPECT_EQ(1, session_header.window(0).tab_size()); | 1630 EXPECT_EQ(1, session_header.window(0).tab_size()); |
| 1468 const sync_pb::SessionTab& tab1 = | 1631 const sync_pb::SessionTab& tab1 = |
| 1469 out[2].sync_data().GetSpecifics().session().tab(); | 1632 out[1].sync_data().GetSpecifics().session().tab(); |
| 1470 ASSERT_EQ(1, tab1.navigation_size()); | 1633 ASSERT_EQ(1, tab1.navigation_size()); |
| 1471 EXPECT_EQ(foo1.spec(), tab1.navigation(0).virtual_url()); | 1634 EXPECT_EQ(foo1.spec(), tab1.navigation(0).virtual_url()); |
| 1472 | 1635 |
| 1473 // Verify TabNodePool integrity. | 1636 // Verify TabNodePool integrity. |
| 1474 EXPECT_EQ(1U, manager()->local_tab_pool_.Capacity()); | 1637 EXPECT_EQ(1U, GetTabPool()->Capacity()); |
| 1475 EXPECT_TRUE(manager()->local_tab_pool_.Empty()); | 1638 EXPECT_TRUE(GetTabPool()->Empty()); |
| 1476 | |
| 1477 // Verify TabLinks. | |
| 1478 SessionsSyncManager::TabLinksMap tab_map = manager()->local_tab_map_; | |
| 1479 ASSERT_EQ(1U, tab_map.size()); | |
| 1480 int tab_id = out[2].sync_data().GetSpecifics().session().tab().tab_id(); | |
| 1481 EXPECT_EQ(tab_node_id, tab_map.find(tab_id)->second->tab_node_id()); | |
| 1482 } | 1639 } |
| 1483 | 1640 |
| 1484 // Test that receiving a session delete from sync removes the session | 1641 // Test that receiving a session delete from sync removes the session |
| 1485 // from tracking. | 1642 // from tracking. |
| 1486 TEST_F(SessionsSyncManagerTest, ProcessForeignDelete) { | 1643 TEST_F(SessionsSyncManagerTest, ProcessForeignDelete) { |
| 1487 InitWithNoSyncData(); | 1644 InitWithNoSyncData(); |
| 1488 SessionID::id_type n[] = {5}; | 1645 SessionID::id_type n[] = {5}; |
| 1489 std::vector<sync_pb::SessionSpecifics> tabs1; | 1646 std::vector<sync_pb::SessionSpecifics> tabs1; |
| 1490 std::vector<SessionID::id_type> tab_list(n, n + arraysize(n)); | 1647 std::vector<SessionID::id_type> tab_list(n, n + arraysize(n)); |
| 1491 sync_pb::SessionSpecifics meta(helper()->BuildForeignSession( | 1648 sync_pb::SessionSpecifics meta(helper()->BuildForeignSession( |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1615 output.clear(); | 1772 output.clear(); |
| 1616 | 1773 |
| 1617 // Verify that cleanup post-merge cleanup correctly removes all tabs objects. | 1774 // Verify that cleanup post-merge cleanup correctly removes all tabs objects. |
| 1618 const sessions::SessionTab* tab; | 1775 const sessions::SessionTab* tab; |
| 1619 ASSERT_FALSE( | 1776 ASSERT_FALSE( |
| 1620 manager()->session_tracker_.LookupSessionTab(session_tag, 1, &tab)); | 1777 manager()->session_tracker_.LookupSessionTab(session_tag, 1, &tab)); |
| 1621 ASSERT_FALSE( | 1778 ASSERT_FALSE( |
| 1622 manager()->session_tracker_.LookupSessionTab(session_tag, 2, &tab)); | 1779 manager()->session_tracker_.LookupSessionTab(session_tag, 2, &tab)); |
| 1623 | 1780 |
| 1624 std::set<int> tab_node_ids; | 1781 std::set<int> tab_node_ids; |
| 1625 manager()->session_tracker_.LookupTabNodeIds(session_tag, &tab_node_ids); | 1782 manager()->session_tracker_.LookupForeignTabNodeIds(session_tag, |
| 1783 &tab_node_ids); | |
| 1626 EXPECT_EQ(6U, tab_node_ids.size()); | 1784 EXPECT_EQ(6U, tab_node_ids.size()); |
| 1627 EXPECT_TRUE(tab_node_ids.find(tab1A.tab_node_id()) != tab_node_ids.end()); | 1785 EXPECT_TRUE(tab_node_ids.find(tab1A.tab_node_id()) != tab_node_ids.end()); |
| 1628 EXPECT_TRUE(tab_node_ids.find(tab1B.tab_node_id()) != tab_node_ids.end()); | 1786 EXPECT_TRUE(tab_node_ids.find(tab1B.tab_node_id()) != tab_node_ids.end()); |
| 1629 EXPECT_TRUE(tab_node_ids.find(tab1C.tab_node_id()) != tab_node_ids.end()); | 1787 EXPECT_TRUE(tab_node_ids.find(tab1C.tab_node_id()) != tab_node_ids.end()); |
| 1630 EXPECT_TRUE(tab_node_ids.find(tab2A.tab_node_id()) != tab_node_ids.end()); | 1788 EXPECT_TRUE(tab_node_ids.find(tab2A.tab_node_id()) != tab_node_ids.end()); |
| 1631 EXPECT_TRUE(tab_node_ids.find(tab2B.tab_node_id()) != tab_node_ids.end()); | 1789 EXPECT_TRUE(tab_node_ids.find(tab2B.tab_node_id()) != tab_node_ids.end()); |
| 1632 EXPECT_TRUE(tab_node_ids.find(tab2C.tab_node_id()) != tab_node_ids.end()); | 1790 EXPECT_TRUE(tab_node_ids.find(tab2C.tab_node_id()) != tab_node_ids.end()); |
| 1633 | 1791 |
| 1634 syncer::SyncChangeList changes; | 1792 syncer::SyncChangeList changes; |
| 1635 changes.push_back(MakeRemoteChange(tab1A, SyncChange::ACTION_DELETE)); | 1793 changes.push_back(MakeRemoteChange(tab1A, SyncChange::ACTION_DELETE)); |
| 1636 changes.push_back(MakeRemoteChange(tab1B, SyncChange::ACTION_DELETE)); | 1794 changes.push_back(MakeRemoteChange(tab1B, SyncChange::ACTION_DELETE)); |
| 1637 changes.push_back(MakeRemoteChange(tab2C, SyncChange::ACTION_DELETE)); | 1795 changes.push_back(MakeRemoteChange(tab2C, SyncChange::ACTION_DELETE)); |
| 1638 manager()->ProcessSyncChanges(FROM_HERE, changes); | 1796 manager()->ProcessSyncChanges(FROM_HERE, changes); |
| 1639 | 1797 |
| 1640 tab_node_ids.clear(); | 1798 tab_node_ids.clear(); |
| 1641 manager()->session_tracker_.LookupTabNodeIds(session_tag, &tab_node_ids); | 1799 manager()->session_tracker_.LookupForeignTabNodeIds(session_tag, |
| 1800 &tab_node_ids); | |
| 1642 EXPECT_EQ(3U, tab_node_ids.size()); | 1801 EXPECT_EQ(3U, tab_node_ids.size()); |
| 1643 EXPECT_TRUE(tab_node_ids.find(tab1C.tab_node_id()) != tab_node_ids.end()); | 1802 EXPECT_TRUE(tab_node_ids.find(tab1C.tab_node_id()) != tab_node_ids.end()); |
| 1644 EXPECT_TRUE(tab_node_ids.find(tab2A.tab_node_id()) != tab_node_ids.end()); | 1803 EXPECT_TRUE(tab_node_ids.find(tab2A.tab_node_id()) != tab_node_ids.end()); |
| 1645 EXPECT_TRUE(tab_node_ids.find(tab2B.tab_node_id()) != tab_node_ids.end()); | 1804 EXPECT_TRUE(tab_node_ids.find(tab2B.tab_node_id()) != tab_node_ids.end()); |
| 1646 | 1805 |
| 1647 manager()->DoGarbageCollection(); | 1806 manager()->DoGarbageCollection(); |
| 1648 ASSERT_EQ(3U, output.size()); | 1807 ASSERT_EQ(3U, output.size()); |
| 1649 } | 1808 } |
| 1650 | 1809 |
| 1651 TEST_F(SessionsSyncManagerTest, ProcessForeignDeleteTabsWithReusedNodeIds) { | 1810 TEST_F(SessionsSyncManagerTest, ProcessForeignDeleteTabsWithReusedNodeIds) { |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 1669 helper()->BuildTabSpecifics(session_tag, 0, 2, tab_node_id_shared, &tab2A); | 1828 helper()->BuildTabSpecifics(session_tag, 0, 2, tab_node_id_shared, &tab2A); |
| 1670 AddToSyncDataList(tab2A, &foreign_data, | 1829 AddToSyncDataList(tab2A, &foreign_data, |
| 1671 stale_mtime + base::TimeDelta::FromMinutes(1)); | 1830 stale_mtime + base::TimeDelta::FromMinutes(1)); |
| 1672 | 1831 |
| 1673 syncer::SyncChangeList output; | 1832 syncer::SyncChangeList output; |
| 1674 InitWithSyncDataTakeOutput(foreign_data, &output); | 1833 InitWithSyncDataTakeOutput(foreign_data, &output); |
| 1675 ASSERT_EQ(2U, output.size()); | 1834 ASSERT_EQ(2U, output.size()); |
| 1676 output.clear(); | 1835 output.clear(); |
| 1677 | 1836 |
| 1678 std::set<int> tab_node_ids; | 1837 std::set<int> tab_node_ids; |
| 1679 manager()->session_tracker_.LookupTabNodeIds(session_tag, &tab_node_ids); | 1838 manager()->session_tracker_.LookupForeignTabNodeIds(session_tag, |
| 1839 &tab_node_ids); | |
| 1680 EXPECT_EQ(2U, tab_node_ids.size()); | 1840 EXPECT_EQ(2U, tab_node_ids.size()); |
| 1681 EXPECT_TRUE(tab_node_ids.find(tab_node_id_shared) != tab_node_ids.end()); | 1841 EXPECT_TRUE(tab_node_ids.find(tab_node_id_shared) != tab_node_ids.end()); |
| 1682 EXPECT_TRUE(tab_node_ids.find(tab_node_id_unique) != tab_node_ids.end()); | 1842 EXPECT_TRUE(tab_node_ids.find(tab_node_id_unique) != tab_node_ids.end()); |
| 1683 | 1843 |
| 1684 syncer::SyncChangeList changes; | 1844 syncer::SyncChangeList changes; |
| 1685 changes.push_back(MakeRemoteChange(tab1A, SyncChange::ACTION_DELETE)); | 1845 changes.push_back(MakeRemoteChange(tab1A, SyncChange::ACTION_DELETE)); |
| 1686 manager()->ProcessSyncChanges(FROM_HERE, changes); | 1846 manager()->ProcessSyncChanges(FROM_HERE, changes); |
| 1687 | 1847 |
| 1688 tab_node_ids.clear(); | 1848 tab_node_ids.clear(); |
| 1689 manager()->session_tracker_.LookupTabNodeIds(session_tag, &tab_node_ids); | 1849 manager()->session_tracker_.LookupForeignTabNodeIds(session_tag, |
| 1850 &tab_node_ids); | |
| 1690 EXPECT_EQ(1U, tab_node_ids.size()); | 1851 EXPECT_EQ(1U, tab_node_ids.size()); |
| 1691 EXPECT_TRUE(tab_node_ids.find(tab_node_id_unique) != tab_node_ids.end()); | 1852 EXPECT_TRUE(tab_node_ids.find(tab_node_id_unique) != tab_node_ids.end()); |
| 1692 | 1853 |
| 1693 manager()->DoGarbageCollection(); | 1854 manager()->DoGarbageCollection(); |
| 1694 EXPECT_EQ(1U, output.size()); | 1855 EXPECT_EQ(1U, output.size()); |
| 1695 } | 1856 } |
| 1696 | 1857 |
| 1697 // TODO(shashishekhar): "Move this to TabNodePool unittests." | 1858 TEST_F(SessionsSyncManagerTest, AssociationReusesNodes) { |
| 1698 TEST_F(SessionsSyncManagerTest, SaveUnassociatedNodesForReassociation) { | |
| 1699 syncer::SyncChangeList changes; | 1859 syncer::SyncChangeList changes; |
| 1700 InitWithNoSyncData(); | 1860 AddTab(browser(), GURL("http://foo1")); |
| 1861 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &changes); | |
| 1862 ASSERT_EQ(3U, changes.size()); // Header add, tab add, header update. | |
| 1863 ASSERT_TRUE(changes[1].sync_data().GetSpecifics().session().has_tab()); | |
| 1864 int tab_node_id = | |
| 1865 changes[1].sync_data().GetSpecifics().session().tab_node_id(); | |
| 1701 | 1866 |
| 1702 std::string local_tag = manager()->current_machine_tag(); | 1867 // Pass back the previous tab and header nodes at association, along with a |
| 1703 // Create a free node and then dissassociate sessions so that it ends up | 1868 // second tab node (with a rewritten tab node id). |
| 1704 // unassociated. | 1869 syncer::SyncDataList in; |
| 1705 manager()->local_tab_pool_.GetFreeTabNode(&changes); | 1870 in.push_back( |
| 1871 CreateRemoteData(changes[2].sync_data().GetSpecifics())); // Header node. | |
| 1872 sync_pb::SessionSpecifics new_tab( | |
| 1873 changes[1].sync_data().GetSpecifics().session()); | |
| 1874 new_tab.set_tab_node_id(tab_node_id + 1); | |
| 1875 in.push_back(CreateRemoteData(new_tab)); // New tab node. | |
| 1876 in.push_back(CreateRemoteData( | |
| 1877 changes[1].sync_data().GetSpecifics())); // Old tab node. | |
| 1878 changes.clear(); | |
| 1706 | 1879 |
| 1707 // Update the tab_id of the node, so that it is considered a valid | 1880 // Reassociate (with the same single tab/window open). |
| 1708 // unassociated node otherwise it will be mistaken for a corrupted node and | 1881 manager()->StopSyncing(syncer::SESSIONS); |
| 1709 // will be deleted before being added to the tab node pool. | 1882 syncer::SyncMergeResult result = manager()->MergeDataAndStartSyncing( |
| 1710 sync_pb::EntitySpecifics entity(changes[0].sync_data().GetSpecifics()); | |
| 1711 entity.mutable_session()->mutable_tab()->set_tab_id(1); | |
| 1712 SyncData d = CreateRemoteData(entity); | |
| 1713 syncer::SyncDataList in(&d, &d + 1); | |
| 1714 changes.clear(); | |
| 1715 SessionsSyncManager manager2(GetSyncSessionsClient(), sync_prefs(), | |
| 1716 local_device(), NewDummyRouter(), | |
| 1717 base::Closure(), base::Closure()); | |
| 1718 syncer::SyncMergeResult result = manager2.MergeDataAndStartSyncing( | |
| 1719 syncer::SESSIONS, in, std::unique_ptr<syncer::SyncChangeProcessor>( | 1883 syncer::SESSIONS, in, std::unique_ptr<syncer::SyncChangeProcessor>( |
| 1720 new TestSyncProcessorStub(&changes)), | 1884 new TestSyncProcessorStub(&changes)), |
| 1721 std::unique_ptr<syncer::SyncErrorFactory>( | 1885 std::unique_ptr<syncer::SyncErrorFactory>( |
| 1722 new syncer::SyncErrorFactoryMock())); | 1886 new syncer::SyncErrorFactoryMock())); |
| 1723 ASSERT_FALSE(result.error().IsSet()); | 1887 ASSERT_FALSE(result.error().IsSet()); |
| 1724 EXPECT_TRUE(FilterOutLocalHeaderChanges(&changes)->empty()); | 1888 |
| 1889 // No tab entities should be deleted. The original (lower) tab node id should | |
| 1890 // be reused for association. | |
| 1891 FilterOutLocalHeaderChanges(&changes); | |
| 1892 ASSERT_EQ(1U, changes.size()); | |
| 1893 EXPECT_EQ(SyncChange::ACTION_UPDATE, changes[0].change_type()); | |
| 1894 EXPECT_TRUE(changes[0].sync_data().GetSpecifics().session().has_tab()); | |
| 1895 EXPECT_EQ(tab_node_id, | |
| 1896 changes[0].sync_data().GetSpecifics().session().tab_node_id()); | |
| 1725 } | 1897 } |
| 1726 | 1898 |
| 1727 TEST_F(SessionsSyncManagerTest, MergeDeletesCorruptNode) { | 1899 TEST_F(SessionsSyncManagerTest, MergeDeletesCorruptNode) { |
| 1728 syncer::SyncChangeList changes; | 1900 syncer::SyncChangeList changes; |
| 1729 InitWithNoSyncData(); | 1901 InitWithNoSyncData(); |
| 1730 | 1902 |
| 1731 std::string local_tag = manager()->current_machine_tag(); | 1903 std::string local_tag = manager()->current_machine_tag(); |
| 1732 int tab_node_id = manager()->local_tab_pool_.GetFreeTabNode(&changes); | 1904 int tab_node_id = TabNodePool::kInvalidTabNodeID; |
| 1733 SyncData d = CreateRemoteData(changes[0].sync_data().GetSpecifics()); | 1905 GetTabPool()->GetTabNodeForTab(0, &tab_node_id); |
| 1906 sync_pb::SessionSpecifics specifics; | |
| 1907 specifics.set_session_tag(local_tag); | |
| 1908 specifics.set_tab_node_id(tab_node_id); | |
| 1909 SyncData d = CreateRemoteData(specifics); | |
| 1734 syncer::SyncDataList in(&d, &d + 1); | 1910 syncer::SyncDataList in(&d, &d + 1); |
| 1735 changes.clear(); | |
| 1736 TearDown(); | 1911 TearDown(); |
| 1737 SetUp(); | 1912 SetUp(); |
| 1738 InitWithSyncDataTakeOutput(in, &changes); | 1913 InitWithSyncDataTakeOutput(in, &changes); |
| 1739 EXPECT_EQ(1U, FilterOutLocalHeaderChanges(&changes)->size()); | 1914 EXPECT_EQ(1U, FilterOutLocalHeaderChanges(&changes)->size()); |
| 1740 EXPECT_EQ(SyncChange::ACTION_DELETE, changes[0].change_type()); | 1915 EXPECT_EQ(SyncChange::ACTION_DELETE, changes[0].change_type()); |
| 1741 EXPECT_EQ(TabNodePool::TabIdToTag(local_tag, tab_node_id), | 1916 EXPECT_EQ(TabNodeIdToTag(local_tag, tab_node_id), |
| 1742 syncer::SyncDataLocal(changes[0].sync_data()).GetTag()); | 1917 syncer::SyncDataLocal(changes[0].sync_data()).GetTag()); |
| 1743 } | 1918 } |
| 1744 | 1919 |
| 1745 // Verifies that we drop both headers and tabs during merge if their stored tag | 1920 // Verifies that we drop both headers and tabs during merge if their stored tag |
| 1746 // hash doesn't match a computer tag hash. This mitigates potential failures | 1921 // hash doesn't match a computer tag hash. This mitigates potential failures |
| 1747 // while cleaning up bad foreign data, see crbug.com/604657. | 1922 // while cleaning up bad foreign data, see crbug.com/604657. |
| 1748 TEST_F(SessionsSyncManagerTest, MergeDeletesBadHash) { | 1923 TEST_F(SessionsSyncManagerTest, MergeDeletesBadHash) { |
| 1749 syncer::SyncDataList foreign_data; | 1924 syncer::SyncDataList foreign_data; |
| 1750 std::vector<SessionID::id_type> empty_ids; | 1925 std::vector<SessionID::id_type> empty_ids; |
| 1751 std::vector<sync_pb::SessionSpecifics> empty_tabs; | 1926 std::vector<sync_pb::SessionSpecifics> empty_tabs; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1800 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &out); | 1975 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &out); |
| 1801 ASSERT_EQ(2U, out.size()); // Header add and update. | 1976 ASSERT_EQ(2U, out.size()); // Header add and update. |
| 1802 EXPECT_EQ( | 1977 EXPECT_EQ( |
| 1803 0, | 1978 0, |
| 1804 out[1].sync_data().GetSpecifics().session().header().window_size()); | 1979 out[1].sync_data().GetSpecifics().session().header().window_size()); |
| 1805 out.clear(); | 1980 out.clear(); |
| 1806 | 1981 |
| 1807 // Go to a sync-interesting URL. | 1982 // Go to a sync-interesting URL. |
| 1808 NavigateAndCommitActiveTab(GURL("http://foo2")); | 1983 NavigateAndCommitActiveTab(GURL("http://foo2")); |
| 1809 | 1984 |
| 1810 EXPECT_EQ(3U, out.size()); // Tab add, update, and header update. | 1985 EXPECT_EQ(2U, out.size()); // Tab add and header update. |
| 1811 | 1986 |
| 1812 EXPECT_TRUE( | 1987 EXPECT_TRUE( |
| 1813 base::StartsWith(syncer::SyncDataLocal(out[0].sync_data()).GetTag(), | 1988 base::StartsWith(syncer::SyncDataLocal(out[0].sync_data()).GetTag(), |
| 1814 manager()->current_machine_tag(), | 1989 manager()->current_machine_tag(), |
| 1815 base::CompareCase::SENSITIVE)); | 1990 base::CompareCase::SENSITIVE)); |
| 1816 EXPECT_EQ(manager()->current_machine_tag(), | 1991 EXPECT_EQ(manager()->current_machine_tag(), |
| 1817 out[0].sync_data().GetSpecifics().session().session_tag()); | 1992 out[0].sync_data().GetSpecifics().session().session_tag()); |
| 1818 EXPECT_EQ(SyncChange::ACTION_ADD, out[0].change_type()); | 1993 EXPECT_EQ(SyncChange::ACTION_ADD, out[0].change_type()); |
| 1819 | 1994 |
| 1820 EXPECT_TRUE( | 1995 EXPECT_TRUE(out[1].IsValid()); |
| 1821 base::StartsWith(syncer::SyncDataLocal(out[1].sync_data()).GetTag(), | |
| 1822 manager()->current_machine_tag(), | |
| 1823 base::CompareCase::SENSITIVE)); | |
| 1824 EXPECT_EQ(manager()->current_machine_tag(), | |
| 1825 out[1].sync_data().GetSpecifics().session().session_tag()); | |
| 1826 EXPECT_TRUE(out[1].sync_data().GetSpecifics().session().has_tab()); | |
| 1827 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[1].change_type()); | 1996 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[1].change_type()); |
| 1828 | 1997 const SyncData data(out[1].sync_data()); |
| 1829 EXPECT_TRUE(out[2].IsValid()); | |
| 1830 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[2].change_type()); | |
| 1831 const SyncData data(out[2].sync_data()); | |
| 1832 EXPECT_EQ(manager()->current_machine_tag(), | 1998 EXPECT_EQ(manager()->current_machine_tag(), |
| 1833 syncer::SyncDataLocal(data).GetTag()); | 1999 syncer::SyncDataLocal(data).GetTag()); |
| 1834 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); | 2000 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); |
| 1835 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); | 2001 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); |
| 1836 EXPECT_TRUE(specifics.has_header()); | 2002 EXPECT_TRUE(specifics.has_header()); |
| 1837 const sync_pb::SessionHeader& header_s = specifics.header(); | 2003 const sync_pb::SessionHeader& header_s = specifics.header(); |
| 1838 EXPECT_EQ(1, header_s.window_size()); | 2004 EXPECT_EQ(1, header_s.window_size()); |
| 1839 EXPECT_EQ(1, header_s.window(0).tab_size()); | 2005 EXPECT_EQ(1, header_s.window(0).tab_size()); |
| 1840 } | 2006 } |
| 1841 | 2007 |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 1853 | 2019 |
| 1854 const GURL foo1("http://foo/1"); | 2020 const GURL foo1("http://foo/1"); |
| 1855 const GURL foo2("http://foo/2"); | 2021 const GURL foo2("http://foo/2"); |
| 1856 const GURL bar1("http://bar/1"); | 2022 const GURL bar1("http://bar/1"); |
| 1857 const GURL bar2("http://bar/2"); | 2023 const GURL bar2("http://bar/2"); |
| 1858 AddTab(browser(), foo1); | 2024 AddTab(browser(), foo1); |
| 1859 NavigateAndCommitActiveTab(foo2); | 2025 NavigateAndCommitActiveTab(foo2); |
| 1860 AddTab(browser(), bar1); | 2026 AddTab(browser(), bar1); |
| 1861 NavigateAndCommitActiveTab(bar2); | 2027 NavigateAndCommitActiveTab(bar2); |
| 1862 | 2028 |
| 1863 // One add, one update for each AddTab. | 2029 // One add for each AddTab. |
| 1864 // One update for each NavigateAndCommit. | 2030 // One update for each NavigateAndCommit. |
| 1865 // = 6 total tab updates. | 2031 // = 4 total tab updates. |
| 1866 // One header update corresponding to each of those. | 2032 // One header update corresponding to each of those. |
| 1867 // = 6 total header updates. | 2033 // = 6 total header updates. |
| 1868 // 12 total updates. | 2034 // 10 total updates. |
| 1869 ASSERT_EQ(12U, out.size()); | 2035 ASSERT_EQ(10U, out.size()); |
| 1870 | 2036 |
| 1871 // Verify the tab node creations and updates to ensure the SyncProcessor | 2037 // Verify the tab node creations and updates to ensure the SyncProcessor |
| 1872 // sees the right operations. | 2038 // sees the right operations. |
| 1873 for (int i = 0; i < 12; i++) { | 2039 for (int i = 0; i < 10; i++) { |
|
Patrick Noland
2017/01/25 19:23:41
Can you make 5 and 10 variables with names? Tracki
Nicolas Zea
2017/01/25 23:55:04
Done.
| |
| 1874 SCOPED_TRACE(i); | 2040 SCOPED_TRACE(i); |
| 1875 EXPECT_TRUE(out[i].IsValid()); | 2041 EXPECT_TRUE(out[i].IsValid()); |
| 1876 const SyncData data(out[i].sync_data()); | 2042 const SyncData data(out[i].sync_data()); |
| 1877 EXPECT_TRUE(base::StartsWith(syncer::SyncDataLocal(data).GetTag(), | 2043 EXPECT_TRUE(base::StartsWith(syncer::SyncDataLocal(data).GetTag(), |
| 1878 manager()->current_machine_tag(), | 2044 manager()->current_machine_tag(), |
| 1879 base::CompareCase::SENSITIVE)); | 2045 base::CompareCase::SENSITIVE)); |
| 1880 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); | 2046 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); |
| 1881 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); | 2047 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); |
| 1882 if (i % 6 == 0) { | 2048 if (i % 5 == 0) { |
| 1883 // First thing on an AddTab is a no-op header update for parented tab. | 2049 // First thing on an AddTab is a no-op header update for parented tab. |
| 1884 EXPECT_EQ(header.SerializeAsString(), | 2050 EXPECT_EQ(header.SerializeAsString(), |
| 1885 data.GetSpecifics().SerializeAsString()); | 2051 data.GetSpecifics().SerializeAsString()); |
| 1886 EXPECT_EQ(manager()->current_machine_tag(), | 2052 EXPECT_EQ(manager()->current_machine_tag(), |
| 1887 syncer::SyncDataLocal(data).GetTag()); | 2053 syncer::SyncDataLocal(data).GetTag()); |
| 1888 } else if (i % 6 == 1) { | 2054 } else if (i % 5 == 1) { |
| 1889 // Next, the TabNodePool should create the tab node. | 2055 // Next, the tab should be added. |
| 1890 EXPECT_EQ(SyncChange::ACTION_ADD, out[i].change_type()); | 2056 EXPECT_EQ(SyncChange::ACTION_ADD, out[i].change_type()); |
| 1891 EXPECT_EQ(TabNodePool::TabIdToTag( | 2057 EXPECT_EQ(TabNodeIdToTag(manager()->current_machine_tag(), |
| 1892 manager()->current_machine_tag(), | 2058 data.GetSpecifics().session().tab_node_id()), |
| 1893 data.GetSpecifics().session().tab_node_id()), | |
| 1894 syncer::SyncDataLocal(data).GetTag()); | 2059 syncer::SyncDataLocal(data).GetTag()); |
| 1895 } else if (i % 6 == 2) { | 2060 } else if (i % 5 == 2) { |
| 1896 // Then we see the tab update to the URL. | |
| 1897 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[i].change_type()); | |
| 1898 EXPECT_EQ(TabNodePool::TabIdToTag( | |
| 1899 manager()->current_machine_tag(), | |
| 1900 data.GetSpecifics().session().tab_node_id()), | |
| 1901 syncer::SyncDataLocal(data).GetTag()); | |
| 1902 ASSERT_TRUE(specifics.has_tab()); | |
| 1903 } else if (i % 6 == 3) { | |
| 1904 // The header needs to be updated to reflect the new window state. | 2061 // The header needs to be updated to reflect the new window state. |
| 1905 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[i].change_type()); | 2062 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[i].change_type()); |
| 1906 EXPECT_TRUE(specifics.has_header()); | 2063 EXPECT_TRUE(specifics.has_header()); |
| 1907 } else if (i % 6 == 4) { | 2064 } else if (i % 5 == 3) { |
| 1908 // Now we move on to NavigateAndCommit. Update the tab. | 2065 // Now we move on to NavigateAndCommit. Update the tab. |
| 1909 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[i].change_type()); | 2066 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[i].change_type()); |
| 1910 EXPECT_EQ(TabNodePool::TabIdToTag( | 2067 EXPECT_EQ(TabNodeIdToTag(manager()->current_machine_tag(), |
| 1911 manager()->current_machine_tag(), | 2068 data.GetSpecifics().session().tab_node_id()), |
| 1912 data.GetSpecifics().session().tab_node_id()), | |
| 1913 syncer::SyncDataLocal(data).GetTag()); | 2069 syncer::SyncDataLocal(data).GetTag()); |
| 1914 ASSERT_TRUE(specifics.has_tab()); | 2070 ASSERT_TRUE(specifics.has_tab()); |
| 1915 } else if (i % 6 == 5) { | 2071 } else if (i % 5 == 4) { |
| 1916 // The header needs to be updated to reflect the new window state. | 2072 // The header needs to be updated to reflect the new window state. |
| 1917 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[i].change_type()); | 2073 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[i].change_type()); |
| 1918 ASSERT_TRUE(specifics.has_header()); | 2074 ASSERT_TRUE(specifics.has_header()); |
| 1919 header = data.GetSpecifics(); | 2075 header = data.GetSpecifics(); |
| 1920 } | 2076 } |
| 1921 } | 2077 } |
| 1922 | 2078 |
| 1923 // Verify the actual content to ensure sync sees the right data. | 2079 // Verify the actual content to ensure sync sees the right data. |
| 1924 // When it's all said and done, the header should reflect two tabs. | 2080 // When it's all said and done, the header should reflect two tabs. |
| 1925 const sync_pb::SessionHeader& session_header = header.session().header(); | 2081 const sync_pb::SessionHeader& session_header = header.session().header(); |
| 1926 ASSERT_EQ(1, session_header.window_size()); | 2082 ASSERT_EQ(1, session_header.window_size()); |
| 1927 EXPECT_EQ(2, session_header.window(0).tab_size()); | 2083 EXPECT_EQ(2, session_header.window(0).tab_size()); |
| 1928 | 2084 |
| 1929 // ASSERT_TRUEs above allow us to dive in freely here. | 2085 // ASSERT_TRUEs above allow us to dive in freely here. |
| 1930 // Verify first tab. | 2086 // Verify first tab. |
| 1931 const sync_pb::SessionTab& tab1_1 = | 2087 const sync_pb::SessionTab& tab1_1 = |
| 1932 out[2].sync_data().GetSpecifics().session().tab(); | 2088 out[1].sync_data().GetSpecifics().session().tab(); |
| 1933 ASSERT_EQ(1, tab1_1.navigation_size()); | 2089 ASSERT_EQ(1, tab1_1.navigation_size()); |
| 1934 EXPECT_EQ(foo1.spec(), tab1_1.navigation(0).virtual_url()); | 2090 EXPECT_EQ(foo1.spec(), tab1_1.navigation(0).virtual_url()); |
| 1935 const sync_pb::SessionTab& tab1_2 = | 2091 const sync_pb::SessionTab& tab1_2 = |
| 1936 out[4].sync_data().GetSpecifics().session().tab(); | 2092 out[3].sync_data().GetSpecifics().session().tab(); |
| 1937 ASSERT_EQ(2, tab1_2.navigation_size()); | 2093 ASSERT_EQ(2, tab1_2.navigation_size()); |
| 1938 EXPECT_EQ(foo1.spec(), tab1_2.navigation(0).virtual_url()); | 2094 EXPECT_EQ(foo1.spec(), tab1_2.navigation(0).virtual_url()); |
| 1939 EXPECT_EQ(foo2.spec(), tab1_2.navigation(1).virtual_url()); | 2095 EXPECT_EQ(foo2.spec(), tab1_2.navigation(1).virtual_url()); |
| 1940 | 2096 |
| 1941 // Verify second tab. | 2097 // Verify second tab. |
| 1942 const sync_pb::SessionTab& tab2_1 = | 2098 const sync_pb::SessionTab& tab2_1 = |
| 1943 out[8].sync_data().GetSpecifics().session().tab(); | 2099 out[6].sync_data().GetSpecifics().session().tab(); |
| 1944 ASSERT_EQ(1, tab2_1.navigation_size()); | 2100 ASSERT_EQ(1, tab2_1.navigation_size()); |
| 1945 EXPECT_EQ(bar1.spec(), tab2_1.navigation(0).virtual_url()); | 2101 EXPECT_EQ(bar1.spec(), tab2_1.navigation(0).virtual_url()); |
| 1946 const sync_pb::SessionTab& tab2_2 = | 2102 const sync_pb::SessionTab& tab2_2 = |
| 1947 out[10].sync_data().GetSpecifics().session().tab(); | 2103 out[8].sync_data().GetSpecifics().session().tab(); |
| 1948 ASSERT_EQ(2, tab2_2.navigation_size()); | 2104 ASSERT_EQ(2, tab2_2.navigation_size()); |
| 1949 EXPECT_EQ(bar1.spec(), tab2_2.navigation(0).virtual_url()); | 2105 EXPECT_EQ(bar1.spec(), tab2_2.navigation(0).virtual_url()); |
| 1950 EXPECT_EQ(bar2.spec(), tab2_2.navigation(1).virtual_url()); | 2106 EXPECT_EQ(bar2.spec(), tab2_2.navigation(1).virtual_url()); |
| 2107 | |
| 2108 // Verify tab delegates have Sync ids. | |
| 2109 std::set<const SyncedWindowDelegate*> window_delegates = | |
| 2110 get_synced_window_getter()->GetSyncedWindowDelegates(); | |
| 2111 // Sync ids are in reverse order because tabs are inserted at the beginning | |
| 2112 // of the tab list. | |
| 2113 EXPECT_EQ(1, (*window_delegates.begin())->GetTabAt(0)->GetSyncId()); | |
| 2114 EXPECT_EQ(0, (*window_delegates.begin())->GetTabAt(1)->GetSyncId()); | |
| 1951 } | 2115 } |
| 1952 | 2116 |
| 1953 // Check that if a tab becomes uninteresting (for example no syncable URLs), | 2117 // Check that if a tab becomes uninteresting (for example no syncable URLs), |
| 1954 // we correctly remove it from the header node. | 2118 // we correctly remove it from the header node. |
| 1955 TEST_F(SessionsSyncManagerTest, TabBecomesUninteresting) { | 2119 TEST_F(SessionsSyncManagerTest, TabBecomesUninteresting) { |
| 1956 syncer::SyncChangeList out; | 2120 syncer::SyncChangeList out; |
| 1957 // Init with no local data, relies on MergeLocalSessionNoTabs. | 2121 // Init with no local data, relies on MergeLocalSessionNoTabs. |
| 1958 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &out); | 2122 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &out); |
| 1959 ASSERT_FALSE(manager()->current_machine_tag().empty()); | 2123 ASSERT_FALSE(manager()->current_machine_tag().empty()); |
| 1960 ASSERT_EQ(2U, out.size()); | 2124 ASSERT_EQ(2U, out.size()); |
| 1961 out.clear(); | 2125 out.clear(); |
| 1962 | 2126 |
| 1963 const GURL kValidUrl("http://foo/1"); | 2127 const GURL kValidUrl("http://foo/1"); |
| 1964 const GURL kInternalUrl("chrome://internal"); | 2128 const GURL kInternalUrl("chrome://internal"); |
| 1965 | 2129 |
| 1966 // Add an interesting tab. | 2130 // Add an interesting tab. |
| 1967 AddTab(browser(), kValidUrl); | 2131 AddTab(browser(), kValidUrl); |
| 1968 // No-op header update, tab creation, tab update, header update. | 2132 // No-op header update, tab creation, header update. |
| 1969 ASSERT_EQ(4U, out.size()); | 2133 ASSERT_EQ(3U, out.size()); |
| 1970 // The last two are the interesting updates. | 2134 // The last two are the interesting updates. |
| 1971 ASSERT_TRUE(out[2].sync_data().GetSpecifics().session().has_tab()); | 2135 ASSERT_TRUE(out[1].sync_data().GetSpecifics().session().has_tab()); |
| 1972 EXPECT_EQ(kValidUrl.spec(), out[2] | 2136 EXPECT_EQ(kValidUrl.spec(), out[1] |
| 1973 .sync_data() | 2137 .sync_data() |
| 1974 .GetSpecifics() | 2138 .GetSpecifics() |
| 1975 .session() | 2139 .session() |
| 1976 .tab() | 2140 .tab() |
| 1977 .navigation(0) | 2141 .navigation(0) |
| 1978 .virtual_url()); | 2142 .virtual_url()); |
| 1979 ASSERT_TRUE(out[3].sync_data().GetSpecifics().session().has_header()); | 2143 ASSERT_TRUE(out[2].sync_data().GetSpecifics().session().has_header()); |
| 1980 ASSERT_EQ(1, | 2144 ASSERT_EQ(1, |
| 1981 out[3].sync_data().GetSpecifics().session().header().window_size()); | 2145 out[2].sync_data().GetSpecifics().session().header().window_size()); |
| 1982 ASSERT_EQ(1, out[3] | 2146 ASSERT_EQ(1, out[2] |
| 1983 .sync_data() | 2147 .sync_data() |
| 1984 .GetSpecifics() | 2148 .GetSpecifics() |
| 1985 .session() | 2149 .session() |
| 1986 .header() | 2150 .header() |
| 1987 .window(0) | 2151 .window(0) |
| 1988 .tab_size()); | 2152 .tab_size()); |
| 1989 | 2153 |
| 1990 // Navigate five times to uninteresting urls to push the interesting one off | 2154 // Navigate five times to uninteresting urls to push the interesting one off |
| 1991 // the back of the stack. | 2155 // the back of the stack. |
| 1992 NavigateAndCommitActiveTab(kInternalUrl); | 2156 NavigateAndCommitActiveTab(kInternalUrl); |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 2008 | 2172 |
| 2009 // Ensure model association associates the pre-existing tabs. | 2173 // Ensure model association associates the pre-existing tabs. |
| 2010 TEST_F(SessionsSyncManagerTest, MergeLocalSessionExistingTabs) { | 2174 TEST_F(SessionsSyncManagerTest, MergeLocalSessionExistingTabs) { |
| 2011 AddTab(browser(), GURL("http://foo1")); | 2175 AddTab(browser(), GURL("http://foo1")); |
| 2012 NavigateAndCommitActiveTab(GURL("http://foo2")); // Adds back entry. | 2176 NavigateAndCommitActiveTab(GURL("http://foo2")); // Adds back entry. |
| 2013 AddTab(browser(), GURL("http://bar1")); | 2177 AddTab(browser(), GURL("http://bar1")); |
| 2014 NavigateAndCommitActiveTab(GURL("http://bar2")); // Adds back entry. | 2178 NavigateAndCommitActiveTab(GURL("http://bar2")); // Adds back entry. |
| 2015 | 2179 |
| 2016 syncer::SyncChangeList out; | 2180 syncer::SyncChangeList out; |
| 2017 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &out); | 2181 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &out); |
| 2018 ASSERT_EQ(6U, out.size()); | 2182 ASSERT_EQ(4U, out.size()); // Header creation, add two tabs, header update |
| 2019 | 2183 |
| 2020 // Check that this machine's data is not included in the foreign windows. | 2184 // Check that this machine's data is not included in the foreign windows. |
| 2021 std::vector<const SyncedSession*> foreign_sessions; | 2185 std::vector<const SyncedSession*> foreign_sessions; |
| 2022 ASSERT_FALSE(manager()->GetAllForeignSessions(&foreign_sessions)); | 2186 ASSERT_FALSE(manager()->GetAllForeignSessions(&foreign_sessions)); |
| 2023 | 2187 |
| 2024 // Verify the header. | 2188 // Verify the header. |
| 2025 EXPECT_TRUE(out[0].IsValid()); | 2189 EXPECT_TRUE(out[0].IsValid()); |
| 2026 EXPECT_EQ(SyncChange::ACTION_ADD, out[0].change_type()); | 2190 EXPECT_EQ(SyncChange::ACTION_ADD, out[0].change_type()); |
| 2027 const SyncData data(out[0].sync_data()); | 2191 const SyncData data(out[0].sync_data()); |
| 2028 EXPECT_EQ(manager()->current_machine_tag(), | 2192 EXPECT_EQ(manager()->current_machine_tag(), |
| 2029 syncer::SyncDataLocal(data).GetTag()); | 2193 syncer::SyncDataLocal(data).GetTag()); |
| 2030 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); | 2194 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); |
| 2031 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); | 2195 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); |
| 2032 EXPECT_TRUE(specifics.has_header()); | 2196 EXPECT_TRUE(specifics.has_header()); |
| 2033 const sync_pb::SessionHeader& header_s = specifics.header(); | 2197 const sync_pb::SessionHeader& header_s = specifics.header(); |
| 2034 EXPECT_TRUE(header_s.has_device_type()); | 2198 EXPECT_TRUE(header_s.has_device_type()); |
| 2035 EXPECT_EQ(GetLocalDeviceInfo()->client_name(), header_s.client_name()); | 2199 EXPECT_EQ(GetLocalDeviceInfo()->client_name(), header_s.client_name()); |
| 2036 EXPECT_EQ(0, header_s.window_size()); | 2200 EXPECT_EQ(0, header_s.window_size()); |
| 2037 | 2201 |
| 2038 // Verify the tab node creations and updates with content. | 2202 // Verify the tab node creations and updates with content. |
| 2039 for (int i = 1; i < 5; i++) { | 2203 for (int i = 1; i < 3; i++) { |
| 2040 EXPECT_TRUE(out[i].IsValid()); | 2204 EXPECT_TRUE(out[i].IsValid()); |
| 2041 const SyncData data(out[i].sync_data()); | 2205 const SyncData data(out[i].sync_data()); |
| 2042 EXPECT_TRUE(base::StartsWith(syncer::SyncDataLocal(data).GetTag(), | 2206 EXPECT_TRUE(base::StartsWith(syncer::SyncDataLocal(data).GetTag(), |
| 2043 manager()->current_machine_tag(), | 2207 manager()->current_machine_tag(), |
| 2044 base::CompareCase::SENSITIVE)); | 2208 base::CompareCase::SENSITIVE)); |
| 2045 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); | 2209 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); |
| 2046 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); | 2210 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); |
| 2047 if (i % 2 == 1) { | 2211 EXPECT_EQ(SyncChange::ACTION_ADD, out[i].change_type()); |
| 2048 EXPECT_EQ(SyncChange::ACTION_ADD, out[i].change_type()); | |
| 2049 } else { | |
| 2050 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[i].change_type()); | |
| 2051 EXPECT_TRUE(specifics.has_tab()); | |
| 2052 } | |
| 2053 } | 2212 } |
| 2054 | 2213 |
| 2055 // Verify the header was updated to reflect new window state. | 2214 // Verify the header was updated to reflect new window state. |
| 2056 EXPECT_TRUE(out[5].IsValid()); | 2215 EXPECT_TRUE(out[3].IsValid()); |
| 2057 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[5].change_type()); | 2216 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[3].change_type()); |
| 2058 const SyncData data_2(out[5].sync_data()); | 2217 const SyncData data_2(out[3].sync_data()); |
| 2059 EXPECT_EQ(manager()->current_machine_tag(), | 2218 EXPECT_EQ(manager()->current_machine_tag(), |
| 2060 syncer::SyncDataLocal(data_2).GetTag()); | 2219 syncer::SyncDataLocal(data_2).GetTag()); |
| 2061 const sync_pb::SessionSpecifics& specifics2(data_2.GetSpecifics().session()); | 2220 const sync_pb::SessionSpecifics& specifics2(data_2.GetSpecifics().session()); |
| 2062 EXPECT_EQ(manager()->current_machine_tag(), specifics2.session_tag()); | 2221 EXPECT_EQ(manager()->current_machine_tag(), specifics2.session_tag()); |
| 2063 EXPECT_TRUE(specifics2.has_header()); | 2222 EXPECT_TRUE(specifics2.has_header()); |
| 2064 const sync_pb::SessionHeader& header_s2 = specifics2.header(); | 2223 const sync_pb::SessionHeader& header_s2 = specifics2.header(); |
| 2065 EXPECT_EQ(1, header_s2.window_size()); | 2224 EXPECT_EQ(1, header_s2.window_size()); |
| 2066 | 2225 |
| 2067 // Verify TabLinks. | 2226 // Verify tab delegates have Sync ids. |
| 2068 SessionsSyncManager::TabLinksMap tab_map = manager()->local_tab_map_; | 2227 std::set<const SyncedWindowDelegate*> window_delegates = |
| 2069 ASSERT_EQ(2U, tab_map.size()); | 2228 get_synced_window_getter()->GetSyncedWindowDelegates(); |
| 2070 // Tabs are ordered by sessionid in tab_map, so should be able to traverse | 2229 // Sync ids are in same order as tabs because the association happens after |
| 2071 // the tree based on order of tabs created | 2230 // the tabs are opened (and therefore iterates through same order). |
| 2072 SessionsSyncManager::TabLinksMap::iterator iter = tab_map.begin(); | 2231 EXPECT_EQ(0, (*window_delegates.begin())->GetTabAt(0)->GetSyncId()); |
| 2073 ASSERT_EQ(2, iter->second->tab()->GetEntryCount()); | 2232 EXPECT_EQ(1, (*window_delegates.begin())->GetTabAt(1)->GetSyncId()); |
| 2074 EXPECT_EQ(GURL("http://foo1"), iter->second->tab()->GetVirtualURLAtIndex(0)); | |
| 2075 EXPECT_EQ(GURL("http://foo2"), iter->second->tab()->GetVirtualURLAtIndex(1)); | |
| 2076 iter++; | |
| 2077 ASSERT_EQ(2, iter->second->tab()->GetEntryCount()); | |
| 2078 EXPECT_EQ(GURL("http://bar1"), iter->second->tab()->GetVirtualURLAtIndex(0)); | |
| 2079 EXPECT_EQ(GURL("http://bar2"), iter->second->tab()->GetVirtualURLAtIndex(1)); | |
| 2080 } | 2233 } |
| 2081 | 2234 |
| 2082 TEST_F(SessionsSyncManagerTest, ForeignSessionModifiedTime) { | 2235 TEST_F(SessionsSyncManagerTest, ForeignSessionModifiedTime) { |
| 2083 syncer::SyncDataList foreign_data; | 2236 syncer::SyncDataList foreign_data; |
| 2084 base::Time newest_time = base::Time::Now() - base::TimeDelta::FromDays(1); | 2237 base::Time newest_time = base::Time::Now() - base::TimeDelta::FromDays(1); |
| 2085 base::Time middle_time = base::Time::Now() - base::TimeDelta::FromDays(2); | 2238 base::Time middle_time = base::Time::Now() - base::TimeDelta::FromDays(2); |
| 2086 base::Time oldest_time = base::Time::Now() - base::TimeDelta::FromDays(3); | 2239 base::Time oldest_time = base::Time::Now() - base::TimeDelta::FromDays(3); |
| 2087 | 2240 |
| 2088 { | 2241 { |
| 2089 std::string session_tag = "tag1"; | 2242 std::string session_tag = "tag1"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2172 | 2325 |
| 2173 // Now garbage collect and verify the non-stale session is still there. | 2326 // Now garbage collect and verify the non-stale session is still there. |
| 2174 manager()->DoGarbageCollection(); | 2327 manager()->DoGarbageCollection(); |
| 2175 ASSERT_EQ(5U, output.size()); | 2328 ASSERT_EQ(5U, output.size()); |
| 2176 EXPECT_EQ(SyncChange::ACTION_DELETE, output[0].change_type()); | 2329 EXPECT_EQ(SyncChange::ACTION_DELETE, output[0].change_type()); |
| 2177 const SyncData data(output[0].sync_data()); | 2330 const SyncData data(output[0].sync_data()); |
| 2178 EXPECT_EQ(tag1, syncer::SyncDataLocal(data).GetTag()); | 2331 EXPECT_EQ(tag1, syncer::SyncDataLocal(data).GetTag()); |
| 2179 for (int i = 1; i < 5; i++) { | 2332 for (int i = 1; i < 5; i++) { |
| 2180 EXPECT_EQ(SyncChange::ACTION_DELETE, output[i].change_type()); | 2333 EXPECT_EQ(SyncChange::ACTION_DELETE, output[i].change_type()); |
| 2181 const SyncData data(output[i].sync_data()); | 2334 const SyncData data(output[i].sync_data()); |
| 2182 EXPECT_EQ(TabNodePool::TabIdToTag(tag1, i), | 2335 EXPECT_EQ(TabNodeIdToTag(tag1, i), syncer::SyncDataLocal(data).GetTag()); |
| 2183 syncer::SyncDataLocal(data).GetTag()); | |
| 2184 } | 2336 } |
| 2185 | 2337 |
| 2186 ASSERT_TRUE(manager()->GetAllForeignSessions(&foreign_sessions)); | 2338 ASSERT_TRUE(manager()->GetAllForeignSessions(&foreign_sessions)); |
| 2187 ASSERT_EQ(1U, foreign_sessions.size()); | 2339 ASSERT_EQ(1U, foreign_sessions.size()); |
| 2188 std::vector<std::vector<SessionID::id_type> > session_reference; | 2340 std::vector<std::vector<SessionID::id_type> > session_reference; |
| 2189 session_reference.push_back(tab_list2); | 2341 session_reference.push_back(tab_list2); |
| 2190 helper()->VerifySyncedSession(tag2, session_reference, | 2342 helper()->VerifySyncedSession(tag2, session_reference, |
| 2191 *(foreign_sessions[0])); | 2343 *(foreign_sessions[0])); |
| 2192 } | 2344 } |
| 2193 | 2345 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2296 } | 2448 } |
| 2297 | 2449 |
| 2298 // Test that swapping WebContents for a tab is properly observed and handled | 2450 // Test that swapping WebContents for a tab is properly observed and handled |
| 2299 // by the SessionsSyncManager. | 2451 // by the SessionsSyncManager. |
| 2300 TEST_F(SessionsSyncManagerTest, CheckPrerenderedWebContentsSwap) { | 2452 TEST_F(SessionsSyncManagerTest, CheckPrerenderedWebContentsSwap) { |
| 2301 AddTab(browser(), GURL("http://foo1")); | 2453 AddTab(browser(), GURL("http://foo1")); |
| 2302 NavigateAndCommitActiveTab(GURL("http://foo2")); | 2454 NavigateAndCommitActiveTab(GURL("http://foo2")); |
| 2303 | 2455 |
| 2304 syncer::SyncChangeList out; | 2456 syncer::SyncChangeList out; |
| 2305 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &out); | 2457 InitWithSyncDataTakeOutput(syncer::SyncDataList(), &out); |
| 2306 ASSERT_EQ(4U, out.size()); // Header, tab ADD, tab UPDATE, header UPDATE. | 2458 ASSERT_EQ(3U, out.size()); // Header ADD, tab ADD, header UPDATE. |
| 2459 out.clear(); | |
| 2307 | 2460 |
| 2308 // To simulate WebContents swap during prerendering, create new WebContents | 2461 // To simulate WebContents swap during prerendering, create new WebContents |
| 2309 // and swap with old WebContents. | 2462 // and swap with old WebContents. |
| 2310 std::unique_ptr<content::WebContents> old_web_contents; | 2463 std::unique_ptr<content::WebContents> old_web_contents; |
| 2311 old_web_contents.reset(browser()->tab_strip_model()->GetActiveWebContents()); | 2464 old_web_contents.reset(browser()->tab_strip_model()->GetActiveWebContents()); |
| 2312 | 2465 |
| 2313 // Create new WebContents, with the required tab helpers. | 2466 // Create new WebContents, with the required tab helpers. |
| 2314 WebContents* new_web_contents = WebContents::CreateWithSessionStorage( | 2467 WebContents* new_web_contents = WebContents::CreateWithSessionStorage( |
| 2315 WebContents::CreateParams(profile()), | 2468 WebContents::CreateParams(profile()), |
| 2316 old_web_contents->GetController().GetSessionStorageNamespaceMap()); | 2469 old_web_contents->GetController().GetSessionStorageNamespaceMap()); |
| 2317 SessionTabHelper::CreateForWebContents(new_web_contents); | 2470 SessionTabHelper::CreateForWebContents(new_web_contents); |
| 2318 TabContentsSyncedTabDelegate::CreateForWebContents(new_web_contents); | 2471 TabContentsSyncedTabDelegate::CreateForWebContents(new_web_contents); |
| 2319 new_web_contents->GetController() | 2472 new_web_contents->GetController() |
| 2320 .CopyStateFrom(old_web_contents->GetController()); | 2473 .CopyStateFrom(old_web_contents->GetController()); |
| 2321 | 2474 |
| 2322 // Swap the WebContents. | 2475 // Swap the WebContents. |
| 2323 int index = browser()->tab_strip_model()->GetIndexOfWebContents( | 2476 int index = browser()->tab_strip_model()->GetIndexOfWebContents( |
| 2324 old_web_contents.get()); | 2477 old_web_contents.get()); |
| 2325 browser()->tab_strip_model()->ReplaceWebContentsAt(index, new_web_contents); | 2478 browser()->tab_strip_model()->ReplaceWebContentsAt(index, new_web_contents); |
| 2326 | 2479 |
| 2327 ASSERT_EQ(9U, out.size()); | 2480 ASSERT_EQ(4U, out.size()); |
| 2328 EXPECT_EQ(SyncChange::ACTION_ADD, out[4].change_type()); | 2481 EXPECT_EQ(SyncChange::ACTION_ADD, out[0].change_type()); |
| 2329 EXPECT_EQ(SyncChange::ACTION_UPDATE, out[5].change_type()); | 2482 out.clear(); |
| 2330 | 2483 |
| 2331 // Navigate away. | 2484 // Navigate away. +1 tab updates, 1 header update. |
| 2332 NavigateAndCommitActiveTab(GURL("http://bar2")); | 2485 NavigateAndCommitActiveTab(GURL("http://bar2")); |
| 2333 | 2486 |
| 2334 // Delete old WebContents. This should not crash. | 2487 // Delete old WebContents. This should not crash. |
| 2488 // +1 no-op header update. | |
| 2335 old_web_contents.reset(); | 2489 old_web_contents.reset(); |
| 2336 | 2490 |
| 2337 // Try more navigations and verify output size. This can also reveal | 2491 // Try more navigations and verify output size. This can also reveal |
| 2338 // bugs (leaks) on memcheck bots if the SessionSyncManager | 2492 // bugs (leaks) on memcheck bots if the SessionSyncManager |
| 2339 // didn't properly clean up the tab pool or session tracker. | 2493 // didn't properly clean up the tab pool or session tracker. |
| 2494 // +1 tab updates, 1 header update. | |
| 2340 NavigateAndCommitActiveTab(GURL("http://bar3")); | 2495 NavigateAndCommitActiveTab(GURL("http://bar3")); |
| 2341 | 2496 |
| 2497 // +1 no-op header update, tab add, header update. | |
| 2342 AddTab(browser(), GURL("http://bar4")); | 2498 AddTab(browser(), GURL("http://bar4")); |
| 2499 // +1 tab update, header update. | |
| 2343 NavigateAndCommitActiveTab(GURL("http://bar5")); | 2500 NavigateAndCommitActiveTab(GURL("http://bar5")); |
| 2344 ASSERT_EQ(19U, out.size()); | 2501 ASSERT_EQ(10U, out.size()); |
| 2345 } | 2502 } |
| 2346 | 2503 |
| 2347 // Test that NOTIFICATION_FOREIGN_SESSION_UPDATED is sent when processing | 2504 // Test that NOTIFICATION_FOREIGN_SESSION_UPDATED is sent when processing |
| 2348 // sync changes. | 2505 // sync changes. |
| 2349 TEST_F(SessionsSyncManagerTest, NotifiedOfUpdates) { | 2506 TEST_F(SessionsSyncManagerTest, NotifiedOfUpdates) { |
| 2350 ASSERT_FALSE(observer()->notified_of_update()); | 2507 ASSERT_FALSE(observer()->notified_of_update()); |
| 2351 InitWithNoSyncData(); | 2508 InitWithNoSyncData(); |
| 2352 | 2509 |
| 2353 SessionID::id_type n[] = {5}; | 2510 SessionID::id_type n[] = {5}; |
| 2354 std::vector<sync_pb::SessionSpecifics> tabs1; | 2511 std::vector<sync_pb::SessionSpecifics> tabs1; |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2603 base::Time last_time; | 2760 base::Time last_time; |
| 2604 for (size_t i = 0; i < tabs.size(); ++i) { | 2761 for (size_t i = 0; i < tabs.size(); ++i) { |
| 2605 base::Time this_time = tabs[i]->timestamp; | 2762 base::Time this_time = tabs[i]->timestamp; |
| 2606 if (i > 0) | 2763 if (i > 0) |
| 2607 ASSERT_GE(last_time, this_time); | 2764 ASSERT_GE(last_time, this_time); |
| 2608 last_time = tabs[i]->timestamp; | 2765 last_time = tabs[i]->timestamp; |
| 2609 } | 2766 } |
| 2610 } | 2767 } |
| 2611 | 2768 |
| 2612 } // namespace sync_sessions | 2769 } // namespace sync_sessions |
| OLD | NEW |