Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
f6ec6b35
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看板
提交
f6ec6b35
编写于
1月 14, 2022
作者:
W
wu-chengwen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:js test for enum in api file
Signed-off-by:
N
wu-chengwen
<
wuchengwen4@huawei.com
>
上级
42b12e52
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
25 addition
and
14 deletion
+25
-14
usb/usb_standard/src/main/js/default/test/UsbCoreJsunit.test.js
...b_standard/src/main/js/default/test/UsbCoreJsunit.test.js
+2
-1
usb/usb_standard/src/main/js/default/test/UsbDevicePipeJsunit.test.js
...dard/src/main/js/default/test/UsbDevicePipeJsunit.test.js
+23
-13
未找到文件。
usb/usb_standard/src/main/js/default/test/UsbCoreJsunit.test.js
浏览文件 @
f6ec6b35
...
@@ -256,7 +256,7 @@ describe('UsbCoreJsFunctionsTest', function () {
...
@@ -256,7 +256,7 @@ describe('UsbCoreJsFunctionsTest', function () {
console
.
info
(
'
usb SUB_USB_get_raw_descriptor_01 : PASS
'
);
console
.
info
(
'
usb SUB_USB_get_raw_descriptor_01 : PASS
'
);
})
})
/**
/**
* @tc.number : SUB_USB_get_file_descriptor_01
* @tc.number : SUB_USB_get_file_descriptor_01
* @tc.name : getFileDescriptor
* @tc.name : getFileDescriptor
...
@@ -322,6 +322,7 @@ describe('UsbCoreJsFunctionsTest', function () {
...
@@ -322,6 +322,7 @@ describe('UsbCoreJsFunctionsTest', function () {
expect
(
isPipClose
).
assertEqual
(
0
);
expect
(
isPipClose
).
assertEqual
(
0
);
console
.
info
(
'
usb SUB_USB_get_file_descriptor_03 : PASS
'
);
console
.
info
(
'
usb SUB_USB_get_file_descriptor_03 : PASS
'
);
})
})
/**
/**
* @tc.number : SUB_USB_get_file_descriptor_04
* @tc.number : SUB_USB_get_file_descriptor_04
* @tc.name : getFileDescriptor
* @tc.name : getFileDescriptor
...
...
usb/usb_standard/src/main/js/default/test/UsbDevicePipeJsunit.test.js
浏览文件 @
f6ec6b35
...
@@ -383,7 +383,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -383,7 +383,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
6
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_DEVICE
&
0x1f
),
(
2
<<
8
),
0
)
var
controlParam
=
getTransferParam
(
6
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_DEVICE
&
0x1f
),
(
2
<<
8
),
0
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_01 GetDescriptor
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_01 GetDescriptor
'
)
})
})
...
@@ -401,7 +402,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -401,7 +402,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
0
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_DEVICE
&
0x1f
),
0
,
0
)
var
controlParam
=
getTransferParam
(
0
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_DEVICE
&
0x1f
),
0
,
0
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_02 GetStatus
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_02 GetStatus
'
)
})
})
...
@@ -419,7 +421,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -419,7 +421,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
8
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_DEVICE
&
0x1f
),
0
,
0
)
var
controlParam
=
getTransferParam
(
8
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_DEVICE
&
0x1f
),
0
,
0
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_03 GetConfiguration
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_03 GetConfiguration
'
)
})
})
...
@@ -437,7 +440,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -437,7 +440,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
10
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_INTERFACE
&
0x1f
),
0
,
1
)
var
controlParam
=
getTransferParam
(
10
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_INTERFACE
&
0x1f
),
0
,
1
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_04 GetInterface
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_04 GetInterface
'
)
})
})
...
@@ -455,7 +459,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -455,7 +459,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
1
,
(
usb
.
USB_REQUEST_DIR_TO_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_DEVICE
&
0x1f
),
0
,
0
)
var
controlParam
=
getTransferParam
(
1
,
(
usb
.
USB_REQUEST_DIR_TO_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_DEVICE
&
0x1f
),
0
,
0
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_05 ClearFeature
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_05 ClearFeature
'
)
})
})
...
@@ -473,7 +478,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -473,7 +478,8 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
255
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_INTERFACE
&
0x1f
),
(
2
<<
8
),
0
)
var
controlParam
=
getTransferParam
(
255
,
(
usb
.
USB_REQUEST_DIR_FROM_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_STANDARD
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_INTERFACE
&
0x1f
),
(
2
<<
8
),
0
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_06 ClearFeature
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_06 ClearFeature
'
)
})
})
...
@@ -491,10 +497,12 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -491,10 +497,12 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
255
,
(
usb
.
USB_REQUEST_DIR_TO_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_CLASS
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_ENDPOINT
&
0x1f
),
(
2
<<
8
),
0
)
var
controlParam
=
getTransferParam
(
255
,
(
usb
.
USB_REQUEST_DIR_TO_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_CLASS
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_ENDPOINT
&
0x1f
),
(
2
<<
8
),
0
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_07 ClearFeature
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_07 ClearFeature
'
)
})
})
/**
/**
* @tc.number : SUB_USB_control_transfer_test_08
* @tc.number : SUB_USB_control_transfer_test_08
* @tc.name : controlTransfer
* @tc.name : controlTransfer
* @tc.desc : 控制传输 ClearFeature: cmd 1 reqType 0 value 0 index 0
* @tc.desc : 控制传输 ClearFeature: cmd 1 reqType 0 value 0 index 0
...
@@ -506,13 +514,14 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -506,13 +514,14 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
expect
(
false
).
assertTrue
();
expect
(
false
).
assertTrue
();
return
return
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
255
,
(
usb
.
USB_REQUEST_DIR_TO_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_VENDOR
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_OTHER
&
0x1f
),
(
2
<<
8
),
0
)
var
controlParam
=
getTransferParam
(
255
,
(
usb
.
USB_REQUEST_DIR_TO_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_VENDOR
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_OTHER
&
0x1f
),
(
2
<<
8
),
0
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_08 ClearFeature
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_08 ClearFeature
'
)
})
})
/**
/**
* @tc.number : SUB_USB_control_transfer_test_09
* @tc.number : SUB_USB_control_transfer_test_09
* @tc.name : controlTransfer
* @tc.name : controlTransfer
* @tc.desc : 控制传输 ClearFeature: cmd 1 reqType 0 value 0 index 0
* @tc.desc : 控制传输 ClearFeature: cmd 1 reqType 0 value 0 index 0
...
@@ -524,9 +533,10 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
...
@@ -524,9 +533,10 @@ describe('UsbDevicePipeJsFunctionsTest', function () {
expect
(
false
).
assertTrue
();
expect
(
false
).
assertTrue
();
return
return
}
}
var
timeout
=
5000
;
var
timeout
=
5000
;
var
controlParam
=
getTransferParam
(
255
,
(
usb
.
USB_REQUEST_DIR_TO_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_CLASS
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_OTHER
&
0x1f
),
0
,
0
)
var
controlParam
=
getTransferParam
(
255
,
(
usb
.
USB_REQUEST_DIR_TO_DEVICE
<<
7
)
|
(
usb
.
USB_REQUEST_TYPE_CLASS
<<
5
)
|
(
usb
.
USB_REQUEST_TARGET_OTHER
&
0x1f
),
0
,
0
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_09 ClearFeature
'
)
callControlTransfer
(
testParam
.
pip
,
controlParam
,
timeout
,
'
control_transfer_test_09 ClearFeature
'
)
})
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录