Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
cc594664
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看板
提交
cc594664
编写于
10月 31, 2022
作者:
G
guoenquan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Modify test case
Signed-off-by:
N
guoenquan
<
guoenquan1@huawei-partners.com
>
上级
50ff86da
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
31 addition
and
27 deletion
+31
-27
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/checkBoxGroup.ets
...ck/entry/src/main/ets/MainAbility/pages/checkBoxGroup.ets
+4
-2
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/common.ets
..._attrlack/entry/src/main/ets/MainAbility/pages/common.ets
+11
-10
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/loadingProgress.ets
.../entry/src/main/ets/MainAbility/pages/loadingProgress.ets
+3
-1
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/router.ets
..._attrlack/entry/src/main/ets/MainAbility/pages/router.ets
+4
-5
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/web.ets
...ent_attrlack/entry/src/main/ets/MainAbility/pages/web.ets
+2
-1
arkui/ace_ets_component_attrlack/entry/src/main/ets/test/color.test.ets
...component_attrlack/entry/src/main/ets/test/color.test.ets
+1
-1
arkui/ace_ets_component_attrlack/entry/src/main/ets/test/loadingProgress.test.ets
...attrlack/entry/src/main/ets/test/loadingProgress.test.ets
+5
-5
arkui/ace_ets_component_attrlack/entry/src/main/ets/test/router.test.ets
...omponent_attrlack/entry/src/main/ets/test/router.test.ets
+1
-2
未找到文件。
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/checkBoxGroup.ets
浏览文件 @
cc594664
...
...
@@ -22,7 +22,7 @@ const TAG = 'ets_apiLack_add';
@Component
export default
struct CheckBoxGroupPart {
@State SelectStatus: SelectStatus = SelectStatus.Part
aboutToAppear() {
Log.showInfo(TAG, `aboutToAppear CheckBoxGroupPart start`)
}
...
...
@@ -84,9 +84,11 @@ struct CheckBoxGroupPart {
console.info("Part emit action state err: " + JSON.stringify(err.message))
}
Utils.sleep(1000);
if(itemName.status === SelectStatus.Part){
console.info("CheckboxGroup SelectStatus.Part")
}
}
})
Text('select all').fontSize(20)
Checkbox({name: 'checkbox1', group: 'checkboxGroup'})
...
...
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/common.ets
浏览文件 @
cc594664
...
...
@@ -92,7 +92,7 @@ export default struct CommonColorMode {
.bindPopup(true,{
message:"23",
showInSubWindow:true
})
.
})
Text("common-OnFinish")
.width(320)
...
...
@@ -134,7 +134,7 @@ export default struct CommonColorMode {
path: ''
}
})
//
Text("common-Middle")
.width(320)
.height(40)
...
...
@@ -151,7 +151,7 @@ export default struct CommonColorMode {
.alignRules({
middle: { anchor: 'string', align: HorizontalAlign.Center }
})
//
Text("common-Area")
.width(320)
.height(40)
...
...
@@ -187,6 +187,7 @@ export default struct CommonColorMode {
console.info("areaValue emit action state err: " + JSON.stringify(err.message))
}
})
//
Text("common-Repeat")
.width(320)
.height(40)
...
...
@@ -210,7 +211,7 @@ export default struct CommonColorMode {
repeat: RepeatMode.Repeat,
fill: false
});
//
Text("common-Space")
.width(320)
.height(40)
...
...
@@ -234,7 +235,7 @@ export default struct CommonColorMode {
repeat: RepeatMode.Space,
fill: false
});
//
Text("common-Thin")
.width(320)
.height(40)
...
...
@@ -249,7 +250,7 @@ export default struct CommonColorMode {
.textOverflow({ overflow: TextOverflow.None })
.key("ThinText")
.backgroundBlurStyle(BlurStyle.Thin)
//
Text("common-Thick")
.width(320)
.height(40)
...
...
@@ -264,7 +265,7 @@ export default struct CommonColorMode {
.textOverflow({ overflow: TextOverflow.None })
.key("ThickText")
.backgroundBlurStyle(BlurStyle.Thick)
//
Text("common-Slice")
.width(320)
.height(40)
...
...
@@ -288,7 +289,7 @@ export default struct CommonColorMode {
repeat: RepeatMode.Stretch,
fill: false
});
//
Text("common-Outset")
.width(320)
.height(40)
...
...
@@ -314,7 +315,7 @@ export default struct CommonColorMode {
outset: 2
});
//
Text("common-Touches")
.width(320)
.height(40)
...
...
@@ -350,7 +351,7 @@ export default struct CommonColorMode {
console.info("touchesValue emit action state err: " + JSON.stringify(err.message))
}
})
//
Text("common-ChangedTouches")
.width(320)
.height(40)
...
...
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/loadingProgress.ets
浏览文件 @
cc594664
...
...
@@ -37,6 +37,7 @@ struct LoadingProgressCircular {
Text("loadingProgress-Circular")
.width(100)
.height(70)
.margin(5)
.fontSize(20)
.opacity(1)
.align(Alignment.TopStart)
...
...
@@ -51,6 +52,7 @@ struct LoadingProgressCircular {
Text("loadingProgress-Orbital")
.width(100)
.height(70)
.margin(5)
.fontSize(20)
.opacity(1)
.align(Alignment.TopStart)
...
...
@@ -62,7 +64,7 @@ struct LoadingProgressCircular {
.textOverflow({ overflow: TextOverflow.None })
.key("OrbitalText")
Text('Orbital LoadingProgress ').fontSize(9).fontColor(0xCCCCCC).width('100%')
Text('Orbital LoadingProgress ').fontSize(9).fontColor(0xCCCCCC).width('100%')
.margin(5)
LoadingProgress()
.color(Color.Blue)
...
...
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/router.ets
浏览文件 @
cc594664
...
...
@@ -13,6 +13,7 @@
* limitations under the License.
*/
import router from '@ohos.router'
import uiAppearance from '@ohos.uiAppearance';
...
...
@@ -26,7 +27,7 @@ export default
struct RouterStandard {
async routePage() {
async routePage() {
let options = {
url: 'pages/page1',
params: {
...
...
@@ -37,7 +38,7 @@ struct RouterStandard {
}
}
try {
await router.push(options
,router.RouterMode.Standard
)
await router.push(options)
} catch (err) {
console.info(`Standard Page fail callback, code: ${err.code}, msg: ${err.msg}`)
}
...
...
@@ -54,7 +55,7 @@ struct RouterStandard {
}
}
try {
await router.push(options
,router.RouterMode.Single
)
await router.push(options)
} catch (err) {
console.info(`Single Page fail callback, code: ${err.code}, msg: ${err.msg}`)
}
...
...
@@ -105,7 +106,6 @@ struct RouterStandard {
.onClick(() => {
this.routeSinglePage()
})
Text('这是第一页')
.fontSize(50)
.fontWeight(FontWeight.Bold)
...
...
@@ -123,4 +123,3 @@ struct RouterStandard {
}.width("100%").height("100%")
}
}
arkui/ace_ets_component_attrlack/entry/src/main/ets/MainAbility/pages/web.ets
浏览文件 @
cc594664
...
...
@@ -38,7 +38,8 @@ struct WebEditText {
.height(500)
.padding(20)
.blur(2)
.fileFromUrlAccess(true)
//修改
//.fileFromUrlAccess(true)
.initialScale(2)
.webDebuggingAccess(true)
.onRenderExited((event) => {
...
...
arkui/ace_ets_component_attrlack/entry/src/main/ets/test/color.test.ets
浏览文件 @
cc594664
...
...
@@ -58,7 +58,7 @@ export default function colorEnumJsunit() {
let obj = JSON.parse(strJson);
expect(obj.$type).assertEqual('Text');
console.info("[testcolorTransparent0001] fontColor value :" + obj.$attrs.fontColor);
expect(obj.$attrs.fontColor).assertEqual("#
FF
000000");
expect(obj.$attrs.fontColor).assertEqual("#
00
000000");
done();
});
})
...
...
arkui/ace_ets_component_attrlack/entry/src/main/ets/test/loadingProgress.test.ets
浏览文件 @
cc594664
...
...
@@ -59,10 +59,10 @@ export default function loadingProgressCircularJsunit() {
expect(obj.$type).assertEqual('Text');
expect(obj.$attrs.color).assertEqual(undefined);
expect(obj.$attrs.width).assertEqual('100.00vp');
expect(obj.$attrs.margin).assertEqual('
0.00px
');
console.info("[testloadingProgressCircular0011] color value :" + obj.$attrs.color);
console.info("[testloadingProgressCircular0011] width value :" + obj.$attrs.width);
console.info("[testloadingProgressCircular0011] margin value :" + obj.$attrs.margin);
expect(obj.$attrs.margin).assertEqual('
5.00vp
');
console.info("[
gwx
testloadingProgressCircular0011] color value :" + obj.$attrs.color);
console.info("[
gwx
testloadingProgressCircular0011] width value :" + obj.$attrs.width);
console.info("[
gwx
testloadingProgressCircular0011] margin value :" + obj.$attrs.margin);
done();
});
...
...
@@ -80,7 +80,7 @@ export default function loadingProgressCircularJsunit() {
expect(obj.$type).assertEqual('Text');
expect(obj.$attrs.color).assertEqual(undefined);
expect(obj.$attrs.width).assertEqual('100.00vp');
expect(obj.$attrs.margin).assertEqual('
0.00px
');
expect(obj.$attrs.margin).assertEqual('
5.00vp
');
console.info("[testloadingProgressOrbital0001] color value :" + obj.$attrs.color);
console.info("[testloadingProgressOrbital0001] width value :" + obj.$attrs.width);
console.info("[testloadingProgressOrbital0001] margin value :" + obj.$attrs.margin);
...
...
arkui/ace_ets_component_attrlack/entry/src/main/ets/test/router.test.ets
浏览文件 @
cc594664
...
...
@@ -12,7 +12,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import router from '@system.router';
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "hypium/index"
import Utils from './Utils.ets'
...
...
@@ -92,4 +91,4 @@ export default function routerStandardJsunit() {
console.info('testrouterSingle_0001 END');
});
})
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录