diff --git a/request/RequestTest_ets/entry/src/main/ets/test/requestDownload.test.ets b/request/RequestTest_ets/entry/src/main/ets/test/requestDownload.test.ets index 6e24a16fe11a2eac163bbe2c688942d75eefad09..bb1a5b8b3088db6d2d8440b273d5dcf058ba25c4 100644 --- a/request/RequestTest_ets/entry/src/main/ets/test/requestDownload.test.ets +++ b/request/RequestTest_ets/entry/src/main/ets/test/requestDownload.test.ets @@ -19,34 +19,34 @@ import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from " export default function requestDownloadJSUnit() { describe('requestDownloadTest', function () { - console.info('################################request download Test start'); + console.info('====>################################request download Test start'); /** * beforeAll: Prerequisites at the test suite level, which are executed before the test suite is executed. */ beforeAll(function () { - console.info('beforeAll: Prerequisites are executed.'); + console.info('====>beforeAll: Prerequisites are executed.'); }); /** * beforeEach: Prerequisites at the test case level, which are executed before each test case is executed. */ beforeEach(function () { - console.info('beforeEach: Prerequisites is executed.'); + console.info('====>beforeEach: Prerequisites is executed.'); }); /** * afterEach: Test case-level clearance conditions, which are executed after each test case is executed. */ afterEach(function () { - console.info('afterEach: Test case-level clearance conditions is executed.'); + console.info('====>afterEach: Test case-level clearance conditions is executed.'); }); /** * afterAll: Test suite-level cleanup condition, which is executed after the test suite is executed. */ afterAll(function () { - console.info('afterAll: Test suite-level cleanup condition is executed'); + console.info('====>afterAll: Test suite-level cleanup condition is executed'); }); let downloadTask; @@ -72,18 +72,18 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_CALLBACK_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_CALLBACK_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_CALLBACK_0001 is starting-----------------------"); try { request.download(downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_CALLBACK_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_CALLBACK_0001 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); }); } catch (err) { console.error("SUB_REQUEST_DOWNLOAD_API_CALLBACK_0001 error: " + err); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_CALLBACK_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_CALLBACK_0001 end-----------------------"); done(); }); @@ -95,16 +95,16 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_PROMISE_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_PROMISE_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_PROMISE_0001 is starting-----------------------"); request.download(downloadConfig).then(data => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_PROMISE_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_PROMISE_0001 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); }).catch(err => { console.error("SUB_REQUEST_DOWNLOAD_API_PROMISE_0001 error: " + err); expect().assertFail(); }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_PROMISE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_PROMISE_0001 end-----------------------"); done(); }); @@ -116,20 +116,20 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 downloadTask: " + downloadTask); expect(true).assertEqual(downloadTask != undefined); downloadTask.on('progress', (data1, data2) => { - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 on data1 =" + data1); - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 on data2 =" + data2); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 on data1 =" + data1); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 on data2 =" + data2); expect(true).assertEqual(data1 != undefined); expect(true).assertEqual(data2 != undefined); }); }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0001 end-----------------------"); done(); }); @@ -141,21 +141,21 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0002 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0002 downloadTask: " + downloadTask); - expect(true).assertEqual(downloadTask != undefined); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0002 downloadTask: " + downloadTask); try{ + expect(true).assertEqual(downloadTask != undefined); downloadTask.on('complete', () => { - console.info('SUB_REQUEST_DOWNLOAD_API_CALLBACK_0002 task completed.') + console.info('====>SUB_REQUEST_DOWNLOAD_API_CALLBACK_0002 task completed.') }); }catch(err){ console.error("SUB_REQUEST_DOWNLOAD_API_CALLBACK_0002 error: " + err); expect().assertFail(); } }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0002 end-----------------------"); done(); }); @@ -167,21 +167,21 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 downloadTask: " + downloadTask); - expect(true).assertEqual(downloadTask != undefined); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 downloadTask: " + downloadTask); try{ + expect(true).assertEqual(downloadTask != undefined); downloadTask.on('pause', () => { - console.info('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 task pause.') + console.info('====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 task pause.') }); }catch(err){ console.error("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 error: " + err); expect().assertFail(); } }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0003 end-----------------------"); done(); }); @@ -193,21 +193,22 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 downloadTask: " + downloadTask); - expect(downloadTask != undefined).assertEqual(true); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 downloadTask: " + downloadTask); + try{ + expect(downloadTask != undefined).assertEqual(true); downloadTask.on('remove', () => { - console.info('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 task remove.') + console.info('====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 task remove.') }); }catch(err){ console.error("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 error: " + err); expect().assertFail(); } }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0004 end-----------------------"); done(); }); @@ -219,21 +220,21 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); try{ downloadTask.on('remove', () => { - console.info('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 task remove.') + console.info('====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 task remove.') }); }catch(err){ console.error("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 error: " + err); expect().assertFail(); } }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_ON_0005 end-----------------------"); done(); }); @@ -245,19 +246,19 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.off('progress', (data1, data2) => { - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 on data1 =" + data1); - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 on data2 =" + data2); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 on data1 =" + data1); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 on data2 =" + data2); expect(data1 != undefined).assertEqual(true); expect(data2 != undefined).assertEqual(true); }); }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0001 end-----------------------"); done(); }); @@ -269,21 +270,21 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); try{ downloadTask.off('complete', () => { - console.info('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 task complete.') + console.info('====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 task complete.') }); }catch(err){ console.error("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 error: " + err); expect().assertFail(); } }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 end-----------------------"); done(); }); @@ -295,21 +296,21 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0003', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0003 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0003 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0003 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0003 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); try{ downloadTask.off('pause', () => { - console.info('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0003 task pause.') + console.info('====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0003 task pause.') }); }catch(err){ console.error("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0003 error: " + err); expect().assertFail(); } }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 end-----------------------"); done(); }); @@ -321,21 +322,21 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); try{ downloadTask.off('remove', () => { - console.info('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 task remove.') + console.info('====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 task remove.') }); }catch(err){ console.error("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 error: " + err); expect().assertFail(); } }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0004 end-----------------------"); done(); }); @@ -347,21 +348,21 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); try{ downloadTask.off('pause', () => { - console.info('SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 task complete.') + console.info('====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 task complete.') }); }catch(err){ console.error("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 error: " + err); expect().assertFail(); } }); - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0002 end-----------------------"); done(); }); @@ -373,10 +374,10 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_REMOVE_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_REMOVE_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_REMOVE_0001 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.remove((err, data)=>{ if(err) { @@ -384,7 +385,7 @@ export default function requestDownloadJSUnit() { expect().assertFail(); } if (data) { - console.info('SUB_REQUEST_DOWNLOAD_API_REMOVE_0001 Download task removed.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_REMOVE_0001 Download task removed.'); expect(data == true).assertTrue(); } else { console.error('SUB_REQUEST_DOWNLOAD_API_REMOVE_0001 Failed to remove the download task.'); @@ -392,7 +393,7 @@ export default function requestDownloadJSUnit() { } }); }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_REMOVE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_REMOVE_0001 end-----------------------"); done(); }); @@ -404,14 +405,14 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_REMOVE_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_REMOVE_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_REMOVE_0002 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.remove().then(data => { if (data) { - console.info('SUB_REQUEST_DOWNLOAD_API_REMOVE_0002 Download task removed.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_REMOVE_0002 Download task removed.'); expect(data == true).assertTrue(); } else { console.error('SUB_REQUEST_DOWNLOAD_API_REMOVE_0002 Failed to remove the download task.'); @@ -422,7 +423,7 @@ export default function requestDownloadJSUnit() { expect().assertFail(); }) }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_REMOVE_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_REMOVE_0002 end-----------------------"); done(); }); @@ -434,14 +435,14 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_PAUSE_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_PAUSE_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_PAUSE_0001 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); try{ downloadTask.pause(()=>{ - console.info('SUB_REQUEST_DOWNLOAD_API_PAUSE_0001 Download task pause success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_PAUSE_0001 Download task pause success.'); expect(true).assertTrue(); }) }catch(err){ @@ -449,7 +450,7 @@ export default function requestDownloadJSUnit() { expect().assertFail(); } }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_PAUSE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_PAUSE_0001 end-----------------------"); done(); }); @@ -461,20 +462,20 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_PAUSE_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_PAUSE_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_PAUSE_0002 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.pause().then(() => { - console.info('SUB_REQUEST_DOWNLOAD_API_PAUSE_0002 Download task pause success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_PAUSE_0002 Download task pause success.'); expect(true).assertTrue(); }).catch((err) => { console.error('Failed to pause the download task pause. because: ' + JSON.stringify(err)); expect().assertFail(); }) }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_PAUSE_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_PAUSE_0002 end-----------------------"); done(); }); @@ -486,14 +487,14 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_REMUSE_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_REMUSE_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_REMUSE_0001 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); try{ downloadTask.resume(()=>{ - console.info('SUB_REQUEST_DOWNLOAD_API_REMUSE_0001 Download task resume success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_REMUSE_0001 Download task resume success.'); expect(true).assertTrue(); }) }catch(err){ @@ -501,7 +502,7 @@ export default function requestDownloadJSUnit() { expect().assertFail(); } }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_REMUSE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_REMUSE_0001 end-----------------------"); done(); }); @@ -513,20 +514,20 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_REMUSE_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_REMUSE_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_REMUSE_0002 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.resume().then(() => { - console.info('SUB_REQUEST_DOWNLOAD_API_REMUSE_0002 Download task resume success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_REMUSE_0002 Download task resume success.'); expect(true).assertTrue(); }).catch((err) => { console.error('Failed to pause the download task resume. because: ' + JSON.stringify(err)); expect().assertFail(); }) }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_REMUSE_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_REMUSE_0002 end-----------------------"); done(); }); @@ -538,10 +539,10 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_QUERY_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_QUERY_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_QUERY_0001 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); try{ downloadTask.query((err, downloadInfo)=>{ @@ -549,17 +550,17 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 Failed to query: ' + JSON.stringify(err)); expect().assertFail(); } else { - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.description); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadedBytes); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadId); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.failedReason); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.fileName); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.filePath); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.pausedReason); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.status); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.targetURI); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadTitle); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadTotalBytes); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.description); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadedBytes); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadId); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.failedReason); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.fileName); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.filePath); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.pausedReason); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.status); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.targetURI); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadTitle); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadTotalBytes); expect(true).assertTrue(); } }) @@ -568,7 +569,7 @@ export default function requestDownloadJSUnit() { expect().assertFail(); } }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_QUERY_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_QUERY_0001 end-----------------------"); done(); }); @@ -580,27 +581,27 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_QUERY_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_QUERY_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_QUERY_0002 is starting-----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.query().then((err, downloadInfo)=>{ if(err) { console.error('SUB_REQUEST_DOWNLOAD_API_QUERY_0002 Failed to query: ' + JSON.stringify(err)); expect().assertFail(); } else { - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.description); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadedBytes); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadId); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.failedReason); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.fileName); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.filePath); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.pausedReason); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.status); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.targetURI); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadTitle); - console.info('SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadTotalBytes); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.description); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadedBytes); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadId); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.failedReason); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.fileName); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.filePath); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.pausedReason); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.status); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.targetURI); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadTitle); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERY_0001 query info: '+ downloadInfo.downloadTotalBytes); expect(true).assertTrue(); } }).catch(err => { @@ -608,7 +609,7 @@ export default function requestDownloadJSUnit() { expect().assertFail(); }) }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_QUERY_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_QUERY_0002 end-----------------------"); done(); }); @@ -620,10 +621,10 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0001', 0, async function (done) { - console.info("---------------------SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0001 is starting---------------------"); + console.info("====>---------------------SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0001 is starting---------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.queryMimeType((err, data)=>{ if(err) { @@ -631,7 +632,7 @@ export default function requestDownloadJSUnit() { expect().assertFail(); } if (data) { - console.info('SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0001 Download task queryMimeType.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0001 Download task queryMimeType.'); expect(typeof data == "string").assertTrue(); } else { console.error('SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0001 Failed to queryMimeType the download task.'); @@ -639,7 +640,7 @@ export default function requestDownloadJSUnit() { } }); }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0001 end-----------------------"); done(); }); @@ -651,14 +652,14 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0002', 0, async function (done) { - console.info("-------------------SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0002 is starting----------------------"); + console.info("====>-------------------SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0002 is starting----------------------"); request.download( downloadConfig, (data)=>{ downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DOWNLOADTASK_OFF_0005 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.queryMimeType().then(data => { if (data) { - console.info('SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0002 Download task queryMimeType.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0002 Download task queryMimeType.'); expect(data == true).assertTrue(); } else { console.error('SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0002 Failed to queryMimeType the download task.'); @@ -669,7 +670,7 @@ export default function requestDownloadJSUnit() { expect().assertFail(); }) }) - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_QUERYMINETYPE_0002 end-----------------------"); done(); }); @@ -681,18 +682,18 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DELETE_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_delete_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_delete_0001 is starting-----------------------"); try { request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DELETE_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DELETE_0001 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.delete((err, data) => { if (err) { console.error('SUB_REQUEST_DOWNLOAD_API_DELETE_0001 Failed to delete the download task.'); expect().assertFail(); } - console.info('SUB_REQUEST_DOWNLOAD_API_DELETE_0001 Download task delete success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_DELETE_0001 Download task delete success.'); expect(typeof data == "boolean").assertTrue(); }); }) @@ -700,7 +701,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_DELETE_0001 delete catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DELETE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DELETE_0001 end-----------------------"); done(); }); @@ -712,17 +713,17 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_DELETE_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DELETE_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DELETE_0002 is starting-----------------------"); try { request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_DELETE_0002 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_DELETE_0002 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.delete().then(data => { - console.info('SUB_REQUEST_DOWNLOAD_API_DELETE_0002 Download task delete success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_DELETE_0002 Download task delete success.'); expect(data == true).assertTrue(); }).catch((err) => { - console.info('SUB_REQUEST_DOWNLOAD_API_DELETE_0002 Failed to delete the download task.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_DELETE_0002 Failed to delete the download task.'); expect().assertFail(); }) }) @@ -730,7 +731,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_DELETE_0002 delete catch error'); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_DELETE_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_DELETE_0002 end-----------------------"); done(); }); @@ -742,18 +743,18 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 is starting-----------------------"); try { request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.suspend((err, data) => { if (err) { console.error('SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 Failed to suspend the download task.'); expect().assertFail(); } - console.info('SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 Download task suspend success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 Download task suspend success.'); expect(data == true).assertTrue(); }); }) @@ -762,7 +763,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 suspend catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 end-----------------------"); done(); }); @@ -774,17 +775,17 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002 is starting-----------------------"); try { request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.suspend().then(data => { - console.info('SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 Download task suspend success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 Download task suspend success.'); expect(data == true).assertTrue(); }).catch((err) => { - console.info('SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002 Failed to suspend the download task.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002 Failed to suspend the download task.'); expect().assertFail(); }) }) @@ -793,7 +794,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_SUSPEND_0001 suspend catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_SUSPEND_0002 end-----------------------"); done(); }); @@ -805,18 +806,18 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_RESTORE_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 is starting-----------------------"); try{ request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.restore((err, data) => { if (err) { console.error('SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 Failed to restore the download task.'); expect().assertFail(); } - console.info('SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 Download restore success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 Download restore success.'); expect(data == true).assertTrue(); }); }); @@ -824,7 +825,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 restore catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 end-----------------------"); done(); }); @@ -836,17 +837,17 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_RESTORE_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 is starting-----------------------"); try{ request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.restore().then(data => { - console.info('SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 Download task restore.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 Download task restore.'); expect(data == true).assertTrue(); }).catch((err) => { - console.info('SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 Failed to restore the download task.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 Failed to restore the download task.'); expect().assertFail(); }); }); @@ -854,7 +855,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_RESTORE_0001 restore catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_RESTORE_0002 end-----------------------"); done(); }); @@ -866,18 +867,18 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001', 0, async function (done) { - console.info("---------------------SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 is starting---------------------"); + console.info("====>---------------------SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 is starting---------------------"); try{ request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.getTaskInfo((err, data) => { if (err) { console.error('SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 Failed to getTaskInfo the download task.'); expect().assertFail(); } - console.info('SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 Download getTaskInfo success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 Download getTaskInfo success.'); expect(typeof data == "object").assertTrue(); }); }); @@ -885,7 +886,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 getTaskInfo catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 end-----------------------"); done(); }); @@ -897,14 +898,14 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002', 0, async function (done) { - console.info("-------------------SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 is starting----------------------"); + console.info("====>-------------------SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 is starting----------------------"); try{ request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.getTaskInfo().then(data => { - console.info('SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 Download task getTaskInfo success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 Download task getTaskInfo success.'); expect(typeof data == "object").assertTrue(); }).catch((err) => { console.error('SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 Failed to getTaskInfo the download task.'); @@ -915,7 +916,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0001 getTaskInfo catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_GETTASKINFO_0002 end-----------------------"); done(); }); @@ -927,18 +928,18 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001', 0, async function (done) { - console.info("---------------------SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 is starting---------------------"); + console.info("====>---------------------SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 is starting---------------------"); try{ request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.getTaskMimeType((err, data) => { if (err) { console.error('SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 Failed to getTaskMimeType the download task.'); expect().assertFail(); } - console.info('SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 Download task getTaskMimeType success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 Download task getTaskMimeType success.'); expect(typeof data == "string").assertTrue(); }); }); @@ -946,7 +947,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 getTaskMimeType catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 end-----------------------"); done(); }); @@ -958,14 +959,14 @@ export default function requestDownloadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002', 0, async function (done) { - console.info("-------------------SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 is starting----------------------"); + console.info("====>-------------------SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 is starting----------------------"); try{ request.download(downloadConfig, (data) => { downloadTask = data; - console.info("SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 downloadTask: " + downloadTask); + console.info("====>SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 downloadTask: " + downloadTask); expect(downloadTask != undefined).assertEqual(true); downloadTask.getTaskMimeType().then(data => { - console.info('SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 Download getTaskMimeType success.'); + console.info('====>SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 Download getTaskMimeType success.'); expect(typeof data == "string").assertTrue(); }).catch((err) => { console.error('SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 Failed to getTaskMimeType the download task.'); @@ -976,7 +977,7 @@ export default function requestDownloadJSUnit() { console.error('SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0001 getTaskMimeType catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_DOWNLOAD_API_GETTASKMIMETYPE_0002 end-----------------------"); done(); }); diff --git a/request/RequestTest_ets/entry/src/main/ets/test/requestSystem.test.ets b/request/RequestTest_ets/entry/src/main/ets/test/requestSystem.test.ets index c1810e3bd1e0ecae44854d4f7f4ca041a464d5de..1c52426b51eaf712b4c8b217be8e530f4abdf8ba 100644 --- a/request/RequestTest_ets/entry/src/main/ets/test/requestSystem.test.ets +++ b/request/RequestTest_ets/entry/src/main/ets/test/requestSystem.test.ets @@ -18,7 +18,7 @@ import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from " export default function requestSystemJSUnit() { describe('requestSystemJSUnit', function () { - console.info('****************start requestSystemTest*****************') + console.info('====>****************start requestSystemTest*****************') /** * @tc.name: ohos.SUB_REQUESTSYSTEM_UPLOAD_API_0001 @@ -28,7 +28,7 @@ export default function requestSystemJSUnit() { * @tc.level: Level 1 */ it('SUB_REQUESTSYSTEM_UPLOAD_API_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUESTSYSTEM_UPLOAD_API_0001 start-----------------------"); + console.info("====>-----------------------SUB_REQUESTSYSTEM_UPLOAD_API_0001 start-----------------------"); let UploadResponse = { code: 200, data: '', @@ -52,23 +52,23 @@ export default function requestSystemJSUnit() { }, ], success: function(UploadResponse) { - console.info('SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload success, code:' + UploadResponse.code); + console.info('====>SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload success, code:' + UploadResponse.code); }, fail: function(data, code) { - console.info('SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload fail'); + console.info('====>SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload fail'); }, complete: function (){ - console.info('SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload complete'); + console.info('====>SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload complete'); } } try{ let result = request.upload(UploadRequestOptions); - console.info('SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload err:' + result); + console.info('====>SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload err:' + result); expect(true).assertEqual(true); }catch(err){ - console.info('SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload err:' + err); + console.info('====>SUB_REQUESTSYSTEM_UPLOAD_API_0001 upload err:' + err); } - console.info("-----------------------SUB_REQUESTSYSTEM_UPLOAD_API_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUESTSYSTEM_UPLOAD_API_0001 end-----------------------"); done(); }); @@ -80,7 +80,7 @@ export default function requestSystemJSUnit() { * @tc.level: Level 1 */ it('SUB_REQUESTSYSTEM_DOWNLOAD_API_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 start-----------------------"); + console.info("====>-----------------------SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 start-----------------------"); let DownloadResponse = { token: "Hm_lpvt_1d6c34c1bc067f5746a5fca18d1c24ab" } @@ -91,23 +91,23 @@ export default function requestSystemJSUnit() { header: '', description: 'this is requeSystem download response', success: function(DownloadResponse) { - console.info('SUB_REQUESTSYSTEM_DOWNLOAD_API_0001call success callback success: ' + DownloadResponse.token); + console.info('====>SUB_REQUESTSYSTEM_DOWNLOAD_API_0001call success callback success: ' + DownloadResponse.token); }, fail: function(data, code) { - console.info('SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 handling fail'); + console.info('====>SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 handling fail'); }, complete: function (){ - console.info('SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 download complete'); + console.info('====>SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 download complete'); } } try{ let result = request.download(DownloadRequestOptions); - console.info('SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 upload err:' + result); + console.info('====>SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 upload err:' + result); expect(result == null).assertEqual(true); }catch(err){ - console.info('SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 download complete' + err); + console.info('====>SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 download complete' + err); } - console.info("-----------------------SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUESTSYSTEM_DOWNLOAD_API_0001 end-----------------------"); done(); }); @@ -119,27 +119,27 @@ export default function requestSystemJSUnit() { * @tc.level: Level 1 */ it('SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 start-----------------------"); + console.info("====>-----------------------SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 start-----------------------"); let OnDownloadCompleteResponse = { uri: "http://www.path.com" } let OnDownloadCompleteOptions = { token: 'token-index', success: function(OnDownloadCompleteResponse) { - console.info('SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 download success,uri:' + console.info('====>SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 download success,uri:' + OnDownloadCompleteResponse.uri); }, fail: function(data, code) { - console.info('SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 download fail'); + console.info('====>SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 download fail'); }, complete: function (){ - console.info('SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 download complete'); + console.info('====>SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 download complete'); } } let result = request.onDownloadComplete(OnDownloadCompleteOptions); - console.info('SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 upload err:' + result); + console.info('====>SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 upload err:' + result); expect(result == null).assertEqual(true); - console.info("-----------------------SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUESTSYSTEM_DOWNLOADCOMPLETE_API_0001 end-----------------------"); done(); }); }) diff --git a/request/RequestTest_ets/entry/src/main/ets/test/requestUpload.test.ets b/request/RequestTest_ets/entry/src/main/ets/test/requestUpload.test.ets index 804a98e002c099022e11d73c090e40a7cd4dd96a..0b87999db02e359e1d85f8603c9d98a309b8fe89 100644 --- a/request/RequestTest_ets/entry/src/main/ets/test/requestUpload.test.ets +++ b/request/RequestTest_ets/entry/src/main/ets/test/requestUpload.test.ets @@ -19,34 +19,34 @@ import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from " export default function requestUploadJSUnit() { describe('requestUploadTest', function () { - console.info('################################request upload Test start'); + console.info('====>################################request upload Test start'); /** * beforeAll: Prerequisites at the test suite level, which are executed before the test suite is executed. */ beforeAll(function () { - console.info('beforeAll: Prerequisites are executed.'); + console.info('====>beforeAll: Prerequisites are executed.'); }); /** * beforeEach: Prerequisites at the test case level, which are executed before each test case is executed. */ beforeEach(function () { - console.info('beforeEach: Prerequisites is executed.'); + console.info('====>beforeEach: Prerequisites is executed.'); }); /** * afterEach: Test case-level clearance conditions, which are executed after each test case is executed. */ afterEach(function () { - console.info('afterEach: Test case-level clearance conditions is executed.'); + console.info('====>afterEach: Test case-level clearance conditions is executed.'); }); /** * afterAll: Test suite-level cleanup condition, which is executed after the test suite is executed. */ afterAll(function () { - console.info('afterAll: Test suite-level cleanup condition is executed'); + console.info('====>afterAll: Test suite-level cleanup condition is executed'); }); /** @@ -88,21 +88,21 @@ export default function requestUploadJSUnit() { * @tc.level : Level 0 */ it('SUB_REQUEST_UPLOAD_API_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0001 is starting-----------------------"); try { - console.info("SUB_REQUEST_UPLOAD_API_0001 request.NETWORK_MOBILE:" + request.NETWORK_MOBILE); + console.info("====>SUB_REQUEST_UPLOAD_API_0001 request.NETWORK_MOBILE:" + request.NETWORK_MOBILE); expect(request.NETWORK_MOBILE).assertEqual(1); - console.info("SUB_REQUEST_UPLOAD_API_0001 request.NETWORK_WIFI:" + request.NETWORK_WIFI); + console.info("====>SUB_REQUEST_UPLOAD_API_0001 request.NETWORK_WIFI:" + request.NETWORK_WIFI); expect(request.NETWORK_WIFI).assertEqual(65536); - console.info("SUB_REQUEST_UPLOAD_API_0001 request.ERROR_CANNOT_RESUME:" + request.ERROR_CANNOT_RESUME); + console.info("====>SUB_REQUEST_UPLOAD_API_0001 request.ERROR_CANNOT_RESUME:" + request.ERROR_CANNOT_RESUME); expect(request.ERROR_CANNOT_RESUME).assertEqual(0); - console.info("SUB_REQUEST_UPLOAD_API_0001 request.ERROR_DEVICE_NOT_FOUND:" + request.ERROR_DEVICE_NOT_FOUND); + console.info("====>SUB_REQUEST_UPLOAD_API_0001 request.ERROR_DEVICE_NOT_FOUND:" + request.ERROR_DEVICE_NOT_FOUND); expect(request.ERROR_DEVICE_NOT_FOUND).assertEqual(1); } catch (err) { expect(true).assertEqual(true); console.error("SUB_REQUEST_UPLOAD_API_0001 error: " + err); } - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0001 end-----------------------"); done(); }); @@ -115,21 +115,21 @@ export default function requestUploadJSUnit() { * @tc.level : Level 0 */ it('SUB_REQUEST_UPLOAD_API_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0002 is starting-----------------------"); try { - console.info("SUB_REQUEST_UPLOAD_API_0002 request.ERROR_FILE_ALREADY_EXISTS:" + request.ERROR_FILE_ALREADY_EXISTS); + console.info("====>SUB_REQUEST_UPLOAD_API_0002 request.ERROR_FILE_ALREADY_EXISTS:" + request.ERROR_FILE_ALREADY_EXISTS); expect(request.ERROR_FILE_ALREADY_EXISTS).assertEqual(2); - console.info("SUB_REQUEST_UPLOAD_API_0002 request.ERROR_FILE_ERROR:" + request.ERROR_FILE_ERROR); + console.info("====>SUB_REQUEST_UPLOAD_API_0002 request.ERROR_FILE_ERROR:" + request.ERROR_FILE_ERROR); expect(request.ERROR_FILE_ERROR).assertEqual(3); - console.info("SUB_REQUEST_UPLOAD_API_0002 request.ERROR_HTTP_DATA_ERROR:" + request.ERROR_HTTP_DATA_ERROR); + console.info("====>SUB_REQUEST_UPLOAD_API_0002 request.ERROR_HTTP_DATA_ERROR:" + request.ERROR_HTTP_DATA_ERROR); expect(request.ERROR_HTTP_DATA_ERROR).assertEqual(4); - console.info("SUB_REQUEST_UPLOAD_API_0002 request.ERROR_INSUFFICIENT_SPACE:" + request.ERROR_INSUFFICIENT_SPACE); + console.info("====>SUB_REQUEST_UPLOAD_API_0002 request.ERROR_INSUFFICIENT_SPACE:" + request.ERROR_INSUFFICIENT_SPACE); expect(request.ERROR_INSUFFICIENT_SPACE).assertEqual(5); } catch (err) { expect(true).assertEqual(true); console.error("SUB_REQUEST_UPLOAD_API_0002 error: " + err); } - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0002 end-----------------------"); done(); }); @@ -142,21 +142,21 @@ export default function requestUploadJSUnit() { * @tc.level : Level 0 */ it('SUB_REQUEST_UPLOAD_API_0003', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0003 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0003 is starting-----------------------"); try { - console.info("SUB_REQUEST_UPLOAD_API_0003 request.ERROR_TOO_MANY_REDIRECTS:" + request.ERROR_TOO_MANY_REDIRECTS); + console.info("====>SUB_REQUEST_UPLOAD_API_0003 request.ERROR_TOO_MANY_REDIRECTS:" + request.ERROR_TOO_MANY_REDIRECTS); expect(request.ERROR_TOO_MANY_REDIRECTS).assertEqual(6); - console.info("SUB_REQUEST_UPLOAD_API_0003 request.ERROR_UNHANDLED_HTTP_CODE:" + request.ERROR_UNHANDLED_HTTP_CODE); + console.info("====>SUB_REQUEST_UPLOAD_API_0003 request.ERROR_UNHANDLED_HTTP_CODE:" + request.ERROR_UNHANDLED_HTTP_CODE); expect(request.ERROR_UNHANDLED_HTTP_CODE).assertEqual(7); - console.info("SUB_REQUEST_UPLOAD_API_0003 request.ERROR_UNKNOWN:" + request.ERROR_UNKNOWN); + console.info("====>SUB_REQUEST_UPLOAD_API_0003 request.ERROR_UNKNOWN:" + request.ERROR_UNKNOWN); expect(request.ERROR_UNKNOWN).assertEqual(8); - console.info("SUB_REQUEST_UPLOAD_API_0003 request.PAUSED_QUEUED_FOR_WIFI:" + request.PAUSED_QUEUED_FOR_WIFI); + console.info("====>SUB_REQUEST_UPLOAD_API_0003 request.PAUSED_QUEUED_FOR_WIFI:" + request.PAUSED_QUEUED_FOR_WIFI); expect(request.PAUSED_QUEUED_FOR_WIFI).assertEqual(0); } catch (err) { expect(true).assertEqual(true); console.error("SUB_REQUEST_UPLOAD_API_0003 error: " + err); } - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0003 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0003 end-----------------------"); done(); }); @@ -169,21 +169,21 @@ export default function requestUploadJSUnit() { * @tc.level : Level 0 */ it('SUB_REQUEST_UPLOAD_API_0004', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0004 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0004 is starting-----------------------"); try { - console.info("SUB_REQUEST_UPLOAD_API_0004 request.PAUSED_UNKNOWN:" + request.PAUSED_UNKNOWN); + console.info("====>SUB_REQUEST_UPLOAD_API_0004 request.PAUSED_UNKNOWN:" + request.PAUSED_UNKNOWN); expect(request.PAUSED_UNKNOWN).assertEqual(4); - console.info("SUB_REQUEST_UPLOAD_API_0004 request.PAUSED_WAITING_FOR_NETWORK:" + request.PAUSED_WAITING_FOR_NETWORK); + console.info("====>SUB_REQUEST_UPLOAD_API_0004 request.PAUSED_WAITING_FOR_NETWORK:" + request.PAUSED_WAITING_FOR_NETWORK); expect(request.PAUSED_WAITING_FOR_NETWORK).assertEqual(1); - console.info("SUB_REQUEST_UPLOAD_API_0004 request.PAUSED_WAITING_TO_RETRY:" + request.PAUSED_WAITING_TO_RETRY); + console.info("====>SUB_REQUEST_UPLOAD_API_0004 request.PAUSED_WAITING_TO_RETRY:" + request.PAUSED_WAITING_TO_RETRY); expect(request.PAUSED_WAITING_TO_RETRY).assertEqual(2); - console.info("SUB_REQUEST_UPLOAD_API_0004 request.SESSION_FAILED:" + request.SESSION_FAILED); + console.info("====>SUB_REQUEST_UPLOAD_API_0004 request.SESSION_FAILED:" + request.SESSION_FAILED); expect(request.SESSION_FAILED).assertEqual(4); } catch (err) { expect(true).assertEqual(true); console.error("SUB_REQUEST_UPLOAD_API_0004 error: " + err); } - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0004 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0004 end-----------------------"); done(); }); @@ -196,21 +196,21 @@ export default function requestUploadJSUnit() { * @tc.level : Level 0 */ it('SUB_REQUEST_UPLOAD_API_0005', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0005 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0005 is starting-----------------------"); try { - console.info("SUB_REQUEST_UPLOAD_API_0004 request.SESSION_PAUSED:" + request.SESSION_PAUSED); + console.info("====>SUB_REQUEST_UPLOAD_API_0004 request.SESSION_PAUSED:" + request.SESSION_PAUSED); expect(request.SESSION_PAUSED).assertEqual(3); - console.info("SUB_REQUEST_UPLOAD_API_0004 request.SESSION_PENDING:" + request.SESSION_PENDING); + console.info("====>SUB_REQUEST_UPLOAD_API_0004 request.SESSION_PENDING:" + request.SESSION_PENDING); expect(request.SESSION_PENDING).assertEqual(2); - console.info("SUB_REQUEST_UPLOAD_API_0004 request.SESSION_RUNNING:" + request.SESSION_RUNNING); + console.info("====>SUB_REQUEST_UPLOAD_API_0004 request.SESSION_RUNNING:" + request.SESSION_RUNNING); expect(request.SESSION_RUNNING).assertEqual(1); - console.info("SUB_REQUEST_UPLOAD_API_0004 request.SESSION_SUCCESSFUL:" + request.SESSION_SUCCESSFUL); + console.info("====>SUB_REQUEST_UPLOAD_API_0004 request.SESSION_SUCCESSFUL:" + request.SESSION_SUCCESSFUL); expect(request.SESSION_SUCCESSFUL).assertEqual(0); } catch (err) { expect(true).assertEqual(true); console.error("SUB_REQUEST_UPLOAD_API_0005 error: " + err); } - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0005 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0005 end-----------------------"); done(); }); @@ -223,31 +223,31 @@ export default function requestUploadJSUnit() { * @tc.level : Level 0 */ it('SUB_REQUEST_UPLOAD_API_0006', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0006 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0006 is starting-----------------------"); try { - console.info("SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_PERMISSION:" + request.EXCEPTION_PERMISSION); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_PERMISSION:" + request.EXCEPTION_PERMISSION); expect(request.EXCEPTION_PERMISSION).assertEqual(201); - console.info("SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_PARAMCHECK:" + request.EXCEPTION_PARAMCHECK); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_PARAMCHECK:" + request.EXCEPTION_PARAMCHECK); expect(request.EXCEPTION_PARAMCHECK).assertEqual(401); - console.info("SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_UNSUPPORTED:" + request.EXCEPTION_UNSUPPORTED); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_UNSUPPORTED:" + request.EXCEPTION_UNSUPPORTED); expect(request.EXCEPTION_UNSUPPORTED).assertEqual(801); - console.info("SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_FILEIO:" + request.EXCEPTION_FILEIO); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_FILEIO:" + request.EXCEPTION_FILEIO); expect(request.EXCEPTION_FILEIO).assertEqual(13400001); - console.info("SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_FILEPATH:" + request.EXCEPTION_FILEPATH); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_FILEPATH:" + request.EXCEPTION_FILEPATH); expect(request.EXCEPTION_FILEPATH).assertEqual(13400002); - console.info("SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_SERVICE:" + request.EXCEPTION_SERVICE); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_SERVICE:" + request.EXCEPTION_SERVICE); expect(request.EXCEPTION_SERVICE).assertEqual(13400003); - console.info("SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_OTHERS:" + request.EXCEPTION_OTHERS); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.EXCEPTION_OTHERS:" + request.EXCEPTION_OTHERS); expect(request.EXCEPTION_OTHERS).assertEqual(13499999); - console.info("SUB_REQUEST_UPLOAD_API_0006 request.ERROR_OFFLINE:" + request.ERROR_OFFLINE); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.ERROR_OFFLINE:" + request.ERROR_OFFLINE); expect(request.ERROR_OFFLINE).assertEqual(9); - console.info("SUB_REQUEST_UPLOAD_API_0006 request.ERROR_UNSUPPORTED_NETWORK_TYPE:" + request.ERROR_UNSUPPORTED_NETWORK_TYPE); + console.info("====>SUB_REQUEST_UPLOAD_API_0006 request.ERROR_UNSUPPORTED_NETWORK_TYPE:" + request.ERROR_UNSUPPORTED_NETWORK_TYPE); expect(request.ERROR_UNSUPPORTED_NETWORK_TYPE).assertEqual(10); } catch (err) { expect(true).assertEqual(true); console.error("SUB_REQUEST_UPLOAD_API_0006 error: " + err); } - console.info("-----------------------SUB_REQUEST_UPLOAD_API_0006 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_0006 end-----------------------"); done(); }); @@ -260,26 +260,26 @@ export default function requestUploadJSUnit() { * @tc.level : Level 1 */ it('SUB_REQUEST_UPLOAD_API_CALLBACK_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_CALLBACK_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_CALLBACK_0001 is starting-----------------------"); try { - console.info("SUB_REQUEST_UPLOAD_API_CALLBACK_0001 uploadConfig = " + JSON.stringify(uploadConfig)); + console.info("====>SUB_REQUEST_UPLOAD_API_CALLBACK_0001 uploadConfig = " + JSON.stringify(uploadConfig)); request.upload(uploadConfig, (data) => { uploadTask = data; - console.info("SUB_REQUEST_UPLOAD_API_CALLBACK_0001 progress uploadTask =" + JSON.stringify(uploadTask)); + console.info("====>SUB_REQUEST_UPLOAD_API_CALLBACK_0001 progress uploadTask =" + JSON.stringify(uploadTask)); expect(uploadTask != undefined).assertEqual(true); uploadTask.on('progress', function (data1, data2) { - console.info("SUB_REQUEST_UPLOAD_API_CALLBACK_0001 on data1 =" + data1); - console.info("SUB_REQUEST_UPLOAD_API_CALLBACK_0001 on data2 =" + data2); + console.info("====>SUB_REQUEST_UPLOAD_API_CALLBACK_0001 on data1 =" + data1); + console.info("====>SUB_REQUEST_UPLOAD_API_CALLBACK_0001 on data2 =" + data2); }); uploadTask.off('progress', function (data1, data2) { - console.info("SUB_REQUEST_UPLOAD_API_CALLBACK_0001 off data1 =" + data1); - console.info("SUB_REQUEST_UPLOAD_API_CALLBACK_0001 off data2 =" + data2); + console.info("====>SUB_REQUEST_UPLOAD_API_CALLBACK_0001 off data1 =" + data1); + console.info("====>SUB_REQUEST_UPLOAD_API_CALLBACK_0001 off data2 =" + data2); }); uploadTask.remove((err, data) => { - console.info("SUB_REQUEST_UPLOAD_API_CALLBACK_0001 remove =" + data); + console.info("====>SUB_REQUEST_UPLOAD_API_CALLBACK_0001 remove =" + data); }); }); } catch (err) { @@ -287,7 +287,7 @@ export default function requestUploadJSUnit() { expect().assertFail(); } sleep(Date.now(), 20000); - console.info("-----------------------SUB_REQUEST_UPLOAD_API_CALLBACK_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_CALLBACK_0001 end-----------------------"); done(); }); @@ -300,26 +300,26 @@ export default function requestUploadJSUnit() { * @tc.level : Level 1 */ it('SUB_REQUEST_UPLOAD_API_PROMISE_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_PROMISE_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_PROMISE_0001 is starting-----------------------"); try { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0001 UploadConfig = " + JSON.stringify(uploadConfig)); + console.info("====>SUB_REQUEST_UPLOAD_API_PROMISE_0001 UploadConfig = " + JSON.stringify(uploadConfig)); request.upload(uploadConfig).then((data) => { uploadTask = data; - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0001 uploadTask = " + uploadTask); + console.info("====>SUB_REQUEST_UPLOAD_API_PROMISE_0001 uploadTask = " + uploadTask); expect(true).assertEqual((uploadTask != undefined) || (uploadTask != "") || (uploadTask != {})); uploadTask.on('headerReceive', (header) => { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0001 header = " + header); + console.info("====>SUB_REQUEST_UPLOAD_API_PROMISE_0001 header = " + header); expect(true).assertEqual((header != undefined) || (header != "") || (header != {})); }); uploadTask.off('headerReceive', (header) => { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0001 header = " + header); + console.info("====>SUB_REQUEST_UPLOAD_API_PROMISE_0001 header = " + header); expect(true).assertEqual((header != undefined) || (header != "") || (header != {})); }); uploadTask.remove().then((result)=>{ - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0001 remove result = " + result); + console.info("====>SUB_REQUEST_UPLOAD_API_PROMISE_0001 remove result = " + result); expect(result).assertEqual(true); }); }); @@ -328,90 +328,11 @@ export default function requestUploadJSUnit() { expect(true).assertFail(true); } sleep(Date.now(), 20000); - console.info("-----------------------SUB_REQUEST_UPLOAD_API_PROMISE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_PROMISE_0001 end-----------------------"); done(); }); - /** - * @tc.number : SUB_REQUEST_UPLOAD_API_PROMISE_0002 - * @tc.name : Use getEntries get the value by mixing the string key - * @tc.desc : Called when the current upload session complete or fail. - * @tc.size : MediumTest - * @tc.type : Function - * @tc.level : Level 1 - */ - it('SUB_REQUEST_UPLOAD_API_PROMISE_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_PROMISE_0002 is starting-----------------------"); - try { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0002 UploadConfig = " + JSON.stringify(uploadConfig)); - request.upload(uploadConfig).then((data) => { - uploadTask = data; - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0002 uploadTask = " + uploadTask); - expect(true).assertEqual((uploadTask != undefined) || (uploadTask != "") || (uploadTask != {})); - - uploadTask.on('complete', (TaskState) => { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0002 TaskState.path = " + TaskState.path); - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0002 TaskState.responseCode" + TaskState.responseCode); - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0002 TaskState.TaskState.message" + TaskState.message); - expect(typeof(TaskState.path) == "string").assertEqual(true); - expect(typeof(TaskState.responseCode) == "number").assertEqual(true); - expect(typeof(TaskState.message) == "string").assertEqual(true); - }); - - uploadTask.on('fail', (TaskState) => { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0002 TaskState.path = " + TaskState.path); - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0002 TaskState.responseCode" + TaskState.responseCode); - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0002 TaskState.TaskState.message" + TaskState.message); - expect(typeof(TaskState.path) == "string").assertEqual(true); - expect(typeof(TaskState.responseCode) == "number").assertEqual(true); - expect(typeof(TaskState.message) == "string").assertEqual(true); - expect(true).assertEqual(true); - }); - }); - } catch (e) { - console.error("SUB_REQUEST_UPLOAD_API_PROMISE_0001 error: " + JSON.stringify(e)); - expect(true).assertFail(true); - } - sleep(Date.now(), 20000); - console.info("-----------------------SUB_REQUEST_UPLOAD_API_PROMISE_0001 end-----------------------"); - done(); - }); - - /** - * @tc.number : SUB_REQUEST_UPLOAD_API_PROMISE_0003 - * @tc.name : Use getEntries get the value by mixing the string key - * @tc.desc : Called when the current upload session complete or fail. - * @tc.size : MediumTest - * @tc.type : Function - * @tc.level : Level 1 - */ - it('SUB_REQUEST_UPLOAD_API_PROMISE_0003', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_PROMISE_0003 is starting-----------------------"); - try { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0003 UploadConfig = " + JSON.stringify(uploadConfig)); - request.upload(uploadConfig).then((data) => { - uploadTask = data; - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0003 uploadTask = " + uploadTask); - expect(true).assertEqual((uploadTask != undefined) || (uploadTask != "") || (uploadTask != {})); - - uploadTask.off('complete', () => { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0003 TaskState success"); - expect(true).assertEqual(true); - }); - - uploadTask.off('fail', () => { - console.info("SUB_REQUEST_UPLOAD_API_PROMISE_0003 TaskState success"); - expect(true).assertEqual(true); - }); - }); - } catch (e) { - console.error("SUB_REQUEST_UPLOAD_API_PROMISE_0003 error: " + JSON.stringify(e)); - expect(true).assertFail(true); - } - sleep(Date.now(), 20000); - console.info("-----------------------SUB_REQUEST_UPLOAD_API_PROMISE_0003 end-----------------------"); - done(); - }); + /** * @tc.number SUB_REQUEST_UPLOAD_API_DELETE_0001 @@ -421,18 +342,18 @@ export default function requestUploadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_UPLOAD_API_DELETE_0001', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_DELETE_0001 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_DELETE_0001 is starting-----------------------"); try { request.upload(uploadConfig, (data) => { uploadTask = data; - console.info("SUB_REQUEST_UPLOAD_API_DELETE_0001 uploadTask: " + uploadTask); + console.info("====>SUB_REQUEST_UPLOAD_API_DELETE_0001 uploadTask: " + uploadTask); expect(uploadTask != undefined).assertEqual(true); uploadTask.delete((err, data) => { if (err) { console.error('SUB_REQUEST_UPLOAD_API_DELETE_0001 Failed to delete the uploadTask task.'); expect().assertFail(); } - console.info('SUB_REQUEST_UPLOAD_API_DELETE_0001 uploadTask task delete success.'); + console.info('====>SUB_REQUEST_UPLOAD_API_DELETE_0001 uploadTask task delete success.'); expect(typeof data == "boolean").assertTrue(); }); }) @@ -440,7 +361,7 @@ export default function requestUploadJSUnit() { console.error('SUB_REQUEST_UPLOAD_API_DELETE_0001 delete catch error' + error); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_UPLOAD_API_DELETE_0001 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_DELETE_0001 end-----------------------"); done(); }); @@ -452,17 +373,17 @@ export default function requestUploadJSUnit() { * @tc.level : Level 2 */ it('SUB_REQUEST_UPLOAD_API_DELETE_0002', 0, async function (done) { - console.info("-----------------------SUB_REQUEST_UPLOAD_API_DELETE_0002 is starting-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_DELETE_0002 is starting-----------------------"); try { request.upload(uploadConfig, (data) => { uploadTask = data; - console.info("SUB_REQUEST_UPLOAD_API_DELETE_0002 uploadTask: " + uploadTask); + console.info("====>SUB_REQUEST_UPLOAD_API_DELETE_0002 uploadTask: " + uploadTask); expect(uploadTask != undefined).assertEqual(true); uploadTask.delete().then(data => { - console.info('SUB_REQUEST_UPLOAD_API_DELETE_0002 uploadTask task delete success.'); + console.info('====>SUB_REQUEST_UPLOAD_API_DELETE_0002 uploadTask task delete success.'); expect(data == true).assertTrue(); }).catch((err) => { - console.info('SUB_REQUEST_UPLOAD_API_DELETE_0002 Failed to delete the uploadTask task.'); + console.info('====>SUB_REQUEST_UPLOAD_API_DELETE_0002 Failed to delete the uploadTask task.'); expect().assertFail(); }) }) @@ -470,7 +391,7 @@ export default function requestUploadJSUnit() { console.error('SUB_REQUEST_UPLOAD_API_DELETE_0002 delete catch error'); expect().assertFail(); } - console.info("-----------------------SUB_REQUEST_UPLOAD_API_DELETE_0002 end-----------------------"); + console.info("====>-----------------------SUB_REQUEST_UPLOAD_API_DELETE_0002 end-----------------------"); done(); });