blob: f63439c314c4ad5eba7c36d974b80df324b16676 [file] [log] [blame]
Chris Masoneb925cc82011-06-22 15:39:57 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/property_store_unittest.h"
6
7#include <map>
8#include <string>
Chris Masone889666b2011-07-03 12:58:50 -07009#include <utility>
Chris Masoneb925cc82011-06-22 15:39:57 -070010#include <vector>
11
12#include <dbus-c++/dbus.h>
13#include <gtest/gtest.h>
14#include <gmock/gmock.h>
15
16#include "shill/dbus_adaptor.h"
17#include "shill/error.h"
18#include "shill/manager.h"
19#include "shill/mock_control.h"
20#include "shill/property_store.h"
21#include "shill/shill_event.h"
22
Chris Masone889666b2011-07-03 12:58:50 -070023using std::make_pair;
Chris Masoneb925cc82011-06-22 15:39:57 -070024using std::map;
Chris Masone889666b2011-07-03 12:58:50 -070025using std::string;
Chris Masoneb925cc82011-06-22 15:39:57 -070026using std::vector;
Chris Masone8a56ad62011-07-02 15:27:57 -070027using ::testing::Values;
Chris Masoneb925cc82011-06-22 15:39:57 -070028
29namespace shill {
30
31// static
32const ::DBus::Variant PropertyStoreTest::kBoolV = DBusAdaptor::BoolToVariant(0);
33// static
34const ::DBus::Variant PropertyStoreTest::kByteV = DBusAdaptor::ByteToVariant(0);
35// static
36const ::DBus::Variant PropertyStoreTest::kInt16V =
37 DBusAdaptor::Int16ToVariant(0);
38// static
39const ::DBus::Variant PropertyStoreTest::kInt32V =
40 DBusAdaptor::Int32ToVariant(0);
41// static
42const ::DBus::Variant PropertyStoreTest::kStringV =
43 DBusAdaptor::StringToVariant("");
44// static
45const ::DBus::Variant PropertyStoreTest::kStringmapV =
Chris Masonea8a2c252011-06-27 22:16:30 -070046 DBusAdaptor::StringmapToVariant(Stringmap());
Chris Masoneb925cc82011-06-22 15:39:57 -070047// static
48const ::DBus::Variant PropertyStoreTest::kStringmapsV =
Chris Masone889666b2011-07-03 12:58:50 -070049 DBusAdaptor::StringmapsToVariant(Stringmaps());
Chris Masoneb925cc82011-06-22 15:39:57 -070050// static
51const ::DBus::Variant PropertyStoreTest::kStringsV =
Chris Masonea8a2c252011-06-27 22:16:30 -070052 DBusAdaptor::StringsToVariant(Strings(1, ""));
Chris Masoneb925cc82011-06-22 15:39:57 -070053// static
Chris Masone889666b2011-07-03 12:58:50 -070054const ::DBus::Variant PropertyStoreTest::kStrIntPairV =
55 DBusAdaptor::StrIntPairToVariant(StrIntPair(make_pair("", ""),
56 make_pair("", 12)));
57// static
Chris Masoneb925cc82011-06-22 15:39:57 -070058const ::DBus::Variant PropertyStoreTest::kUint16V =
59 DBusAdaptor::Uint16ToVariant(0);
60// static
61const ::DBus::Variant PropertyStoreTest::kUint32V =
62 DBusAdaptor::Uint32ToVariant(0);
63
64PropertyStoreTest::PropertyStoreTest()
65 : manager_(&control_interface_, &dispatcher_),
66 invalid_args_(Error::kErrorNames[Error::kInvalidArguments]),
67 invalid_prop_(Error::kErrorNames[Error::kInvalidProperty]) {
68}
69
70PropertyStoreTest::~PropertyStoreTest() {}
71
Chris Masone8a56ad62011-07-02 15:27:57 -070072TEST_P(PropertyStoreTest, TestProperty) {
73 // Ensure that an attempt to write unknown properties returns InvalidProperty.
74 PropertyStore store;
75 ::DBus::Error error;
76 EXPECT_FALSE(DBusAdaptor::DispatchOnType(&store, "", GetParam(), &error));
77 EXPECT_EQ(invalid_prop_, error.name());
78}
79
80INSTANTIATE_TEST_CASE_P(
81 PropertyStoreTestInstance,
82 PropertyStoreTest,
83 Values(PropertyStoreTest::kBoolV,
84 PropertyStoreTest::kByteV,
85 PropertyStoreTest::kStringV,
86 PropertyStoreTest::kInt16V,
87 PropertyStoreTest::kInt32V,
Chris Masone8a56ad62011-07-02 15:27:57 -070088 PropertyStoreTest::kStringmapV,
Chris Masone889666b2011-07-03 12:58:50 -070089 PropertyStoreTest::kStringmapsV,
90 PropertyStoreTest::kStringsV,
91 PropertyStoreTest::kStrIntPairV,
92 PropertyStoreTest::kUint16V,
93 PropertyStoreTest::kUint32V));
Chris Masone8a56ad62011-07-02 15:27:57 -070094
Chris Masoneb925cc82011-06-22 15:39:57 -070095} // namespace shill