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

Unified Diff: ui/base/ime/candidate_window_unittest.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/ime/candidate_window.cc ('k') | ui/base/ime/chromeos/character_composer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/candidate_window_unittest.cc
diff --git a/ui/base/ime/candidate_window_unittest.cc b/ui/base/ime/candidate_window_unittest.cc
deleted file mode 100644
index 4defe56b5e062299d89b96df5b4509eee8614271..0000000000000000000000000000000000000000
--- a/ui/base/ime/candidate_window_unittest.cc
+++ /dev/null
@@ -1,262 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-// TODO(nona): Add more tests.
-
-#include "ui/base/ime/candidate_window.h"
-
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "base/logging.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/strings/utf_string_conversions.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace ui {
-
-namespace {
-
-const size_t kSampleCandidateSize = 3;
-const char* kSampleCandidate[] = {
- "Sample Candidate 1",
- "Sample Candidate 2",
- "Sample Candidate 3",
-};
-const char* kSampleDescriptionTitle[] = {
- "Sample Description Title 1",
- "Sample Description Title 2",
- "Sample Description Title 3",
-};
-const char* kSampleDescriptionBody[] = {
- "Sample Description Body 1",
- "Sample Description Body 2",
- "Sample Description Body 3",
-};
-
-}
-
-TEST(CandidateWindow, IsEqualTest) {
- CandidateWindow cw1;
- CandidateWindow cw2;
-
- const base::string16 kSampleString1 = base::UTF8ToUTF16("Sample 1");
- const base::string16 kSampleString2 = base::UTF8ToUTF16("Sample 2");
-
- EXPECT_TRUE(cw1.IsEqual(cw2));
- EXPECT_TRUE(cw2.IsEqual(cw1));
-
- cw1.set_page_size(1);
- cw2.set_page_size(2);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw2.set_page_size(1);
-
- cw1.set_cursor_position(1);
- cw2.set_cursor_position(2);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw2.set_cursor_position(1);
-
- cw1.set_is_cursor_visible(true);
- cw2.set_is_cursor_visible(false);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw2.set_is_cursor_visible(true);
-
- cw1.set_orientation(CandidateWindow::HORIZONTAL);
- cw2.set_orientation(CandidateWindow::VERTICAL);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw2.set_orientation(CandidateWindow::HORIZONTAL);
-
- cw1.set_show_window_at_composition(true);
- cw2.set_show_window_at_composition(false);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw2.set_show_window_at_composition(true);
-
- // Check equality for candidates member variable.
- CandidateWindow::Entry entry1;
- CandidateWindow::Entry entry2;
-
- cw1.mutable_candidates()->push_back(entry1);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw2.mutable_candidates()->push_back(entry2);
- EXPECT_TRUE(cw1.IsEqual(cw2));
- EXPECT_TRUE(cw2.IsEqual(cw1));
-
- entry1.value = kSampleString1;
- entry2.value = kSampleString2;
- cw1.mutable_candidates()->push_back(entry1);
- cw2.mutable_candidates()->push_back(entry2);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw1.mutable_candidates()->clear();
- cw2.mutable_candidates()->clear();
-
- entry1.label = kSampleString1;
- entry2.label = kSampleString2;
- cw1.mutable_candidates()->push_back(entry1);
- cw2.mutable_candidates()->push_back(entry2);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw1.mutable_candidates()->clear();
- cw2.mutable_candidates()->clear();
-
- entry1.annotation = kSampleString1;
- entry2.annotation = kSampleString2;
- cw1.mutable_candidates()->push_back(entry1);
- cw2.mutable_candidates()->push_back(entry2);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw1.mutable_candidates()->clear();
- cw2.mutable_candidates()->clear();
-
- entry1.description_title = kSampleString1;
- entry2.description_title = kSampleString2;
- cw1.mutable_candidates()->push_back(entry1);
- cw2.mutable_candidates()->push_back(entry2);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw1.mutable_candidates()->clear();
- cw2.mutable_candidates()->clear();
-
- entry1.description_body = kSampleString1;
- entry2.description_body = kSampleString2;
- cw1.mutable_candidates()->push_back(entry1);
- cw2.mutable_candidates()->push_back(entry2);
- EXPECT_FALSE(cw1.IsEqual(cw2));
- EXPECT_FALSE(cw2.IsEqual(cw1));
- cw1.mutable_candidates()->clear();
- cw2.mutable_candidates()->clear();
-}
-
-TEST(CandidateWindow, CopyFromTest) {
- CandidateWindow cw1;
- CandidateWindow cw2;
-
- const base::string16 kSampleString = base::UTF8ToUTF16("Sample");
-
- cw1.set_page_size(1);
- cw1.set_cursor_position(2);
- cw1.set_is_cursor_visible(false);
- cw1.set_orientation(CandidateWindow::HORIZONTAL);
- cw1.set_show_window_at_composition(false);
-
- CandidateWindow::Entry entry;
- entry.value = kSampleString;
- entry.label = kSampleString;
- entry.annotation = kSampleString;
- entry.description_title = kSampleString;
- entry.description_body = kSampleString;
- cw1.mutable_candidates()->push_back(entry);
-
- cw2.CopyFrom(cw1);
- EXPECT_TRUE(cw1.IsEqual(cw2));
-}
-
-TEST(CandidateWindow, GetInfolistEntries_DenseCase) {
- CandidateWindow candidate_window;
- candidate_window.set_page_size(10);
- for (size_t i = 0; i < kSampleCandidateSize; ++i) {
- CandidateWindow::Entry entry;
- entry.value = base::UTF8ToUTF16(kSampleCandidate[i]);
- entry.description_title = base::UTF8ToUTF16(kSampleDescriptionTitle[i]);
- entry.description_body = base::UTF8ToUTF16(kSampleDescriptionBody[i]);
- candidate_window.mutable_candidates()->push_back(entry);
- }
- candidate_window.set_cursor_position(1);
-
- std::vector<InfolistEntry> infolist_entries;
- bool has_highlighted = false;
-
- candidate_window.GetInfolistEntries(&infolist_entries, &has_highlighted);
-
- EXPECT_EQ(kSampleCandidateSize, infolist_entries.size());
- EXPECT_TRUE(has_highlighted);
- EXPECT_TRUE(infolist_entries[1].highlighted);
-}
-
-TEST(CandidateWindow, GetInfolistEntries_SparseCase) {
- CandidateWindow candidate_window;
- candidate_window.set_page_size(10);
- for (size_t i = 0; i < kSampleCandidateSize; ++i) {
- CandidateWindow::Entry entry;
- entry.value = base::UTF8ToUTF16(kSampleCandidate[i]);
- candidate_window.mutable_candidates()->push_back(entry);
- }
-
- std::vector<CandidateWindow::Entry>* candidates =
- candidate_window.mutable_candidates();
- (*candidates)[2].description_title =
- base::UTF8ToUTF16(kSampleDescriptionTitle[2]);
- (*candidates)[2].description_body =
- base::UTF8ToUTF16(kSampleDescriptionBody[2]);
-
- candidate_window.set_cursor_position(2);
-
- std::vector<InfolistEntry> infolist_entries;
- bool has_highlighted = false;
-
- candidate_window.GetInfolistEntries(&infolist_entries, &has_highlighted);
-
- // Infolist entries skips empty descriptions, so expected entry size is 1.
- EXPECT_EQ(1UL, infolist_entries.size());
- EXPECT_TRUE(has_highlighted);
- EXPECT_TRUE(infolist_entries[0].highlighted);
-}
-
-TEST(CandidateWindow, GetInfolistEntries_SparseNoSelectionCase) {
- CandidateWindow candidate_window;
- candidate_window.set_page_size(10);
-
- for (size_t i = 0; i < kSampleCandidateSize; ++i) {
- CandidateWindow::Entry entry;
- entry.value = base::UTF8ToUTF16(kSampleCandidate[i]);
- candidate_window.mutable_candidates()->push_back(entry);
- }
-
- std::vector<CandidateWindow::Entry>* candidates =
- candidate_window.mutable_candidates();
- (*candidates)[2].description_title =
- base::UTF8ToUTF16(kSampleDescriptionTitle[2]);
- (*candidates)[2].description_body =
- base::UTF8ToUTF16(kSampleDescriptionBody[2]);
-
- candidate_window.set_cursor_position(0);
-
- std::vector<InfolistEntry> infolist_entries;
- bool has_highlighted;
-
- candidate_window.GetInfolistEntries(&infolist_entries, &has_highlighted);
-
- // Infolist entries skips empty descriptions, so expected entry size is 1 and
- // no highlighted entries.
- EXPECT_EQ(1UL, infolist_entries.size());
- EXPECT_FALSE(has_highlighted);
- EXPECT_FALSE(infolist_entries[0].highlighted);
-}
-
-TEST(CandidateWindow, GetInfolistEntries_NoInfolistCase) {
- CandidateWindow candidate_window;
- candidate_window.set_page_size(10);
-
- for (size_t i = 0; i < kSampleCandidateSize; ++i) {
- CandidateWindow::Entry entry;
- entry.value = base::UTF8ToUTF16(kSampleCandidate[i]);
- candidate_window.mutable_candidates()->push_back(entry);
- }
- candidate_window.set_cursor_position(1);
-
- std::vector<InfolistEntry> infolist_entries;
- bool has_highlighted = false;
-
- candidate_window.GetInfolistEntries(&infolist_entries, &has_highlighted);
-
- EXPECT_TRUE(infolist_entries.empty());
- EXPECT_FALSE(has_highlighted);
-}
-
-} // namespace ui
« no previous file with comments | « ui/base/ime/candidate_window.cc ('k') | ui/base/ime/chromeos/character_composer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698