Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
eaa01f8e
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
eaa01f8e
编写于
7月 21, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 21, 2023
浏览文件
操作
浏览文件
下载
差异文件
!9406 增加sim卡判断
Merge pull request !9406 from 姜欢欢/master
上级
a47d376d
5000be22
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
499 addition
and
517 deletion
+499
-517
telephony/telephonyjstest/radiostatistic/entry/src/main/ets/test/SmsMmsJsunit.test.ets
...iostatistic/entry/src/main/ets/test/SmsMmsJsunit.test.ets
+36
-39
telephony/telephonyjstest/sim/sim_manager_function_test/src/main/js/test/SimManager.test.js
...manager_function_test/src/main/js/test/SimManager.test.js
+463
-478
未找到文件。
telephony/telephonyjstest/radiostatistic/entry/src/main/ets/test/SmsMmsJsunit.test.ets
浏览文件 @
eaa01f8e
...
...
@@ -15,6 +15,7 @@
import { describe, expect, it } from '@ohos/hypium';
import sms from '@ohos.telephony.sms';
import radio from '@ohos.telephony.radio';
import sim from '@ohos.telephony.sim';
export default function smsUiJsunit() {
describe('smsUiJsunit', function () {
...
...
@@ -122,50 +123,46 @@ export default function smsUiJsunit() {
done();
});
/**
* @tc.number Telephony_Sms_getDefaultSmsSimId_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it('Telephony_Sms_getDefaultSmsSimId_CallBack_0100', 0, async function (done) {
sms.getDefaultSmsSimId((err, data) => {
if(err){
console.info("Telephony_Sms_getDefaultSmsSimId_CallBack_0100 err = " + JSON.stringify(data));
radio.isRadioOn(0, (err, data) => {
console.info('Telephony_Sms_getDefaultSmsSimId_CallBack_0100 isRadioOn err' + JSON.stringify(err) + ' data ' + JSON.stringify(data));
if (!err) {
expect().assertFail();
}
/**
* @tc.number Telephony_Sms_getDefaultSmsSimId_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it('Telephony_Sms_getDefaultSmsSimId_CallBack_0100', 0, async function (done) {
sms.getDefaultSmsSimId((err, data) => {
if(err){
console.info("Telephony_Sms_getDefaultSmsSimId_CallBack_0100 err = " + JSON.stringify(data));
expect(true).assertTrue();
done();
return;
}
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.name Test getOpName interface
* @tc.desc
*/
it('Telephony_Sms_getDefaultSmsSimId_Promise_0100', 0, async function (done) {
let promise = sms.getDefaultSmsSimId();
promise.then(data => {
/**
* @tc.number Telephony_Sms_getDefaultSmsSimId_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it('Telephony_Sms_getDefaultSmsSimId_Promise_0100', 0, async function (done) {
let promise = sms.getDefaultSmsSimId();
promise.then(data => {
console.info("Telephony_Sms_getDefaultSmsSimId_Promise_0100 data = " + JSON.stringify(data));
expect(true).assertTrue();
done();
}).catch(err => {
console.info("Telephony_Sms_getDefaultSmsSimId_Promise_0100 err = " + JSON.stringify(err));
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();
}
sim.hasSimCard(0, (err, data) => {
console.log(`Telephony_Sms_getDefaultSmsSimId_Promise_0100 hasSimCard callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
expect(data).assertTrue();
done();
});
}).catch(err => {
console.info("Telephony_Sms_getDefaultSmsSimId_Promise_0100 err = " + JSON.stringify(err));
expect(true).assertTrue();
done();
});
});
});
})
}
telephony/telephonyjstest/sim/sim_manager_function_test/src/main/js/test/SimManager.test.js
浏览文件 @
eaa01f8e
...
...
@@ -19,39 +19,39 @@ import * as env from './lib/Const';
import
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
}
from
'
@ohos/hypium
'
export
default
function
SimManagerTest
()
{
describe
(
'
SimManagerTest
'
,
function
()
{
afterEach
(
async
function
()
{
try
{
class
IccAccountInfo
{
constructor
(
slotIndex
,
showName
,
showNumber
)
{
this
.
slotIndex
=
slotIndex
;
this
.
showName
=
showName
;
this
.
showNumber
=
showNumber
;
describe
(
'
SimManagerTest
'
,
function
()
{
afterEach
(
async
function
()
{
try
{
class
IccAccountInfo
{
constructor
(
slotIndex
,
showName
,
showNumber
)
{
this
.
slotIndex
=
slotIndex
;
this
.
showName
=
showName
;
this
.
showNumber
=
showNumber
;
}
}
}
const
SLOT_INDEX
=
0
;
const
SHOW_NAME
=
'
test
'
;
const
SHOW_NUMBER
=
'
10
'
;
let
iccAccountInfo
=
new
IccAccountInfo
(
SLOT_INDEX
,
SHOW_NAME
,
SHOW_NUMBER
);
expect
(
iccAccountInfo
.
slotIndex
===
SLOT_INDEX
).
assertTrue
();
expect
(
iccAccountInfo
.
showName
===
SHOW_NAME
).
assertTrue
();
expect
(
iccAccountInfo
.
showNumber
===
SHOW_NUMBER
).
assertTrue
();
const
SLOT_INDEX
=
0
;
const
SHOW_NAME
=
'
test
'
;
const
SHOW_NUMBER
=
'
10
'
;
let
iccAccountInfo
=
new
IccAccountInfo
(
SLOT_INDEX
,
SHOW_NAME
,
SHOW_NUMBER
);
expect
(
iccAccountInfo
.
slotIndex
===
SLOT_INDEX
).
assertTrue
();
expect
(
iccAccountInfo
.
showName
===
SHOW_NAME
).
assertTrue
();
expect
(
iccAccountInfo
.
showNumber
===
SHOW_NUMBER
).
assertTrue
();
class
LockStatusResponse
{
constructor
(
result
,
remain
)
{
this
.
result
=
result
;
this
.
remain
=
remain
;
class
LockStatusResponse
{
constructor
(
result
,
remain
)
{
this
.
result
=
result
;
this
.
remain
=
remain
;
}
}
const
RES_RESULT
=
0
;
const
RES_REMAIN
=
0
;
let
lockStatusResponse
=
new
LockStatusResponse
(
RES_RESULT
,
RES_REMAIN
);
expect
(
lockStatusResponse
.
result
===
RES_RESULT
).
assertTrue
();
expect
(
lockStatusResponse
.
remain
===
RES_REMAIN
).
assertTrue
();
}
catch
(
error
)
{
console
.
info
(
`Telephony_Sim error`
);
}
const
RES_RESULT
=
0
;
const
RES_REMAIN
=
0
;
let
lockStatusResponse
=
new
LockStatusResponse
(
RES_RESULT
,
RES_REMAIN
);
expect
(
lockStatusResponse
.
result
===
RES_RESULT
).
assertTrue
();
expect
(
lockStatusResponse
.
remain
===
RES_REMAIN
).
assertTrue
();
}
catch
(
error
)
{
console
.
info
(
`Telephony_Sim error`
);
}
});
});
it
(
'
Telephony_Sim_getDefaultVoiceSlotId_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getDefaultVoiceSlotId
((
err
,
data
)
=>
{
...
...
@@ -71,43 +71,65 @@ describe('SimManagerTest', function () {
});
});
/**
* @tc.number Telephony_Sim_constantValidate_0100
* @tc.name SIM card constant validation
* @tc.desc Function test
*/
/**
* @tc.number Telephony_Sim_constantValidate_0100
* @tc.name SIM card constant validation
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_constantValidate_0100
'
,
0
,
async
function
(
done
)
{
console
.
info
(
`Telephony_Sim_constantValidate_0100 start`
);
expect
(
sim
.
SimState
.
SIM_STATE_UNKNOWN
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_NOT_PRESENT
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_LOCKED
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_NOT_READY
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_READY
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_LOADED
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
UNKNOWN_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SINGLE_MODE_SIM_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SINGLE_MODE_USIM_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SINGLE_MODE_RUIM_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
DUAL_MODE_CG_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
CT_NATIONAL_ROAMING_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
CU_DUAL_MODE_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
DUAL_MODE_TELECOM_LTE_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
DUAL_MODE_UG_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SINGLE_MODE_ISIM_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
console
.
info
(
`Telephony_Sim_constantValidate_0100 finish`
);
console
.
info
(
`Telephony_Sim_constantValidate_0100 start`
);
expect
(
sim
.
SimState
.
SIM_STATE_UNKNOWN
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_NOT_PRESENT
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_LOCKED
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_NOT_READY
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_READY
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SimState
.
SIM_STATE_LOADED
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
UNKNOWN_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SINGLE_MODE_SIM_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SINGLE_MODE_USIM_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SINGLE_MODE_RUIM_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
DUAL_MODE_CG_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
CT_NATIONAL_ROAMING_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
CU_DUAL_MODE_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
DUAL_MODE_TELECOM_LTE_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
DUAL_MODE_UG_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
expect
(
sim
.
SINGLE_MODE_ISIM_CARD
!==
env
.
INVALID_VALUE
).
assertTrue
();
console
.
info
(
`Telephony_Sim_constantValidate_0100 finish`
);
done
();
});
/**
* @tc.number Telephony_Sim_getISOCountryCodeForSim_Async_0200
* @tc.name Enter exception parameters to test whether the getISOCountryCodeForSim interface function
* can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getISOCountryCodeForSim_Async_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getISOCountryCodeForSim_Async_0200
'
;
sim
.
getISOCountryCodeForSim
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
if
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
();
return
;
}
expect
().
assertFail
();
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
();
});
});
/**
* @tc.number Telephony_Sim_getISOCountryCodeForSim_Async_0200
* @tc.name Enter exception parameters to test whether the getISOCountryCodeForSim interface function
* can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getISOCountryCodeForSim_Async_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getISOCountryCodeForSim_Async_0200
'
;
sim
.
getISOCountryCodeForSim
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
if
(
err
)
{
/**
* @tc.number Telephony_Sim_getISOCountryCodeForSim_Promise_0200
* @tc.name Enter exception parameters to test whether the getISOCountryCodeForSim interface function
* can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getISOCountryCodeForSim_Promise_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getISOCountryCodeForSim_Promise_0200
'
;
try
{
var
data
=
await
sim
.
getISOCountryCodeForSim
(
env
.
SLOTID2
);
}
catch
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
();
...
...
@@ -117,39 +139,39 @@ describe('SimManagerTest', function () {
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
();
});
});
/**
* @tc.number Telephony_Sim_getISOCountryCodeForSim_Promise
_0200
* @tc.name Enter exception parameters to test whether the getISOCountryCodeForSim
interface function
* can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getISOCountryCodeForSim_Promise
_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getISOCountryCodeForSim_Promise
_0200
'
;
try
{
var
data
=
await
sim
.
getISOCountryCodeForSim
(
env
.
SLOTID2
);
}
catch
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
()
;
return
;
}
expect
().
assertFail
(
);
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
(
);
});
/**
* @tc.number Telephony_Sim_getSimOperatorNumeric_Async
_0200
* @tc.name Enter exception parameters to test whether the getSimOperatorNumeric
interface function
* can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimOperatorNumeric_Async
_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimOperatorNumeric_Async
_0200
'
;
sim
.
getSimOperatorNumeric
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
if
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish
`
);
done
(
);
return
;
}
expect
().
assertFail
();
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
(
);
}
);
});
/**
* @tc.number Telephony_Sim_getSimOperatorNumeric_Async_0200
* @tc.name Enter exception parameters to test whether the getSimOperatorNumeric interface function
* can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimOperatorNumeric_Async_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimOperatorNumeric_Async_0200
'
;
sim
.
getSimOperatorNumeric
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
if
(
err
)
{
/**
* @tc.number Telephony_Sim_getSimOperatorNumeric_Promise_0200
* @tc.name Enter exception parameters to test whether the getSimOperatorNumeric interface function
* can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimOperatorNumeric_Promise_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimOperatorNumeric_Promise_0200
'
;
try
{
var
data
=
await
sim
.
getSimOperatorNumeric
(
env
.
SLOTID2
);
}
catch
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
();
...
...
@@ -159,39 +181,38 @@ describe('SimManagerTest', function () {
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
();
});
});
/**
* @tc.number Telephony_Sim_getSimOperatorNumeric_Promise_0200
* @tc.name Enter exception parameters to test whether the getSimOperatorNumeric interface function
* can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimOperatorNumeric_Promise_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimOperatorNumeric_Promise_0200
'
;
try
{
var
data
=
await
sim
.
getSimOperatorNumeric
(
env
.
SLOTID2
);
}
catch
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
();
return
;
}
expect
().
assertFail
();
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
();
});
/**
* @tc.number Telephony_Sim_getSimSpn_Async_0200
* @tc.name Enter exception parameters to test whether the getSimSpn interface function can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimSpn_Async_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimSpn_Async_0200
'
;
sim
.
getSimSpn
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
if
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
fail:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
();
return
;
}
expect
().
assertFail
();
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
();
});
});
/**
* @tc.number Telephony_Sim_getSimSpn_Async_0200
* @tc.name Enter exception parameters to test whether the getSimSpn interface function can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimSpn_Async_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimSpn_Async_0200
'
;
sim
.
getSimSpn
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
if
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
fail:
${
err
.
message
}
`
);
/**
* @tc.number Telephony_Sim_getSimSpn_Promise_0200
* @tc.name Enter exception parameters to test whether the getSimSpn interface function can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimSpn_Promise_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimSpn_Promise_0200
'
;
try
{
var
data
=
await
sim
.
getSimSpn
(
env
.
SLOTID2
);
}
catch
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
();
return
;
...
...
@@ -200,37 +221,37 @@ describe('SimManagerTest', function () {
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
();
});
});
/**
* @tc.number Telephony_Sim_getSimSpn_Promise
_0200
* @tc.name Enter exception parameters to test whether the getSimSpn
interface function can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimSpn_Promise
_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimSpn_Promise_0200
'
;
try
{
var
data
=
await
sim
.
getSimSpn
(
env
.
SLOTID2
);
}
catch
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
()
;
return
;
}
expect
().
assertFail
(
);
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
(
);
});
/**
* @tc.number Telephony_Sim_getSimState_Async
_0200
* @tc.name Enter exception parameters to test whether the getSimState
interface function can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimState_Async
_0200
'
,
0
,
async
function
(
done
)
{
sim
.
getSimState
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
const
CASE_NAME
=
'
Telephony_Sim_getSimState_Async_0200
'
;
if
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish
`
);
done
(
);
return
;
}
expect
().
assertFail
();
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
(
);
}
);
});
/**
* @tc.number Telephony_Sim_getSimState_Async_0200
* @tc.name Enter exception parameters to test whether the getSimState interface function can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimState_Async_0200
'
,
0
,
async
function
(
done
)
{
sim
.
getSimState
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
const
CASE_NAME
=
'
Telephony_Sim_getSimState_Async_0200
'
;
if
(
err
)
{
/**
* @tc.number Telephony_Sim_getSimState_Promise_0200
* @tc.name Enter exception parameters to test whether the getSimState interface function can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimState_Promise_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimState_Promise_0200
'
;
try
{
var
data
=
await
sim
.
getSimState
(
env
.
SLOTID2
);
}
catch
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
();
...
...
@@ -240,401 +261,365 @@ describe('SimManagerTest', function () {
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
();
});
});
/**
* @tc.number Telephony_Sim_getSimState_Promise_0200
* @tc.name Enter exception parameters to test whether the getSimState interface function can execute normally.
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getSimState_Promise_0200
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getSimState_Promise_0200
'
;
try
{
var
data
=
await
sim
.
getSimState
(
env
.
SLOTID2
);
}
catch
(
err
)
{
console
.
info
(
`
${
CASE_NAME
}
expect err:
${
err
.
message
}
`
);
console
.
info
(
`
${
CASE_NAME
}
finish`
);
done
();
return
;
}
expect
().
assertFail
();
console
.
info
(
`
${
CASE_NAME
}
fail, data =
${
data
}
`
);
done
();
});
/**
* @tc.number Telephony_Sim_isSimActive_Async_0700
* @tc.name Test the slotId exception input parameter 2 during isSimActive interface card activation,
* check the callback value, and expect the callback result flase
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_isSimActive_Async_0700
'
,
0
,
async
function
(
done
)
{
/**
* @tc.number Telephony_Sim_isSimActive_Async_0700
* @tc.name Test the slotId exception input parameter 2 during isSimActive interface card activation,
* check the callback value, and expect the callback result flase
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_isSimActive_Async_0700
'
,
0
,
async
function
(
done
)
{
sim
.
isSimActive
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
console
.
info
(
"
isSimActive async err info :
"
+
JSON
.
stringify
(
err
)
+
"
data:
"
+
JSON
.
stringify
(
data
));
expect
(
err
.
code
).
assertEqual
(
8300001
);
done
();
});
});
});
/**
* @tc.number Telephony_Sim_isSimActive_Promise_0700
* @tc.name Test the slotId exception input parameter 2 during isSimActive interface card activation,
* check the callback value, and expect the callback result flase
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_isSimActive_Promise_0700
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
isSimActive
(
env
.
SLOTID2
);
promise
.
then
(
data
=>
{
console
.
log
(
`isSimActive success, promise: data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
data
).
assertFalse
();
done
();
}).
catch
(
err
=>
{
console
.
info
(
"
isSimActive promise err info :
"
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
8300001
);
done
();
/**
* @tc.number Telephony_Sim_isSimActive_Promise_0700
* @tc.name Test the slotId exception input parameter 2 during isSimActive interface card activation,
* check the callback value, and expect the callback result flase
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_isSimActive_Promise_0700
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
isSimActive
(
env
.
SLOTID2
);
promise
.
then
(
data
=>
{
console
.
log
(
`isSimActive success, promise: data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
data
).
assertFalse
();
done
();
}).
catch
(
err
=>
{
console
.
info
(
"
isSimActive promise err info :
"
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
8300001
);
done
();
});
});
});
/**
/**
* @tc.number Telephony_Sim_hasSimCard_Async_0600
* @tc.name Test the slotId exception input parameter 2 of the hasSimCard interface,
* check the callback value, and expect the callback result flase
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_hasSimCard_Async_0600
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_hasSimCard_Async_0600
'
;
sim
.
hasSimCard
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
if
(
err
)
{
it
(
'
Telephony_Sim_hasSimCard_Async_0600
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_hasSimCard_Async_0600
'
;
sim
.
hasSimCard
(
env
.
SLOTID2
,
(
err
,
data
)
=>
{
if
(
err
)
{
expect
(
err
.
code
).
assertEqual
(
8300001
);
console
.
info
(
CASE_NAME
+
'
fail, err:
'
+
JSON
.
stringify
(
err
));
done
();
return
;
}
console
.
info
(
CASE_NAME
+
'
finish
'
+
JSON
.
stringify
(
data
));
});
});
/**
* @tc.number Telephony_Sim_hasSimCard_Promise_0600
* @tc.name Test the slotId exception input parameter 2 of the hasSimCard interface,
* check the callback value, and expect the callback result flase
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_hasSimCard_Promise_0600
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_hasSimCard_Promise_0600
'
;
try
{
let
data
=
await
sim
.
hasSimCard
(
env
.
SLOTID2
);
}
catch
(
err
)
{
expect
(
err
.
code
).
assertEqual
(
8300001
);
console
.
info
(
CASE_NAME
+
'
fail, err:
'
+
JSON
.
stringify
(
err
));
done
();
return
;
}
console
.
info
(
CASE_NAME
+
'
finish
'
+
JSON
.
stringify
(
data
)
);
console
.
info
(
CASE_NAME
+
'
finish
'
);
});
});
/**
* @tc.number Telephony_Sim_hasSimCard_Promise_0600
* @tc.name Test the slotId exception input parameter 2 of the hasSimCard interface,
* check the callback value, and expect the callback result flase
* @tc.desc Function test
/**
* @tc.number Telephony_Sim_getMaxSimCount_0100
* @tc.name Test the getMaxSimCount interface and view the callback result
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_hasSimCard_Promise_0600
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_hasSimCard_Promise_0600
'
;
try
{
let
data
=
await
sim
.
hasSimCard
(
env
.
SLOTID2
);
}
catch
(
err
)
{
expect
(
err
.
code
).
assertEqual
(
8300001
);
console
.
info
(
CASE_NAME
+
'
fail, err:
'
+
JSON
.
stringify
(
err
));
it
(
'
Telephony_Sim_getMaxSimCount_0100
'
,
0
,
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getMaxSimCount_0100
'
;
let
simCount
=
sim
.
getMaxSimCount
();
expect
(
simCount
>
env
.
SIM_MIN_COUNT
).
assertTrue
();
console
.
info
(
`
${
CASE_NAME
}
test finish.`
);
done
();
return
;
}
console
.
info
(
CASE_NAME
+
'
finish
'
);
});
});
/**
* @tc.number Telephony_Sim_getMaxSimCount_0100
* @tc.name Test the getMaxSimCount interface and view the callback result
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_getMaxSimCount_0100
'
,
0
,
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_getMaxSimCount_0100
'
;
let
simCount
=
sim
.
getMaxSimCount
();
expect
(
simCount
>
env
.
SIM_MIN_COUNT
).
assertTrue
();
console
.
info
(
`
${
CASE_NAME
}
test finish.`
);
done
();
});
/**
* @tc.number Telephony_Sim_GetCardType_Async_0400
* @tc.name Verify that the slotId of the GetCardType async callback interface is abnormal
* and enter parameter 2, and check the callback value
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_GetCardType_Async_0400
'
,
0
,
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_GetCardType_Async_0400
'
;
sim
.
getCardType
(
env
.
SLOTID2
,
(
err
,
cardType
)
=>
{
if
(
err
)
{
console
.
info
(
CASE_NAME
+
'
GetCardType error:
'
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
8300001
);
done
();
return
;
}
console
.
info
(
CASE_NAME
+
'
finish
'
+
JSON
.
stringify
(
cardType
));
expect
().
assertFail
();
done
();
});
});
/**
* @tc.number Telephony_Sim_GetCardType_Async_0400
* @tc.name Verify that the slotId of the GetCardType async callback interface is abnormal
* and enter parameter 2, and check the callback value
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_GetCardType_Async_0400
'
,
0
,
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_GetCardType_Async_0400
'
;
sim
.
getCardType
(
env
.
SLOTID2
,
(
err
,
cardType
)
=>
{
if
(
err
)
{
/**
* @tc.number Telephony_Sim_GetCardType_Promise_0400
* @tc.name Verify that the slotId of the GetCardType promise interface is abnormal
* and enter parameter 2, and check the callback value
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_GetCardType_Promise_0400
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_GetCardType_Promise_0400
'
;
try
{
const
cardType
=
await
sim
.
getCardType
(
env
.
SLOTID2
);
console
.
info
(
CASE_NAME
+
'
finish
'
);
}
catch
(
err
)
{
console
.
info
(
CASE_NAME
+
'
GetCardType error:
'
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
8300001
);
done
();
return
;
}
console
.
info
(
CASE_NAME
+
'
finish
'
+
JSON
.
stringify
(
cardType
));
expect
().
assertFail
();
done
();
});
});
/**
* @tc.number Telephony_Sim_GetCardType_Promise_0400
* @tc.name Verify that the slotId of the GetCardType promise interface is abnormal
* and enter parameter 2, and check the callback value
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_GetCardType_Promise_0400
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_GetCardType_Promise_0400
'
;
try
{
const
cardType
=
await
sim
.
getCardType
(
env
.
SLOTID2
);
console
.
info
(
CASE_NAME
+
'
finish
'
);
}
catch
(
err
)
{
console
.
info
(
CASE_NAME
+
'
GetCardType error:
'
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
8300001
);
}
done
();
});
/**
* @tc.number Telephony_Sim_hasOperatorPrivileges_Async_0400
* @tc.name Test hasOperatorPrivileges interface slotId exception enter parameter 2,
* check the callback result
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_hasOperatorPrivileges_Async_0400
'
,
0
,
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_hasOperatorPrivileges_Async_0400
'
;
sim
.
hasOperatorPrivileges
(
env
.
SLOTID2
,
(
error
,
result
)
=>
{
if
(
error
)
{
console
.
info
(
CASE_NAME
+
'
hasOperatorPrivileges error:
'
+
JSON
.
stringify
(
error
));
expect
(
error
.
code
).
assertEqual
(
8300001
);
done
();
return
;
}
console
.
info
(
CASE_NAME
+
'
finish
'
+
JSON
.
stringify
(
result
));
expect
().
assertFail
();
done
();
});
});
/**
* @tc.number Telephony_Sim_hasOperatorPrivileges_Async_0400
* @tc.name Test hasOperatorPrivileges interface slotId exception enter parameter 2,
* check the callback result
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_hasOperatorPrivileges_Async_0400
'
,
0
,
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_hasOperatorPrivileges_Async_0400
'
;
sim
.
hasOperatorPrivileges
(
env
.
SLOTID2
,
(
error
,
result
)
=>
{
if
(
error
)
{
/**
* @tc.number Telephony_Sim_hasOperatorPrivileges_Promise_0400
* @tc.name Test hasOperatorPrivileges interface slotId exception enter parameter 2,
* check the returned result
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_hasOperatorPrivileges_Promise_0400
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_hasOperatorPrivileges_Promise_0400
'
;
try
{
const
result
=
await
sim
.
hasOperatorPrivileges
(
env
.
SLOTID2
);
console
.
info
(
CASE_NAME
+
'
finish
'
+
JSON
.
stringify
(
result
));
expect
().
assertFail
();
done
();
}
catch
(
error
)
{
console
.
info
(
CASE_NAME
+
'
hasOperatorPrivileges error:
'
+
JSON
.
stringify
(
error
));
expect
(
error
.
code
).
assertEqual
(
8300001
);
done
();
return
;
}
console
.
info
(
CASE_NAME
+
'
finish
'
+
JSON
.
stringify
(
result
));
expect
().
assertFail
();
done
();
});
});
/**
* @tc.number Telephony_Sim_hasOperatorPrivileges_Promise_0400
* @tc.name Test hasOperatorPrivileges interface slotId exception enter parameter 2,
* check the returned result
* @tc.desc Function test
*/
it
(
'
Telephony_Sim_hasOperatorPrivileges_Promise_0400
'
,
0
,
async
function
(
done
)
{
const
CASE_NAME
=
'
Telephony_Sim_hasOperatorPrivileges_Promise_0400
'
;
try
{
const
result
=
await
sim
.
hasOperatorPrivileges
(
env
.
SLOTID2
);
console
.
info
(
CASE_NAME
+
'
finish
'
+
JSON
.
stringify
(
result
));
expect
().
assertFail
();
done
();
}
catch
(
error
)
{
console
.
info
(
CASE_NAME
+
'
hasOperatorPrivileges error:
'
+
JSON
.
stringify
(
error
));
expect
(
error
.
code
).
assertEqual
(
8300001
);
}
done
();
});
/**
* @tc.number Telephony_Sim_getOpKey_CallBack_0100
* @tc.name Test getOpKey interface
* @tc.desc Obtains the opkey of the SIM card in a specified slot.Returns the opkey;
* returns "-1" if no SIM card is inserted or no opkey matched.
*/
it
(
'
Telephony_Sim_getOpKey_CallBack_0100
'
,
0
,
async
function
(
done
)
{
/**
* @tc.number Telephony_Sim_getOpKey_CallBack_0100
* @tc.name Test getOpKey interface
* @tc.desc Obtains the opkey of the SIM card in a specified slot.Returns the opkey;
* returns "-1" if no SIM card is inserted or no opkey matched.
*/
it
(
'
Telephony_Sim_getOpKey_CallBack_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getOpKey
(
0
,
(
err
,
data
)
=>
{
console
.
info
(
"
Telephony_Sim_getOpKey_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
)
+
"
data =
"
+
JSON
.
stringify
(
data
));
if
(
err
){
expect
(
err
.
code
).
assertEqual
(
-
1
);
done
();
return
;
}
console
.
info
(
"
Telephony_Sim_getOpKey_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
)
+
"
data =
"
+
JSON
.
stringify
(
data
));
if
(
err
){
expect
(
err
.
code
).
assertEqual
(
-
1
);
done
();
return
;
}
done
();
});
});
});
/**
* @tc.number Telephony_Sim_getOpKey_Promise_0100
* @tc.name Test getOpKey interface
* @tc.desc Obtains the opkey of the SIM card in a specified slot.Returns the opkey;
* returns "-1" if no SIM card is inserted or no opkey matched.
*/
it
(
'
Telephony_Sim_getOpKey_Promise_0100
'
,
0
,
async
function
(
done
)
{
/**
* @tc.number Telephony_Sim_getOpKey_Promise_0100
* @tc.name Test getOpKey interface
* @tc.desc Obtains the opkey of the SIM card in a specified slot.Returns the opkey;
* returns "-1" if no SIM card is inserted or no opkey matched.
*/
it
(
'
Telephony_Sim_getOpKey_Promise_0100
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
getOpKey
(
0
);
promise
.
then
(
data
=>
{
console
.
info
(
"
Telephony_Sim_getOpKey_Promise_0100 data =
"
+
JSON
.
stringify
(
data
));
done
();
console
.
info
(
"
Telephony_Sim_getOpKey_Promise_0100 data =
"
+
JSON
.
stringify
(
data
));
done
();
}).
catch
(
err
=>
{
console
.
info
(
"
Telephony_Sim_getOpKey_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
-
1
);
done
();
console
.
info
(
"
Telephony_Sim_getOpKey_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
-
1
);
done
();
});
});
});
/**
* @tc.number Telephony_Sim_getOpName_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc Obtains the opname of the SIM card in a specified slot.
* returns null if no SIM card is inserted or no opname matched.
*/
it
(
'
Telephony_Sim_getOpName_CallBack_0100
'
,
0
,
async
function
(
done
)
{
/**
* @tc.number Telephony_Sim_getOpName_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc Obtains the opname of the SIM card in a specified slot.
* returns null if no SIM card is inserted or no opname matched.
*/
it
(
'
Telephony_Sim_getOpName_CallBack_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getOpName
(
0
,
(
err
,
data
)
=>
{
console
.
info
(
"
Telephony_Sim_getOpName_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
)
+
"
data =
"
+
JSON
.
stringify
(
data
));
if
(
err
){
expect
(
err
.
code
).
assertEqual
(
-
1
);
done
();
return
;
}
console
.
info
(
"
Telephony_Sim_getOpName_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
)
+
"
data =
"
+
JSON
.
stringify
(
data
));
if
(
err
){
expect
(
err
.
code
).
assertEqual
(
-
1
);
done
();
return
;
}
done
();
});
});
});
/**
* @tc.number Telephony_Sim_getOpName_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc Obtains the opname of the SIM card in a specified slot.
* returns null if no SIM card is inserted or no opname matched.
*/
it
(
'
Telephony_Sim_getOpName_Promise_0100
'
,
0
,
async
function
(
done
)
{
/**
* @tc.number Telephony_Sim_getOpName_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc Obtains the opname of the SIM card in a specified slot.
* returns null if no SIM card is inserted or no opname matched.
*/
it
(
'
Telephony_Sim_getOpName_Promise_0100
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
getOpName
(
0
);
promise
.
then
(
data
=>
{
console
.
info
(
"
Telephony_Sim_getOpName_Promise_0100 data =
"
+
JSON
.
stringify
(
data
));
done
();
console
.
info
(
"
Telephony_Sim_getOpName_Promise_0100 data =
"
+
JSON
.
stringify
(
data
));
done
();
}).
catch
(
err
=>
{
console
.
info
(
"
Telephony_Sim_getOpName_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
-
1
);
done
();
console
.
info
(
"
Telephony_Sim_getOpName_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
-
1
);
done
();
});
});
/**
* @tc.number Telephony_Sim_getSimAccountInfo_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getSimAccountInfo_CallBack_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getSimAccountInfo
(
0
,
(
err
,
data
)
=>
{
if
(
err
){
console
.
info
(
"
Telephony_Sim_getSimAccountInfo_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
));
radio
.
isRadioOn
(
0
,
(
err
,
data
)
=>
{
console
.
info
(
'
Telephony_Sim_getSimAccountInfo_CallBack_0100 isRadioOn err
'
+
JSON
.
stringify
(
err
)
+
'
data
'
+
JSON
.
stringify
(
data
));
if
(
!
err
)
{
expect
().
assertFail
();
}
});
/**
* @tc.number Telephony_Sim_getSimAccountInfo_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getSimAccountInfo_CallBack_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getSimAccountInfo
(
0
,
(
err
,
data
)
=>
{
if
(
err
){
console
.
info
(
"
Telephony_Sim_getSimAccountInfo_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
true
).
assertTrue
();
done
();
return
;
}
console
.
log
(
`Telephony_Sim_getSimAccountInfo_CallBack_0100 callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
sim
.
hasSimCard
(
0
,
(
err
,
data
)
=>
{
console
.
log
(
`Telephony_Sim_getSimAccountInfo_CallBack_0100 hasSimCard callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
data
).
assertTrue
();
done
();
});
done
();
return
;
}
console
.
log
(
`Telephony_Sim_getSimAccountInfo_CallBack_0100 callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
true
).
assertTrue
();
done
();
});
});
});
/**
* @tc.number Telephony_Sim_getSimAccountInfo_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getSimAccountInfo_Promise_0100
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
getSimAccountInfo
(
0
);
promise
.
then
(
data
=>
{
/**
* @tc.number Telephony_Sim_getSimAccountInfo_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getSimAccountInfo_Promise_0100
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
getSimAccountInfo
(
0
);
promise
.
then
(
data
=>
{
console
.
info
(
"
Telephony_Sim_getSimAccountInfo_Promise_0100 data =
"
+
JSON
.
stringify
(
data
));
expect
(
true
).
assertTrue
();
done
();
}).
catch
(
err
=>
{
console
.
info
(
"
Telephony_Sim_getSimAccountInfo_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
radio
.
isRadioOn
(
0
,
(
err
,
data
)
=>
{
console
.
info
(
'
Telephony_Sim_getSimAccountInfo_Promise_0100 isRadioOn err
'
+
JSON
.
stringify
(
err
)
+
'
data
'
+
JSON
.
stringify
(
data
));
if
(
!
err
)
{
expect
().
assertFail
();
}
sim
.
hasSimCard
(
0
,
(
err
,
data
)
=>
{
console
.
log
(
`Telephony_Sim_getSimAccountInfo_Promise_0100 hasSimCard callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
data
).
assertTrue
();
done
();
});
}).
catch
(
err
=>
{
console
.
info
(
"
Telephony_Sim_getSimAccountInfo_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
true
).
assertTrue
();
done
();
});
});
});
/**
* @tc.number Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getActiveSimAccountInfoList
((
err
,
data
)
=>
{
if
(
err
){
console
.
info
(
"
Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
));
radio
.
isRadioOn
(
0
,
(
err
,
data
)
=>
{
console
.
info
(
'
Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100 isRadioOn err
'
+
JSON
.
stringify
(
err
)
+
'
data
'
+
JSON
.
stringify
(
data
));
if
(
!
err
)
{
expect
().
assertFail
();
}
/**
* @tc.number Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getActiveSimAccountInfoList
((
err
,
data
)
=>
{
if
(
err
){
console
.
info
(
"
Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
true
).
assertTrue
();
done
();
return
;
}
console
.
log
(
`Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100 callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
sim
.
hasSimCard
(
0
,
(
err
,
data
)
=>
{
console
.
log
(
`Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100 hasSimCard callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
data
).
assertTrue
();
done
();
});
done
();
return
;
}
console
.
log
(
`Telephony_Sim_getActiveSimAccountInfoList_CallBack_0100 callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
true
).
assertTrue
();
done
();
});
});
});
/**
* @tc.number Telephony_Sim_getActiveSimAccountInfoList_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getActiveSimAccountInfoList_Promise_0100
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
getActiveSimAccountInfoList
();
promise
.
then
(
data
=>
{
/**
* @tc.number Telephony_Sim_getActiveSimAccountInfoList_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getActiveSimAccountInfoList_Promise_0100
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
getActiveSimAccountInfoList
();
promise
.
then
(
data
=>
{
console
.
info
(
"
Telephony_Sim_getActiveSimAccountInfoList_Promise_0100 data =
"
+
JSON
.
stringify
(
data
));
expect
(
true
).
assertTrue
();
done
();
}).
catch
(
err
=>
{
console
.
info
(
"
Telephony_Sim_getActiveSimAccountInfoList_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
radio
.
isRadioOn
(
0
,
(
err
,
data
)
=>
{
console
.
info
(
'
Telephony_Sim_getActiveSimAccountInfoList_Promise_0100 isRadioOn err
'
+
JSON
.
stringify
(
err
)
+
'
data
'
+
JSON
.
stringify
(
data
));
if
(
!
err
)
{
expect
().
assertFail
();
}
sim
.
hasSimCard
(
0
,
(
err
,
data
)
=>
{
console
.
log
(
`Telephony_Sim_getActiveSimAccountInfoList_Promise_0100 hasSimCard callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
data
).
assertTrue
();
done
();
});
}).
catch
(
err
=>
{
console
.
info
(
"
Telephony_Sim_getActiveSimAccountInfoList_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
true
).
assertTrue
();
done
();
});
});
});
/**
* @tc.number Telephony_Sim_getDefaultVoiceSimId_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getDefaultVoiceSimId_CallBack_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getDefaultVoiceSimId
((
err
,
data
)
=>
{
if
(
err
){
console
.
info
(
"
Telephony_Sim_getDefaultVoiceSimId_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
));
radio
.
isRadioOn
(
0
,
(
err
,
data
)
=>
{
console
.
info
(
'
Telephony_Sim_getDefaultVoiceSimId_CallBack_0100 isRadioOn err
'
+
JSON
.
stringify
(
err
)
+
'
data
'
+
JSON
.
stringify
(
data
));
if
(
!
err
)
{
expect
().
assertFail
();
}
/**
* @tc.number Telephony_Sim_getDefaultVoiceSimId_CallBack_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getDefaultVoiceSimId_CallBack_0100
'
,
0
,
async
function
(
done
)
{
sim
.
getDefaultVoiceSimId
((
err
,
data
)
=>
{
if
(
err
){
console
.
info
(
"
Telephony_Sim_getDefaultVoiceSimId_CallBack_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
true
).
assertTrue
();
done
();
return
;
}
console
.
log
(
`Telephony_Sim_getDefaultVoiceSimId_CallBack_0100 callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
sim
.
hasSimCard
(
0
,
(
err
,
data
)
=>
{
console
.
log
(
`Telephony_Sim_getDefaultVoiceSimId_CallBack_0100 hasSimCard callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
data
).
assertTrue
();
done
();
});
done
();
return
;
}
console
.
log
(
`Telephony_Sim_getDefaultVoiceSimId_CallBack_0100 callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
true
).
assertTrue
();
done
();
});
});
});
/**
* @tc.number Telephony_Sim_getDefaultVoiceSimId_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getDefaultVoiceSimId_Promise_0100
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
getDefaultVoiceSimId
();
promise
.
then
(
data
=>
{
/**
* @tc.number Telephony_Sim_getDefaultVoiceSimId_Promise_0100
* @tc.name Test getOpName interface
* @tc.desc
*/
it
(
'
Telephony_Sim_getDefaultVoiceSimId_Promise_0100
'
,
0
,
async
function
(
done
)
{
let
promise
=
sim
.
getDefaultVoiceSimId
();
promise
.
then
(
data
=>
{
console
.
info
(
"
Telephony_Sim_getDefaultVoiceSimId_Promise_0100 data =
"
+
JSON
.
stringify
(
data
));
expect
(
true
).
assertTrue
();
done
();
}).
catch
(
err
=>
{
console
.
info
(
"
Telephony_Sim_getDefaultVoiceSimId_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
radio
.
isRadioOn
(
0
,
(
err
,
data
)
=>
{
console
.
info
(
'
Telephony_Sim_getDefaultVoiceSimId_Promise_0100 isRadioOn err
'
+
JSON
.
stringify
(
err
)
+
'
data
'
+
JSON
.
stringify
(
data
));
if
(
!
err
)
{
expect
().
assertFail
();
}
sim
.
hasSimCard
(
0
,
(
err
,
data
)
=>
{
console
.
log
(
`Telephony_Sim_getDefaultVoiceSimId_Promise_0100 hasSimCard callback: err->
${
JSON
.
stringify
(
err
)}
, data->
${
JSON
.
stringify
(
data
)}
`
);
expect
(
data
).
assertTrue
();
done
();
});
}).
catch
(
err
=>
{
console
.
info
(
"
Telephony_Sim_getDefaultVoiceSimId_Promise_0100 err =
"
+
JSON
.
stringify
(
err
));
expect
(
true
).
assertTrue
();
done
();
});
});
});
})
}
})
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录