Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
Hello UTS
提交
238829ab
H
Hello UTS
项目概览
DCloud
/
Hello UTS
通知
1595
Star
27
Fork
9
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
Hello UTS
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
238829ab
编写于
2月 29, 2024
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test: 增加{}.toMap用法测试,格式化代码
上级
328f6668
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
282 addition
and
280 deletion
+282
-280
uni_modules/uts-tests/utssdk/JSON.uts
uni_modules/uts-tests/utssdk/JSON.uts
+282
-280
未找到文件。
uni_modules/uts-tests/utssdk/JSON.uts
浏览文件 @
238829ab
import { describe, test, expect,expectNumber, Result } from './tests.uts'
import { describe, test, expect,
expectNumber, Result } from './tests.uts'
type UserJSON
=
{
type UserJSON
=
{
id:
string;
id :
string;
name:string|
null;
name : string |
null;
}
}
type PersonJSON = {
type PersonJSON = {
/**
/**
* @JSON_FIELD "a+b"
* @JSON_FIELD "a+b"
*/
*/
a_b: string;
a_b : string;
/**
/**
* @JSON_FIELD "a-b"
* @JSON_FIELD "a-b"
*/
*/
a_b_: number;
a_b_ : number;
/**
/**
* @JSON_FIELD "class"
* @JSON_FIELD "class"
*/
*/
_class: boolean;
_class : boolean;
}
}
...
@@ -112,7 +112,7 @@ export function testJSON() : Result {
...
@@ -112,7 +112,7 @@ export function testJSON() : Result {
expect(obj4?.getNumber('data[1].a')).toEqual(2)
expect(obj4?.getNumber('data[1].a')).toEqual(2)
expect(obj4?.getBoolean('data[2][0].b')).toEqual(true)
expect(obj4?.getBoolean('data[2][0].b')).toEqual(true)
expect(obj4?.getAny('data[1].a')).toEqual(2)
expect(obj4?.getAny('data[1].a')).toEqual(2)
expect(obj4?.getJSON('data[2][1]')).toEqual({"b":"test"})
expect(obj4?.getJSON('data[2][1]')).toEqual({ "b": "test" })
expect(obj4?.getArray('data[3]')).toEqual([1, 2, 3])
expect(obj4?.getArray('data[3]')).toEqual([1, 2, 3])
})
})
...
@@ -145,11 +145,11 @@ export function testJSON() : Result {
...
@@ -145,11 +145,11 @@ export function testJSON() : Result {
test('parseArray', () => {
test('parseArray', () => {
const json1 = `[1,2,3]`;
const json1 = `[1,2,3]`;
const array1 = JSON.parseArray(json1);
const array1 = JSON.parseArray(json1);
expect(array1).toEqual([1,2,
3]);
expect(array1).toEqual([1, 2,
3]);
const json2 = `[1,"hello world",3]`;
const json2 = `[1,"hello world",3]`;
const array2 = JSON.parseArray(json2);
const array2 = JSON.parseArray(json2);
expect(array2).toEqual([1,"hello world",
3]);
expect(array2).toEqual([1, "hello world",
3]);
const json3 = `[{"name":"John","id":"30"},{"name":"jack","id":"21"}]`;
const json3 = `[{"name":"John","id":"30"},{"name":"jack","id":"21"}]`;
...
@@ -178,10 +178,10 @@ export function testJSON() : Result {
...
@@ -178,10 +178,10 @@ export function testJSON() : Result {
// const obj4 = { name: 'John', age: 30 };
// const obj4 = { name: 'John', age: 30 };
// const json4 = JSON.stringify(obj4, null, 4);
// const json4 = JSON.stringify(obj4, null, 4);
// expect(json4).toEqual(`{
// expect(json4).toEqual(`{
// "name": "John",
// "name": "John",
// "age": 30
// "age": 30
// }`);
// }`);
// expect(JSON.stringify({ x: 5, y: 6 })).toEqual(`{"x":5,"y":6}`);
// expect(JSON.stringify({ x: 5, y: 6 })).toEqual(`{"x":5,"y":6}`);
expect(JSON.stringify([3, 'false', false])).toEqual(`[3,"false",false]`);
expect(JSON.stringify([3, 'false', false])).toEqual(`[3,"false",false]`);
expect(JSON.stringify({})).toEqual('{}');
expect(JSON.stringify({})).toEqual('{}');
...
@@ -221,9 +221,9 @@ export function testJSON() : Result {
...
@@ -221,9 +221,9 @@ export function testJSON() : Result {
// expect(ret).toEqual('{"$db":[{"$method":"collection","$param":["type"]},{"$method":"add","$param":[[{"num":2,"tag":"default-tag"},{"num":3,"tag":"default-tag"}]]}]}')
// expect(ret).toEqual('{"$db":[{"$method":"collection","$param":["type"]},{"$method":"add","$param":[[{"num":2,"tag":"default-tag"},{"num":3,"tag":"default-tag"}]]}]}')
type Msg = {
type Msg = {
id: string,
id : string,
method: string,
method : string,
params
: any
params
: any
}
}
// type CallUniMethodParams = {
// type CallUniMethodParams = {
// method : string
// method : string
...
@@ -241,9 +241,9 @@ export function testJSON() : Result {
...
@@ -241,9 +241,9 @@ export function testJSON() : Result {
class Stage {
class Stage {
$m: string
$m : string
$p: Array<any>
$p : Array<any>
constructor(){
constructor() {
this.$m = 'test'
this.$m = 'test'
this.$p = ['type']
this.$p = ['type']
}
}
...
@@ -257,7 +257,7 @@ export function testJSON() : Result {
...
@@ -257,7 +257,7 @@ export function testJSON() : Result {
// expect(JSON.stringify(obj22)).toEqual('{"data":[{}]}')
// expect(JSON.stringify(obj22)).toEqual('{"data":[{}]}')
type A = {
type A = {
inserted: number
inserted : number
}
}
const str = '{"inserted": 2}'
const str = '{"inserted": 2}'
const obj33 = JSON.parse<A>(str)!
const obj33 = JSON.parse<A>(str)!
...
@@ -282,19 +282,21 @@ export function testJSON() : Result {
...
@@ -282,19 +282,21 @@ export function testJSON() : Result {
test('UTSJSONOject', () => {
test('UTSJSONOject', () => {
let t1 = "1"
let t1 = "1"
const a = {
const a = {
test()
{
test()
{
t1 = "2"
t1 = "2"
console.log("test")
console.log("test")
}
}
};
};
//console.log(a['test']);
//console.log(a['test']);
(a['test'] as ()=>
void)()
(a['test'] as () =>
void)()
//console.log(t1);
//console.log(t1);
expect(t1).toEqual("2")
expect(t1).toEqual("2")
//console.log(JSON.stringify(a));
//console.log(JSON.stringify(a));
const map = {
a: 1
}.toMap()
expect(map.get('a')).toEqual(1)
})
})
})
})
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录