Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
b9bfd771
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
b9bfd771
编写于
11月 24, 2022
作者:
O
openharmony_ci
提交者:
Gitee
11月 24, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6676 【ArkUI子系统】新增NAPI接口用例
Merge pull request !6676 from hekun/monthly_20221018
上级
ee0fed65
513424fc
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
58 addition
and
0 deletion
+58
-0
arkui/ace_napi_test/entry/src/main/cpp/napi/napi_test.cpp
arkui/ace_napi_test/entry/src/main/cpp/napi/napi_test.cpp
+45
-0
arkui/ace_napi_test/entry/src/main/ets/test/NativeApiStringTest.ets
...napi_test/entry/src/main/ets/test/NativeApiStringTest.ets
+13
-0
未找到文件。
arkui/ace_napi_test/entry/src/main/cpp/napi/napi_test.cpp
浏览文件 @
b9bfd771
...
...
@@ -1598,6 +1598,50 @@ static napi_value napiFatalerror(napi_env env, napi_callback_info info)
return
_value
;
}
static
napi_value
napiGetTypedarrayInfo
(
napi_env
env
,
napi_callback_info
info
)
{
napi_value
arrayBuffer
=
nullptr
;
void
*
arrayBufferPr
=
nullptr
;
size_t
arrayBufferSize
=
200
;
// create a JavaScript ArrayBuffer
napi_create_arraybuffer
(
env
,
arrayBufferSize
,
&
arrayBufferPr
,
&
arrayBuffer
);
// convert from N-API to C types
void
*
tmpArrayBufferPr
=
nullptr
;
size_t
arrayBufferLength
=
0
;
napi_get_arraybuffer_info
(
env
,
arrayBuffer
,
&
tmpArrayBufferPr
,
&
arrayBufferLength
);
NAPI_ASSERT
(
env
,
arrayBufferPr
==
tmpArrayBufferPr
,
"creat and get ArrayBuffer success"
);
NAPI_ASSERT
(
env
,
arrayBufferSize
==
arrayBufferLength
,
"creat and get ArrayBuffer size success"
);
napi_value
typedarray
=
nullptr
;
// create a JavaScript TypedArray
napi_status
status
=
napi_create_typedarray
(
env
,
napi_int8_array
,
arrayBufferSize
,
arrayBuffer
,
0
,
&
typedarray
);
NAPI_ASSERT
(
env
,
status
==
napi_ok
,
"napi_create_typedarray success"
);
bool
isTypedArray
=
false
;
// Whether the given napi_value represents a TypedArray
napi_is_typedarray
(
env
,
typedarray
,
&
isTypedArray
);
NAPI_ASSERT
(
env
,
isTypedArray
,
"the type is TypeArray"
);
// convert from N-API to C types
napi_typedarray_type
typedarrayType
;
size_t
typedarrayLength
=
0
;
void
*
typedarrayBufferPtr
=
nullptr
;
napi_value
tmpArrayBuffer
=
nullptr
;
size_t
byteOffset
=
0
;
// returns various properties of a typed array
napi_get_typedarray_info
(
env
,
typedarray
,
&
typedarrayType
,
&
typedarrayLength
,
&
typedarrayBufferPtr
,
&
tmpArrayBuffer
,
&
byteOffset
);
NAPI_ASSERT
(
env
,
typedarrayBufferPtr
==
arrayBufferPr
,
"napi_get_typedarray_info success"
);
NAPI_ASSERT
(
env
,
arrayBufferSize
==
typedarrayLength
,
"napi_get_typedarray_info size success"
);
// return the value of success
napi_value
_value
;
NAPI_CALL
(
env
,
napi_create_int32
(
env
,
0
,
&
_value
));
return
_value
;
}
EXTERN_C_START
static
napi_value
Init
(
napi_env
env
,
napi_value
exports
)
...
...
@@ -1687,6 +1731,7 @@ static napi_value Init(napi_env env, napi_value exports)
DECLARE_NAPI_FUNCTION
(
"napiCreateBigintUint64"
,
napiCreateBigintUint64
),
DECLARE_NAPI_FUNCTION
(
"napiCreateBigintInt64"
,
napiCreateBigintInt64
),
DECLARE_NAPI_FUNCTION
(
"napiCreateBigintWords"
,
napiCreateBigintWords
),
DECLARE_NAPI_FUNCTION
(
"napiGetTypedarrayInfo"
,
napiGetTypedarrayInfo
),
{
"napiCancelAsyncWork"
,
nullptr
,
napiCancelAsyncWork
,
nullptr
,
nullptr
,
nullptr
,
napi_default
,
nullptr
},
{
"napiCreateFunction"
,
nullptr
,
napiCreateFunction
,
nullptr
,
nullptr
,
nullptr
,
napi_default
,
nullptr
},
DECLARE_NAPI_FUNCTION
(
"napiFatalerror"
,
napiFatalerror
),
};
...
...
arkui/ace_napi_test/entry/src/main/ets/test/NativeApiStringTest.ets
浏览文件 @
b9bfd771
...
...
@@ -252,6 +252,19 @@ export default function nativeApiStringJsunit() {
expect
(
value
)
.
assertEqual
(
0
)
done
();
});
/**
* @tc.number SUB_ACE_BASIC_ETS_NAPI_0018
* @tc.name napiGetTypedarrayInfo
* @tc.desc aceNapiEtsTest
*/
it
(
'napiGetTypedarrayInfo018'
,
0
,
async
function
(
done
)
{
console
.
info
(
'napiFatalerror START'
);
value
=
napitest
.
napiGetTypedarrayInfo
();
console
.
info
(
'napiGetTypedarrayInfo testString result is: '
+
JSON
.
stringify
(
value
));
expect
(
value
)
.
assertEqual
(
0
)
done
();
});
})
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录