Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
e8356008
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看板
未验证
提交
e8356008
编写于
8月 09, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 09, 2022
浏览文件
操作
浏览文件
下载
差异文件
!4848 【xts_acts】【master】【distributedschedule】协同关系管理组件 xts用例新增
Merge pull request !4848 from 于小雅/deviceManager0805
上级
1877a8bd
2845bc94
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
306 addition
and
0 deletion
+306
-0
distributedschedule/dmsfwk/continuationmanagertest/src/main/js/test/ContinuationManagerJsunit.test.js
...ertest/src/main/js/test/ContinuationManagerJsunit.test.js
+306
-0
未找到文件。
distributedschedule/dmsfwk/continuationmanagertest/src/main/js/test/ContinuationManagerJsunit.test.js
浏览文件 @
e8356008
...
...
@@ -70,6 +70,85 @@ describe('ContinuationManagerTest', function() {
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_REGISTER_0200
* @tc.name [JS-API8]ContinuationManager.register().
* @tc.desc Test Js Api ContinuationManager.register() testcase 002
*/
it
(
'
testRegister002
'
,
0
,
async
function
(
done
)
{
try
{
let
continuationExtraParams
=
{
deviceType
:
[],
description
:
""
,
filter
:
""
,
continuationMode
:
null
,
authInfo
:
{}
};
continuationManager
.
register
(
continuationExtraParams
,
function
(
err
,
data
){
console
.
info
(
"
testRegister002
"
+
err
.
message
)
expect
(
err
.
message
==
"
Invalidate params.
"
).
assertTrue
();
done
();
});
}
catch
(
e
)
{
console
.
info
(
"
testRegister002
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_REGISTER_0300
* @tc.name [JS-API8]ContinuationManager.register().
* @tc.desc Test Js Api ContinuationManager.register() testcase 003
*/
it
(
'
testRegister003
'
,
0
,
async
function
(
done
)
{
try
{
let
continuationExtraParams
=
{
deviceType
:
[
"
00E
"
],
description
:
"
description
"
,
filter
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
},
continuationMode
:
10
,
authInfo
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
}
};
continuationManager
.
register
(
continuationExtraParams
,
function
(
err
,
data
)
{
expect
(
err
.
code
==
29360216
).
assertTrue
();
console
.
info
(
"
testRegister003
"
+
err
);
done
();
});
}
catch
(
e
)
{
console
.
info
(
"
testRegister003
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_REGISTER_0400
* @tc.name [JS-API8]ContinuationManager.register().
* @tc.desc Test Js Api ContinuationManager.register() testcase 004
*/
it
(
'
testRegister004
'
,
0
,
async
function
(
done
)
{
try
{
let
continuationExtraParams
=
{
deviceType
:
[
"
00E
"
],
description
:
"
description
"
,
filter
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
},
continuationMode
:
continuationManager
.
ContinuationMode
.
COLLABORATION_MUTIPLE
,
authInfo
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
}
};
continuationManager
.
register
(
continuationExtraParams
,
function
(
err
,
data
)
{
expect
(
err
.
code
==
0
).
assertTrue
();
expect
(
data
-
token
==
1
).
assertTrue
();
done
();
});
}
catch
(
e
)
{
console
.
info
(
"
testRegister004
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_UNREGISTER_0100
* @tc.name [JS-API8]ContinuationManager.unregister().
...
...
@@ -89,6 +168,46 @@ describe('ContinuationManagerTest', function() {
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_UNREGISTER_0200
* @tc.name [JS-API8]ContinuationManager.unregister().
* @tc.desc Test Js Api ContinuationManager.unregister() testcase 002
*/
it
(
'
testUnregister002
'
,
0
,
async
function
(
done
)
{
try
{
continuationManager
.
unregister
(
null
,
function
(
err
,
data
)
{
console
.
info
(
"
testUnregister002
"
+
data
);
expect
(
err
.
message
==
"
Invalidate params.
"
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
})
done
();
}
catch
(
e
)
{
console
.
info
(
"
testUnregister002
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_UNREGISTER_0300
* @tc.name [JS-API8]ContinuationManager.unregister().
* @tc.desc Test Js Api ContinuationManager.unregister() testcase 003
*/
it
(
'
testUnregister003
'
,
0
,
async
function
(
done
)
{
try
{
continuationManager
.
unregister
(
300
,
function
(
err
,
data
)
{
expect
(
err
.
code
==
29360208
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
})
done
();
}
catch
(
e
)
{
console
.
info
(
"
testUnregister003
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_ON_0100
* @tc.name [JS-API8]ContinuationManager.on().
...
...
@@ -248,6 +367,153 @@ describe('ContinuationManagerTest', function() {
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_STARTDEVICEMANAGER_0200
* @tc.name [JS-API8]ContinuationManager.startDeviceManager().
* @tc.desc Test Js Api ContinuationManager.startDeviceManager() testcase 002
*/
it
(
'
testStartDeviceManager002
'
,
0
,
async
function
(
done
)
{
try
{
continuationManager
.
startDeviceManager
(
null
,
function
(
err
,
data
)
{
expect
(
err
.
code
==
-
1
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
});
done
();
}
catch
(
e
)
{
console
.
info
(
"
testStartDeviceManager002
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_STARTDEVICEMANAGER_0300
* @tc.name [JS-API8]ContinuationManager.startDeviceManager().
* @tc.desc Test Js Api ContinuationManager.startDeviceManager() testcase 003
*/
it
(
'
testStartDeviceManager003
'
,
0
,
async
function
(
done
)
{
try
{
let
continuationExtraParams
=
{
deviceType
:
[
"
00E
"
],
description
:
"
description
"
,
filter
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
},
continuationMode
:
continuationManager
.
ContinuationMode
.
COLLABORATION_MUTIPLE
,
authInfo
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
}
};
continuationManager
.
startDeviceManager
(
null
,
continuationExtraParams
,
function
(
err
,
data
)
{
expect
(
err
.
code
==
-
1
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
});
done
();
}
catch
(
e
)
{
console
.
info
(
"
testStartDeviceManager003
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_STARTDEVICEMANAGER_0400
* @tc.name [JS-API8]ContinuationManager.startDeviceManager().
* @tc.desc Test Js Api ContinuationManager.startDeviceManager() testcase 004
*/
it
(
'
testStartDeviceManager004
'
,
0
,
async
function
(
done
)
{
try
{
let
continuationExtraParams
=
{
deviceType
:
[
"
00E
"
],
description
:
"
description
"
,
filter
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
},
continuationMode
:
continuationManager
.
ContinuationMode
.
COLLABORATION_MUTIPLE
,
authInfo
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
}
};
continuationManager
.
startDeviceManager
(
52
,
continuationExtraParams
,
function
(
err
,
data
)
{
console
.
info
(
"
testStartDeviceManager004
"
+
err
.
code
);
expect
(
err
.
code
==
29360208
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
});
done
();
}
catch
(
e
)
{
console
.
info
(
"
testStartDeviceManager004
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_STARTDEVICEMANAGER_0500
* @tc.name [JS-API8]ContinuationManager.startDeviceManager().
* @tc.desc Test Js Api ContinuationManager.startDeviceManager() testcase 005
*/
it
(
'
testStartDeviceManager005
'
,
0
,
async
function
(
done
)
{
try
{
let
continuationExtraParams
=
{
deviceType
:
[
"
00E
"
],
description
:
"
description
"
,
filter
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
},
continuationMode
:
30
,
authInfo
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
}
};
continuationManager
.
startDeviceManager
(
token
,
continuationExtraParams
,
function
(
err
,
data
)
{
console
.
info
(
"
testStartDeviceManager005
"
+
err
.
code
);
expect
(
err
.
code
==
29360216
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
});
done
();
}
catch
(
e
)
{
console
.
info
(
"
testStartDeviceManager005
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_STARTDEVICEMANAGER_0600
* @tc.name [JS-API8]ContinuationManager.startDeviceManager().
* @tc.desc Test Js Api ContinuationManager.startDeviceManager() testcase 006
*/
it
(
'
testStartDeviceManager006
'
,
0
,
async
function
(
done
)
{
try
{
let
continuationExtraParams
=
{
};
continuationManager
.
startDeviceManager
(
token
,
continuationExtraParams
,
function
(
err
,
data
)
{
console
.
info
(
"
testStartDeviceManager006
"
+
err
.
code
);
expect
(
err
.
code
!=
0
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
});
done
();
}
catch
(
e
)
{
console
.
info
(
"
testStartDeviceManager006
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_STARTDEVICEMANAGER_0700
* @tc.name [JS-API8]ContinuationManager.startDeviceManager().
* @tc.desc Test Js Api ContinuationManager.startDeviceManager() testcase 007
*/
it
(
'
testStartDeviceManager007
'
,
0
,
async
function
(
done
)
{
try
{
let
continuationExtraParams
=
{
deviceType
:
[
"
00E
"
],
description
:
"
description
"
,
filter
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
},
continuationMode
:
continuationManager
.
ContinuationMode
.
COLLABORATION_MUTIPLE
,
authInfo
:
{
"
name
"
:
"
authInfo
"
,
"
length
"
:
8
}
};
continuationManager
.
startDeviceManager
(
token
,
continuationExtraParams
,
function
(
err
,
data
)
{
expect
(
err
.
code
!=
0
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
});
done
();
}
catch
(
e
)
{
console
.
info
(
"
testStartDeviceManager007
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_UPDATECONNECTSTATUS_0100
* @tc.name [JS-API8]ContinuationManager.updateConnectStatus().
...
...
@@ -266,4 +532,44 @@ describe('ContinuationManagerTest', function() {
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_UPDATECONNECTSTATUS_0200
* @tc.name [JS-API8]ContinuationManager.updateConnectStatus().
* @tc.desc Test Js Api ContinuationManager.updateConnectStatus() testcase 002
*/
it
(
'
testUpdateConnectStatus002
'
,
0
,
async
function
(
done
)
{
try
{
continuationManager
.
updateConnectStatus
(
null
,
TEST_DEVICE_ID
,
TEST_CONNECT_STATUS
,
function
(
err
,
data
)
{
console
.
info
(
"
testUpdateConnectStatus002
"
+
err
.
code
);
expect
(
err
.
code
==
-
1
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
});
done
();
}
catch
(
e
)
{
console
.
info
(
"
testUpdateConnectStatus002
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
/**
* @tc.number SUB_DISTRIBUTEDSCHEDULE_CONTINUATIONMANAGER_UPDATECONNECTSTATUS_0300
* @tc.name [JS-API8]ContinuationManager.updateConnectStatus().
* @tc.desc Test Js Api ContinuationManager.updateConnectStatus() testcase 003
*/
it
(
'
testUpdateConnectStatus003
'
,
0
,
async
function
(
done
)
{
try
{
continuationManager
.
updateConnectStatus
(
token
,
TEST_DEVICE_ID
,
-
2
,
function
(
err
,
data
)
{
console
.
info
(
"
testUpdateConnectStatus003
"
+
err
.
code
);
expect
(
err
.
code
==
29360215
).
assertTrue
();
expect
(
data
==
undefined
).
assertTrue
();
});
done
();
}
catch
(
e
)
{
console
.
info
(
"
testUpdateConnectStatus003
"
+
e
);
expect
(
null
).
assertFail
();
done
();
}
})
})}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录