2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-02 06:55:16 +00:00

[#687] fixed unittests

This commit is contained in:
Razvan Becheriu
2022-04-22 22:03:45 +03:00
parent 7bd3e322de
commit d45fc8888e

View File

@@ -657,7 +657,7 @@ TEST_F(HttpControlSocketTest, configGet) {
ASSERT_TRUE(command); ASSERT_TRUE(command);
ASSERT_EQ(Element::string, command->getType()); ASSERT_EQ(Element::string, command->getType());
string expected = "{ \"command\": \"config-get\", " string expected = "{ \"command\": \"config-get\", "
"\"service\": [ \"foo\" ] }"; "\"remote-address\": \"127.0.0.1\", \"service\": [ \"foo\" ] }";
EXPECT_EQ(expected, command->stringValue()); EXPECT_EQ(expected, command->stringValue());
} }
@@ -684,7 +684,7 @@ TEST_F(HttpControlSocketTest, configGetCA) {
ConstElementPtr command = reflected->get("received"); ConstElementPtr command = reflected->get("received");
ASSERT_TRUE(command); ASSERT_TRUE(command);
ASSERT_EQ(Element::string, command->getType()); ASSERT_EQ(Element::string, command->getType());
string expected = "{ \"command\": \"config-get\" }"; string expected = "{ \"command\": \"config-get\", \"remote-address\": \"127.0.0.1\" }";
EXPECT_EQ(expected, command->stringValue()); EXPECT_EQ(expected, command->stringValue());
} }
@@ -715,7 +715,7 @@ TEST_F(HttpControlSocketTest, configTest) {
ASSERT_EQ(Element::string, command->getType()); ASSERT_EQ(Element::string, command->getType());
string expected = "{ \"arguments\": { \"bar\": 1 }, " string expected = "{ \"arguments\": { \"bar\": 1 }, "
"\"command\": \"config-test\", " "\"command\": \"config-test\", "
"\"service\": [ \"foo\" ] }"; "\"remote-address\": \"127.0.0.1\", \"service\": [ \"foo\" ] }";
EXPECT_EQ(expected, command->stringValue()); EXPECT_EQ(expected, command->stringValue());
} }
@@ -746,7 +746,7 @@ TEST_F(HttpControlSocketTest, configTestCA) {
ASSERT_TRUE(command); ASSERT_TRUE(command);
ASSERT_EQ(Element::string, command->getType()); ASSERT_EQ(Element::string, command->getType());
string expected = "{ \"arguments\": { \"bar\": 1 }, " string expected = "{ \"arguments\": { \"bar\": 1 }, "
"\"command\": \"config-test\" }"; "\"command\": \"config-test\", \"remote-address\": \"127.0.0.1\" }";
EXPECT_EQ(expected, command->stringValue()); EXPECT_EQ(expected, command->stringValue());
} }
@@ -777,7 +777,7 @@ TEST_F(HttpControlSocketTest, configSet) {
ASSERT_EQ(Element::string, command->getType()); ASSERT_EQ(Element::string, command->getType());
string expected = "{ \"arguments\": { \"bar\": 1 }, " string expected = "{ \"arguments\": { \"bar\": 1 }, "
"\"command\": \"config-set\", " "\"command\": \"config-set\", "
"\"service\": [ \"foo\" ] }"; "\"remote-address\": \"127.0.0.1\", \"service\": [ \"foo\" ] }";
EXPECT_EQ(expected, command->stringValue()); EXPECT_EQ(expected, command->stringValue());
} }
@@ -808,7 +808,7 @@ TEST_F(HttpControlSocketTest, configSetCA) {
ASSERT_TRUE(command); ASSERT_TRUE(command);
ASSERT_EQ(Element::string, command->getType()); ASSERT_EQ(Element::string, command->getType());
string expected = "{ \"arguments\": { \"bar\": 1 }, " string expected = "{ \"arguments\": { \"bar\": 1 }, "
"\"command\": \"config-set\" }"; "\"command\": \"config-set\", \"remote-address\": \"127.0.0.1\" }";
EXPECT_EQ(expected, command->stringValue()); EXPECT_EQ(expected, command->stringValue());
} }