blob: 657886d3024aba10460d1dbae175155f2b0892cb [file] [log] [blame]
Thieu Le3426c8f2012-01-11 17:35:11 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Chris Masone3bd3c8c2011-06-13 08:20:26 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_PROPERTY_STORE_UNITTEST_H_
6#define SHILL_PROPERTY_STORE_UNITTEST_H_
7
8#include <map>
9#include <string>
10#include <vector>
11
Chris Masone9d779932011-08-25 16:33:41 -070012#include <base/memory/scoped_ptr.h>
Eric Shienbrood3e20a232012-02-16 11:35:56 -050013#include <base/scoped_temp_dir.h>
Chris Masone3bd3c8c2011-06-13 08:20:26 -070014#include <dbus-c++/dbus.h>
Chris Masone7156c922011-08-23 20:36:21 -070015#include <gmock/gmock.h>
Chris Masone2ae797d2011-08-23 20:41:00 -070016#include <gtest/gtest.h>
Chris Masone3bd3c8c2011-06-13 08:20:26 -070017
18#include "shill/dbus_adaptor.h"
19#include "shill/error.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070020#include "shill/event_dispatcher.h"
Chris Masone3bd3c8c2011-06-13 08:20:26 -070021#include "shill/manager.h"
22#include "shill/mock_control.h"
Chris Masone7aa5f902011-07-11 11:13:35 -070023#include "shill/mock_glib.h"
Thieu Le3426c8f2012-01-11 17:35:11 -080024#include "shill/mock_metrics.h"
Chris Masoneb925cc82011-06-22 15:39:57 -070025#include "shill/property_store.h"
Chris Masone3bd3c8c2011-06-13 08:20:26 -070026
27namespace shill {
28
Chris Masoneb925cc82011-06-22 15:39:57 -070029class PropertyStoreTest : public testing::TestWithParam< ::DBus::Variant > {
Chris Masone3bd3c8c2011-06-13 08:20:26 -070030 public:
Chris Masoneb925cc82011-06-22 15:39:57 -070031 // In real code, it's frowned upon to have non-POD static members, as there
32 // can be ordering issues if your constructors have side effects.
33 // These constructors don't, and declaring these as static lets me
34 // autogenerate a bunch of unit test code that I would otherwise need to
Gaurav Shah1b7a6162011-11-09 11:41:01 -080035 // copypaste. So I think it's safe and worth it.
Chris Masoneb925cc82011-06-22 15:39:57 -070036 static const ::DBus::Variant kBoolV;
37 static const ::DBus::Variant kByteV;
38 static const ::DBus::Variant kInt16V;
39 static const ::DBus::Variant kInt32V;
Darin Petkov63138a92012-02-06 14:09:15 +010040 static const ::DBus::Variant kKeyValueStoreV;
Chris Masoneb925cc82011-06-22 15:39:57 -070041 static const ::DBus::Variant kStringV;
42 static const ::DBus::Variant kStringmapV;
43 static const ::DBus::Variant kStringmapsV;
44 static const ::DBus::Variant kStringsV;
45 static const ::DBus::Variant kUint16V;
46 static const ::DBus::Variant kUint32V;
Paul Stewarte18c33b2012-07-10 20:48:44 -070047 static const ::DBus::Variant kUint64V;
Chris Masone3bd3c8c2011-06-13 08:20:26 -070048
Chris Masoneb925cc82011-06-22 15:39:57 -070049 PropertyStoreTest();
50 virtual ~PropertyStoreTest();
Chris Masone3bd3c8c2011-06-13 08:20:26 -070051
Chris Masone9d779932011-08-25 16:33:41 -070052 virtual void SetUp();
53
Chris Masone3bd3c8c2011-06-13 08:20:26 -070054 protected:
Chris Masone9d779932011-08-25 16:33:41 -070055 Manager *manager() { return &manager_; }
Chris Masone2176a882011-09-14 22:29:15 -070056 MockControl *control_interface() { return &control_interface_; }
57 EventDispatcher *dispatcher() { return &dispatcher_; }
58 MockGLib *glib() { return &glib_; }
Thieu Le3426c8f2012-01-11 17:35:11 -080059 MockMetrics *metrics() { return &metrics_; }
Chris Masone9d779932011-08-25 16:33:41 -070060
61 const std::string &run_path() const { return path_; }
62 const std::string &storage_path() const { return path_; }
63
mukesh agrawalffa3d042011-10-06 15:26:10 -070064 const std::string &internal_error() const { return internal_error_; }
Chris Masone9d779932011-08-25 16:33:41 -070065 const std::string &invalid_args() const { return invalid_args_; }
66 const std::string &invalid_prop() const { return invalid_prop_; }
67
Chris Masone9d779932011-08-25 16:33:41 -070068 private:
mukesh agrawalffa3d042011-10-06 15:26:10 -070069 const std::string internal_error_;
Chris Masone9d779932011-08-25 16:33:41 -070070 const std::string invalid_args_;
71 const std::string invalid_prop_;
72 ScopedTempDir dir_;
73 const std::string path_;
Chris Masone2176a882011-09-14 22:29:15 -070074 MockControl control_interface_;
75 EventDispatcher dispatcher_;
Darin Petkov58f0b6d2012-06-12 12:52:30 +020076 testing::NiceMock<MockMetrics> metrics_;
Chris Masone2176a882011-09-14 22:29:15 -070077 MockGLib glib_;
Chris Masone9d779932011-08-25 16:33:41 -070078 Manager manager_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -070079};
80
81} // namespace shill
82#endif // SHILL_PROPERTY_STORE_UNITTEST_H_