未验证 提交 a979bf36 编写于 作者: 姜欢欢 提交者: Gitee

update SmsMmsJsunit.test.ets.

Signed-off-by: N姜欢欢 <jianghuanhuan@huawei.com>
上级 0a5d0310
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
import { describe, expect, it } from '@ohos/hypium'; import { describe, expect, it } from '@ohos/hypium';
import sms from '@ohos.telephony.sms'; import sms from '@ohos.telephony.sms';
import radio from '@ohos.telephony.radio'; import radio from '@ohos.telephony.radio';
import sim from '@ohos.telephony.sim';
export default function smsUiJsunit() { export default function smsUiJsunit() {
describe('smsUiJsunit', function () { describe('smsUiJsunit', function () {
...@@ -122,50 +123,46 @@ export default function smsUiJsunit() { ...@@ -122,50 +123,46 @@ export default function smsUiJsunit() {
done(); done();
}); });
/** /**
* @tc.number Telephony_Sms_getDefaultSmsSimId_CallBack_0100 * @tc.number Telephony_Sms_getDefaultSmsSimId_CallBack_0100
* @tc.name Test getOpName interface * @tc.name Test getOpName interface
* @tc.desc * @tc.desc
*/ */
it('Telephony_Sms_getDefaultSmsSimId_CallBack_0100', 0, async function (done) { it('Telephony_Sms_getDefaultSmsSimId_CallBack_0100', 0, async function (done) {
sms.getDefaultSmsSimId((err, data) => { sms.getDefaultSmsSimId((err, data) => {
if(err){ if(err){
console.info("Telephony_Sms_getDefaultSmsSimId_CallBack_0100 err = " + JSON.stringify(data)); console.info("Telephony_Sms_getDefaultSmsSimId_CallBack_0100 err = " + JSON.stringify(data));
radio.isRadioOn(0, (err, data) => { expect(true).assertTrue();
console.info('Telephony_Sms_getDefaultSmsSimId_CallBack_0100 isRadioOn err' + JSON.stringify(err) + ' data ' + JSON.stringify(data)); done();
if (!err) { return;
expect().assertFail(); }
} console.log(`Telephony_Sms_getDefaultSmsSimId_CallBack_0100 callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
sim.hasSimCard(0, (err, data) => {
console.log(`Telephony_Sms_getDefaultSmsSimId_CallBack_0100 hasSimCard callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
expect(data).assertTrue();
done();
}); });
done(); });
return;
}
console.log(`Telephony_Sms_getDefaultSmsSimId_CallBack_0100 callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
expect(true).assertTrue();
done();
}); });
}); /**
/** * @tc.number Telephony_Sms_getDefaultSmsSimId_Promise_0100
* @tc.number Telephony_Sms_getDefaultSmsSimId_Promise_0100 * @tc.name Test getOpName interface
* @tc.name Test getOpName interface * @tc.desc
* @tc.desc */
*/ it('Telephony_Sms_getDefaultSmsSimId_Promise_0100', 0, async function (done) {
it('Telephony_Sms_getDefaultSmsSimId_Promise_0100', 0, async function (done) { let promise = sms.getDefaultSmsSimId();
let promise = sms.getDefaultSmsSimId(); promise.then(data => {
promise.then(data => {
console.info("Telephony_Sms_getDefaultSmsSimId_Promise_0100 data = " + JSON.stringify(data)); console.info("Telephony_Sms_getDefaultSmsSimId_Promise_0100 data = " + JSON.stringify(data));
expect(true).assertTrue(); sim.hasSimCard(0, (err, data) => {
done(); console.log(`Telephony_Sms_getDefaultSmsSimId_Promise_0100 hasSimCard callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
}).catch(err => { expect(data).assertTrue();
console.info("Telephony_Sms_getDefaultSmsSimId_Promise_0100 err = " + JSON.stringify(err)); done();
radio.isRadioOn(0, (err, data) => {
console.info('Telephony_Sms_getDefaultSmsSimId_Promise_0100 isRadioOn err' + JSON.stringify(err) + ' data ' + JSON.stringify(data));
if (!err) {
expect().assertFail();
}
}); });
}).catch(err => {
console.info("Telephony_Sms_getDefaultSmsSimId_Promise_0100 err = " + JSON.stringify(err));
expect(true).assertTrue();
done(); done();
});
}); });
});
}) })
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册