提交 be6eaeb7 编写于 作者: Z zhangfuzhi

下线短信数据库用例,新增流式返回用例,适配错误码用例

Signed-off-by: Nzhangfuzhi <zhangfuzhi1@huawei.com>
上级 d9e15a1e
......@@ -378,9 +378,8 @@ export default function CallManageImsCall() {
it('Telephony_CallManager_Dial_Async_0100', 0, async function (done) {
let CaseName = 'Telephony_CallManager_Dial_Async_0100';
try {
call.dial(CALL_NUMBER, (err, data) => {
call.dial("", (err, data) => {
console.info(CaseName + " case success" + JSON.stringify(data));
expect(data == true).assertTrue();
done();
return;
});
......@@ -400,11 +399,10 @@ export default function CallManageImsCall() {
it('Telephony_CallManager_Dial_Async_0200', 0, async function (done) {
let CaseName = 'Telephony_CallManager_Dial_Async_0200';
try {
call.dial(CALL_NUMBER, {
call.dial("", {
extras: false
}, (err, data) => {
console.info(CaseName + " case success" + JSON.stringify(data));
expect(data == true).assertTrue();
done();
return;
});
......
......@@ -1530,12 +1530,12 @@ export default function ObjectInterfaceTest() {
done();
});
});
}).catch((err) => {
console.info("contactsApi_updateContact_test_300 err = " + JSON.stringify(err));
expect(false).assertTrue();
done();
return;
});
}).catch((err) => {
console.info("contactsApi_updateContact_test_300 err = " + JSON.stringify(err));
expect(false).assertTrue();
done();
return;
});
});
sleep(500);
......@@ -1670,27 +1670,43 @@ export default function ObjectInterfaceTest() {
});
it("contactsApi_selectContact_test_100", 0, async function (done) {
contact.selectContact((err, data) => {
if (err) {
console.info("contactsApi_selectContact_test_100 err = " + JSON.stringify(err));
contact.addContact(contactData, (err, data) => {
if (!err) {
console.info("contactsApi_selectContact_test_100 data = " + JSON.stringify(data));
expect(data > 0).assertTrue();
done();
return;
}
console.info("contactsApi_selectContact_test_100 data = " + JSON.stringify(data));
expect(false).assertTrue();
done();
contact.selectContact((err, data) => {
if (err) {
console.info("contactsApi_selectContact_test_100 err = " + JSON.stringify(err));
expect(false).assertTrue();
done();
return;
}
console.info("contactsApi_selectContact_test_100 data = " + JSON.stringify(data));
done();
});
});
});
it("contactsApi_selectContact_test_200", 0, async function (done) {
let promise = contact.selectContact();
promise.then((data) => {
console.info("contactsApi_selectContact_test_100 data = " + JSON.stringify(data));
done();
}).catch((err) => {
console.info("contactsApi_selectContact_test_100 err = " + JSON.stringify(err));
expect(false).assertTrue();
done();
contact.addContact(contactData, (err, data) => {
if (!err) {
console.info("contactsApi_selectContact_test_200 data = " + JSON.stringify(data));
expect(data > 0).assertTrue();
done();
return;
}
let promise = contact.selectContact();
promise.then((data) => {
console.info("contactsApi_selectContact_test_200 data = " + JSON.stringify(data));
done();
}).catch((err) => {
console.info("contactsApi_selectContact_test_200 err = " + JSON.stringify(err));
expect(false).assertTrue();
done();
});
});
});
});
......
/**
* Copyright (C) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License")
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { describe, expect, it } from '@ohos/hypium';
import http from '@ohos.net.http';
let httpRequestOptions = {
method: http.RequestMethod.GET,
extraData: null,
header: "content-type': 'application/json",
readTimeout: 60000,
connectTimeout: 60000
};
let delayTime = 4000;
let dataReceive_status;
let dataProgress_status;
let dataEnd_status;
let Address_Baidu = "https://www.baidu.com/";
function dataReceive_on_callback(data) {
console.log("dataReceive_on_callback receive len:" + JSON.stringify(data.byteLength));
dataReceive_status = true;
}
function dataEnd_on_callback() {
console.log("dataEnd_on_callback callback function");
dataEnd_status = true;
}
function dataProgress_on_callback(data) {
console.log("dataProgress_on_callback receive datProgress:" + JSON.stringify(data));
dataProgress_on_callback = true;
}
export default function HttpRequest2JsunitTest() {
describe("HttpRequest2JsunitTest", function () {
/**
* @tc.number Telephony_http_HttpRequest_request2_0100
* @tc.name httprequest2::request2
* @tc.desc Test request2(url: string, callback: AsyncCallback<void>): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_Async_0100", 0, async function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_Async_0100";
let Address_Img = "https://img1.baidu.com/it/u=3010094603,1247181326&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=500";
let HttpRequest = http.createHttp();
try {
HttpRequest.on("dataReceive", dataReceive_on_callback);
HttpRequest.request2(Address_Img, httpRequestOptions).then(function () {
console.log(CaseName + "NETSTACK request2 OK!");
HttpRequest.off("dataReceive");
console.log("NETSTACK off dataReceive success!");
}).catch(function (err) {
console.log("NETSTACK request2 ERROR : error = " + JSON.stringify(err));
});
} catch (error) {
console.log("NETSTACK request2 ERROR : error = " + JSON.stringify(error));
}
try {
HttpRequest.on("dataProgress", dataProgress_on_callback);
HttpRequest.request2(Address_Img, httpRequestOptions).then(function () {
console.log(CaseName + "NETSTACK request2 OK!");
HttpRequest.off("dataProgress");
console.log("NETSTACK off dataProgress success!");
}).catch(function (err) {
console.log("NETSTACK request2 ERROR : error = " + JSON.stringify(err));
});
} catch (error) {
console.log("NETSTACK request2 ERROR : error = " + JSON.stringify(error));
}
try {
HttpRequest.on("dataEnd", dataEnd_on_callback);
HttpRequest.request2(Address_Img, httpRequestOptions).then(function () {
console.log(CaseName + "NETSTACK request2 OK!");
HttpRequest.off("dataEnd");
done();
console.log("NETSTACK off dataEnd success!");
}).catch(function (err) {
console.log("NETSTACK request2 ERROR : error = " + JSON.stringify(err));
expect(err).assertFalse();
done();
});
} catch (error) {
console.log("NETSTACK request2 ERROR : error = " + JSON.stringify(error));
expect(error).assertFalse();
done();
}
});
/**
* @tc.number Telephony_http_HttpRequest_request2_0200
* @tc.name httprequest2::request2
* @tc.desc Test request2(url: string, options: HttpRequestOptions, callback: AsyncCallback<void>): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_Async_0200", 0, async function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_Async_0200"
var httpRequest = http.createHttp();
httpRequest.request2(Address_Baidu, err => {
if (err) {
console.log(CaseName + " request2 ERROR" + JSON.stringify(err));
expect().assertFail();
done();
}
console.log(CaseName + " request2 Finish");
done();
});
});
/**
* @tc.number Telephony_http_HttpRequest_request2_0100
* @tc.name httprequest2::request2
* @tc.desc Test request2(url: string, options: HttpRequestOptions): Promise<void>.
*/
it("SUB_Telephony_NetStack_HttpRequest2_Promise_0100", 0, async function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_Promise_0100";
var httpRequest = http.createHttp();
httpRequest.request2(Address_Baidu, httpRequestOptions).then(function () {
console.log(CaseName + " request2 Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " error = " + JSON.stringify(err));
expect().assertFail();
done();
});
});
/**
* @tc.number Telephony_http_HttpRequest_request2_0100
* @tc.name httprequest2::request2
* @tc.desc Test request2(url: string): Promise<void>.
*/
it("SUB_Telephony_NetStack_HttpRequest2_Promise_0200", 0, async function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_Promise_0200";
var httpRequest = http.createHttp();
httpRequest.request2(Address_Baidu).then(function () {
console.log(CaseName + " request2 Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_on_dataReceive_0100
* @tc.name httprequest2::on_dataReceive
* @tc.desc Test on(type: "dataReceive", callback: Callback<ArrayBuffer>): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_on_dataReceive_0100", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_on_dataReceive_0100";
try {
var httpRequest = http.createHttp();
httpRequest.on("dataReceive", dataReceive_on_callback);
httpRequest.request2(Address_Baidu).then(function () {
setTimeout(() => {
expect(dataReceive_status).assertEqual(true);
console.log(CaseName + " on dataReceive Finish ");
done();
}, delayTime);
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_off_dataReceive_0100
* @tc.name httprequest2::off_dataReceive
* @tc.desc Test off(type: "dataReceive", callback: Callback<ArrayBuffer>): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_off_dataReceive_0100", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_off_dataReceive_0100";
try {
var httpRequest = http.createHttp();
httpRequest.request2(Address_Baidu).then(function () {
httpRequest.off("dataReceive", dataReceive_on_callback);
dataEnd_status = false;
setTimeout(() => {
expect(dataReceive_status).assertEqual(false);
}, delayTime);
console.log(CaseName + " off dataReceive Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_off_dataReceive_0200
* @tc.name httprequest2::off_dataReceive
* @tc.desc Test off(type: "dataReceive"): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_off_dataReceive_0200", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_off_dataReceive_0200";
try {
var httpRequest = http.createHttp();
httpRequest.on("dataReceive", dataReceive_on_callback);
httpRequest.request2(Address_Baidu).then(function () {
setTimeout(() => {
httpRequest.off("dataReceive");
}, delayTime);
console.log(CaseName + " off dataReceive Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_on_dataProgress_0100
* @tc.name httprequest2::on_dataProgress
* @tc.desc Test on(type: "dataProgress", callback: Callback<{ receiveSize: number, totalSize: number }>): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_on_dataProgress_0100", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_on_dataProgress_0100";
try {
var httpRequest = http.createHttp();
httpRequest.on("dataProgress", dataProgress_on_callback);
httpRequest.request2(Address_Baidu).then(function () {
setTimeout(() => {
expect(dataProgress_status).assertEqual(true);
}, delayTime);
console.log(CaseName + " on dataProgress Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_off_dataProgress_0100
* @tc.name httprequest2::off_dataProgress
* @tc.desc Test off(type: "dataProgress", callback: Callback<{ receiveSize: number, totalSize: number }>): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_off_dataProgress_0100", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_off_dataProgress_0100";
try {
var httpRequest = http.createHttp();
httpRequest.request2(Address_Baidu).then(function () {
httpRequest.off("dataProgress", dataProgress_on_callback);
dataEnd_status = false;
setTimeout(() => {
expect(dataProgress_status).assertEqual(false);
}, delayTime);
console.log(CaseName + " off dataProgress Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_off_dataProgress_0200
* @tc.name httprequest2::off_dataProgress
* @tc.desc Test off(type: "dataProgress"): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_off_dataProgress_0200", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_off_dataProgress_0200";
try {
var httpRequest = http.createHttp();
httpRequest.on("dataProgress", dataProgress_on_callback);
httpRequest.request2(Address_Baidu).then(function () {
setTimeout(() => {
httpRequest.off("dataProgress");
}, delayTime);
console.log(CaseName + " off dataProgress Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_on_dataEnd_0100
* @tc.name httprequest2::on_dataEnd
* @tc.desc Test on(type: "dataEnd", callback: Callback<void>): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_on_dataEnd_0100", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_on_dataEnd_0100";
try {
var httpRequest = http.createHttp();
httpRequest.on("dataEnd", dataEnd_on_callback);
httpRequest.request2(Address_Baidu).then(function () {
setTimeout(() => {
expect(dataEnd_status).assertEqual(true);
}, delayTime);
console.log(CaseName + " on dataEnd Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_off_dataEnd_0100
* @tc.name httprequest2::off_dataEnd
* @tc.desc Test off(type: "dataEnd", callback?: Callback<void>): void.
*/
it("SUB_Telephony_NetStack_HttpRequest2_off_dataEnd_0100", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_off_dataEnd_0100";
try {
var httpRequest = http.createHttp();
httpRequest.off("dataEnd", dataEnd_on_callback);
dataEnd_status = false;
httpRequest.request2(Address_Baidu).then(function () {
setTimeout(() => {
expect(dataEnd_status).assertEqual(false);
}, delayTime);
console.log(CaseName + " off dataEnd Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
/**
* @tc.number SUB_Telephony_NetStack_HttpRequest2_off_dataEnd_0200
* @tc.name httprequest2::off_dataEnd
* @tc.desc Test off(type: "dataEnd"): void;.
*/
it("SUB_Telephony_NetStack_HttpRequest2_off_dataEnd_0200", 0, function (done) {
let CaseName = "SUB_Telephony_NetStack_HttpRequest2_off_dataEnd_0200";
try {
var httpRequest = http.createHttp();
httpRequest.on("dataEnd", dataEnd_on_callback);
httpRequest.request2(Address_Baidu).then(function () {
setTimeout(() => {
httpRequest.off("dataEnd");
}, delayTime);
console.log(CaseName + " off dataEnd Finish ");
done();
}).catch(function (err) {
console.log(CaseName + " : error = " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.log(CaseName + " : error = " + JSON.stringify(error));
expect().assertFail();
done();
}
});
});
}
\ No newline at end of file
......@@ -12,12 +12,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import Telephony_NETSTACK_HTTPTest from './NetworkManagerHttp.test.js';
import Http2Test from './Http2Test.js';
import HttpCacheTest from './HttpCacheTest.js';
import Telephony_NETSTACK_HTTPTest from './NetworkManagerHttp.test.js';
import Http2Test from './Http2Test.js';
import HttpCacheTest from './HttpCacheTest.js';
import HttpRequest2JsunitTest from './HttpRequest2JsunitTest.js';
export default function testsuite() {
HttpCacheTest();
Telephony_NETSTACK_HTTPTest();
Http2Test();
}
export default function testsuite() {
HttpCacheTest();
Telephony_NETSTACK_HTTPTest();
Http2Test();
HttpRequest2JsunitTest();
}
......@@ -379,7 +379,7 @@ describe('ActsNetworkSearchTest', function () {
radio.isRadioOn((err, data) => {
if (err) {
console.error('When the device has no modem, the interface reports an error' + JSON.stringify(err));
expect(err.code).assertEqual(8300000);
expect(err.code).assertEqual(8300003);
done();
return;
}
......@@ -400,7 +400,7 @@ describe('ActsNetworkSearchTest', function () {
done();
} catch (err) {
console.error('When the device has no modem, the interface reports an error' + JSON.stringify(err));
expect(err.code).assertEqual(8300000);
expect(err.code).assertEqual(8300003);
done();
}
});
......@@ -414,7 +414,7 @@ describe('ActsNetworkSearchTest', function () {
radio.isRadioOn(0, (err,data) => {
if (err) {
console.error('When the device has no modem, the interface reports an error' + JSON.stringify(err));
expect(err.code).assertEqual(8300000);
expect(err.code).assertEqual(8300003);
done();
return;
}
......@@ -436,7 +436,7 @@ describe('ActsNetworkSearchTest', function () {
done();
} catch (err) {
console.error('When the device has no modem, the interface reports an error' + JSON.stringify(err));
expect(err.code).assertEqual(8300000);
expect(err.code).assertEqual(8300003);
done();
}
});
......
......@@ -16,9 +16,6 @@ import("//build/ohos_var.gni")
group("telephony_base") {
testonly = true
if (is_standard_system) {
deps = [
"call_manager:ActsBaseCallManagerTest",
"sms_mms:ActsBaseSmsMmsTest",
]
deps = [ "call_manager:ActsBaseCallManagerTest" ]
}
}
# Copyright (c) 2023 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsBaseSmsMmsTest") {
hap_profile = "./src/main/config.json"
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsBaseSmsMmsTest"
part_name = "sms_mms"
subsystem_name = "telephony"
}
ohos_js_assets("hjs_demo_js_assets") {
js2abc = true
hap_profile = "./src/main/config.json"
source_dir = "./src/main/js"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Function test of sms_mms manager interface",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "900000",
"bundle-name": "com.ohos.sms_mms",
"package-name": "com.ohos.sms_mms",
"shell-timeout": "900000",
"testcase-timeout": "30000"
},
"kits": [
{
"test-file-name": [
"$module.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"app": {
"bundleName": "com.ohos.sms_mms",
"vendor": "ohos",
"version": {
"code": 1000000,
"name": "1.0.0"
},
"apiVersion": {
"compatible": 4,
"target": 7,
"releaseType": "Release"
}
},
"deviceConfig": {},
"module": {
"package": "com.ohos.sms_mms",
"name": ".entry",
"mainAbility": ".MainAbility",
"srcPath":"",
"deviceType": [
"tablet",
"default",
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"orientation": "unspecified",
"formsEnabled": false,
"name": ".MainAbility",
"srcLanguage": "js",
"srcPath": "MainAbility",
"icon": "$media:icon",
"description": "$string:MainAbility_desc",
"label": "$string:MainAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
},
{
"orientation": "unspecified",
"formsEnabled": false,
"name": ".TestAbility",
"srcLanguage": "js",
"srcPath": "TestAbility",
"icon": "$media:icon",
"description": "$string:TestAbility_desc",
"label": "$string:TestAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
},
{
"pages": [
"pages/index/index"
],
"name": ".TestAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
],
"testRunner": {
"name": "OpenHarmonyTestRunner",
"srcPath": "TestRunner"
}
}
}
\ No newline at end of file
/*
* Copyright (C) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export default {
onCreate() {
console.info('TestApplication onCreate');
},
onDestroy() {
console.info("TestApplication onDestroy");
}
};
\ No newline at end of file
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
/*
* Copyright (C) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry';
import { Hypium } from '@ohos/hypium';
import testsuite from '../../../test/List.test';
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
export default {
data: {
title: ''
},
onInit () {
this.title = this.$t('strings.world');
},
onShow () {
console.info('onShow finish!');
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator();
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments();
console.info('start run testcase!!!');
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite);
},
onReady () {
},
};
\ No newline at end of file
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export default {
onCreate() {
console.info('TestApplication onCreate');
},
onDestroy() {
console.info('TestApplication onDestroy');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
.title {
font-size: 60px;
text-align: center;
width: 100%;
height: 40%;
margin: 10px;
}
@media screen and (device-type: phone) and (orientation: landscape) {
.title {
font-size: 60px;
}
}
@media screen and (device-type: tablet) and (orientation: landscape) {
.title {
font-size: 100px;
}
}
\ No newline at end of file
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
}
}
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry';
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s itName',
'-s level', '-s testType', '-s size', '-s timeout',
'-s package', '-s dryRun'
]);
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams += ' ' + key + ' ' + parameters[key];
}
}
return targetParams.trim();
}
export default {
onPrepare() {
console.info('OpenHarmonyTestRunner OnPrepare');
},
onRun() {
console.log('OpenHarmonyTestRunner onRun run');
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments();
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator();
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.MainAbility';
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName;
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters);
var debug = abilityDelegatorArguments.parameters["-D"];
console.info('debug value : '+debug);
if (debug == 'true')
{
cmd += ' -D';
}
console.info('cmd : '+cmd);
abilityDelegator.executeShellCommand(cmd, (err, data) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + data.stdResult);
console.info('executeShellCommand : data : ' + data.exitCode);
});
}
}
/*
* Copyright (C) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import SmsMmsBatchInsert from './SmsMmsBatchInsert.test';
export default function testsuite() {
SmsMmsBatchInsert();
}
\ No newline at end of file
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import featureAbility from "@ohos.ability.featureAbility";
import { describe, expect, it, beforeEach } from '@ohos/hypium';
export default function SmsMmsBatchInsert() {
describe('SmsMmsBatchInsert', function () {
const URL_DAH = "dataability:///com.ohos.smsmmsability";
const URL_INFO = "dataability:///com.ohos.smsmmsability/sms_mms/sms_mms_info";
const URL_INFO_ERR = "dataability:///com.ohos.smsmmsability/sms_mms/sms_mms_infos";
const DAHelper = featureAbility.acquireDataAbilityHelper(URL_DAH);
let smsMmsInfo = {
"receiver_number": "134XXXXXXXX", //接收方号码 TEXT
"sender_number": "135XXXXXXXX", //发送方号码 TEXT
"is_sender": 1, //是否是发送方 0 - 接收方 1 - 发送方 integer
"msg_type": 0, //消息类型 0主题、1图片、2视频、3音频、4文本、5名片 integer
"sms_type": 1, //短息类型 0-普通,1-通知 integer
"start_time": "1659506935398", //启始时间 TEXT
"end_time": "1659506935399", //结束时间 TEXT
"msg_state": 0, //消息状态 0:成功 ,1 :失败 , 2 : 发送中... integer
"msg_title": "message title", //消息标题 TEXT
"msg_content": "The test text message content", //消息内容 TEXT
"operator_service_number": "123456", //操作员服务号码 TEXT
"is_lock": 0, //是否锁定 0-否,1-是 integer
"is_collect": 0, //是否收藏 0-未收藏,1-已收藏 integer
"is_read": 0, // 是否读取 0-已读,1-未读 integer
"session_type": 0, //会话类型 0 - 普通 1 - 广播 2 - 群发 integer
"retry_number": 0, //重试次数 integer
"session_id": -1, //会话Id integer
"group_id": 1, //群组ID integer
"device_id": -1, //设备id integer
"is_subsection": 0, //是否分支 0 - 否 1 - 是 integer
"is_send_report": 1, //是否发送报告 0 - 否 1 - 是 integer
"msg_code": 0
}; //消息码 integer
let smsMmsInfoErr = {
"receiver_number_s": "134XXXXXXXX", //接收方号码 TEXT
"sender_number": "135XXXXXXXX", //发送方号码 TEXT
"is_sender_s": 1, //是否是发送方 0 - 接收方 1 - 发送方 integer
"msg_type": 0, //消息类型 0主题、1图片、2视频、3音频、4文本、5名片 integer
"sms_type": 1, //短息类型 0-普通,1-通知 integer
"start_time": "1659506935398", //启始时间 TEXT
"end_time": "1659506935399", //结束时间 TEXT
"msg_state": 0, //消息状态 0:成功 ,1 :失败 , 2 : 发送中... integer
"msg_title": "message title", //消息标题 TEXT
"msg_content": "The err test text message content", //消息内容 TEXT
"operator_service_number": "123456", //操作员服务号码 TEXT
"is_lock": 0, //是否锁定 0-否,1-是 integer
"is_collect": 0, //是否收藏 0-未收藏,1-已收藏 integer
"is_read": 0, // 是否读取 0-已读,1-未读 integer
"session_type": 0, //会话类型 0 - 普通 1 - 广播 2 - 群发 integer
"retry_number": 0, //重试次数 integer
"session_id": -1, //会话Id integer
"group_id": 1, //群组ID integer
"device_id": -1, //设备id integer
"is_subsection": 0, //是否分支 0 - 否 1 - 是 integer
"is_send_report": 1, //是否发送报告 0 - 否 1 - 是 integer
"msg_code": 0
}; //消息码 integer
beforeEach(async function () {
if (DAHelper == null) {
console.log('beforeEach get DAHelper fail.');
return;
}
try {
let dataQuery = await DAHelper.query(URL_INFO);
console.log('beforeEach query Success, data: ' + JSON.stringify(dataQuery.rowCount));
if (dataQuery.rowCount !== 0) {
let dataDel = await DAHelper.delete(URL_INFO);
console.log('beforeEach delete Success, data: ' + JSON.stringify(dataDel));
}
} catch (err) {
console.log('beforeEach test fail, err : ' + JSON.stringify(err));
return;
}
});
function sleep(numberMillis) {
var now = new Date();
var exitTime = now.getTime() + numberMillis;
while (true) {
now = new Date();
if (now.getTime() > exitTime){
return;
}
}
}
function ExpectTrue(data) {
try {
expect(data).assertTrue();
} catch (err) {
console.log('assertion failure');
}
}
function ExpectFalse() {
try {
expect().assertFail();
} catch (err) {
console.log('assertion failure');
}
}
/*
* @tc.number Telephony_SmsMms_batchInsert_Async_0100
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Async_0100', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Async_0100';
let valuesBuckets = [];
let num = 1;
for (let i = 0; i < num; i++) {
valuesBuckets[i] = smsMmsInfo;
}
DAHelper.batchInsert(URL_INFO, valuesBuckets, (data, err) => {
if (err) {
console.log(CASE_NAME + ' batchInsert fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
ExpectTrue(data.code === 0);
console.log(CASE_NAME + ' batchInsert Success, data:' + JSON.stringify(data));
});
sleep(100);
try {
let data = await DAHelper.query(URL_INFO);
ExpectTrue(data.rowCount === num);
console.log(CASE_NAME + ' query Success, data: ' + JSON.stringify(data.rowCount));
done();
} catch (err) {
console.log(CASE_NAME + ' query fail, err: ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Async_0200
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Async_0200', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Async_0200';
let valuesBuckets = [];
let num = 1;
for (let i = 0; i < num; i++) {
valuesBuckets[i] = smsMmsInfo;
}
DAHelper.batchInsert(URL_INFO_ERR, valuesBuckets, (data, err) => {
if (err) {
console.log(CASE_NAME + ' batchInsert Success, err : ' + JSON.stringify(err));
ExpectTrue(true);
done();
return;
}
ExpectFalse();
console.log(CASE_NAME + ' batchInsert failed, data:' + JSON.stringify(data));
done();
});
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Async_0300
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Async_0300', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Async_0300';
let valuesBuckets = [];
DAHelper.batchInsert(URL_INFO, valuesBuckets, (data, err) => {
if (err) {
console.log(CASE_NAME + ' batchInsert fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
ExpectTrue(data.code === 0);
console.log(CASE_NAME + ' batchInsert Success, data:' + JSON.stringify(data));
});
sleep(100);
try {
let data = await DAHelper.query(URL_INFO);
ExpectTrue(data.rowCount === 0);
console.log(CASE_NAME + ' query Success, data: ' + JSON.stringify(data.rowCount));
done();
} catch (err) {
console.log(CASE_NAME + ' query fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Async_0400
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Async_0400', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Async_0400';
let valuesBuckets = [];
let num = 248;
for (let i = 0; i < num; i++) {
valuesBuckets[i] = smsMmsInfo;
}
DAHelper.batchInsert(URL_INFO, valuesBuckets, (data, err) => {
if (err) {
console.log(CASE_NAME + ' batchInsert fail, err : ' + JSON.stringify(err));
ExpectFalse();
}
ExpectTrue(data.code === 0);
console.log(CASE_NAME + ' batchInsert Success, data:' + JSON.stringify(data));
});
sleep(2000);
try {
let data = await DAHelper.query(URL_INFO);
ExpectTrue(data.rowCount === num);
console.log(CASE_NAME + ' query Success, data:' + JSON.stringify(data.rowCount));
done();
} catch (err) {
console.log(CASE_NAME + ' query fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Async_0500
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Async_0500', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Async_0500';
let valuesBuckets = [];
let num = 1;
for (let i = 0; i < num; i++) {
valuesBuckets[i] = smsMmsInfoErr;
}
DAHelper.batchInsert(URL_INFO, valuesBuckets, (data, err) => {
if (err) {
console.log(CASE_NAME + ' batchInsert Success, err : ' + JSON.stringify(err));
ExpectTrue(true);
done();
return;
}
ExpectFalse();
console.log(CASE_NAME + ' batchInsert failed, data:' + JSON.stringify(data));
done();
});
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Promise_0100
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Promise_0100', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Promise_0100';
let valuesBuckets = [];
let num = 1;
for (let i = 0; i < num; i++) {
valuesBuckets[i] = smsMmsInfo;
}
try {
let data = await DAHelper.batchInsert(URL_INFO, valuesBuckets);
ExpectTrue(data === 0);
console.log(CASE_NAME + ' batchInsert Success, data:' + JSON.stringify(data));
} catch (err) {
console.log(CASE_NAME + ' batchInsert fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
try {
let data = await DAHelper.query(URL_INFO);
ExpectTrue(data.rowCount === num);
console.log(CASE_NAME + ' query Success, data:' + JSON.stringify(data.rowCount));
done();
} catch (err) {
console.log(CASE_NAME + ' query fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Promise_0200
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Promise_0200', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Promise_0200';
let valuesBuckets = [];
let num = 1;
for (let i = 0; i < num; i++) {
valuesBuckets[i] = smsMmsInfo;
}
try {
let data = await DAHelper.batchInsert(URL_INFO_ERR, valuesBuckets);
ExpectTrue(data === -1);
console.log(CASE_NAME + ' batchInsert Success, data:' + JSON.stringify(data));
done();
return;
} catch (err) {
console.log(CASE_NAME + ' batchInsert failed, err : ' + JSON.stringify(err));
ExpectTrue(true);
done();
}
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Promise_0300
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Promise_0300', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Promise_0300';
let valuesBuckets = [];
try {
let data = await DAHelper.batchInsert(URL_INFO, valuesBuckets);
ExpectTrue(data === 0);
console.log(CASE_NAME + ' batchInsert Success, data:' + JSON.stringify(data));
} catch (err) {
console.log(CASE_NAME + ' batchInsert fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
sleep(100);
try {
let data = await DAHelper.query(URL_INFO);
ExpectTrue(data.rowCount === 0);
console.log(CASE_NAME + ' query Success, data:' + JSON.stringify(data.rowCount));
done();
} catch (err) {
console.log(CASE_NAME + ' query fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Promise_0400
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Promise_0400', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Promise_0400';
let valuesBuckets = [];
let num = 100;
for (let i = 0; i < num; i++) {
valuesBuckets[i] = smsMmsInfo;
}
try {
let data = await DAHelper.batchInsert(URL_INFO, valuesBuckets);
ExpectTrue(data === 0);
console.log(CASE_NAME + ' batchInsert Success, data:' + JSON.stringify(data));
} catch (err) {
console.log(CASE_NAME + ' batchInsert fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
sleep(100);
try {
let data = await DAHelper.query(URL_INFO);
ExpectTrue(data.rowCount === num);
console.log(CASE_NAME + ' query Success, data:' + JSON.stringify(data.rowCount));
done();
} catch (err) {
console.log(CASE_NAME + ' query fail, err : ' + JSON.stringify(err));
ExpectFalse();
done();
return;
}
});
/*
* @tc.number Telephony_SmsMms_batchInsert_Promise_0500
* @tc.name
* @tc.desc Function test
*/
it('Telephony_SmsMms_batchInsert_Promise_0500', 0, async function (done) {
const CASE_NAME = 'Telephony_SmsMms_batchInsert_Promise_0500';
let valuesBuckets = [];
let num = 1;
for (let i = 0; i < num; i++) {
valuesBuckets[i] = smsMmsInfoErr;
}
try {
let data = await DAHelper.batchInsert(URL_INFO, valuesBuckets);
ExpectTrue(data === -1);
console.log(CASE_NAME + ' batchInsert Success , data:' + JSON.stringify(data));
done();
return;
} catch (err) {
console.log(CASE_NAME + ' batchInsert failed, err : ' + JSON.stringify(err));
ExpectTrue(true);
done();
}
});
});
}
\ No newline at end of file
{
"string": [
{
"name": "app_name",
"value": "sms_mms Test"
},
{
"name": "mainability_description",
"value": "sms_mms Test"
},
{
"name": "MainAbility_desc",
"value": "description"
},
{
"name": "MainAbility_label",
"value": "label"
},
{
"name": "TestAbility_desc",
"value": "description"
},
{
"name": "TestAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册