[Application] changes in readme, tests.xml and tags according to changes names of...
authorMariusz Polasinski <m.polasinski@samsung.com>
Tue, 13 Aug 2013 13:27:17 +0000 (15:27 +0200)
committerMariusz Polasinski <m.polasinski@samsung.com>
Tue, 13 Aug 2013 13:27:17 +0000 (15:27 +0200)
Change-Id: I665e261dcbd00f4134ec1c4f080a3fc50d7fe589

tct-application-tizen-tests/README
tct-application-tizen-tests/application/ApplicationInformationEventCallback_oninstalled.html
tct-application-tizen-tests/application/ApplicationInformationEventCallback_onuninstalled.html
tct-application-tizen-tests/application/ApplicationInformationEventCallback_onupdated.html
tct-application-tizen-tests/application/ApplicationManager_addAppInfoEventListener_oninstalled.html
tct-application-tizen-tests/application/ApplicationManager_addAppInfoEventListener_onuninstalled.html
tct-application-tizen-tests/application/ApplicationManager_addAppInfoEventListener_onupdated.html
tct-application-tizen-tests/application/support/TCTAppInfoEventTest1/config.xml
tct-application-tizen-tests/application/support/TCTAppInfoEventTest2/config.xml
tct-application-tizen-tests/tests.xml

index 2853289900e30d9a6496ec4fa61a814e3cd3b846..8984254825b8a121abb605f77b1d4bd1e7b323e6 100755 (executable)
@@ -89,14 +89,14 @@ Steps:
 Some special tests
 ----------------------------------------------
 1. ApplicationManager_addAppInfoEventListener_oninstalled.html, ApplicationInformationEventCallback_oninstalled.html - manual tests
-Make sure that PackageTest1.wgt application is not installed (uninstall it).
-Click Run and next install special application PackageTest1 FROM: My Files/Phone/Others, finally look at the results.
+Make sure that TCTAppInfoEventTest1 application is not installed (uninstall it).
+Click Run and next install special application TCTAppInfoEventTest1.wgt FROM: My Files/Phone/Others, finally look at the results.
 
 2. ApplicationManager_addAppInfoEventListener_onuninstalled.html, ApplicationInformationEventCallback_onuninstalled.html - manual tests
-Make sure that PackageTest1.wgt application is installed (you can install it from: My Files/Phone/Others).
-Click Run and then deinstall PackageTest1 application, finally look at the results.
+Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).
+Click Run and then uninstall TCTAppInfoEventTest1 application, finally look at the results.
 
 3. ApplicationManager_addAppInfoEventListener_onupdated.html, ApplicationInformationEventCallback_onupdated.html - manual tests
-Make sure that PackageTest1.wgt application is installed (you can install it from: My Files/Phone/Others).
-Run the test and then install PackageTest2.wgt application from: My Files/Phone/Others directory, finally look at the results.
+Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).
+Run the test and then install TCTAppInfoEventTest2.wgt application from: My Files/Phone/Others directory, finally look at the results.
 
index 2bcd6576fd95e78333233d863018659d9acd1d43..1ed399fb505e822129b4573329471934b459cd06 100644 (file)
@@ -41,22 +41,22 @@ Authors:
 //==== LABEL check argument passed into method which is oninstalled listener in ApplicationInformationEventCallback
 //==== SPEC Tizen Web API:Application:Application:ApplicationInformationEventCallback:oninstalled M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== PRE Make sure that TCTAppInfoEventTest1.wgt application is not installed (uninstall it)
+//==== PRE Make sure that TCTAppInfoEventTest1 application is not installed (uninstall it)
 //==== STEP Please click run and then install TCTAppInfoEventTest1.wgt application from: My Files/Phone/Others, finally look at the results
 //==== EXPECT properly argument
 //==== EXECUTION_TYPE manual
 //==== PRIORITY P1
 //==== TEST_CRITERIA CBT CBOA
 
-setup({timeout: 90000});
+setup({timeout: 300000});
 
-var this_test = async_test("ApplicationInformationEventCallback_oninstalled", {timeout: 90000});
+var this_test = async_test("ApplicationInformationEventCallback_oninstalled", {timeout: 300000});
 
-this_test.step(function() {
+this_test.step(function () {
     var appEventCallback, watchId;
 
     appEventCallback = {
-        oninstalled: this_test.step_func(function(appInfo) {
+        oninstalled: this_test.step_func(function (appInfo) {
             assert_type(appInfo, "object", "wrong type of received value");
             assert_true("id" in appInfo, "no id in returned value");
             assert_true("name" in appInfo, "no name in returned value");
@@ -70,10 +70,10 @@ this_test.step(function() {
             assert_equals(appInfo.id, APP_INFO_TEST_APP_ID, "wrong ApplicationInformation was returned");
             this_test.done();
         }),
-        onupdated: this_test.step_func(function() {
+        onupdated: this_test.step_func(function () {
             assert_unreached("This function (onupdated) should not be used");
         }),
-        onuninstalled: this_test.step_func(function() {
+        onuninstalled: this_test.step_func(function () {
             assert_unreached("This function (onuninstalled) should not be used");
         })
     };
index 8e0bea78c8a746b914aece577d32ddda63799f12..f90cc14588b490844445f7c271764f50faaf9d57 100644 (file)
@@ -41,28 +41,28 @@ Authors:
 //==== LABEL check argument passed into method which is onuninstalled listener in ApplicationInformationEventCallback
 //==== SPEC Tizen Web API:Application:Application:ApplicationInformationEventCallback:onuninstalled M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== PRE Make sure that TCTAppInfoEventTest1.wgt application is installed (you can install it from: My Files/Phone/Others).
-//==== STEP Click run and then uninstall TCTAppInfoEventTest1.wgt application, finally look at the results
+//==== PRE Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).
+//==== STEP Click run and then uninstall TCTAppInfoEventTest1 application, finally look at the results
 //==== EXPECT properly argument
 //==== EXECUTION_TYPE manual
 //==== PRIORITY P1
 //==== TEST_CRITERIA CBT CBOA
 
-setup({timeout: 90000});
+setup({timeout: 300000});
 
-var this_test = async_test("ApplicationInformationEventCallback_onuninstalled", {timeout: 90000});
+var this_test = async_test("ApplicationInformationEventCallback_onuninstalled", {timeout: 300000});
 
-this_test.step(function() {
+this_test.step(function () {
     var appEventCallback, watchId;
 
     appEventCallback = {
-        oninstalled: this_test.step_func(function() {
+        oninstalled: this_test.step_func(function () {
             assert_unreached("This function (oninstalled) should not be used");
         }),
-        onupdated: this_test.step_func(function() {
+        onupdated: this_test.step_func(function () {
             assert_unreached("This function (onupdated) should not be used");
         }),
-        onuninstalled: this_test.step_func(function(appId) {
+        onuninstalled: this_test.step_func(function (appId) {
             assert_type(appId, "string", "wrong type of received value");
             assert_equals(appId, APP_INFO_TEST_APP_ID, "wrong ApplicationId was returned");
             this_test.done();
index f81d214310d7c471031c7caec3039fe7249e1ec6..4cc1d78a074ab9ce6b58f584f20c5129bd378778 100644 (file)
@@ -41,25 +41,25 @@ Authors:
 //==== LABEL check argument passed into method which is onupdated listener in ApplicationInformationEventCallback
 //==== SPEC Tizen Web API:Application:Application:ApplicationInformationEventCallback:onupdated M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== PRE Make sure that TCTAppInfoEventTest1.wgt application is installed (you can install it from: My Files/Phone/Others).
+//==== PRE Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).
 //==== STEP Run the test and then install TCTAppInfoEventTest2.wgt application from: My Files/Phone/Others directory.
 //==== EXPECT properly argument
 //==== EXECUTION_TYPE manual
 //==== PRIORITY P1
 //==== TEST_CRITERIA CBT CBOA
 
-setup({timeout: 90000});
+setup({timeout: 300000});
 
-var this_test = async_test("ApplicationInformationEventCallback_onupdated", {timeout: 90000});
+var this_test = async_test("ApplicationInformationEventCallback_onupdated", {timeout: 300000});
 
-this_test.step(function() {
+this_test.step(function () {
     var appEventCallback, watchId;
 
     appEventCallback = {
-        oninstalled: this_test.step_func(function() {
+        oninstalled: this_test.step_func(function () {
             assert_unreached("This function (oninstalled) should not be used");
         }),
-        onupdated: this_test.step_func(function(appInfo) {
+        onupdated: this_test.step_func(function (appInfo) {
             assert_type(appInfo, "object", "wrong type of received value");
             assert_true("id" in appInfo, "no id in returned value");
             assert_true("name" in appInfo, "no name in returned value");
@@ -73,7 +73,7 @@ this_test.step(function() {
             assert_equals(appInfo.id, APP_INFO_TEST_APP_ID, "wrong ApplicationInformation was returned");
             this_test.done();
         }),
-        onuninstalled: this_test.step_func(function() {
+        onuninstalled: this_test.step_func(function () {
             assert_unreached("This function (onuninstalled) should not be used");
         })
     };
index c2f67c3ea585df8a2fdf961d8d8fa2861b7cdf0e..2a28a01b2c26e6e77a63d8192b9d636041316c15 100644 (file)
@@ -41,27 +41,27 @@ Authors:
 //==== LABEL check using addAppInfoEventListener method (installation process) in ApplicationManager interface
 //==== SPEC Tizen Web API:Application:Application:ApplicationManager:addAppInfoEventListener M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== PRE Make sure that TCTAppInfoEventTest1.wgt application is not installed (uninstall it)
+//==== PRE Make sure that TCTAppInfoEventTest1 application is not installed (uninstall it)
 //==== STEP Please click run and then install TCTAppInfoEventTest1.wgt application from: My Files/Phone/Others, finally look at the results
 //==== EXPECT listener was added with successfully
 //==== EXECUTION_TYPE manual
 //==== PRIORITY P1
 //==== TEST_CRITERIA MMINA MAST MR
 
-setup({timeout: 90000});
+setup({timeout: 300000});
 
-var this_test = async_test("ApplicationManager_addAppInfoEventListener_oninstalled", {timeout: 90000});
-this_test.step(function() {
+var this_test = async_test("ApplicationManager_addAppInfoEventListener_oninstalled", {timeout: 300000});
+this_test.step(function () {
     var appEventCallback, watchId;
 
     appEventCallback = {
-        oninstalled: this_test.step_func(function() {
+        oninstalled: this_test.step_func(function () {
             this_test.done();
         }),
-        onupdated: this_test.step_func(function() {
+        onupdated: this_test.step_func(function () {
             assert_unreached("This function (onupdated) should not be used");
         }),
-        onuninstalled: this_test.step_func(function() {
+        onuninstalled: this_test.step_func(function () {
             assert_unreached("This function (onuninstalled) should not be used");
         })
     };
index b40e192e5f066109bfd8564108a72d2352effbd1..af4041e6269fe3d2c8157c92eb86f7f28d2ae3f5 100644 (file)
@@ -41,27 +41,27 @@ Authors:
 //==== LABEL check using addAppInfoEventListener method (deinstallation process) in ApplicationManager interface
 //==== SPEC Tizen Web API:Application:Application:ApplicationManager:addAppInfoEventListener M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== PRE Make sure that TCTAppInfoEventTest1.wgt application is installed (you can install it from: My Files/Phone/Others).
-//==== STEP Click run and then uninstall TCTAppInfoEventTest1.wgt application, finally look at the results
+//==== PRE Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).
+//==== STEP Click run and then uninstall TCTAppInfoEventTest1 application, finally look at the results
 //==== EXPECT listener was added with successfully
 //==== EXECUTION_TYPE manual
 //==== PRIORITY P1
 //==== TEST_CRITERIA MMINA MAST MR
 
-setup({timeout: 90000});
+setup({timeout: 300000});
 
-var this_test = async_test("ApplicationManager_addAppInfoEventListener_onuninstalled", {timeout: 90000});
-this_test.step(function() {
+var this_test = async_test("ApplicationManager_addAppInfoEventListener_onuninstalled", {timeout: 300000});
+this_test.step(function () {
     var appEventCallback, watchId;
 
     appEventCallback = {
-        oninstalled: this_test.step_func(function() {
+        oninstalled: this_test.step_func(function () {
             assert_unreached("This function (onupdated) should not be used");
         }),
-        onupdated: this_test.step_func(function() {
+        onupdated: this_test.step_func(function () {
             assert_unreached("This function (onupdated) should not be used");
         }),
-        onuninstalled: this_test.step_func(function() {
+        onuninstalled: this_test.step_func(function () {
             this_test.done();
         })
     };
index f6ffe7ed16dbdb49c594b6a4085752f9c445ef94..876e9f854edcdf3e4c8c9ccc7202f29bf69125b7 100644 (file)
@@ -41,27 +41,27 @@ Authors:
 //==== LABEL check using addAppInfoEventListener method (updating process) in ApplicationManager interface
 //==== SPEC Tizen Web API:Application:Application:ApplicationManager:addAppInfoEventListener M
 //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== PRE Make sure that TCTAppInfoEventTest1.wgt application is installed (you can install it from: My Files/Phone/Others).
+//==== PRE Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).
 //==== STEP Run the test and then install TCTAppInfoEventTest2.wgt application from: My Files/Phone/Others directory.
 //==== EXPECT listener was added with successfully
 //==== EXECUTION_TYPE manual
 //==== PRIORITY P1
 //==== TEST_CRITERIA MMINA MAST MR
 
-setup({timeout: 90000});
+setup({timeout: 300000});
 
-var this_test = async_test("ApplicationManager_addAppInfoEventListener_onupdated", {timeout: 90000});
-this_test.step(function() {
+var this_test = async_test("ApplicationManager_addAppInfoEventListener_onupdated", {timeout: 300000});
+this_test.step(function () {
     var appEventCallback, watchId;
 
     appEventCallback = {
-        oninstalled: this_test.step_func(function() {
+        oninstalled: this_test.step_func(function () {
             assert_unreached("This function (oninstalled) should not be used");
         }),
-        onupdated: this_test.step_func(function() {
+        onupdated: this_test.step_func(function () {
             this_test.done();
         }),
-        onuninstalled: this_test.step_func(function() {
+        onuninstalled: this_test.step_func(function () {
             assert_unreached("This function (onuninstalled) should not be used");
         })
     };
index a469362fe894be5fefd333ea4867fd6771808132..26e750fece823308f4b11f4b90878656887dc56d 100755 (executable)
@@ -4,6 +4,6 @@
     <tizen:application id="api1appli3.TCTAppInfoEventTest" package="api1appli3" required_version="2.1"/>
     <content src="index.html"/>
     <icon src="icon.png"/>
-    <name>TCTAppInfoEventTest</name>
+    <name>TCTAppInfoEventTest1</name>
     <tizen:setting screen-orientation="landscape" background-support="enable"/>
 </widget>
index 28adea4c1748c2f728dfeacb18d52324f67c3a31..50f4e34e64be4b807ffca4a27e895520e43e7fd7 100755 (executable)
@@ -4,6 +4,6 @@
     <tizen:application id="api1appli3.TCTAppInfoEventTest" package="api1appli3" required_version="2.1"/>
     <content src="index.html"/>
     <icon src="icon.png"/>
-    <name>TCTAppInfoEventTest</name>
+    <name>TCTAppInfoEventTest2</name>
     <tizen:setting screen-orientation="landscape" background-support="enable"/>
 </widget>
index 121861cbbd5dfe96b3859dc3ad67021f36f9988b..fd4ee29f2788ba493325203227528e17f2cacf4e 100644 (file)
       </testcase>
       <testcase purpose="check using addAppInfoEventListener method (installation process) in ApplicationManager interface" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="manual" priority="P1" id="ApplicationManager_addAppInfoEventListener_oninstalled">
         <description>
-          <pre_condition>Make sure that TCTAppInfoEventTest1.wgt application is not installed (uninstall it)</pre_condition>
+          <pre_condition>Make sure that TCTAppInfoEventTest1 application is not installed (uninstall it)</pre_condition>
           <steps>
             <step order="1">
               <step_desc>Please click run and then install TCTAppInfoEventTest1.wgt application from: My Files/Phone/Others, finally look at the results</step_desc>
       </testcase>
       <testcase purpose="check using addAppInfoEventListener method (deinstallation process) in ApplicationManager interface" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="manual" priority="P1" id="ApplicationManager_addAppInfoEventListener_onuninstalled">
         <description>
-          <pre_condition>Make sure that TCTAppInfoEventTest1.wgt application is installed (you can install it from: My Files/Phone/Others).</pre_condition>
+          <pre_condition>Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).</pre_condition>
           <steps>
             <step order="1">
-              <step_desc>Click run and then uninstall TCTAppInfoEventTest1.wgt application, finally look at the results</step_desc>
+              <step_desc>Click run and then uninstall TCTAppInfoEventTest1 application, finally look at the results</step_desc>
               <expected>listener was added with successfully</expected>
             </step>
           </steps>
       </testcase>
       <testcase purpose="check using addAppInfoEventListener method (updating process) in ApplicationManager interface" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="manual" priority="P1" id="ApplicationManager_addAppInfoEventListener_onupdated">
         <description>
-          <pre_condition>Make sure that TCTAppInfoEventTest1.wgt application is installed (you can install it from: My Files/Phone/Others).</pre_condition>
+          <pre_condition>Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).</pre_condition>
           <steps>
             <step order="1">
               <step_desc>Run the test and then install TCTAppInfoEventTest2.wgt application from: My Files/Phone/Others directory.</step_desc>
       </testcase>
       <testcase purpose="check argument passed into method which is oninstalled listener in ApplicationInformationEventCallback" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="manual" priority="P1" id="ApplicationInformationEventCallback_oninstalled">
         <description>
-          <pre_condition>Make sure that TCTAppInfoEventTest1.wgt application is not installed (uninstall it)</pre_condition>
+          <pre_condition>Make sure that TCTAppInfoEventTest1 application is not installed (uninstall it)</pre_condition>
           <steps>
             <step order="1">
               <step_desc>Please click run and then install TCTAppInfoEventTest1.wgt application from: My Files/Phone/Others, finally look at the results</step_desc>
       </testcase>
       <testcase purpose="check argument passed into method which is onupdated listener in ApplicationInformationEventCallback" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="manual" priority="P1" id="ApplicationInformationEventCallback_onupdated">
         <description>
-          <pre_condition>Make sure that TCTAppInfoEventTest1.wgt application is installed (you can install it from: My Files/Phone/Others).</pre_condition>
+          <pre_condition>Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).</pre_condition>
           <steps>
             <step order="1">
               <step_desc>Run the test and then install TCTAppInfoEventTest2.wgt application from: My Files/Phone/Others directory.</step_desc>
       </testcase>
       <testcase purpose="check argument passed into method which is onuninstalled listener in ApplicationInformationEventCallback" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="manual" priority="P1" id="ApplicationInformationEventCallback_onuninstalled">
         <description>
-          <pre_condition>Make sure that TCTAppInfoEventTest1.wgt application is installed (you can install it from: My Files/Phone/Others).</pre_condition>
+          <pre_condition>Make sure that TCTAppInfoEventTest1 application is installed (you can install it from: My Files/Phone/Others).</pre_condition>
           <steps>
             <step order="1">
-              <step_desc>Click run and then uninstall TCTAppInfoEventTest1.wgt application, finally look at the results</step_desc>
+              <step_desc>Click run and then uninstall TCTAppInfoEventTest1 application, finally look at the results</step_desc>
               <expected>properly argument</expected>
             </step>
           </steps>