X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=resource%2Funittests%2FOCPlatformTest.cpp;h=f5265857986a010ec7b89fd0acdc61660436423e;hb=8c01dff2c5bc5496f7dc1632c498943ec6ecb015;hp=2264e37cf812fb9c92c644209a9b573c5de3c7fc;hpb=935fdb9b67b6c10d007e652e9e2e028fd6ccfe09;p=platform%2Fupstream%2Fiotivity.git diff --git a/resource/unittests/OCPlatformTest.cpp b/resource/unittests/OCPlatformTest.cpp index 2264e37..f526585 100644 --- a/resource/unittests/OCPlatformTest.cpp +++ b/resource/unittests/OCPlatformTest.cpp @@ -31,7 +31,13 @@ namespace OCPlatformTest const std::string gResourceInterface = DEFAULT_INTERFACE; const uint8_t gResourceProperty = OC_DISCOVERABLE | OC_OBSERVABLE; OCResourceHandle resourceHandle; + //OCPersistent Storage Handlers + static FILE* client_open(const char *path, const char *mode) + { + std::cout << "<===Opening SVR DB file = './oic_svr_db_client.json' with mode = '"<< mode<<"' "< request) { @@ -54,18 +60,8 @@ namespace OCPlatformTest //Helper methods void DeleteDeviceInfo(OCDeviceInfo deviceInfo) { - delete[] deviceInfo.contentType; - delete[] deviceInfo.dateOfManufacture; delete[] deviceInfo.deviceName; - delete[] deviceInfo.deviceUUID; - delete[] deviceInfo.firmwareVersion; - delete[] deviceInfo.hostName; - delete[] deviceInfo.manufacturerName; - delete[] deviceInfo.manufacturerUrl; - delete[] deviceInfo.modelNumber; - delete[] deviceInfo.platformVersion; - delete[] deviceInfo.supportUrl; - delete[] deviceInfo.version; + } void DuplicateString(char ** targetString, std::string sourceString) @@ -224,6 +220,67 @@ namespace OCPlatformTest resourceHandle, uri, type, gResourceInterface, entityHandler, gResourceProperty)); } + //PersistentStorageTest + TEST(ConfigureTest, ConfigureDefaultNULLPersistentStorage) + { + PlatformConfig cfg { + OC::ServiceType::InProc, + OC::ModeType::Both, + "0.0.0.0", + 0, + OC::QualityOfService::LowQos + }; + OCPlatform::Configure(cfg); + EXPECT_NO_THROW(OCPlatform::setDefaultDeviceEntityHandler(nullptr)); + } + + //PersistentStorageTest + TEST(ConfigureTest, ConfigureNULLPersistentStorage) + { + PlatformConfig cfg { + OC::ServiceType::InProc, + OC::ModeType::Both, + "0.0.0.0", + 0, + OC::QualityOfService::LowQos, + nullptr + }; + OCPlatform::Configure(cfg); + EXPECT_NO_THROW(OCPlatform::setDefaultDeviceEntityHandler(nullptr)); + } + + //PersistentStorageTest + TEST(ConfigureTest, ConfigurePersistentStorage) + { + OCPersistentStorage ps {client_open, fread, fwrite, fclose, unlink }; + PlatformConfig cfg { + OC::ServiceType::InProc, + OC::ModeType::Both, + "0.0.0.0", + 0, + OC::QualityOfService::LowQos, + &ps + }; + OCPlatform::Configure(cfg); + EXPECT_NO_THROW(OCPlatform::setDefaultDeviceEntityHandler(nullptr)); + } + + //PersistentStorageTest + TEST(ConfigureTest, ConfigureNULLHandlersPersistentStorage) + { + OCPersistentStorage ps {client_open, nullptr, nullptr, nullptr, nullptr }; + PlatformConfig cfg { + OC::ServiceType::InProc, + OC::ModeType::Both, + "0.0.0.0", + 0, + OC::QualityOfService::LowQos, + &ps + }; + OCPlatform::Configure(cfg); + EXPECT_NO_THROW(OCPlatform::setDefaultDeviceEntityHandler(nullptr)); + } + //RegisterResourceTest TEST(RegisterResourceTest, RegisterSingleResource) @@ -476,87 +533,87 @@ namespace OCPlatformTest TEST(FindResourceTest, DISABLED_FindResourceValid) { std::ostringstream requestURI; - requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light"; + requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light"; EXPECT_EQ(OC_STACK_OK, OCPlatform::findResource("", requestURI.str(), - OC_IPV4, &foundResource)); + CT_DEFAULT, &foundResource)); } TEST(FindResourceTest, FindResourceNullResourceURI) { EXPECT_ANY_THROW(OCPlatform::findResource("", nullptr, - OC_IPV4, &foundResource)); + CT_DEFAULT, &foundResource)); } TEST(FindResourceTest, FindResourceNullResourceURI1) { std::ostringstream requestURI; - requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light"; + requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light"; EXPECT_ANY_THROW(OCPlatform::findResource(nullptr, requestURI.str(), - OC_IPV4, &foundResource)); + CT_DEFAULT, &foundResource)); } TEST(FindResourceTest, FindResourceNullHost) { std::ostringstream requestURI; - requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light"; + requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light"; EXPECT_ANY_THROW(OCPlatform::findResource(nullptr, requestURI.str(), - OC_IPV4, &foundResource)); + CT_DEFAULT, &foundResource)); } TEST(FindResourceTest, FindResourceNullresourceHandler) { std::ostringstream requestURI; - requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light"; + requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light"; EXPECT_THROW(OCPlatform::findResource("", requestURI.str(), - OC_IPV4, NULL), OC::OCException); + CT_DEFAULT, NULL), OC::OCException); } TEST(FindResourceTest, DISABLED_FindResourceWithLowQoS) { std::ostringstream requestURI; - requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light"; + requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light"; EXPECT_EQ(OC_STACK_OK, - OCPlatform::findResource("", requestURI.str(), OC_IPV4, &foundResource, + OCPlatform::findResource("", requestURI.str(), CT_DEFAULT, &foundResource, OC::QualityOfService::LowQos)); } TEST(FindResourceTest, DISABLED_FindResourceWithMidQos) { std::ostringstream requestURI; - requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light"; + requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light"; EXPECT_EQ(OC_STACK_OK, - OCPlatform::findResource("", requestURI.str(), OC_IPV4, &foundResource, + OCPlatform::findResource("", requestURI.str(), CT_DEFAULT, &foundResource, OC::QualityOfService::MidQos)); } TEST(FindResourceTest, DISABLED_FindResourceWithHighQos) { std::ostringstream requestURI; - requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light"; + requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light"; EXPECT_EQ(OC_STACK_OK, - OCPlatform::findResource("", requestURI.str(), OC_IPV4, &foundResource, + OCPlatform::findResource("", requestURI.str(), CT_DEFAULT, &foundResource, OC::QualityOfService::HighQos)); } TEST(FindResourceTest, DISABLED_FindResourceWithNaQos) { std::ostringstream requestURI; - requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light"; + requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light"; EXPECT_EQ(OC_STACK_OK, - OCPlatform::findResource("", requestURI.str(), OC_IPV4, &foundResource, + OCPlatform::findResource("", requestURI.str(), CT_DEFAULT, &foundResource, OC::QualityOfService::NaQos)); } //GetDeviceInfo Test TEST(GetDeviceInfoTest, DISABLED_GetDeviceInfoWithValidParameters) { - std::string deviceDiscoveryURI = "/oc/core/d"; + std::string deviceDiscoveryURI = "/oic/d"; PlatformConfig cfg; OCPlatform::Configure(cfg); std::ostringstream requestURI; requestURI << OC_MULTICAST_PREFIX << deviceDiscoveryURI; EXPECT_EQ(OC_STACK_OK, - OCPlatform::getDeviceInfo("", requestURI.str(), OC_IPV4, &receivedDeviceInfo)); + OCPlatform::getDeviceInfo("", requestURI.str(), CT_DEFAULT, &receivedDeviceInfo)); } TEST(GetDeviceInfoTest, GetDeviceInfoNullDeviceURI) @@ -564,66 +621,66 @@ namespace OCPlatformTest PlatformConfig cfg; OCPlatform::Configure(cfg); EXPECT_ANY_THROW( - OCPlatform::getDeviceInfo("", nullptr, OC_IPV4, &receivedDeviceInfo)); + OCPlatform::getDeviceInfo("", nullptr, CT_DEFAULT, &receivedDeviceInfo)); } TEST(GetDeviceInfoTest, GetDeviceInfoWithNullDeviceInfoHandler) { - std::string deviceDiscoveryURI = "/oc/core/d"; + std::string deviceDiscoveryURI = "/oic/d"; PlatformConfig cfg; OCPlatform::Configure(cfg); std::ostringstream requestURI; requestURI << OC_MULTICAST_PREFIX << deviceDiscoveryURI; EXPECT_THROW( - OCPlatform::getDeviceInfo("", requestURI.str(), OC_IPV4, NULL), + OCPlatform::getDeviceInfo("", requestURI.str(), CT_DEFAULT, NULL), OC::OCException); } TEST(GetDeviceInfoTest, DISABLED_GetDeviceInfoWithLowQos) { - std::string deviceDiscoveryURI = "/oc/core/d"; + std::string deviceDiscoveryURI = "/oic/d"; PlatformConfig cfg; OCPlatform::Configure(cfg); std::ostringstream requestURI; requestURI << OC_MULTICAST_PREFIX << deviceDiscoveryURI; EXPECT_EQ(OC_STACK_OK, - OCPlatform::getDeviceInfo("", requestURI.str(), OC_IPV4, &receivedDeviceInfo, + OCPlatform::getDeviceInfo("", requestURI.str(), CT_DEFAULT, &receivedDeviceInfo, OC::QualityOfService::LowQos)); } TEST(GetDeviceInfoTest, DISABLED_GetDeviceInfoWithMidQos) { - std::string deviceDiscoveryURI = "/oc/core/d"; + std::string deviceDiscoveryURI = "/oic/d"; PlatformConfig cfg; OCPlatform::Configure(cfg); std::ostringstream requestURI; requestURI << OC_MULTICAST_PREFIX << deviceDiscoveryURI; EXPECT_EQ(OC_STACK_OK, - OCPlatform::getDeviceInfo("", requestURI.str(), OC_IPV4, &receivedDeviceInfo, + OCPlatform::getDeviceInfo("", requestURI.str(), CT_DEFAULT, &receivedDeviceInfo, OC::QualityOfService::MidQos)); } TEST(GetDeviceInfoTest, DISABLED_GetDeviceInfoWithHighQos) { - std::string deviceDiscoveryURI = "/oc/core/d"; + std::string deviceDiscoveryURI = "/oic/d"; PlatformConfig cfg; OCPlatform::Configure(cfg); std::ostringstream requestURI; requestURI << OC_MULTICAST_PREFIX << deviceDiscoveryURI; EXPECT_EQ(OC_STACK_OK, - OCPlatform::getDeviceInfo("", requestURI.str(), OC_IPV4, &receivedDeviceInfo, + OCPlatform::getDeviceInfo("", requestURI.str(), CT_DEFAULT, &receivedDeviceInfo, OC::QualityOfService::HighQos)); } TEST(GetDeviceInfoTest, DISABLED_GetDeviceInfoWithNaQos) { - std::string deviceDiscoveryURI = "/oc/core/d"; + std::string deviceDiscoveryURI = "/oic/d"; PlatformConfig cfg; OCPlatform::Configure(cfg); std::ostringstream requestURI; requestURI << OC_MULTICAST_PREFIX << deviceDiscoveryURI; EXPECT_EQ(OC_STACK_OK, - OCPlatform::getDeviceInfo("", requestURI.str(), OC_IPV4, &receivedDeviceInfo, + OCPlatform::getDeviceInfo("", requestURI.str(), CT_DEFAULT, &receivedDeviceInfo, OC::QualityOfService::NaQos)); } @@ -632,18 +689,7 @@ namespace OCPlatformTest { OCDeviceInfo deviceInfo; - DuplicateString(&deviceInfo.contentType, "myContentType"); - DuplicateString(&deviceInfo.dateOfManufacture, "myDateOfManufacture"); DuplicateString(&deviceInfo.deviceName, "myDeviceName"); - DuplicateString(&deviceInfo.deviceUUID, "myDeviceUUID"); - DuplicateString(&deviceInfo.firmwareVersion, "myFirmwareVersion"); - DuplicateString(&deviceInfo.hostName, "myHostName"); - DuplicateString(&deviceInfo.manufacturerName, "myManufacturerNa"); - DuplicateString(&deviceInfo.manufacturerUrl, "myManufacturerUrl"); - DuplicateString(&deviceInfo.modelNumber, "myModelNumber"); - DuplicateString(&deviceInfo.platformVersion, "myPlatformVersion"); - DuplicateString(&deviceInfo.supportUrl, "mySupportUrl"); - DuplicateString(&deviceInfo.version, "myVersion"); EXPECT_EQ(OC_STACK_OK, OCPlatform::registerDeviceInfo(deviceInfo)); EXPECT_NO_THROW(DeleteDeviceInfo(deviceInfo)); @@ -652,7 +698,7 @@ namespace OCPlatformTest TEST(RegisterDeviceInfoTest, RegisterDeviceInfoWithEmptyObject) { OCDeviceInfo di = {}; - EXPECT_EQ(OC_STACK_OK, OCPlatform::registerDeviceInfo(di)); + EXPECT_ANY_THROW(OCPlatform::registerDeviceInfo(di)); } //SubscribePresence Test @@ -662,7 +708,7 @@ namespace OCPlatformTest OCPlatform::OCPresenceHandle presenceHandle = nullptr; EXPECT_EQ(OC_STACK_OK, OCPlatform::subscribePresence(presenceHandle, hostAddress, - OC_IPV4, &presenceHandler)); + CT_DEFAULT, &presenceHandler)); } TEST(SubscribePresenceTest, SubscribePresenceWithNullHost) @@ -670,7 +716,7 @@ namespace OCPlatformTest OCPlatform::OCPresenceHandle presenceHandle = nullptr; EXPECT_ANY_THROW(OCPlatform::subscribePresence(presenceHandle, nullptr, - OC_IPV4, &presenceHandler)); + CT_DEFAULT, &presenceHandler)); } TEST(SubscribePresenceTest, SubscribePresenceWithNullPresenceHandler) @@ -678,7 +724,7 @@ namespace OCPlatformTest OCPlatform::OCPresenceHandle presenceHandle = nullptr; EXPECT_ANY_THROW(OCPlatform::subscribePresence(presenceHandle, nullptr, - OC_IPV4, NULL)); + CT_DEFAULT, NULL)); } TEST(SubscribePresenceTest, DISABLED_SubscribePresenceWithResourceType) @@ -686,7 +732,7 @@ namespace OCPlatformTest OCPlatform::OCPresenceHandle presenceHandle = nullptr; EXPECT_EQ(OC_STACK_OK, OCPlatform::subscribePresence(presenceHandle, - OC_MULTICAST_IP, "core.light", OC_IPV4, &presenceHandler)); + OC_MULTICAST_IP, "core.light", CT_DEFAULT, &presenceHandler)); } TEST(SubscribePresenceTest, SubscribePresenceWithNullResourceType) @@ -694,7 +740,7 @@ namespace OCPlatformTest OCPlatform::OCPresenceHandle presenceHandle = nullptr; EXPECT_ANY_THROW(OCPlatform::subscribePresence(presenceHandle, - OC_MULTICAST_IP, nullptr, OC_IPV4, &presenceHandler)); + OC_MULTICAST_IP, nullptr, CT_DEFAULT, &presenceHandler)); } TEST(SubscribePresenceTest, DISABLED_UnsubscribePresenceWithValidHandleAndRT) @@ -702,7 +748,7 @@ namespace OCPlatformTest OCPlatform::OCPresenceHandle presenceHandle = nullptr; EXPECT_EQ(OC_STACK_OK, OCPlatform::subscribePresence(presenceHandle, - OC_MULTICAST_IP, "core.light", OC_IPV4, &presenceHandler)); + OC_MULTICAST_IP, "core.light", CT_DEFAULT, &presenceHandler)); EXPECT_EQ(OC_STACK_OK, OCPlatform::unsubscribePresence(presenceHandle)); } @@ -717,8 +763,7 @@ namespace OCPlatformTest OCPlatform::OCPresenceHandle presenceHandle = nullptr; EXPECT_EQ(OC_STACK_OK, OCPlatform::subscribePresence(presenceHandle, - OC_MULTICAST_IP, OC_IPV4, &presenceHandler)); + OC_MULTICAST_IP, CT_DEFAULT, &presenceHandler)); EXPECT_EQ(OC_STACK_OK, OCPlatform::unsubscribePresence(presenceHandle)); } - }