}
/*
-Name: unupdateOfSigned
-Description: Tests update that signed web app could be downgraded.
-Expected: Widget should not be updated.
-*/
-RUNNER_TEST(unupdateOfSigned)
-{
- std::string tizenId;
- std::string wgtPath;
-
- wgtPath = miscWidgetsStuff + "widgets/widgetUpdateVer220Signed.wgt";
- RUNNER_ASSERT_MSG(InstallerWrapper::Success == install(wgtPath, tizenId),
- "Failed to install widget");
-
- wgtPath = miscWidgetsStuff + "widgets/widgetUpdateVer100Signed.wgt";
- RUNNER_ASSERT_MSG_SAFE(InstallerWrapper::Success != install(wgtPath, tizenId),
- "Unupdate should be prohibited.");
- uninstall(tizenId);
-}
-
-/*
-Name: unupdateOfSigned
-Description: Tests update that unsigned web app could be downgraded.
-Expected: Widget should not be updated.
-*/
-RUNNER_TEST(unupdateOfUnsigned)
-{
- std::string tizenId;
- std::string wgtPath;
-
- wgtPath = miscWidgetsStuff + "widgets/widgetUpdateVer220Unsigned.wgt";
- RUNNER_ASSERT_MSG(InstallerWrapper::Success == install(wgtPath, tizenId),
- "Failed to install widget");
-
- wgtPath = miscWidgetsStuff + "widgets/widgetUpdateVer100Unsigned.wgt";
- RUNNER_ASSERT_MSG_SAFE(InstallerWrapper::Success != install(wgtPath, tizenId),
- "Unupdate should be prohibited.");
- uninstall(tizenId);
-}
+ * Information:
+ * These tests are incompatible to the specification 2.1
+ * (but compatible to the specification 3.0).
+ */
+///*
+//Name: unupdateOfSigned
+//Description: Tests update that signed web app could be downgraded.
+//Expected: Widget should not be updated.
+//*/
+//RUNNER_TEST(unupdateOfSigned)
+//{
+// std::string tizenId;
+// std::string wgtPath;
+//
+// wgtPath = miscWidgetsStuff + "widgets/widgetUpdateVer220Signed.wgt";
+// RUNNER_ASSERT_MSG(InstallerWrapper::Success == install(wgtPath, tizenId),
+// "Failed to install widget");
+//
+// wgtPath = miscWidgetsStuff + "widgets/widgetUpdateVer100Signed.wgt";
+// RUNNER_ASSERT_MSG_SAFE(InstallerWrapper::Success != install(wgtPath, tizenId),
+// "Unupdate should be prohibited.");
+// uninstall(tizenId);
+//}
+//
+///*
+//Name: unupdateOfSigned
+//Description: Tests update that unsigned web app could be downgraded.
+//Expected: Widget should not be updated.
+//*/
+//RUNNER_TEST(unupdateOfUnsigned)
+//{
+// std::string tizenId;
+// std::string wgtPath;
+//
+// wgtPath = miscWidgetsStuff + "widgets/widgetUpdateVer220Unsigned.wgt";
+// RUNNER_ASSERT_MSG(InstallerWrapper::Success == install(wgtPath, tizenId),
+// "Failed to install widget");
+//
+// wgtPath = miscWidgetsStuff + "widgets/widgetUpdateVer100Unsigned.wgt";
+// RUNNER_ASSERT_MSG_SAFE(InstallerWrapper::Success != install(wgtPath, tizenId),
+// "Unupdate should be prohibited.");
+// uninstall(tizenId);
+//}
/*
Name: validUpdateOfCrossSigned