blob: 2717f7a0ae4843af1aefec04b260e52a0107fccd [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()
Chris Masone2ae797d2011-08-23 20:41:00 -070065 : manager_(&control_interface_,
66 &dispatcher_,
67 &glib_,
68 run_dir_.path().value(),
69 storage_dir_.path().value(),
70 string()),
Darin Petkove4c0ace2011-08-24 10:32:46 -070071 invalid_args_(Error::GetName(Error::kInvalidArguments)),
72 invalid_prop_(Error::GetName(Error::kInvalidProperty)) {
Chris Masoneb925cc82011-06-22 15:39:57 -070073}
74
75PropertyStoreTest::~PropertyStoreTest() {}
76
Chris Masone8a56ad62011-07-02 15:27:57 -070077TEST_P(PropertyStoreTest, TestProperty) {
78 // Ensure that an attempt to write unknown properties returns InvalidProperty.
79 PropertyStore store;
80 ::DBus::Error error;
81 EXPECT_FALSE(DBusAdaptor::DispatchOnType(&store, "", GetParam(), &error));
82 EXPECT_EQ(invalid_prop_, error.name());
83}
84
85INSTANTIATE_TEST_CASE_P(
86 PropertyStoreTestInstance,
87 PropertyStoreTest,
88 Values(PropertyStoreTest::kBoolV,
89 PropertyStoreTest::kByteV,
90 PropertyStoreTest::kStringV,
91 PropertyStoreTest::kInt16V,
92 PropertyStoreTest::kInt32V,
Chris Masone8a56ad62011-07-02 15:27:57 -070093 PropertyStoreTest::kStringmapV,
Chris Masone889666b2011-07-03 12:58:50 -070094 PropertyStoreTest::kStringmapsV,
95 PropertyStoreTest::kStringsV,
96 PropertyStoreTest::kStrIntPairV,
97 PropertyStoreTest::kUint16V,
98 PropertyStoreTest::kUint32V));
Chris Masone8a56ad62011-07-02 15:27:57 -070099
Chris Masoneb925cc82011-06-22 15:39:57 -0700100} // namespace shill