Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
4eb5b97a
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看板
未验证
提交
4eb5b97a
编写于
7月 14, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 14, 2023
浏览文件
操作
浏览文件
下载
差异文件
!9338 Add BASIC XTS for base64
Merge pull request !9338 from bihu/master
上级
595a0e2f
e56f08f0
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
54 addition
and
0 deletion
+54
-0
commonlibrary/ets_utils/util2_lib_standard/src/main/js/test/util.test.js
...ts_utils/util2_lib_standard/src/main/js/test/util.test.js
+54
-0
未找到文件。
commonlibrary/ets_utils/util2_lib_standard/src/main/js/test/util.test.js
浏览文件 @
4eb5b97a
...
...
@@ -4612,6 +4612,60 @@ describe('Base64HelperTest', function () {
}
})
})
/**
* @tc.name: test_encodeToStringSync_basic_base64_001
* @tc.desc: Encodes the specified byte array into a String using the Base64 encoding scheme.
*/
it
(
'
test_encodeToStringSync_basic_base64_001
'
,
0
,
function
()
{
var
that
=
new
util
.
Base64Helper
()
var
array
=
new
Uint8Array
([
77
,
97
,
110
,
105
,
115
,
100
,
105
,
115
,
116
,
105
,
110
,
103
,
117
,
105
,
115
,
104
,
101
,
100
,
110
,
111
,
116
,
111
,
110
,
108
,
121
,
98
,
121
,
104
,
105
,
115
,
114
,
101
,
97
,
115
,
111
,
110
,
98
,
117
,
116
,
98
,
121
,
116
,
104
,
105
,
115
,
115
,
105
,
110
,
103
,
117
,
108
,
97
,
114
,
112
,
97
,
115
,
115
,
105
,
111
,
110
,
102
,
114
,
111
,
109
,
111
,
116
,
104
,
101
,
114
,
97
,
110
,
105
,
109
,
97
,
108
,
115
,
119
,
104
,
105
,
99
,
104
,
105
,
115
,
97
,
108
,
117
,
115
,
116
,
111
,
102
,
116
,
104
,
101
,
109
,
105
,
110
,
100
,
101
,
120
,
99
,
101
,
101
,
100
,
115
,
116
,
104
,
101
,
115
,
104
,
111
,
114
,
116
,
118
,
101
,
104
,
101
,
109
,
101
,
110
,
99
,
101
,
111
,
102
,
97
,
110
,
121
,
99
,
97
,
114
,
110
,
97
,
108
,
112
,
108
,
101
,
97
,
115
,
117
,
114
,
101
]);
var
result
=
that
.
encodeToStringSync
(
array
,
util
.
Type
.
BASIC
);
expect
(
result
).
assertEqual
(
'
TWFuaXNkaXN0aW5ndWlzaGVkbm90b25seWJ5aGlzcmVhc29uYnV0Ynl0aGlzc2luZ3VsYXJwYXNzaW9uZnJvbW90aGVyYW5pbWFsc3doaWNoaXNhbHVzdG9mdGhlbWluZGV4Y2VlZHN0aGVzaG9ydHZlaGVtZW5jZW9mYW55Y2FybmFscGxlYXN1cmU=
'
)
})
/**
* @tc.name: test_decodeSync_basic_base64_002
* @tc.desc: Decodes a Base64 encoded String or input u8 array into a newly-allocated u8
array using the Base64 encoding scheme.
*/
it
(
'
test_decodeSync_basic_base64_002
'
,
0
,
function
()
{
var
that
=
new
util
.
Base64Helper
()
var
buff
=
'
TWFuaXNkaXN0aW5ndWlzaGVkbm90b25seWJ5aGlzcmVhc29uYnV0Ynl0aGlzc2luZ3VsYXJwYXNzaW9uZnJvbW90aGVyYW5pbWFsc3doaWNoaXNhbHVzdG9mdGhlbWluZGV4Y2VlZHN0aGVzaG9ydHZlaGVtZW5jZW9mYW55Y2FybmFscGxlYXN1cmU=
'
;
var
rarray
=
new
Uint8Array
([
77
,
97
,
110
,
105
,
115
,
100
,
105
,
115
,
116
,
105
,
110
,
103
,
117
,
105
,
115
,
104
,
101
,
100
,
110
,
111
,
116
,
111
,
110
,
108
,
121
,
98
,
121
,
104
,
105
,
115
,
114
,
101
,
97
,
115
,
111
,
110
,
98
,
117
,
116
,
98
,
121
,
116
,
104
,
105
,
115
,
115
,
105
,
110
,
103
,
117
,
108
,
97
,
114
,
112
,
97
,
115
,
115
,
105
,
111
,
110
,
102
,
114
,
111
,
109
,
111
,
116
,
104
,
101
,
114
,
97
,
110
,
105
,
109
,
97
,
108
,
115
,
119
,
104
,
105
,
99
,
104
,
105
,
115
,
97
,
108
,
117
,
115
,
116
,
111
,
102
,
116
,
104
,
101
,
109
,
105
,
110
,
100
,
101
,
120
,
99
,
101
,
101
,
100
,
115
,
116
,
104
,
101
,
115
,
104
,
111
,
114
,
116
,
118
,
101
,
104
,
101
,
109
,
101
,
110
,
99
,
101
,
111
,
102
,
97
,
110
,
121
,
99
,
97
,
114
,
110
,
97
,
108
,
112
,
108
,
101
,
97
,
115
,
117
,
114
,
101
]);
var
result
=
that
.
decodeSync
(
buff
,
util
.
Type
.
BASIC
);
for
(
var
i
=
0
;
i
<
rarray
.
length
;
i
++
)
{
expect
(
result
[
i
]).
assertEqual
(
rarray
[
i
]);
}
})
/**
* @tc.name: test_encodeToString_basic_base64_003
* @tc.desc: Asynchronously encodes the specified byte array into a String using the Base64 encoding scheme.
*/
it
(
'
test_encodeToString_basic_base64_003
'
,
0
,
async
function
()
{
var
that
=
new
util
.
Base64Helper
()
var
array
=
new
Uint8Array
([
77
,
97
,
110
,
105
,
115
,
100
,
105
,
115
,
116
,
105
,
110
,
103
,
117
,
105
,
115
,
104
,
101
,
100
,
110
,
111
,
116
,
111
,
110
,
108
,
121
,
98
,
121
,
104
,
105
,
115
,
114
,
101
,
97
,
115
,
111
,
110
,
98
,
117
,
116
,
98
,
121
,
116
,
104
,
105
,
115
,
115
,
105
,
110
,
103
,
117
,
108
,
97
,
114
,
112
,
97
,
115
,
115
,
105
,
111
,
110
,
102
,
114
,
111
,
109
,
111
,
116
,
104
,
101
,
114
,
97
,
110
,
105
,
109
,
97
,
108
,
115
,
119
,
104
,
105
,
99
,
104
,
105
,
115
,
97
,
108
,
117
,
115
,
116
,
111
,
102
,
116
,
104
,
101
,
109
,
105
,
110
,
100
,
101
,
120
,
99
,
101
,
101
,
100
,
115
,
116
,
104
,
101
,
115
,
104
,
111
,
114
,
116
,
118
,
101
,
104
,
101
,
109
,
101
,
110
,
99
,
101
,
111
,
102
,
97
,
110
,
121
,
99
,
97
,
114
,
110
,
97
,
108
,
112
,
108
,
101
,
97
,
115
,
117
,
114
,
101
]);
that
.
encodeToString
(
array
,
util
.
Type
.
BASIC
).
then
(
val
=>
{
expect
(
val
).
assertEqual
(
'
TWFuaXNkaXN0aW5ndWlzaGVkbm90b25seWJ5aGlzcmVhc29uYnV0Ynl0aGlzc2luZ3VsYXJwYXNzaW9uZnJvbW90aGVyYW5pbWFsc3doaWNoaXNhbHVzdG9mdGhlbWluZGV4Y2VlZHN0aGVzaG9ydHZlaGVtZW5jZW9mYW55Y2FybmFscGxlYXN1cmU=
'
);
})
})
/**
* @tc.name: test_decode_basic_base64_004
* @tc.desc: Use the Base64 encoding scheme to asynchronously decode a Base64-encoded string or input u8
array into a newly allocated u8 array.
*/
it
(
'
test_encodeToString_basic_base64_004
'
,
0
,
async
function
()
{
var
that
=
new
util
.
Base64Helper
()
var
buff
=
'
TWFuaXNkaXN0aW5ndWlzaGVkbm90b25seWJ5aGlzcmVhc29uYnV0Ynl0aGlzc2luZ3VsYXJwYXNzaW9uZnJvbW90aGVyYW5pbWFsc3doaWNoaXNhbHVzdG9mdGhlbWluZGV4Y2VlZHN0aGVzaG9ydHZlaGVtZW5jZW9mYW55Y2FybmFscGxlYXN1cmU=
'
;
var
array
=
new
Uint8Array
([
77
,
97
,
110
,
105
,
115
,
100
,
105
,
115
,
116
,
105
,
110
,
103
,
117
,
105
,
115
,
104
,
101
,
100
,
110
,
111
,
116
,
111
,
110
,
108
,
121
,
98
,
121
,
104
,
105
,
115
,
114
,
101
,
97
,
115
,
111
,
110
,
98
,
117
,
116
,
98
,
121
,
116
,
104
,
105
,
115
,
115
,
105
,
110
,
103
,
117
,
108
,
97
,
114
,
112
,
97
,
115
,
115
,
105
,
111
,
110
,
102
,
114
,
111
,
109
,
111
,
116
,
104
,
101
,
114
,
97
,
110
,
105
,
109
,
97
,
108
,
115
,
119
,
104
,
105
,
99
,
104
,
105
,
115
,
97
,
108
,
117
,
115
,
116
,
111
,
102
,
116
,
104
,
101
,
109
,
105
,
110
,
100
,
101
,
120
,
99
,
101
,
101
,
100
,
115
,
116
,
104
,
101
,
115
,
104
,
111
,
114
,
116
,
118
,
101
,
104
,
101
,
109
,
101
,
110
,
99
,
101
,
111
,
102
,
97
,
110
,
121
,
99
,
97
,
114
,
110
,
97
,
108
,
112
,
108
,
101
,
97
,
115
,
117
,
114
,
101
]);
that
.
decode
(
buff
,
util
.
Type
.
BASIC
).
then
(
val
=>
{
for
(
var
i
=
0
;
i
<
array
.
length
;
i
++
)
{
expect
(
val
[
i
]).
assertEqual
(
array
[
i
]);
}
})
})
})
describe
(
'
DecodeEncodeTest
'
,
function
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录