From: Andrzej Krolikowski Date: Thu, 19 Sep 2013 12:21:23 +0000 (+0200) Subject: [Package] clean up X-Git-Tag: 2.2.1_release~114^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9b206445b98f14e8d065c028040743aa6b128dc;p=test%2Ftct%2Fweb%2Fapi.git [Package] clean up Change-Id: Ia6aae09011efd9ef5dfeaa103c52d2a1825e0aa8 --- diff --git a/tct-package-tizen-tests/package/PackageInformationArraySuccessCallback_notexist.html b/tct-package-tizen-tests/package/PackageInformationArraySuccessCallback_notexist.html index dc711336e..9e8b4efdd 100644 --- a/tct-package-tizen-tests/package/PackageInformationArraySuccessCallback_notexist.html +++ b/tct-package-tizen-tests/package/PackageInformationArraySuccessCallback_notexist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageInformationArraySuccessCallback_notexist @@ -39,6 +39,7 @@ Authors: test(function () { check_no_interface_object("PackageInformationArraySuccessCallback"); }, "PackageInformationArraySuccessCallback_notexist"); + diff --git a/tct-package-tizen-tests/package/PackageInformationArraySuccessCallback_onsuccess.html b/tct-package-tizen-tests/package/PackageInformationArraySuccessCallback_onsuccess.html index 464ce7274..6594cde88 100644 --- a/tct-package-tizen-tests/package/PackageInformationArraySuccessCallback_onsuccess.html +++ b/tct-package-tizen-tests/package/PackageInformationArraySuccessCallback_onsuccess.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -32,10 +32,10 @@ Authors: //==== TEST: PackageInformationArraySuccessCallback_onsuccess //==== LABEL Check if PackageInformationArraySuccessCallback works //==== SPEC Tizen Web API:Application:Package:PackageInformationArraySuccessCallback:onsuccess M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== ONLOAD_DELAY 30 //==== TEST_CRITERIA CBT CBOA - setup({timeout: 30000}); +setup({timeout: 30000}); var t = async_test("PackageInformationArraySuccessCallback_onsuccess", {timeout: 30000}), packageInformation, packageInformationArraySuccessCallback, errorCallback; @@ -44,7 +44,7 @@ t.step(function () { packageInformationArraySuccessCallback = t.step_func(function (informationArray) { assert_true(Array.isArray(informationArray), "informationArray is not an array."); - assert_true(informationArray.length > 0, "Incorrect length of informationArray."); + assert_greater_than(informationArray.length, 0, "Incorrect length of informationArray."); packageInformation = informationArray[0]; @@ -59,11 +59,11 @@ t.step(function () { assert_type(packageInformation.version, "string", "PackageInformation.version attribute is not a string."); - assert_type(packageInformation.totalSize, "number", "PackageInformation.totalSize is not a number"); + assert_type(packageInformation.totalSize, "long", "PackageInformation.totalSize is not a number"); - assert_type(packageInformation.dataSize, "number", "PackageInformation.dataSize is not a number"); + assert_type(packageInformation.dataSize, "long", "PackageInformation.dataSize is not a number"); - assert_true(packageInformation.totalSize >= packageInformation.dataSize, + assert_greater_than_equal(packageInformation.totalSize, packageInformation.dataSize, "PackageInformation.dataSize is bigger than packageInformation.totalSize."); assert_true(packageInformation.lastModified instanceof Date, "PackageInformation.lastModified is not a Date"); @@ -84,6 +84,7 @@ t.step(function () { tizen.package.getPackagesInfo(packageInformationArraySuccessCallback, errorCallback); }); + diff --git a/tct-package-tizen-tests/package/PackageInformationEventCallback_notexist.html b/tct-package-tizen-tests/package/PackageInformationEventCallback_notexist.html index 76b7f146a..e49742a17 100644 --- a/tct-package-tizen-tests/package/PackageInformationEventCallback_notexist.html +++ b/tct-package-tizen-tests/package/PackageInformationEventCallback_notexist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageInformationEventCallback_notexist @@ -39,6 +39,7 @@ Authors: test(function () { check_no_interface_object("PackageInformationEventCallback"); }, "PackageInformationEventCallback_notexist"); + diff --git a/tct-package-tizen-tests/package/PackageInformationEventCallback_oninstalled.html b/tct-package-tizen-tests/package/PackageInformationEventCallback_oninstalled.html index 22bd310cc..623eed684 100644 --- a/tct-package-tizen-tests/package/PackageInformationEventCallback_oninstalled.html +++ b/tct-package-tizen-tests/package/PackageInformationEventCallback_oninstalled.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageInformationEventCallback_oninstalled @@ -36,7 +36,7 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual //==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is not installed. -//==== STEP Run the test and then install TCTPackageManagerTest1.1.1.wgt application from: Others directory. +//==== STEP Run the test and then install TCTPackageManagerTest1.1.1.wgt application from: My Files/Phone/Others directory. //==== EXPECT Pass. //==== TEST_CRITERIA CBT CBOA setup({timeout: 90000}); @@ -56,9 +56,9 @@ t.step(function () { assert_equals(packageInformation.version, TCT_PACKAGE_MANAGER_TEST_PACKAGE_VERSION_1, "PackageInformation.version is incorrect."); - assert_type(packageInformation.totalSize, "number", "Incorrect type of PackageInformation.totalSize"); - assert_type(packageInformation.dataSize, "number", "Incorrect type of PackageInformation.dataSize"); - assert_true(packageInformation.totalSize >= packageInformation.dataSize, + assert_type(packageInformation.totalSize, "long", "Incorrect type of PackageInformation.totalSize"); + assert_type(packageInformation.dataSize, "long", "Incorrect type of PackageInformation.dataSize"); + assert_greater_than_equal(packageInformation.totalSize, packageInformation.dataSize, "PackageInformation.dataSize is bigger than packageInformation.totalSize."); assert_true(packageInformation.lastModified instanceof Date, @@ -90,6 +90,7 @@ t.step(function () { tizen.package.unsetPackageInfoEventListener(); tizen.package.setPackageInfoEventListener(packageInformationEventCallback); }); + diff --git a/tct-package-tizen-tests/package/PackageInformationEventCallback_onuninstalled.html b/tct-package-tizen-tests/package/PackageInformationEventCallback_onuninstalled.html index fa2de8a0a..5eeba0967 100644 --- a/tct-package-tizen-tests/package/PackageInformationEventCallback_onuninstalled.html +++ b/tct-package-tizen-tests/package/PackageInformationEventCallback_onuninstalled.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageInformationEventCallback_onuninstalled @@ -35,7 +35,7 @@ Authors: //==== SPEC Tizen Web API:Application:Package:PackageInformationEventCallback:onuninstalled M //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual -//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from: Others directory). +//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from: My Files/Phone/Others directory). //==== STEP Run the test and then uninstall TCTPackageManagerTest1.1.1.wgt application. //==== EXPECT Pass. //==== TEST_CRITERIA CBT CBOA @@ -66,6 +66,7 @@ t.step(function () { tizen.package.unsetPackageInfoEventListener(); tizen.package.setPackageInfoEventListener(packageInformationEventCallback); }); + diff --git a/tct-package-tizen-tests/package/PackageInformationEventCallback_onupdated.html b/tct-package-tizen-tests/package/PackageInformationEventCallback_onupdated.html index 8f416a154..cad20c266 100644 --- a/tct-package-tizen-tests/package/PackageInformationEventCallback_onupdated.html +++ b/tct-package-tizen-tests/package/PackageInformationEventCallback_onupdated.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageInformationEventCallback_onupdated @@ -35,8 +35,8 @@ Authors: //==== SPEC Tizen Web API:Application:Package:PackageInformationEventCallback:onupdated M //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual -//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (you can install it from: Others directory). -//==== STEP Run the test and then install TCTPackageManagerTest2.2.2.wgt application from 'Other' directory. +//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (you can install it from: My Files/Phone/Others directory). +//==== STEP Run the test and then install TCTPackageManagerTest2.2.2.wgt application from 'My Files/Phone/Others' directory. //==== EXPECT Pass. //==== TEST_CRITERIA CBT CBOA setup({timeout: 90000}); @@ -60,9 +60,9 @@ t.step(function () { assert_equals(packageInformation.version, TCT_PACKAGE_MANAGER_TEST_PACKAGE_VERSION_2, "PackageInformation.version is incorrect."); - assert_type(packageInformation.totalSize, "number", "Incorrect type of PackageInformation.totalSize"); - assert_type(packageInformation.dataSize, "number", "Incorrect type of PackageInformation.dataSize"); - assert_true(packageInformation.totalSize >= packageInformation.dataSize, + assert_type(packageInformation.totalSize, "long", "Incorrect type of PackageInformation.totalSize"); + assert_type(packageInformation.dataSize, "long", "Incorrect type of PackageInformation.dataSize"); + assert_greater_than_equal(packageInformation.totalSize, packageInformation.dataSize, "PackageInformation.dataSize is bigger than packageInformation.totalSize."); assert_true(packageInformation.lastModified instanceof Date, @@ -90,6 +90,7 @@ t.step(function () { tizen.package.unsetPackageInfoEventListener(); tizen.package.setPackageInfoEventListener(packageInformationEventCallback); }); + diff --git a/tct-package-tizen-tests/package/PackageInformation_appIds_attribute.html b/tct-package-tizen-tests/package/PackageInformation_appIds_attribute.html index c0d6a2634..d86bc217e 100644 --- a/tct-package-tizen-tests/package/PackageInformation_appIds_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_appIds_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_appIds_attribute @@ -33,7 +33,7 @@ Authors: //==== TEST: PackageInformation_appIds_attribute //==== LABEL Check if attribute appIds of PackageInformation exists, has type Array and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:appIds A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE ARO AT test(function () { var packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID), newValue = ["newValue"], @@ -49,6 +49,7 @@ test(function () { packageInformation.appIds = null; assert_array_equals(packageInformation.appIds, expectedValue, "PackageInformation.appIds is incorrect."); }, "PackageInformation_appIds_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_author_attribute.html b/tct-package-tizen-tests/package/PackageInformation_author_attribute.html index c6b5f78bb..fbd8dbda2 100644 --- a/tct-package-tizen-tests/package/PackageInformation_author_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_author_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_author_attribute @@ -33,13 +33,14 @@ Authors: //==== TEST: PackageInformation_author_attribute //==== LABEL Check if attribute author of PackageInformation exists, has type DOMString and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:author A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID); assert_own_property(packageInformation, "author" , "PackageInformation does not own author property."); check_readonly(packageInformation, "author", TCT_PACKAGE_INFO_TEST_PACKAGE_AUTHOR, "string", "newValue"); }, "PackageInformation_author_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_dataSize_attribute.html b/tct-package-tizen-tests/package/PackageInformation_dataSize_attribute.html index c54edb443..c3638db4f 100644 --- a/tct-package-tizen-tests/package/PackageInformation_dataSize_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_dataSize_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_dataSize_attribute @@ -33,25 +33,26 @@ Authors: //==== TEST: PackageInformation_dataSize_attribute //==== LABEL Check if attribute dataSize of PackageInformation exists, has type Number and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:dataSize A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var originalValue, packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID), newValue = 1234567; assert_own_property(packageInformation, "dataSize" , "PackageInformation does not own dataSize property."); - assert_type(packageInformation.dataSize, "number", "Incorrect type for PackageInformation.dataSize attribute."); + assert_type(packageInformation.dataSize, "long", "Incorrect type for PackageInformation.dataSize attribute."); originalValue = packageInformation.dataSize; packageInformation.dataSize = newValue; - assert_type(packageInformation.dataSize, "number", "Incorrect type for PackageInformation.dataSize after assignment."); + assert_type(packageInformation.dataSize, "long", "Incorrect type for PackageInformation.dataSize after assignment."); assert_not_equals(packageInformation.dataSize, newValue, "PackageInformation.dataSize can be modified."); assert_equals(packageInformation.dataSize, originalValue, "PackageInformation.dataSize can be modified."); packageInformation.dataSize = null; - assert_type(packageInformation.dataSize, "number", "Incorrect type for PackageInformation.dataSize after assignment."); + assert_type(packageInformation.dataSize, "long", "Incorrect type for PackageInformation.dataSize after assignment."); assert_not_equals(packageInformation.dataSize, null, "PackageInformation.dataSize can be modified."); assert_equals(packageInformation.dataSize, originalValue, "PackageInformation.dataSize can be modified."); }, "PackageInformation_dataSize_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_description_attribute.html b/tct-package-tizen-tests/package/PackageInformation_description_attribute.html index 101f73a1e..cf6224220 100644 --- a/tct-package-tizen-tests/package/PackageInformation_description_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_description_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_description_attribute @@ -33,13 +33,14 @@ Authors: //==== TEST: PackageInformation_description_attribute //==== LABEL Check if attribute description of PackageInformation exists, has type DOMString and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:description A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID); assert_own_property(packageInformation, "description" , "PackageInformation does not own description property."); check_readonly(packageInformation, "description", TCT_PACKAGE_INFO_TEST_PACKAGE_DESCRIPTION, "string", "newValue"); }, "PackageInformation_description_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_extend.html b/tct-package-tizen-tests/package/PackageInformation_extend.html index 0102985c9..cbaf55da0 100644 --- a/tct-package-tizen-tests/package/PackageInformation_extend.html +++ b/tct-package-tizen-tests/package/PackageInformation_extend.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -39,6 +39,7 @@ test(function () { var packageInformation = tizen.package.getPackageInfo(); check_extensibility(packageInformation); }, "PackageInformation_extend"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_iconPath_attribute.html b/tct-package-tizen-tests/package/PackageInformation_iconPath_attribute.html index 35e3a8a75..68231d35a 100644 --- a/tct-package-tizen-tests/package/PackageInformation_iconPath_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_iconPath_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_iconPath_attribute @@ -33,7 +33,7 @@ Authors: //==== TEST: PackageInformation_iconPath_attribute //==== LABEL Check if attribute iconPath of PackageInformation exists, has type DOMString and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:iconPath A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var originalValue, packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID), newValue = "newValue"; @@ -54,6 +54,7 @@ test(function () { assert_equals(packageInformation.iconPath, originalValue, "PackageInformation.iconPath can be modified."); }, "PackageInformation_iconPath_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_id_attribute.html b/tct-package-tizen-tests/package/PackageInformation_id_attribute.html index 591eae7ff..968e8c50b 100644 --- a/tct-package-tizen-tests/package/PackageInformation_id_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_id_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_id_attribute @@ -33,13 +33,14 @@ Authors: //==== TEST: PackageInformation_id_attribute //==== LABEL Check if attribute id of PackageInformation exists, has type PackageId and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:id A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID); assert_own_property(packageInformation, "id" , "PackageInformation does not own id property."); check_readonly(packageInformation, "id", TCT_PACKAGE_INFO_TEST_PACKAGE_ID, "string", "newValue"); }, "PackageInformation_id_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_lastModified_attribute.html b/tct-package-tizen-tests/package/PackageInformation_lastModified_attribute.html index a86c481d0..cc68fe41e 100644 --- a/tct-package-tizen-tests/package/PackageInformation_lastModified_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_lastModified_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_lastModified_attribute @@ -33,7 +33,7 @@ Authors: //==== TEST: PackageInformation_lastModified_attribute //==== LABEL Check if attribute lastModified of PackageInformation exists, has type Date and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:lastModified A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var originalValue, packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID), newValue = new Date(); @@ -53,6 +53,7 @@ test(function () { assert_equals(packageInformation.lastModified.getTime(), originalValue.getTime(), "PackageInformation.lastModified can be modified."); }, "PackageInformation_lastModified_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_name_attribute.html b/tct-package-tizen-tests/package/PackageInformation_name_attribute.html index 795efb87a..9106d1d0d 100644 --- a/tct-package-tizen-tests/package/PackageInformation_name_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_name_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_name_attribute @@ -33,13 +33,14 @@ Authors: //==== TEST: PackageInformation_name_attribute //==== LABEL Check if attribute name of PackageInformation exists, has type DOMString and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:name A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID); assert_own_property(packageInformation, "name" , "PackageInformation does not own name property."); check_readonly(packageInformation, "name", TCT_PACKAGE_INFO_TEST_PACKAGE_NAME, "string", "newValue"); }, "PackageInformation_name_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_notexist.html b/tct-package-tizen-tests/package/PackageInformation_notexist.html index 6435aef87..86e14bf95 100644 --- a/tct-package-tizen-tests/package/PackageInformation_notexist.html +++ b/tct-package-tizen-tests/package/PackageInformation_notexist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageInformation_notexist @@ -39,6 +39,7 @@ Authors: test(function () { check_no_interface_object("PackageInformation"); }, "PackageInformation_notexist"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_totalSize_attribute.html b/tct-package-tizen-tests/package/PackageInformation_totalSize_attribute.html index 194f8b1a0..9ecd0310c 100644 --- a/tct-package-tizen-tests/package/PackageInformation_totalSize_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_totalSize_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_totalSize_attribute @@ -33,25 +33,26 @@ Authors: //==== TEST: PackageInformation_totalSize_attribute //==== LABEL Check if attribute totalSize of PackageInformation exists, has type Number and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:totalSize A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var originalValue, packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID), newValue = 1234567; assert_own_property(packageInformation, "totalSize" , "PackageInformation does not own totalSize property."); - assert_type(packageInformation.totalSize, "number", "Incorrect type for PackageInformation.totalSize attribute."); + assert_type(packageInformation.totalSize, "long", "Incorrect type for PackageInformation.totalSize attribute."); originalValue = packageInformation.totalSize; packageInformation.totalSize = newValue; - assert_type(packageInformation.totalSize, "number", "Incorrect type for PackageInformation.totalSize after assignment."); + assert_type(packageInformation.totalSize, "long", "Incorrect type for PackageInformation.totalSize after assignment."); assert_not_equals(packageInformation.totalSize, newValue, "PackageInformation.totalSize can be modified."); assert_equals(packageInformation.totalSize, originalValue, "PackageInformation.totalSize can be modified."); packageInformation.totalSize = null; - assert_type(packageInformation.totalSize, "number", "Incorrect type for PackageInformation.totalSize after assignment."); + assert_type(packageInformation.totalSize, "long", "Incorrect type for PackageInformation.totalSize after assignment."); assert_not_equals(packageInformation.totalSize, null, "PackageInformation.totalSize can be modified."); assert_equals(packageInformation.totalSize, originalValue, "PackageInformation.totalSize can be modified."); }, "PackageInformation_totalSize_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageInformation_version_attribute.html b/tct-package-tizen-tests/package/PackageInformation_version_attribute.html index d43065e33..81c31f402 100644 --- a/tct-package-tizen-tests/package/PackageInformation_version_attribute.html +++ b/tct-package-tizen-tests/package/PackageInformation_version_attribute.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski a.krolikowsk@samsung.com + Andrzej Krolikowski a.krolikowsk@samsung.com --> - + PackageInformation_version_attribute @@ -33,13 +33,14 @@ Authors: //==== TEST: PackageInformation_version_attribute //==== LABEL Check if attribute version of PackageInformation exists, has type DOMString and is readonly //==== SPEC Tizen Web API:Application:Package:PackageInformation:version A -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA AE AT ARO test(function () { var packageInformation = tizen.package.getPackageInfo(TCT_PACKAGE_INFO_TEST_PACKAGE_ID); assert_own_property(packageInformation, "version" , "PackageInformation does not own version property."); check_readonly(packageInformation, "version", TCT_PACKAGE_INFO_TEST_PACKAGE_VERSION, "string", "newValue"); }, "PackageInformation_version_attribute"); + diff --git a/tct-package-tizen-tests/package/PackageManagerObject_notexist.html b/tct-package-tizen-tests/package/PackageManagerObject_notexist.html index 0ec678796..04d473c68 100644 --- a/tct-package-tizen-tests/package/PackageManagerObject_notexist.html +++ b/tct-package-tizen-tests/package/PackageManagerObject_notexist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManagerObject_notexist @@ -39,6 +39,7 @@ Authors: test(function () { check_no_interface_object("PackageManagerObject"); }, "PackageManagerObject_notexist"); + diff --git a/tct-package-tizen-tests/package/PackageManager_extend.html b/tct-package-tizen-tests/package/PackageManager_extend.html index 674fedc0a..0f73e6bdb 100644 --- a/tct-package-tizen-tests/package/PackageManager_extend.html +++ b/tct-package-tizen-tests/package/PackageManager_extend.html @@ -15,13 +15,13 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - PackageManager_extend +PackageManager_extend @@ -39,6 +39,7 @@ Authors: test(function () { check_extensibility(tizen.package); }, "PackageManager_extend"); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackageInfo.html b/tct-package-tizen-tests/package/PackageManager_getPackageInfo.html index ca22b5c94..7fe55be13 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackageInfo.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackageInfo.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_getPackageInfo @@ -48,9 +48,9 @@ test(function () { assert_type(packageInformation.version, "string", "Incorrect type of PackageInformation.version"); assert_not_equals(packageInformation.version, "", "PackageInformation.version is an empty string"); - assert_type(packageInformation.totalSize, "number", "Incorrect type of PackageInformation.totalSize"); - assert_type(packageInformation.dataSize, "number", "Incorrect type of PackageInformation.dataSize"); - assert_true(packageInformation.totalSize >= packageInformation.dataSize, + assert_type(packageInformation.totalSize, "long", "Incorrect type of PackageInformation.totalSize"); + assert_type(packageInformation.dataSize, "long", "Incorrect type of PackageInformation.dataSize"); + assert_greater_than_equal(packageInformation.totalSize, packageInformation.dataSize, "PackageInformation.dataSize is bigger than packageInformation.totalSize."); assert_true(packageInformation.lastModified instanceof Date, "PackageInformation.lastModified is not a Date"); @@ -64,6 +64,7 @@ test(function () { "PackageInformation.description is incorect."); }, "PackageManager_getPackageInfo"); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackageInfo_exist.html b/tct-package-tizen-tests/package/PackageManager_getPackageInfo_exist.html index 019f9e167..565e83133 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackageInfo_exist.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackageInfo_exist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_getPackageInfo_exist @@ -39,6 +39,7 @@ test(function () { assert_true("getPackageInfo" in tizen.package, "No getPackageInfo method in tizen.package"); check_method_exists(tizen.package, "getPackageInfo"); }, "PackageManager_getPackageInfo_exist"); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackageInfo_with_id.html b/tct-package-tizen-tests/package/PackageManager_getPackageInfo_with_id.html index 996b25c54..cf2e70052 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackageInfo_with_id.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackageInfo_with_id.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_getPackageInfo_with_id @@ -47,9 +47,9 @@ test(function () { assert_equals(packageInformation.version, TCT_PACKAGE_INFO_TEST_PACKAGE_VERSION, "PackageInformation.version is incorrect."); - assert_type(packageInformation.totalSize, "number", "Incorrect type of PackageInformation.totalSize"); - assert_type(packageInformation.dataSize, "number", "Incorrect type of PackageInformation.dataSize"); - assert_true(packageInformation.totalSize >= packageInformation.dataSize, + assert_type(packageInformation.totalSize, "long", "Incorrect type of PackageInformation.totalSize"); + assert_type(packageInformation.dataSize, "long", "Incorrect type of PackageInformation.dataSize"); + assert_greater_than_equal(packageInformation.totalSize, packageInformation.dataSize, "PackageInformation.dataSize is bigger than packageInformation.totalSize."); assert_true(packageInformation.lastModified instanceof Date, @@ -64,6 +64,7 @@ test(function () { "PackageInformation.description is incorect."); }, "PackageManager_getPackageInfo_with_id"); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo.html b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo.html index 5c2e3d2e2..80d047926 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -32,7 +32,7 @@ Authors: //==== TEST: PackageManager_getPackagesInfo //==== LABEL Check if method getPackagesInfo of PackageManager works properly //==== SPEC Tizen Web API:Application:Package:PackageManager:getPackagesInfo M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA MMINA MR setup({timeout: 90000}); @@ -44,7 +44,7 @@ t.step(function () { packageInformationArraySuccessCallback = t.step_func(function (informationArray) { assert_true(Array.isArray(informationArray), "informationArray is not an array."); - assert_true(informationArray.length > 0, "Incorrect length of informationArray."); + assert_greater_than(informationArray.length, 0, "Incorrect length of informationArray."); t.done(); }); @@ -52,6 +52,7 @@ t.step(function () { returnedValue = tizen.package.getPackagesInfo(packageInformationArraySuccessCallback); assert_equals(returnedValue, undefined, "Incorect returned value from getPackagesInfo method"); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_errorCallback_TypeMismatch.html b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_errorCallback_TypeMismatch.html index 84265a564..5621f2bab 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_errorCallback_TypeMismatch.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_errorCallback_TypeMismatch.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -34,7 +34,7 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:getPackagesInfo M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MC setup({timeout: 30000}); @@ -43,7 +43,7 @@ var t = async_test("PackageManager_getPackagesInfo_errorCallback_TypeMismatch", t.step(function () { packageInformationArraySuccessCallback = t.step_func(function (informationArray) { - assert_unreached("SuccessCallback invoked"); + assert_unreached("Success callback invoked"); }); conversionTable = getTypeConversionExceptions("functionObject", true); @@ -59,6 +59,7 @@ t.step(function () { } t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_errorCallback_invalid_cb.html b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_errorCallback_invalid_cb.html index 15e101105..b810085fa 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_errorCallback_invalid_cb.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_errorCallback_invalid_cb.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -34,30 +34,31 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:getPackagesInfo M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MTCB setup({timeout: 30000}); var t = async_test("PackageManager_getPackagesInfo_errorCallback_invalid_cb", {timeout: 30000}), exceptionName = "TypeMismatchError", - incorrectCallback, packageInformationArraySuccessCallback; + invalidCallback, packageInformationArraySuccessCallback; t.step(function () { packageInformationArraySuccessCallback = t.step_func(function (informationArray) { - assert_unreached("SuccessCallback invoked"); + assert_unreached("Success callback invoked"); }); - incorrectCallback = { + invalidCallback = { onerror: t.step_func(function (error) { - assert_unreached("ErrorCallback invoked: " + error.name + ": " + error.message); + assert_unreached("Invalid error callback invoked"); }) }; assert_throws({name : exceptionName}, function () { - tizen.package.getPackagesInfo(packageInformationArraySuccessCallback, incorrectCallback); - }, exceptionName + " should be thrown - given incorrect errorallback - object."); + tizen.package.getPackagesInfo(packageInformationArraySuccessCallback, invalidCallback); + }, exceptionName + " should be thrown - given incorrect error callback - object."); t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_exist.html b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_exist.html index 000677948..95a95d604 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_exist.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_exist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_getPackagesInfo_exist @@ -29,7 +29,7 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_missarg.html b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_missarg.html index 7002986ff..16801dd9a 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_missarg.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_missarg.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -33,7 +33,7 @@ Authors: //==== LABEL Check if getPackagesInfo throws exception when non-optional argument is missing //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:getPackagesInfo M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MMA setup({timeout: 30000}); @@ -48,6 +48,7 @@ t.step(function () { t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_successCallback_TypeMismatch.html b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_successCallback_TypeMismatch.html index 1f963fa9f..53315d5f8 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_successCallback_TypeMismatch.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_successCallback_TypeMismatch.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -33,7 +33,7 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:getPackagesInfo M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MC setup({timeout: 30000}); @@ -42,7 +42,7 @@ var t = async_test("PackageManager_getPackagesInfo_successCallback_TypeMismatch" t.step(function () { errorCallback = t.step_func(function (error) { - assert_unreached("ErrorCallback invoked: " + error.name + ": " + error.message); + assert_unreached("getPackagesInfo() error callback: name:" + error.name + ", msg:" + error.message); }); conversionTable = getTypeConversionExceptions("functionObject", false); @@ -58,6 +58,7 @@ t.step(function () { } t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_successCallback_invalid_cb.html b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_successCallback_invalid_cb.html index 6e963c835..bc0e3d53d 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_successCallback_invalid_cb.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_successCallback_invalid_cb.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -33,17 +33,17 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:getPackagesInfo M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MTCB setup({timeout: 30000}); var t = async_test("PackageManager_getPackagesInfo_successCallback_invalid_cb", {timeout: 30000}), exceptionName = "TypeMismatchError", - errorCallback, incorrectCallback; + errorCallback, invalidCallback; t.step(function () { - incorrectCallback = { + invalidCallback = { onsuccess: t.step_func(function (informationArray) { - assert_unreached("Incorrect callback invoked."); + assert_unreached("Invalid success callback invoked"); }) }; @@ -53,10 +53,11 @@ t.step(function () { assert_throws({name : exceptionName}, function () { - tizen.package.getPackagesInfo(incorrectCallback, errorCallback); + tizen.package.getPackagesInfo(invalidCallback, errorCallback); }, exceptionName + " should be thrown - given incorrect successCallback - object."); t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_with_errorCallback.html b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_with_errorCallback.html index 71914b60d..0fc8430d2 100644 --- a/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_with_errorCallback.html +++ b/tct-package-tizen-tests/package/PackageManager_getPackagesInfo_with_errorCallback.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -32,7 +32,7 @@ Authors: //==== TEST: PackageManager_getPackagesInfo_with_errorCallback //==== LABEL Check if method getPackagesInfo of PackageManager works properly with errorCallback //==== SPEC Tizen Web API:Application:Package:PackageManager:getPackagesInfo M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA MOA setup({timeout: 90000}); @@ -44,7 +44,7 @@ t.step(function () { packageInformationArraySuccessCallback = t.step_func(function (informationArray) { assert_true(Array.isArray(informationArray), "informationArray is not an array."); - assert_true(informationArray.length > 0, "Incorrect length of informationArray."); + assert_greater_than(informationArray.length, 0, "Incorrect length of informationArray."); t.done(); }); @@ -55,6 +55,7 @@ t.step(function () { tizen.package.getPackagesInfo(packageInformationArraySuccessCallback, errorCallback); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_in_tizen.html b/tct-package-tizen-tests/package/PackageManager_in_tizen.html index 7c80b4e5d..c67ad53fb 100644 --- a/tct-package-tizen-tests/package/PackageManager_in_tizen.html +++ b/tct-package-tizen-tests/package/PackageManager_in_tizen.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_in_tizen @@ -29,17 +29,18 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install.html b/tct-package-tizen-tests/package/PackageManager_install.html index 068b47a03..3b53cc545 100644 --- a/tct-package-tizen-tests/package/PackageManager_install.html +++ b/tct-package-tizen-tests/package/PackageManager_install.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_install @@ -29,11 +29,11 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install_errorCallback_TypeMismatch.html b/tct-package-tizen-tests/package/PackageManager_install_errorCallback_TypeMismatch.html index 492b137d1..f0cb08d35 100644 --- a/tct-package-tizen-tests/package/PackageManager_install_errorCallback_TypeMismatch.html +++ b/tct-package-tizen-tests/package/PackageManager_install_errorCallback_TypeMismatch.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_install_errorCallback_TypeMismatch @@ -29,13 +29,13 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install_errorCallback_invalid_cb.html b/tct-package-tizen-tests/package/PackageManager_install_errorCallback_invalid_cb.html index a55c5b9b8..0db8b6441 100644 --- a/tct-package-tizen-tests/package/PackageManager_install_errorCallback_invalid_cb.html +++ b/tct-package-tizen-tests/package/PackageManager_install_errorCallback_invalid_cb.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_install_errorCallback_invalid_cb @@ -29,18 +29,18 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install_errorCallback_invoked.html b/tct-package-tizen-tests/package/PackageManager_install_errorCallback_invoked.html index 4a72ba2af..322c13747 100644 --- a/tct-package-tizen-tests/package/PackageManager_install_errorCallback_invoked.html +++ b/tct-package-tizen-tests/package/PackageManager_install_errorCallback_invoked.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_install_errorCallback_invoked @@ -29,11 +29,11 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install_exist.html b/tct-package-tizen-tests/package/PackageManager_install_exist.html index b0f9694c9..0e6c02b50 100644 --- a/tct-package-tizen-tests/package/PackageManager_install_exist.html +++ b/tct-package-tizen-tests/package/PackageManager_install_exist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_install_exist @@ -29,7 +29,7 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install_missarg.html b/tct-package-tizen-tests/package/PackageManager_install_missarg.html index a74ba5ff5..96b0595b0 100644 --- a/tct-package-tizen-tests/package/PackageManager_install_missarg.html +++ b/tct-package-tizen-tests/package/PackageManager_install_missarg.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_install_missarg @@ -29,19 +29,19 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install_progressCallback_TypeMismatch.html b/tct-package-tizen-tests/package/PackageManager_install_progressCallback_TypeMismatch.html index 1401c2801..840112f1f 100644 --- a/tct-package-tizen-tests/package/PackageManager_install_progressCallback_TypeMismatch.html +++ b/tct-package-tizen-tests/package/PackageManager_install_progressCallback_TypeMismatch.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_install_progressCallback_TypeMismatch @@ -29,13 +29,13 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install_progressCallback_invalid_cb.html b/tct-package-tizen-tests/package/PackageManager_install_progressCallback_invalid_cb.html index 9067d7273..7f0ef7bde 100644 --- a/tct-package-tizen-tests/package/PackageManager_install_progressCallback_invalid_cb.html +++ b/tct-package-tizen-tests/package/PackageManager_install_progressCallback_invalid_cb.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_install_progressCallback_invalid_cb @@ -29,13 +29,13 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_install_without_errorCallback.html b/tct-package-tizen-tests/package/PackageManager_install_without_errorCallback.html index f70c75a51..a22923edc 100644 --- a/tct-package-tizen-tests/package/PackageManager_install_without_errorCallback.html +++ b/tct-package-tizen-tests/package/PackageManager_install_without_errorCallback.html @@ -15,13 +15,13 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + -PackageManager_install +PackageManager_install_without_errorCallback @@ -29,11 +29,11 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_notexist.html b/tct-package-tizen-tests/package/PackageManager_notexist.html index e0629b3bc..d2ab0457c 100644 --- a/tct-package-tizen-tests/package/PackageManager_notexist.html +++ b/tct-package-tizen-tests/package/PackageManager_notexist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_notexist @@ -29,7 +29,7 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener.html b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener.html index e2f3be972..8c684c87d 100644 --- a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener.html +++ b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener.html @@ -16,11 +16,11 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_setPackageInfoEventListener @@ -45,6 +45,7 @@ test(function () { tizen.package.unsetPackageInfoEventListener(); } }, "PackageManager_setPackageInfoEventListener"); + diff --git a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_eventCallback_TypeMismatch.html b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_eventCallback_TypeMismatch.html index 365772c3c..c39bdfb13 100644 --- a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_eventCallback_TypeMismatch.html +++ b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_eventCallback_TypeMismatch.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -34,7 +34,7 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:setPackageInfoEventListener M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MC setup({timeout: 30000}); @@ -51,10 +51,11 @@ t.step(function () { assert_throws({name : exceptionName}, function () { tizen.package.setPackageInfoEventListener(packageInformationEventCallback); - }, exceptionName + " should be thrown - given incorrect successCallback: " + packageInformationEventCallback + "."); + }, exceptionName + " should be thrown - given incorrect listener: " + packageInformationEventCallback + "."); } t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_eventCallback_invalid_cb.html b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_eventCallback_invalid_cb.html index f0b3678e3..d4a307588 100644 --- a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_eventCallback_invalid_cb.html +++ b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_eventCallback_invalid_cb.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -34,7 +34,7 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:setPackageInfoEventListener M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MTL setup({timeout: 30000}); @@ -54,6 +54,7 @@ t.step(function () { t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_exist.html b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_exist.html index 8fda073c1..8dee20383 100644 --- a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_exist.html +++ b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_exist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_setPackageInfoEventListener_exist @@ -29,7 +29,7 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_misarg.html b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_misarg.html index fdef418e9..22576007c 100644 --- a/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_misarg.html +++ b/tct-package-tizen-tests/package/PackageManager_setPackageInfoEventListener_misarg.html @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> @@ -32,7 +32,7 @@ Authors: //==== TEST: PackageManager_setPackageInfoEventListener_misarg //==== LABEL Check if setPackageInfoEventListener throws exception when successCallback is missing //==== SPEC Tizen Web API:Application:Package:PackageManager:setPackageInfoEventListener M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MMA test(function () { var exceptionName = "TypeMismatchError"; @@ -42,6 +42,7 @@ test(function () { tizen.package.setPackageInfoEventListener(); }, exceptionName + " should be thrown - not given any argument."); }, "PackageManager_setPackageInfoEventListener_misarg"); + diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall.html b/tct-package-tizen-tests/package/PackageManager_uninstall.html index 7b36e0746..8a1278b96 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall @@ -33,9 +33,9 @@ Authors: //==== TEST: PackageManager_uninstall //==== LABEL Check uninstall method //==== SPEC Tizen Web API:Application:Package:PackageManager:uninstall M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual -//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). +//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). //==== STEP Run the test. //==== EXPECT Pass. //==== TEST_CRITERIA MOA MR MAST @@ -69,6 +69,7 @@ t.step(function () { returnedValue = tizen.package.uninstall(TCT_PACKAGE_MANAGER_TEST_PACKAGE_ID, uninstallProgressCallback, uninstallError); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_TypeMismatch.html b/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_TypeMismatch.html index 81a4bc68d..54b4ab9e6 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_TypeMismatch.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_TypeMismatch.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall_errorCallback_TypeMismatch @@ -29,13 +29,13 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_invalid_cb.html b/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_invalid_cb.html index 99197b6f5..a633a9d25 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_invalid_cb.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_invalid_cb.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall_errorCallback_invalid_cb @@ -29,18 +29,18 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_invoked.html b/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_invoked.html index b70bdbbbc..7b504b391 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_invoked.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall_errorCallback_invoked.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall_errorCallback_invoked @@ -33,7 +33,7 @@ Authors: //==== TEST: PackageManager_uninstall_errorCallback_invoked //==== LABEL Check exception in error callback of uninstall method //==== SPEC Tizen Web API:Application:Package:PackageManager:uninstall M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== ONLOAD_DELAY 30 //==== TEST_CRITERIA MERRCB setup({timeout: 30000}); @@ -62,6 +62,7 @@ t.step(function () { tizen.package.uninstall(NOT_EXISTING_PACKAGE_ID, uninstallProgressCallback, uninstallError); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall_exist.html b/tct-package-tizen-tests/package/PackageManager_uninstall_exist.html index 22f745d8f..e651892fe 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall_exist.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall_exist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall_exist @@ -29,7 +29,7 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall_missarg.html b/tct-package-tizen-tests/package/PackageManager_uninstall_missarg.html index e4a85e878..743b647bc 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall_missarg.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall_missarg.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall_missarg @@ -33,15 +33,15 @@ Authors: //==== TEST: PackageManager_uninstall_missarg //==== LABEL Check with missing non-optional argument - PackageManager.uninstall //==== SPEC Tizen Web API:Application:Package:PackageManager:uninstall M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MMA test(function () { var exceptionName = "TypeMismatchError"; - assert_throws({name : exceptionName}, - function () { - tizen.package.uninstall(TCT_PACKAGE_MANAGER_TEST_PACKAGE_PATH); - }, exceptionName + " should be thrown - missing argument."); + assert_throws({name : exceptionName}, function () { + tizen.package.uninstall(TCT_PACKAGE_MANAGER_TEST_PACKAGE_PATH); + }, exceptionName + " should be thrown - missing argument."); }, "PackageManager_uninstall_missarg"); + diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall_progressCallback_TypeMismatch.html b/tct-package-tizen-tests/package/PackageManager_uninstall_progressCallback_TypeMismatch.html index 1dc571782..a4d668499 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall_progressCallback_TypeMismatch.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall_progressCallback_TypeMismatch.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall_progressCallback_TypeMismatch @@ -35,7 +35,7 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:uninstall M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MC setup({timeout: 30000}); @@ -60,6 +60,7 @@ t.step(function () { } t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall_progressCallback_invalid_cb.html b/tct-package-tizen-tests/package/PackageManager_uninstall_progressCallback_invalid_cb.html index 64578c428..158fcd317 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall_progressCallback_invalid_cb.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall_progressCallback_invalid_cb.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall_progressCallback_invalid_cb @@ -35,7 +35,7 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 30 //==== SPEC Tizen Web API:Application:Package:PackageManager:uninstall M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== TEST_CRITERIA MTL setup({timeout: 30000}); @@ -59,6 +59,7 @@ t.step(function () { t.done(); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_uninstall_without_errorCallback.html b/tct-package-tizen-tests/package/PackageManager_uninstall_without_errorCallback.html index c9dce3856..74dd88196 100644 --- a/tct-package-tizen-tests/package/PackageManager_uninstall_without_errorCallback.html +++ b/tct-package-tizen-tests/package/PackageManager_uninstall_without_errorCallback.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_uninstall_without_errorCallback @@ -33,9 +33,9 @@ Authors: //==== TEST: PackageManager_uninstall_without_errorCallback //==== LABEL Check uninstall method without errorCallback //==== SPEC Tizen Web API:Application:Package:PackageManager:uninstall M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual -//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). +//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). //==== STEP Run the test. //==== EXPECT Pass. //==== TEST_CRITERIA MMINA MR MAST @@ -65,6 +65,7 @@ t.step(function () { returnedValue = tizen.package.uninstall(TCT_PACKAGE_MANAGER_TEST_PACKAGE_ID, uninstallProgressCallback); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener.html b/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener.html index f610153d3..35962e67b 100644 --- a/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener.html +++ b/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_unsetPackageInfoEventListener @@ -36,7 +36,7 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual //==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is not installed. -//==== STEP Run the test and then when you see communicate install TCTPackageManagerTest1.1.1.wgt application from: Others directory. +//==== STEP Run the test and then when you see communicate install TCTPackageManagerTest1.1.1.wgt application from: My Files/Phone/Others directory. //==== EXPECT Pass. //==== TEST_CRITERIA MNA MNAST MR setup({timeout: 90000}); @@ -64,6 +64,7 @@ t.step(function () { t.done(); }), 1000); }); + diff --git a/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener_exist.html b/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener_exist.html index 741df915f..c9d4a87dd 100644 --- a/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener_exist.html +++ b/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener_exist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageManager_unsetPackageInfoEventListener_exist @@ -39,6 +39,7 @@ test(function () { assert_true("unsetPackageInfoEventListener" in tizen.package, "No unsetPackageInfoEventListener method in tizen.package"); check_method_exists(tizen.package, "unsetPackageInfoEventListener"); }, "PackageManager_unsetPackageInfoEventListener_exist"); + diff --git a/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener_extra_argument.html b/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener_extra_argument.html index 10bc3266b..04476a332 100644 --- a/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener_extra_argument.html +++ b/tct-package-tizen-tests/package/PackageManager_unsetPackageInfoEventListener_extra_argument.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski - + PackageManager_unsetPackageInfoEventListener_extra_argument @@ -38,6 +38,7 @@ Authors: test(function () { checkExtraArgument(tizen.package, "unsetPackageInfoEventListener"); }, "PackageManager_unsetPackageInfoEventListener_extra_argument"); + diff --git a/tct-package-tizen-tests/package/PackageProgressCallback_notexist.html b/tct-package-tizen-tests/package/PackageProgressCallback_notexist.html index d4790c810..e466a8e3e 100644 --- a/tct-package-tizen-tests/package/PackageProgressCallback_notexist.html +++ b/tct-package-tizen-tests/package/PackageProgressCallback_notexist.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageProgressCallback_notexist @@ -29,7 +29,7 @@ Authors:
- diff --git a/tct-package-tizen-tests/package/PackageProgressCallback_oncomplete_install.html b/tct-package-tizen-tests/package/PackageProgressCallback_oncomplete_install.html index dc3d63a8f..991c8e3de 100644 --- a/tct-package-tizen-tests/package/PackageProgressCallback_oncomplete_install.html +++ b/tct-package-tizen-tests/package/PackageProgressCallback_oncomplete_install.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageProgressCallback_oncomplete_install @@ -33,7 +33,7 @@ Authors: //==== TEST: PackageProgressCallback_oncomplete_install //==== LABEL Check if PackageProgressCallback.oncomplete - install //==== SPEC Tizen Web API:Application:Package:PackageProgressCallback:oncomplete M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual //==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is NOT installed. //==== STEP Run the test. @@ -57,6 +57,7 @@ t.step(function () { tizen.package.install(TCT_PACKAGE_MANAGER_TEST_PACKAGE_PATH, installProgressCallback, installError); }); + diff --git a/tct-package-tizen-tests/package/PackageProgressCallback_oncomplete_uninstall.html b/tct-package-tizen-tests/package/PackageProgressCallback_oncomplete_uninstall.html index 6614e863d..8c44a7de9 100644 --- a/tct-package-tizen-tests/package/PackageProgressCallback_oncomplete_uninstall.html +++ b/tct-package-tizen-tests/package/PackageProgressCallback_oncomplete_uninstall.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageProgressCallback_oncomplete_uninstall @@ -33,9 +33,9 @@ Authors: //==== TEST: PackageProgressCallback_oncomplete_uninstall //==== LABEL Check if PackageProgressCallback.oncomplete - uninstall //==== SPEC Tizen Web API:Application:Package:PackageProgressCallback:oncomplete M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual -//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). +//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). //==== STEP Run the test. //==== EXPECT Pass. //==== TEST_CRITERIA CBT CBOA @@ -58,6 +58,7 @@ t.step(function () { tizen.package.uninstall(TCT_PACKAGE_MANAGER_TEST_PACKAGE_ID, uninstallProgressCallback, uninstallError); }); + diff --git a/tct-package-tizen-tests/package/PackageProgressCallback_onprogress_install.html b/tct-package-tizen-tests/package/PackageProgressCallback_onprogress_install.html index 822cb2ac4..316bd2e1a 100644 --- a/tct-package-tizen-tests/package/PackageProgressCallback_onprogress_install.html +++ b/tct-package-tizen-tests/package/PackageProgressCallback_onprogress_install.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageProgressCallback_onprogress_install @@ -33,7 +33,7 @@ Authors: //==== TEST: PackageProgressCallback_onprogress_install //==== LABEL Check if PackageProgressCallback.onprogress - install //==== SPEC Tizen Web API:Application:Package:PackageProgressCallback:onprogress M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual //==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is NOT installed. //==== STEP Run the test. @@ -49,9 +49,9 @@ t.step(function () { onprogress: t.step_func(function (packageId, progress) { wasInProgress = true; assert_equals(packageId, TCT_PACKAGE_MANAGER_TEST_PACKAGE_ID, "Incorrect packageId."); - assert_type(progress, "number" , "Incorrect type for progress."); - assert_true(progress >= 0, "Progress is less than zero."); - assert_true(progress <= 100, "Progress is greater than 100."); + assert_type(progress, "short" , "Incorrect type for progress."); + assert_greater_than_equal(progress, 0, "Progress is less than zero."); + assert_less_than_equal(progress, 100, "Progress is greater than 100."); }), oncomplete: t.step_func(function (packageId) { assert_true(wasInProgress, "onprogress callback was not invoked."); @@ -65,6 +65,7 @@ t.step(function () { tizen.package.install(TCT_PACKAGE_MANAGER_TEST_PACKAGE_PATH, installProgressCallback, installError); }); + diff --git a/tct-package-tizen-tests/package/PackageProgressCallback_onprogress_uninstall.html b/tct-package-tizen-tests/package/PackageProgressCallback_onprogress_uninstall.html index e1422a461..120e8506f 100644 --- a/tct-package-tizen-tests/package/PackageProgressCallback_onprogress_uninstall.html +++ b/tct-package-tizen-tests/package/PackageProgressCallback_onprogress_uninstall.html @@ -15,11 +15,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + PackageProgressCallback_onprogress_uninstall @@ -33,9 +33,9 @@ Authors: //==== TEST: PackageProgressCallback_onprogress_uninstall //==== LABEL Check if PackageProgressCallback.onprogress - uninstall //==== SPEC Tizen Web API:Application:Package:PackageProgressCallback:onprogress M -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html //==== EXECUTION_TYPE manual -//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). +//==== PRE Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). //==== STEP Run the test. //==== EXPECT Pass. //==== TEST_CRITERIA CBT CBOA @@ -49,9 +49,9 @@ t.step(function () { onprogress: t.step_func(function (packageId, progress) { wasInProgress = true; assert_equals(packageId, TCT_PACKAGE_MANAGER_TEST_PACKAGE_ID, "Incorrect packageId."); - assert_type(progress, "number" , "Incorrect type for progress."); - assert_true(progress >= 0, "Progress is less than zero."); - assert_true(progress <= 100, "Progress is greater than 100."); + assert_type(progress, "short" , "Incorrect type for progress."); + assert_greater_than_equal(progress, 0, "Progress is less than zero."); + assert_less_than_equal(progress, 100, "Progress is greater than 100."); }), oncomplete: t.step_func(function (packageId) { assert_true(wasInProgress, "onprogress callback was not invoked."); @@ -65,6 +65,7 @@ t.step(function () { tizen.package.uninstall(TCT_PACKAGE_MANAGER_TEST_PACKAGE_ID, uninstallProgressCallback, uninstallError); }); + diff --git a/tct-package-tizen-tests/tests.full.xml b/tct-package-tizen-tests/tests.full.xml index 6b10f2ff1..97397a8e3 100644 --- a/tct-package-tizen-tests/tests.full.xml +++ b/tct-package-tizen-tests/tests.full.xml @@ -22,7 +22,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -46,7 +46,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -58,7 +58,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -70,7 +70,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -82,7 +82,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -106,7 +106,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -118,7 +118,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -130,7 +130,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -142,7 +142,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -166,7 +166,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -178,7 +178,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -250,7 +250,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -262,7 +262,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -274,7 +274,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -298,7 +298,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -310,7 +310,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -322,7 +322,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -334,7 +334,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -430,7 +430,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -442,7 +442,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -454,7 +454,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -476,7 +476,7 @@ Make sure that TCTPackageManagerTest1.1.1.wgt application is not installed. - Run the test and then install TCTPackageManagerTest1.1.1.wgt application from: Others directory. + Run the test and then install TCTPackageManagerTest1.1.1.wgt application from: My Files/Phone/Others directory. Pass. @@ -492,7 +492,7 @@ - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from: Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from: My Files/Phone/Others directory). Run the test and then uninstall TCTPackageManagerTest1.1.1.wgt application. @@ -526,7 +526,7 @@ Make sure that TCTPackageManagerTest1.1.1.wgt application is not installed. - Run the test and then when you see communicate install TCTPackageManagerTest1.1.1.wgt application from: Others directory. + Run the test and then when you see communicate install TCTPackageManagerTest1.1.1.wgt application from: My Files/Phone/Others directory. Pass. @@ -554,7 +554,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -566,7 +566,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -585,14 +585,14 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). Run the test. @@ -604,14 +604,14 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). Run the test. @@ -623,7 +623,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -635,7 +635,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -654,7 +654,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -673,14 +673,14 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). Run the test. @@ -692,14 +692,14 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). Run the test. @@ -711,7 +711,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -723,7 +723,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -735,7 +735,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -747,7 +747,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -759,7 +759,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -771,7 +771,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -783,7 +783,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -795,7 +795,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -807,17 +807,17 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (you can install it from: Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (you can install it from: My Files/Phone/Others directory). - Run the test and then install TCTPackageManagerTest2.2.2.wgt application from 'Other' directory. + Run the test and then install TCTPackageManagerTest2.2.2.wgt application from 'My Files/Phone/Others' directory. Pass. @@ -838,7 +838,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD @@ -850,7 +850,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/package.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/package.html TBD diff --git a/tct-package-tizen-tests/tests.xml b/tct-package-tizen-tests/tests.xml index 7b00367c8..b4c955d97 100644 --- a/tct-package-tizen-tests/tests.xml +++ b/tct-package-tizen-tests/tests.xml @@ -203,7 +203,7 @@ Make sure that TCTPackageManagerTest1.1.1.wgt application is not installed. - Run the test and then install TCTPackageManagerTest1.1.1.wgt application from: Others directory. + Run the test and then install TCTPackageManagerTest1.1.1.wgt application from: My Files/Phone/Others directory. Pass. @@ -212,7 +212,7 @@ - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from: Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from: My Files/Phone/Others directory). Run the test and then uninstall TCTPackageManagerTest1.1.1.wgt application. @@ -232,7 +232,7 @@ Make sure that TCTPackageManagerTest1.1.1.wgt application is not installed. - Run the test and then when you see communicate install TCTPackageManagerTest1.1.1.wgt application from: Others directory. + Run the test and then when you see communicate install TCTPackageManagerTest1.1.1.wgt application from: My Files/Phone/Others directory. Pass. @@ -270,7 +270,7 @@ - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). Run the test. @@ -282,7 +282,7 @@ - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). Run the test. @@ -323,7 +323,7 @@ - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). Run the test. @@ -335,7 +335,7 @@ - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (You can install it from My Files/Phone/Others directory). Run the test. @@ -387,10 +387,10 @@ - Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (you can install it from: Others directory). + Make sure that TCTPackageManagerTest1.1.1.wgt application is installed (you can install it from: My Files/Phone/Others directory). - Run the test and then install TCTPackageManagerTest2.2.2.wgt application from 'Other' directory. + Run the test and then install TCTPackageManagerTest2.2.2.wgt application from 'My Files/Phone/Others' directory. Pass.