summaryrefslogtreecommitdiffstats
path: root/test/TestManager.cpp
diff options
context:
space:
mode:
authorLei YU <mine260309@gmail.com>2017-08-01 17:10:17 +0800
committerLei YU <mine260309@gmail.com>2017-10-16 20:41:01 +0800
commit710d49be2fc33f22e8f4a7ed43774fd9293d083f (patch)
tree7f12eab17509e59546fb5825adb4d36cc6cfd866 /test/TestManager.cpp
parentad14354fc17811ae585f13b1d52a275cf3daff35 (diff)
downloadphosphor-time-manager-710d49be2fc33f22e8f4a7ed43774fd9293d083f.tar.gz
phosphor-time-manager-710d49be2fc33f22e8f4a7ed43774fd9293d083f.zip
Use new settings API
The new time manager code was using the old settings daemon. Now it uses the new settings API. Change-Id: Id551d97c28a6cfbb81c87118b26292b1b5574e93 Signed-off-by: Lei YU <mine260309@gmail.com>
Diffstat (limited to 'test/TestManager.cpp')
-rw-r--r--test/TestManager.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/TestManager.cpp b/test/TestManager.cpp
index d87ca39..d8c51ca 100644
--- a/test/TestManager.cpp
+++ b/test/TestManager.cpp
@@ -31,7 +31,7 @@ class TestManager : public testing::Test
}
// Proxies for Manager's private members and functions
- Mode getTimeMode()
+ Mode getTimeMode()
{
return manager.timeMode;
}
@@ -94,10 +94,10 @@ TEST_F(TestManager, DISABLED_propertyChanged)
EXPECT_CALL(listener2, onOwnerChanged(Owner::Host)).Times(1);
notifyPropertyChanged(
- "time_mode",
+ "TimeSyncMethod",
"xyz.openbmc_project.Time.Synchronization.Method.Manual");
notifyPropertyChanged(
- "time_owner",
+ "TimeOwner",
"xyz.openbmc_project.Time.Owner.Owners.Host");
EXPECT_EQ("", getRequestedMode());
@@ -113,10 +113,10 @@ TEST_F(TestManager, DISABLED_propertyChanged)
EXPECT_CALL(listener2, onOwnerChanged(Owner::Host)).Times(0);
notifyPropertyChanged(
- "time_mode",
+ "TimeSyncMethod",
"xyz.openbmc_project.Time.Synchronization.Method.NTP");
notifyPropertyChanged(
- "time_owner",
+ "TimeOwner",
"xyz.openbmc_project.Time.Owner.Owners.Split");
EXPECT_EQ("xyz.openbmc_project.Time.Synchronization.Method.NTP",
@@ -147,10 +147,10 @@ TEST_F(TestManager, DISABLED_propertyChangedAndChangedbackWhenHostOn)
{
// Property is now MANUAL/HOST
notifyPropertyChanged(
- "time_mode",
+ "TimeSyncMethod",
"xyz.openbmc_project.Time.Synchronization.Method.Manual");
notifyPropertyChanged(
- "time_owner",
+ "TimeOwner",
"xyz.openbmc_project.Time.Owner.Owners.Host");
// Set host on
@@ -163,10 +163,10 @@ TEST_F(TestManager, DISABLED_propertyChangedAndChangedbackWhenHostOn)
EXPECT_CALL(listener2, onOwnerChanged(_)).Times(0);
notifyPropertyChanged(
- "time_mode",
+ "TimeSyncMethod",
"xyz.openbmc_project.Time.Synchronization.Method.NTP");
notifyPropertyChanged(
- "time_owner",
+ "TimeOwner",
"xyz.openbmc_project.Time.Owner.Owners.Split");
// Saved as requested mode/owner
@@ -177,10 +177,10 @@ TEST_F(TestManager, DISABLED_propertyChangedAndChangedbackWhenHostOn)
// Property changed back to MANUAL/HOST
notifyPropertyChanged(
- "time_mode",
+ "TimeSyncMethod",
"xyz.openbmc_project.Time.Synchronization.Method.Manual");
notifyPropertyChanged(
- "time_owner",
+ "TimeOwner",
"xyz.openbmc_project.Time.Owner.Owners.Host");
// Requested mode/owner shall be updated
OpenPOWER on IntegriCloud