/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-09-15 * Changed: 2020-09-15 * * */ #include #include "../../../../../source/boxing/String.hpp" #include "../../../../../source/logic/State.hpp" #include "../../../../../source/serialization/json/logic/SerializableJSONState.hpp" namespace { class SerializableJSONStateTest : public ::testing::Test { protected: SerializableJSONStateTest() = default; ~SerializableJSONStateTest() override = default; void SetUp() override {} void TearDown() override {} }; TEST_F(SerializableJSONStateTest, marshal) { std::shared_ptr x = std::make_shared("A"); x->addStateConnection(std::make_shared("AB", "B")); x->addStateConnection(std::make_shared("AC", "C")); ls_std::SerializableJSONState serializable {x}; ls_std::byte_field jsonString = serializable.marshal(); ASSERT_TRUE(!jsonString.empty()); std::string expectedJSONString = R"({"connectedStates":{"AB":{"condition":false,"connectionId":"AB","stateId":"B"},"AC":{"condition":false,"connectionId":"AC","stateId":"C"}},"id":"A"})"; ASSERT_STREQ(expectedJSONString.c_str(), jsonString.c_str()); } TEST_F(SerializableJSONStateTest, unmarshal) { std::shared_ptr x = std::make_shared("A"); ls_std::SerializableJSONState serializable {x}; // before ASSERT_STREQ("A", x->getId().c_str()); ASSERT_TRUE(x->getConnectedStates().empty()); // after std::string jsonString = R"({"id":"A","connectedStates":{"AB":{"condition":false,"connectionId":"AB","stateId":"B"}}})"; serializable.unmarshal(jsonString); ASSERT_STREQ("A", x->getId().c_str()); ASSERT_EQ(1, x->getConnectedStates().size()); ASSERT_STREQ("AB", x->getConnectedStates().at("AB")->getConnectionId().c_str()); ASSERT_FALSE(x->getConnectedStates().at("AB")->isPassable()); ASSERT_STREQ("B", x->getConnectedStates().at("AB")->getStateId().c_str()); } }