From: Tomasz Kusmierz Date: Thu, 19 Sep 2013 13:39:31 +0000 (+0200) Subject: [Download] clean up X-Git-Tag: 2.2.1_release~114^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a31987d96728766d5ccbeb303ecb5bf5574d32f4;p=test%2Ftct%2Fweb%2Fapi.git [Download] clean up Change-Id: Ib16b6b9b511be41c5af8c23f47335650c9c30936 --- diff --git a/tct-download-tizen-tests/download/DownloadCallback_notexist.html b/tct-download-tizen-tests/download/DownloadCallback_notexist.html index 25f16f72f..358699a2e 100644 --- a/tct-download-tizen-tests/download/DownloadCallback_notexist.html +++ b/tct-download-tizen-tests/download/DownloadCallback_notexist.html @@ -33,12 +33,13 @@ Authors: //==== LABEL: check if is possible to call DownloadCallback in new expresion //==== PRIORITY: P3 //==== SPEC: Tizen Web API:Content:Download:DownloadCallback:DownloadCallback U -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA CBNIO test(function () { check_no_interface_object("DownloadCallback"); }, "DownloadCallback_notexist"); + diff --git a/tct-download-tizen-tests/download/DownloadCallback_oncanceled.html b/tct-download-tizen-tests/download/DownloadCallback_oncanceled.html index 015b2dc35..d13a2edd0 100644 --- a/tct-download-tizen-tests/download/DownloadCallback_oncanceled.html +++ b/tct-download-tizen-tests/download/DownloadCallback_oncanceled.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -32,7 +32,7 @@ Authors: //==== LABEL: Test whether the type of each argument is equal to the specified for oncanceled callback. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadCallback:oncanceled M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA CBT CBOA @@ -47,7 +47,7 @@ t.step(function () { } catch (e) { } }), onpaused : t.step_func(function (id) { - assert_unreached("onpaused reached"); + assert_unreached("onpaused should not be reached"); }), oncanceled: t.step_func(function (id) { assert_type(id, "number", "id type"); @@ -55,15 +55,16 @@ t.step(function () { t.done(); }), oncompleted : t.step_func(function (id, fullPath) { - assert_unreached("oncompleted reached"); + assert_unreached("oncompleted should not be reached"); }), onfailed : t.step_func(function (id, error) { - assert_unreached("onfailed reached:: name: " + error.name + ", msg: " + error.message); + assert_unreached("onfailed should not be reached:: name: " + error.name + ", msg: " + error.message); }) }; downloadRequest = new tizen.DownloadRequest(url_large, "documents"); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadCallback_oncompleted.html b/tct-download-tizen-tests/download/DownloadCallback_oncompleted.html index c58e64a10..48a448a44 100644 --- a/tct-download-tizen-tests/download/DownloadCallback_oncompleted.html +++ b/tct-download-tizen-tests/download/DownloadCallback_oncompleted.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -32,7 +32,7 @@ Authors: //==== LABEL: Test whether the type of each argument is equal to the specified for oncompleted callback. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadCallback:oncompleted M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA CBT CBOA @@ -44,15 +44,15 @@ t.step(function () { onprogress : t.step_func(function (id, receivedSize, totalSize) { }), onpaused : t.step_func(function (id) { - assert_unreached("onpaused reached"); + assert_unreached("onpaused should not be reached"); }), oncanceled : t.step_func(function (id) { - assert_unreached("oncanceled reached"); + assert_unreached("oncanceled should not be reached"); }), oncompleted: t.step_func(function (id, fullPath) { - assert_type(id, "number", "id type"); + assert_type(id, "number", "id type should be number"); assert_equals(id, downloadId, "id is diffrent"); - assert_type(fullPath, "string", "id type"); + assert_type(fullPath, "string", "id type should be a string"); assert_not_equals(fullPath, "", "fullPath is empty"); t.done(); }), @@ -63,6 +63,7 @@ t.step(function () { downloadRequest = new tizen.DownloadRequest(url_small, "documents"); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadCallback_onfailed.html b/tct-download-tizen-tests/download/DownloadCallback_onfailed.html index f8fef3f21..b475278f8 100644 --- a/tct-download-tizen-tests/download/DownloadCallback_onfailed.html +++ b/tct-download-tizen-tests/download/DownloadCallback_onfailed.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -32,7 +32,7 @@ Authors: //==== LABEL: Test whether the type of each argument is equal to the specified for onfailed callback. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadCallback:onfailed M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA CBT CBOA @@ -42,20 +42,20 @@ var t = async_test("DownloadCallback_onfailed", {timeout:90000}), listener, t.step(function () { listener = { onprogress: t.step_func(function (id, receivedSize, totalSize) { - assert_unreached("onprogress reached"); + assert_unreached("onprogress should not be reached"); }), onpaused: t.step_func(function (id) { - assert_unreached("onpaused reached"); + assert_unreached("onpaused should not be reached"); }), oncanceled : t.step_func(function (id) { - assert_unreached("oncanceled reached"); + assert_unreached("oncanceled should not be reached"); }), oncompleted : t.step_func(function (id, fullPath) { - assert_unreached("oncompleted reached"); + assert_unreached("oncompleted should not be reached"); }), onfailed: t.step_func(function (id, err) { - assert_type(id, "number", "id type"); - assert_type(err, "object", "id type"); + assert_type(id, "number", "id type should be a number"); + assert_type(err, "object", "id type should be an object"); assert_not_equals(id, null, "id null check"); assert_not_equals(err, null, "id null check"); t.done(); @@ -64,6 +64,7 @@ t.step(function () { downloadRequest = new tizen.DownloadRequest(url_broken, "documents"); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadCallback_onpaused.html b/tct-download-tizen-tests/download/DownloadCallback_onpaused.html index 7f1af1c67..7d64b21b5 100644 --- a/tct-download-tizen-tests/download/DownloadCallback_onpaused.html +++ b/tct-download-tizen-tests/download/DownloadCallback_onpaused.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -32,7 +32,7 @@ Authors: //==== LABEL: Test whether the type of each argument is equal to the specified for onpaused callback. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadCallback:onpaused M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA CBT CBOA @@ -47,7 +47,7 @@ t.step(function () { } catch (e) { } }), onpaused: t.step_func(function (id) { - assert_type(id, "number", "id type"); + assert_type(id, "number", "id type should be a number"); try { tizen.download.cancel(downloadId); } catch (e) { } @@ -56,7 +56,7 @@ t.step(function () { t.done(); }), oncompleted : t.step_func(function (id, path) { - assert_unreached("oncompleted reached"); + assert_unreached("oncompleted should not be reached"); }), onfailed : t.step_func(function (id, error) { assert_unreached("onfailed reached:: name: " + error.name + ", msg: " + error.message); @@ -65,6 +65,7 @@ t.step(function () { downloadRequest = new tizen.DownloadRequest(url_large, "documents"); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadCallback_onprogress.html b/tct-download-tizen-tests/download/DownloadCallback_onprogress.html index 8a818e7b4..22a529e2a 100644 --- a/tct-download-tizen-tests/download/DownloadCallback_onprogress.html +++ b/tct-download-tizen-tests/download/DownloadCallback_onprogress.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -32,7 +32,7 @@ Authors: //==== LABEL: Test whether the type of each argument is equal to the specified for onprogress callback. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadCallback:onprogress M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA CBT CBOA @@ -45,29 +45,30 @@ t.step(function () { assert_type(id, "number", "id is not a number"); assert_equals(id, downloadId, "The id is diffrent"); assert_type(receivedSize, "number", "receivedSize is not a number"); - assert_type(totalSize, "number", "totalSize type"); - assert_true(totalSize > 0, "totalSize is less than or equals to zero"); + assert_type(totalSize, "number", "totalSize type should be a number"); + assert_greater_than(totalSize, 0, "totalSize is less than or equals to zero"); assert_true(receivedSize >= 0 && receivedSize <= totalSize, "The length of receivedSize between zero and totalSize"); try { tizen.download.cancel(downloadId); } catch (e) { } }), onpaused : t.step_func(function (id) { - assert_unreached("onpaused reached"); + assert_unreached("onpaused should not be reached"); }), oncanceled : t.step_func(function (id) { t.done(); }), oncompleted : t.step_func(function (id, path) { - assert_unreached("oncompleted reached"); + assert_unreached("oncompleted should not be reached"); }), onfailed : t.step_func(function (id, error) { - assert_unreached("onfailed reached:: name: " + error.name + ", msg: " + error.message); + assert_unreached("onfailed should not be reached:: name: " + error.name + ", msg: " + error.message); }) }; downloadRequest = new tizen.DownloadRequest(url_large, "documents"); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadManagerObject_download_exists.html b/tct-download-tizen-tests/download/DownloadManagerObject_download_exists.html index 15f8b0338..6b95cecfc 100644 --- a/tct-download-tizen-tests/download/DownloadManagerObject_download_exists.html +++ b/tct-download-tizen-tests/download/DownloadManagerObject_download_exists.html @@ -32,19 +32,18 @@ Authors: - DownloadManagerObject_download_exists - - - - +DownloadManagerObject_download_exists + + +
- - + diff --git a/tct-download-tizen-tests/download/DownloadManagerObject_notexist.html b/tct-download-tizen-tests/download/DownloadManagerObject_notexist.html index 5339f0266..ed148774d 100644 --- a/tct-download-tizen-tests/download/DownloadManagerObject_notexist.html +++ b/tct-download-tizen-tests/download/DownloadManagerObject_notexist.html @@ -28,17 +28,19 @@ Authors: +
diff --git a/tct-download-tizen-tests/download/DownloadManager_cancel.html b/tct-download-tizen-tests/download/DownloadManager_cancel.html index 6c411cdf5..fc747ed78 100644 --- a/tct-download-tizen-tests/download/DownloadManager_cancel.html +++ b/tct-download-tizen-tests/download/DownloadManager_cancel.html @@ -43,7 +43,7 @@ Authors: //==== LABEL: Check if cancel method with downloadId non-optional argument works //==== PRIORITY: P2 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:cancel M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA MMINA MAST MR @@ -59,24 +59,25 @@ t.step(function () { } catch(e) { } }), onpaused : t.step_func(function (id) { - assert_unreached("onpaused reached"); + assert_unreached("onpaused should not be reached"); }), oncanceled : t.step_func(function (id) { - assert_equals(tizen.download.getState(downloadId), "CANCELED", "DownloadId not cancelled"); - assert_equals(retValue, undefined, "cancel returns wrong value"); + assert_equals(tizen.download.getState(downloadId), "CANCELED", "DownloadId state is not 'CANCELED'"); + assert_equals(retValue, undefined, "oncanceled returns wrong value"); t.done(); }), oncompleted : t.step_func(function (id, path) { - assert_unreached("oncompleted reached"); + assert_unreached("oncompleted should not be reached"); }), onfailed : t.step_func(function (id, error) { - assert_unreached("onfailed reached:: name: " + error.name + ", msg: " + error.message); + assert_unreached("onfailed should not be reached:: name: " + error.name + ", msg: " + error.message); }) }; downloadRequest = new tizen.DownloadRequest(url_large, "documents"); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadManager_cancel_exist.html b/tct-download-tizen-tests/download/DownloadManager_cancel_exist.html index 6f685c7b3..a2a218603 100644 --- a/tct-download-tizen-tests/download/DownloadManager_cancel_exist.html +++ b/tct-download-tizen-tests/download/DownloadManager_cancel_exist.html @@ -44,13 +44,14 @@ Authors: //==== LABEL: Check if cancel method exists in DownloadManager. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:cancel M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA ME test(function () { - assert_true("cancel" in tizen.download, "cancel method exists"); + assert_true("cancel" in tizen.download, "cancel method not exists"); check_method_exists(tizen.download, "cancel"); }, "DownloadManager_cancel_exist"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_extend.html b/tct-download-tizen-tests/download/DownloadManager_extend.html index 4e38d8107..65f8f39f6 100644 --- a/tct-download-tizen-tests/download/DownloadManager_extend.html +++ b/tct-download-tizen-tests/download/DownloadManager_extend.html @@ -16,11 +16,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> - DownloadManager_extend +DownloadManager_extend @@ -32,7 +32,7 @@ Authors: //==== LABEL: test whether the DownloadManager object can have new attribute added //==== PRIORITY: P3 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:DownloadManager U -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA OBX test(function () { diff --git a/tct-download-tizen-tests/download/DownloadManager_getDownloadRequest.html b/tct-download-tizen-tests/download/DownloadManager_getDownloadRequest.html index 6992f1785..cd06bfe2b 100644 --- a/tct-download-tizen-tests/download/DownloadManager_getDownloadRequest.html +++ b/tct-download-tizen-tests/download/DownloadManager_getDownloadRequest.html @@ -26,15 +26,13 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Yue, Jianhui + Yue, Jianhui Beata Koziarek --> DownloadManager_getDownloadRequest - - @@ -45,7 +43,7 @@ Authors: //==== LABEL: Check if getDownloadRequest method with downloadId non-optional argument works //==== PRIORITY: P2 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:getDownloadRequest M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA MR MMINA @@ -54,33 +52,34 @@ var t = async_test("DownloadManager_getDownloadRequest", {timeout:90000}), downloadId, first = true; setup({timeout: 90000}); -t.step(function() { +t.step(function () { var listener = { - onprogress : t.step_func(function(id, receivedSize, totalSize) { + onprogress : t.step_func(function (id, receivedSize, totalSize) { if (first) { downloadRequest = tizen.download.getDownloadRequest(downloadId); - assert_equals(downloadRequest.url, url_small, "url value"); - assert_equals(downloadRequest.destination, destination, "destination value"); - assert_equals(downloadRequest.fileName, fileName, "fileName value"); + assert_equals(downloadRequest.url, url_small, "url valu should not changed"); + assert_equals(downloadRequest.destination, destination, "destination value should not changed"); + assert_equals(downloadRequest.fileName, fileName, "fileName value should not changed"); first = false; } }), onpaused : t.step_func(function (id) { - assert_unreached("onpaused reached"); + assert_unreached("onpaused should not be reached"); }), oncanceled : t.step_func(function (id) { - assert_unreached("oncanceled reached"); + assert_unreached("oncanceled should not be reached"); }), oncompleted : t.step_func(function (id, fullPath) { t.done(); }), onfailed : t.step_func(function (id, error) { - assert_unreached("onfailed reached"); + assert_unreached("onfailed should not be reached"); }) }; downloadRequest = new tizen.DownloadRequest(url_small, destination, fileName); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadManager_getDownloadRequest_exist.html b/tct-download-tizen-tests/download/DownloadManager_getDownloadRequest_exist.html index 16680df23..0a9cc77da 100644 --- a/tct-download-tizen-tests/download/DownloadManager_getDownloadRequest_exist.html +++ b/tct-download-tizen-tests/download/DownloadManager_getDownloadRequest_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Yue, Jianhui + Yue, Jianhui Beata Koziarek --> @@ -44,13 +44,14 @@ Authors: //==== LABEL: Check if getDownloadRequest method exists in DownloadManager. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:getDownloadRequest M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA ME test(function () { - assert_true("getDownloadRequest" in tizen.download, "getDownloadRequest method exists"); + assert_true("getDownloadRequest" in tizen.download, "getDownloadRequest method not exist"); check_method_exists(tizen.download, "getDownloadRequest"); }, "DownloadManager_getDownloadRequest_exist"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_getMIMEType.html b/tct-download-tizen-tests/download/DownloadManager_getMIMEType.html index 6146f100b..94790e21e 100644 --- a/tct-download-tizen-tests/download/DownloadManager_getMIMEType.html +++ b/tct-download-tizen-tests/download/DownloadManager_getMIMEType.html @@ -26,15 +26,13 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Yue, Jianhui + Yue, Jianhui Beata Koziarek --> DownloadManager_getMIMEType - - @@ -45,7 +43,7 @@ Authors: //==== LABEL: Check if getMIMEType method with downloadId non-optional argument works //==== PRIORITY: P2 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:getMIMEType M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA MMINA MR @@ -58,10 +56,10 @@ t.step(function () { onprogress : t.step_func(function (id, receivedSize, totalSize) { }), onpaused : t.step_func(function (id) { - assert_unreached("onpaused reached"); + assert_unreached("onpaused should not be reached"); }), oncanceled : t.step_func(function (id) { - assert_unreached("oncanceled reached"); + assert_unreached("oncanceled should not be reached"); }), oncompleted : t.step_func(function (id, fullPath) { expectedMIMEtype = "image/png"; @@ -70,12 +68,13 @@ t.step(function () { t.done(); }), onfailed : t.step_func(function (id, error) { - assert_unreached("onfailed reached:: name: " + error.name + ", msg: " + error.message); + assert_unreached("onfailed should not be reached:: name: " + error.name + ", msg: " + error.message); }) }; downloadRequest = new tizen.DownloadRequest(url_small, "documents"); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadManager_getMIMEType_exist.html b/tct-download-tizen-tests/download/DownloadManager_getMIMEType_exist.html index b6e6f82da..4659442b8 100644 --- a/tct-download-tizen-tests/download/DownloadManager_getMIMEType_exist.html +++ b/tct-download-tizen-tests/download/DownloadManager_getMIMEType_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Yue, Jianhui + Yue, Jianhui Beata Koziarek --> @@ -44,13 +44,14 @@ Authors: //==== LABEL: Check if getMIMEType method exists in DownloadManager. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:getMIMEType M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA ME test(function () { assert_true("getMIMEType" in tizen.download, "getMIMEType method exists"); check_method_exists(tizen.download, "getMIMEType"); }, "DownloadManager_getMIMEType_exist"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_getState.html b/tct-download-tizen-tests/download/DownloadManager_getState.html index fcaa7b38c..c1beee8c6 100644 --- a/tct-download-tizen-tests/download/DownloadManager_getState.html +++ b/tct-download-tizen-tests/download/DownloadManager_getState.html @@ -26,16 +26,14 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - leizhan - Yue, Jianhui - Beata Koziarek + leizhan + Yue, Jianhui + Beata Koziarek --> DownloadManager_getState - - @@ -46,7 +44,7 @@ Authors: //==== LABEL: Check if getState method with downloadId non-optional argument works //==== PRIORITY: P2 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:getState M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA MMINA MR @@ -59,10 +57,10 @@ t.step(function () { onprogress : t.step_func(function (id, receivedSize, totalSize) { }), onpaused : t.step_func(function (id) { - assert_unreached("onpaused reached"); + assert_unreached("onpaused should not be reached"); }), oncanceled : t.step_func(function (id) { - assert_unreached("oncanceled reached"); + assert_unreached("oncanceled should not be reached"); }), oncompleted: t.step_func(function (id, fullPath) { state = tizen.download.getState(downloadId); @@ -70,12 +68,13 @@ t.step(function () { t.done(); }), onfailed : t.step_func(function (id, error) { - assert_unreached("onfailed reached:: name: " + error.name + ", msg: " + error.message); + assert_unreached("onfailed should not be reached:: name: " + error.name + ", msg: " + error.message); }) }; downloadRequest = new tizen.DownloadRequest(url_small, "documents"); downloadId = tizen.download.start(downloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadManager_getState_exist.html b/tct-download-tizen-tests/download/DownloadManager_getState_exist.html index af14ead8b..14c995fb0 100644 --- a/tct-download-tizen-tests/download/DownloadManager_getState_exist.html +++ b/tct-download-tizen-tests/download/DownloadManager_getState_exist.html @@ -44,13 +44,14 @@ Authors: //==== LABEL: Check if getState method exists in DownloadManager. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:getState M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA ME test(function () { assert_true("getState" in tizen.download, "getState method exists"); check_method_exists(tizen.download, "getState"); }, "DownloadManager_getState_exist"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_getState_using.html b/tct-download-tizen-tests/download/DownloadManager_getState_using.html index 9716c06db..497e0159b 100644 --- a/tct-download-tizen-tests/download/DownloadManager_getState_using.html +++ b/tct-download-tizen-tests/download/DownloadManager_getState_using.html @@ -26,29 +26,24 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - leizhan - Yue, Jianhui + leizhan + Yue, Jianhui --> -Download Test: DownloadManager_getState_using - - - - - - +DownloadManager_getState_using +
diff --git a/tct-download-tizen-tests/download/DownloadManager_in_tizen.html b/tct-download-tizen-tests/download/DownloadManager_in_tizen.html index a95dfbbec..dbe0b9ed8 100644 --- a/tct-download-tizen-tests/download/DownloadManager_in_tizen.html +++ b/tct-download-tizen-tests/download/DownloadManager_in_tizen.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -30,15 +30,16 @@ Authors:
diff --git a/tct-download-tizen-tests/download/DownloadManager_notexist.html b/tct-download-tizen-tests/download/DownloadManager_notexist.html index 32cce8ab5..ef22e2b04 100644 --- a/tct-download-tizen-tests/download/DownloadManager_notexist.html +++ b/tct-download-tizen-tests/download/DownloadManager_notexist.html @@ -33,11 +33,12 @@ Authors: //==== LABEL: check if is possible to call DownloadManager in new expresion //==== PRIORITY: P3 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:DownloadManager U -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA NIO test(function () { check_no_interface_object("DownloadManager"); }, "DownloadManager_notexist"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_pause.html b/tct-download-tizen-tests/download/DownloadManager_pause.html index 8e62b8a95..ca1ec1bdb 100644 --- a/tct-download-tizen-tests/download/DownloadManager_pause.html +++ b/tct-download-tizen-tests/download/DownloadManager_pause.html @@ -26,9 +26,9 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - leizhan - Yue, Jianhui - Beata Koziarek + leizhan + Yue, Jianhui + Beata Koziarek --> @@ -38,13 +38,14 @@ Authors: +
diff --git a/tct-download-tizen-tests/download/DownloadManager_pause_exist.html b/tct-download-tizen-tests/download/DownloadManager_pause_exist.html index 927d63651..5676d9100 100644 --- a/tct-download-tizen-tests/download/DownloadManager_pause_exist.html +++ b/tct-download-tizen-tests/download/DownloadManager_pause_exist.html @@ -44,13 +44,14 @@ Authors: //==== LABEL: Check if pause method exists in DownloadManager. //==== PRIORITY: P1 //==== SPEC Tizen Web API:Content:Download:DownloadManager:pause M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA ME test(function () { - assert_true("pause" in tizen.download, "pause method exists"); + assert_true("pause" in tizen.download, "pause method not exist"); check_method_exists(tizen.download, "pause"); }, "DownloadManager_pause_exist"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_resume.html b/tct-download-tizen-tests/download/DownloadManager_resume.html index bd8653fcb..2c7a1391e 100644 --- a/tct-download-tizen-tests/download/DownloadManager_resume.html +++ b/tct-download-tizen-tests/download/DownloadManager_resume.html @@ -26,27 +26,26 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - leizhan - Yue, Jianhui - Beata Koziarek + leizhan + Yue, Jianhui + Beata Koziarek --> DownloadManager_resume - - +
diff --git a/tct-download-tizen-tests/download/DownloadManager_resume_exist.html b/tct-download-tizen-tests/download/DownloadManager_resume_exist.html index d40836a2d..96b0a5e0e 100644 --- a/tct-download-tizen-tests/download/DownloadManager_resume_exist.html +++ b/tct-download-tizen-tests/download/DownloadManager_resume_exist.html @@ -26,7 +26,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - leizhan + leizhan Beata Koziarek --> @@ -44,13 +44,14 @@ Authors: //==== LABEL: Check if resume method exists in DownloadManager. //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:resume M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA ME test(function () { - assert_true("resume" in tizen.download, "resume method exists"); + assert_true("resume" in tizen.download, "resume method not exist"); check_method_exists(tizen.download, "resume"); }, "DownloadManager_resume_exist"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_setListener.html b/tct-download-tizen-tests/download/DownloadManager_setListener.html index d06f8a54f..6af65237e 100644 --- a/tct-download-tizen-tests/download/DownloadManager_setListener.html +++ b/tct-download-tizen-tests/download/DownloadManager_setListener.html @@ -26,26 +26,25 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - Yue, Jianhui + Yue, Jianhui Beata Koziarek --> -DownloadManager_getMIMEType - - +DownloadManager_setListener +
diff --git a/tct-download-tizen-tests/download/DownloadManager_setListener_downloadCallback_TypeMismatch.html b/tct-download-tizen-tests/download/DownloadManager_setListener_downloadCallback_TypeMismatch.html index 4cfc842b5..fa2856844 100644 --- a/tct-download-tizen-tests/download/DownloadManager_setListener_downloadCallback_TypeMismatch.html +++ b/tct-download-tizen-tests/download/DownloadManager_setListener_downloadCallback_TypeMismatch.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziare + Beata Koziare --> @@ -34,25 +34,25 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 90 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:setListener M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA MC setup({timeout: 90000}); var t = async_test("DownloadManager_setListener_downloadCallback_TypeMismatch", {timeout: 90000}), - downloadRequest, downloadId, successCallback, exceptionName, conversionTable, i; + downloadRequest, downloadId, listener, exceptionName, conversionTable, i; t.step(function () { downloadRequest = new tizen.DownloadRequest(url_small, "documents"); downloadId = tizen.download.start(downloadRequest); conversionTable = getTypeConversionExceptions("object", false); for (i = 0; i < conversionTable.length; i++) { - successCallback = conversionTable[i][0]; + listener = conversionTable[i][0]; exceptionName = conversionTable[i][1]; assert_throws({name : exceptionName}, function () { - tizen.download.setListener(downloadId, successCallback); - }, exceptionName + " should be thrown - given incorrect successCallback."); + tizen.download.setListener(downloadId, listener); + }, exceptionName + " should be thrown - given incorrect listener."); } try { tizen.download.cancel(downloadId); diff --git a/tct-download-tizen-tests/download/DownloadManager_setListener_downloadCallback_invalid_cb.html b/tct-download-tizen-tests/download/DownloadManager_setListener_downloadCallback_invalid_cb.html index 36e239265..fa69bcc47 100644 --- a/tct-download-tizen-tests/download/DownloadManager_setListener_downloadCallback_invalid_cb.html +++ b/tct-download-tizen-tests/download/DownloadManager_setListener_downloadCallback_invalid_cb.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -30,11 +30,11 @@ Authors:
diff --git a/tct-download-tizen-tests/download/DownloadManager_setListener_missarg.html b/tct-download-tizen-tests/download/DownloadManager_setListener_missarg.html index 95ba61dd7..98e4f44c4 100644 --- a/tct-download-tizen-tests/download/DownloadManager_setListener_missarg.html +++ b/tct-download-tizen-tests/download/DownloadManager_setListener_missarg.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -30,10 +30,10 @@ Authors:
@@ -46,7 +42,7 @@ Authors: //==== LABEL Check if method setListener throw an TypeMismatchError when the input download id is null. //==== PRIORITY P2 //==== SPEC Tizen Web API:Content:Download:DownloadManager:setListener M -//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA MC test(function () { @@ -55,6 +51,7 @@ test(function () { tizen.download.setListener(null, null); }, "TypeMismatchError exception should be thrown (given null arguments)."); }, "DownloadManager_setListener_null"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_start.html b/tct-download-tizen-tests/download/DownloadManager_start.html index 61e9572a3..bbda495d0 100644 --- a/tct-download-tizen-tests/download/DownloadManager_start.html +++ b/tct-download-tizen-tests/download/DownloadManager_start.html @@ -16,14 +16,12 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> DownloadManager_start - - @@ -34,7 +32,7 @@ Authors: //==== LABEL: Check if start method with downloadRequest non-optional argument works //==== PRIORITY: P2 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:start M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA MMINA MR MAST var destination, DownloadRequest, downloadId = null; @@ -42,11 +40,12 @@ test(function () { destination = "documents"; DownloadRequest = new tizen.DownloadRequest(url_small, destination); downloadId = tizen.download.start(DownloadRequest); - assert_not_equals(downloadId, null, "downloadId is null"); - assert_equals(DownloadRequest.url, url_small, "urls are different"); - assert_equals(DownloadRequest.destination, destination, "destinations are different"); + assert_not_equals(downloadId, null, "downloadId should not be null"); + assert_equals(DownloadRequest.url, url_small, "url should not change"); + assert_equals(DownloadRequest.destination, destination, "destination should not change"); tizen.download.cancel(downloadId); }, "DownloadManager_start"); + diff --git a/tct-download-tizen-tests/download/DownloadManager_start_downloadCallback_TypeMismatch.html b/tct-download-tizen-tests/download/DownloadManager_start_downloadCallback_TypeMismatch.html index 0b71492b0..719fc487c 100644 --- a/tct-download-tizen-tests/download/DownloadManager_start_downloadCallback_TypeMismatch.html +++ b/tct-download-tizen-tests/download/DownloadManager_start_downloadCallback_TypeMismatch.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziare + Beata Koziare --> @@ -34,25 +34,25 @@ Authors: //==== PRIORITY: P2 //==== ONLOAD_DELAY 90 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:start M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA MC // DownloadManager_start_downloadCallback_TypeMismatch for start method. setup({timeout: 90000}); var t = async_test("DownloadManager_start_downloadCallback_TypeMismatch", {timeout: 90000}), - downloadRequest, successCallback, exceptionName, conversionTable, i; + downloadRequest, listener, exceptionName, conversionTable, i; t.step(function () { downloadRequest = new tizen.DownloadRequest(url_small, "documents"); conversionTable = getTypeConversionExceptions("object", true); for (i = 0; i < conversionTable.length; i++) { - successCallback = conversionTable[i][0]; + listener = conversionTable[i][0]; exceptionName = conversionTable[i][1]; assert_throws({name : exceptionName}, function () { - tizen.download.start(downloadRequest, successCallback); - }, exceptionName + " should be thrown - given incorrect successCallback."); + tizen.download.start(downloadRequest, listener); + }, exceptionName + " should be thrown - given incorrect listener."); } t.done(); }); diff --git a/tct-download-tizen-tests/download/DownloadManager_start_downloadCallback_invalid_cb.html b/tct-download-tizen-tests/download/DownloadManager_start_downloadCallback_invalid_cb.html index 7ee66d00f..0f7256dcb 100644 --- a/tct-download-tizen-tests/download/DownloadManager_start_downloadCallback_invalid_cb.html +++ b/tct-download-tizen-tests/download/DownloadManager_start_downloadCallback_invalid_cb.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -30,10 +30,10 @@ Authors:
@@ -30,11 +30,11 @@ Authors:
diff --git a/tct-download-tizen-tests/download/DownloadManager_start_missarg.html b/tct-download-tizen-tests/download/DownloadManager_start_missarg.html index c2157ade3..510c780a9 100644 --- a/tct-download-tizen-tests/download/DownloadManager_start_missarg.html +++ b/tct-download-tizen-tests/download/DownloadManager_start_missarg.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -33,7 +33,7 @@ Authors: //==== LABEL: Check if start method with missing non-optional argument works //==== PRIORITY: P2 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:start M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA MMA test(function () { diff --git a/tct-download-tizen-tests/download/DownloadManager_start_with_downloadCallback.html b/tct-download-tizen-tests/download/DownloadManager_start_with_downloadCallback.html index 2e8fb5afa..d7b922f13 100644 --- a/tct-download-tizen-tests/download/DownloadManager_start_with_downloadCallback.html +++ b/tct-download-tizen-tests/download/DownloadManager_start_with_downloadCallback.html @@ -26,16 +26,14 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: - leizhan - Yue, Jianhui - Beata Koziarek + leizhan + Yue, Jianhui + Beata Koziarek --> DownloadManager_start_with_downloadCallback - - @@ -46,7 +44,7 @@ Authors: //==== LABEL: Check if start method with downloadCallback optional argument works //==== PRIORITY: P2 //==== SPEC: Tizen Web API:Content:Download:DownloadManager:start M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== ONLOAD_DELAY 90 //==== TEST_CRITERIA MOA MAST @@ -62,6 +60,7 @@ t.step(function () { DownloadRequest = new tizen.DownloadRequest(url_small, destination); tizen.download.start(DownloadRequest, listener); }); + diff --git a/tct-download-tizen-tests/download/DownloadManager_start_with_extra_argument.html b/tct-download-tizen-tests/download/DownloadManager_start_with_extra_argument.html index b3f5a7ad9..735efb123 100644 --- a/tct-download-tizen-tests/download/DownloadManager_start_with_extra_argument.html +++ b/tct-download-tizen-tests/download/DownloadManager_start_with_extra_argument.html @@ -18,13 +18,13 @@ limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> - + -download/UTC_download +DownloadManager_start_with_extra_argument @@ -37,7 +37,7 @@ Authors: //==== TEST: DownloadManager_start_with_extra_argument //==== LABEL check whether 'start' method returns correct value when extra argument is given //==== SPEC Tizen Web API:Content:Download:DownloadManager:start M -//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html#startid2381395 +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA MOA MR test(function () { var downloadRequest = new tizen.DownloadRequest(url_small), downloadId, i, @@ -61,7 +61,7 @@ test(function () { } }, "DownloadManager_start_with_extra_argument"); + - diff --git a/tct-download-tizen-tests/download/DownloadRequest_constructor.html b/tct-download-tizen-tests/download/DownloadRequest_constructor.html index a610163f5..1e8596a1e 100644 --- a/tct-download-tizen-tests/download/DownloadRequest_constructor.html +++ b/tct-download-tizen-tests/download/DownloadRequest_constructor.html @@ -33,16 +33,16 @@ Authors: //==== LABEL: check if the values of the attributes are equal to the arguments passed //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadRequest:constructor C -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA CONSTRA CONSTRM var downloadRequest, destination = "documents", fileName = "download.html"; test(function (){ downloadRequest = new tizen.DownloadRequest(url_small, destination, fileName); - assert_type(downloadRequest, "object", "DownloadRequest constructor test."); - assert_equals(downloadRequest.url, url_small, "urls are different"); - assert_equals(downloadRequest.destination, destination, "destinations are different"); - assert_equals(downloadRequest.fileName, fileName, "fileName are different"); + assert_type(downloadRequest, "object", "DownloadRequest should be an object."); + assert_equals(downloadRequest.url, url_small, "url should not change"); + assert_equals(downloadRequest.destination, destination, "destination should not change"); + assert_equals(downloadRequest.fileName, fileName, "fileName should not change"); }, "DownloadRequest_constructor"); diff --git a/tct-download-tizen-tests/download/DownloadRequest_destination_attribute.html b/tct-download-tizen-tests/download/DownloadRequest_destination_attribute.html index 1739a506e..4c28d82d1 100644 --- a/tct-download-tizen-tests/download/DownloadRequest_destination_attribute.html +++ b/tct-download-tizen-tests/download/DownloadRequest_destination_attribute.html @@ -18,11 +18,11 @@ limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> - DownloadRequest_destination_attribute +DownloadRequest_destination_attribute @@ -34,7 +34,7 @@ Authors: //==== LABEL: check attribute destination //==== PRIORITY: P1 //==== SPEC: Tizen Web API:Content:Download:DownloadRequest:destination A -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA AE AT ASG ADV var downloadRequest = null, default_val = ""; diff --git a/tct-download-tizen-tests/download/DownloadRequest_exist.html b/tct-download-tizen-tests/download/DownloadRequest_exist.html index f0e50690c..24d969fd1 100644 --- a/tct-download-tizen-tests/download/DownloadRequest_exist.html +++ b/tct-download-tizen-tests/download/DownloadRequest_exist.html @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> @@ -33,7 +33,7 @@ Authors: //==== LABEL: Test whether the constructor of the interface is defined or not for DownloadRequest. //==== PRIORITY: P0 //==== SPEC: Tizen Web API:Content:Download:DownloadRequest:constructor C -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA CONSTRF test(function () { diff --git a/tct-download-tizen-tests/download/DownloadRequest_extend.html b/tct-download-tizen-tests/download/DownloadRequest_extend.html index 6f5f9c84a..e313be5db 100644 --- a/tct-download-tizen-tests/download/DownloadRequest_extend.html +++ b/tct-download-tizen-tests/download/DownloadRequest_extend.html @@ -16,11 +16,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> - DownloadRequest_extend +DownloadRequest_extend @@ -32,7 +32,7 @@ Authors: //==== LABEL: test whether the object can have new attribute added //==== PRIORITY: P3 //==== SPEC: Tizen Web API:Content:Download:DownloadRequest:DownloadRequest U -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/download.html //==== TEST_CRITERIA OBX var downloadRequest = null; test(function () { diff --git a/tct-download-tizen-tests/download/DownloadRequest_fileName_attribute.html b/tct-download-tizen-tests/download/DownloadRequest_fileName_attribute.html index ed23a70bc..b36d6823f 100644 --- a/tct-download-tizen-tests/download/DownloadRequest_fileName_attribute.html +++ b/tct-download-tizen-tests/download/DownloadRequest_fileName_attribute.html @@ -16,11 +16,11 @@ See the License for the specific language governing permissions and limitations under the License. Authors: - Beata Koziarek + Beata Koziarek --> - DownloadRequest_fileName_attribute +DownloadRequest_fileName_attribute @@ -30,17 +30,17 @@ Authors:
@@ -28,10 +28,10 @@ Authors:
@@ -28,10 +28,10 @@ Authors:
@@ -28,10 +28,10 @@ Authors: