1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/base/clipboard/custom_data_helper.h"
#include <utility>
#include "base/pickle.h"
#include "base/strings/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"
using base::ASCIIToUTF16;
namespace ui {
namespace {
void PrepareEmptyTestData(base::Pickle* pickle) {
std::unordered_map<std::u16string, std::u16string> data;
WriteCustomDataToPickle(data, pickle);
}
void PrepareTestData(base::Pickle* pickle) {
std::unordered_map<std::u16string, std::u16string> data = {
{u"abc", std::u16string()}, {u"de", u"1"}, {u"f", u"23"}};
WriteCustomDataToPickle(data, pickle);
}
TEST(CustomDataHelperTest, EmptyReadTypes) {
base::Pickle pickle;
PrepareEmptyTestData(&pickle);
std::vector<std::u16string> types;
ReadCustomDataTypes(pickle, &types);
EXPECT_EQ(0u, types.size());
}
TEST(CustomDataHelperTest, EmptyReadSingleType) {
base::Pickle pickle;
PrepareEmptyTestData(&pickle);
EXPECT_EQ(std::nullopt, ReadCustomDataForType(pickle, u"f"));
}
TEST(CustomDataHelperTest, EmptyReadMap) {
base::Pickle pickle;
PrepareEmptyTestData(&pickle);
EXPECT_EQ((std::unordered_map<std::u16string, std::u16string>()),
ReadCustomDataIntoMap(pickle));
}
TEST(CustomDataHelperTest, ReadTypes) {
base::Pickle pickle;
PrepareTestData(&pickle);
std::vector<std::u16string> types;
ReadCustomDataTypes(pickle, &types);
std::vector<std::u16string> expected = {u"abc", u"de", u"f"};
// We need to sort to compare equality, as the underlying custom data is
// unordered
std::sort(types.begin(), types.end());
std::sort(expected.begin(), expected.end());
EXPECT_EQ(expected, types);
}
TEST(CustomDataHelperTest, ReadSingleType) {
base::Pickle pickle;
PrepareTestData(&pickle);
EXPECT_EQ(u"", ReadCustomDataForType(pickle, u"abc"));
EXPECT_EQ(u"1", ReadCustomDataForType(pickle, u"de"));
EXPECT_EQ(u"23", ReadCustomDataForType(pickle, u"f"));
}
TEST(CustomDataHelperTest, ReadMap) {
base::Pickle pickle;
PrepareTestData(&pickle);
const std::unordered_map<std::u16string, std::u16string> expected = {
{u"abc", std::u16string()}, {u"de", u"1"}, {u"f", u"23"}};
EXPECT_EQ(expected, ReadCustomDataIntoMap(pickle));
}
TEST(CustomDataHelperTest, BadReadTypes) {
// ReadCustomDataTypes makes the additional guarantee that the contents of the
// result vector will not change if the input is malformed.
const std::vector<std::u16string> expected = {u"abc", u"de", u"f"};
{
base::Pickle malformed;
malformed.WriteUInt32(1000);
malformed.WriteString16(u"hello");
malformed.WriteString16(u"world");
std::vector<std::u16string> actual = expected;
ReadCustomDataTypes(malformed, &actual);
EXPECT_EQ(expected, actual);
}
{
base::Pickle malformed;
malformed.WriteUInt32(1);
malformed.WriteString16(u"hello");
std::vector<std::u16string> actual = expected;
ReadCustomDataTypes(malformed, &actual);
EXPECT_EQ(expected, actual);
}
}
TEST(CustomDataHelperTest, BadPickle) {
std::unordered_map<std::u16string, std::u16string> result_map;
{
base::Pickle malformed;
malformed.WriteUInt32(1000);
malformed.WriteString16(u"hello");
malformed.WriteString16(u"world");
EXPECT_EQ(std::nullopt, ReadCustomDataForType(malformed, u"f"));
EXPECT_EQ(std::nullopt, ReadCustomDataIntoMap(malformed));
}
{
base::Pickle malformed;
malformed.WriteUInt32(1);
malformed.WriteString16(u"hello");
EXPECT_EQ(std::nullopt, ReadCustomDataForType(malformed, u"f"));
EXPECT_EQ(std::nullopt, ReadCustomDataIntoMap(malformed));
}
}
} // namespace
} // namespace ui
|