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
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/property_bag.h"
#include "testing/gtest/include/gtest/gtest.h"
TEST(PropertyBagTest, AddQueryRemove) {
PropertyBag bag;
PropertyAccessor<int> adaptor;
// Should be no match initially.
EXPECT_EQ(NULL, adaptor.GetProperty(&bag));
// Add the value and make sure we get it back.
const int kFirstValue = 1;
adaptor.SetProperty(&bag, kFirstValue);
ASSERT_TRUE(adaptor.GetProperty(&bag));
EXPECT_EQ(kFirstValue, *adaptor.GetProperty(&bag));
// Set it to a new value.
const int kSecondValue = 2;
adaptor.SetProperty(&bag, kSecondValue);
ASSERT_TRUE(adaptor.GetProperty(&bag));
EXPECT_EQ(kSecondValue, *adaptor.GetProperty(&bag));
// Remove the value and make sure it's gone.
adaptor.DeleteProperty(&bag);
EXPECT_EQ(NULL, adaptor.GetProperty(&bag));
}
TEST(PropertyBagTest, Copy) {
PropertyAccessor<int> adaptor1;
PropertyAccessor<double> adaptor2;
// Create a bag with property type 1 in it.
PropertyBag copy;
adaptor1.SetProperty(©, 22);
const int kType1Value = 10;
const double kType2Value = 2.7;
{
// Create a bag with property types 1 and 2 in it.
PropertyBag initial;
adaptor1.SetProperty(&initial, kType1Value);
adaptor2.SetProperty(&initial, kType2Value);
// Assign to the original.
copy = initial;
}
// Verify the copy got the two properties.
ASSERT_TRUE(adaptor1.GetProperty(©));
ASSERT_TRUE(adaptor2.GetProperty(©));
EXPECT_EQ(kType1Value, *adaptor1.GetProperty(©));
EXPECT_EQ(kType2Value, *adaptor2.GetProperty(©));
// Clear it out, neither property should be left.
copy = PropertyBag();
EXPECT_EQ(NULL, adaptor1.GetProperty(©));
EXPECT_EQ(NULL, adaptor2.GetProperty(©));
}
|