“6348e6b54e8609be11826a8e30357a03ba201500”上不存在“...arm/plat-mxc/include/git@gitcode.net:openeuler/kernel.git”
提交 0788cc70 编写于 作者: 雪洛's avatar 雪洛

feat: 调整测试例兼容web端

上级 96b113f9
...@@ -183,6 +183,7 @@ ...@@ -183,6 +183,7 @@
"navigationBarTitleText": "$options" "navigationBarTitleText": "$options"
} }
}, },
// #ifdef APP
{ {
"path": "pages/component-instance/parent/parent", "path": "pages/component-instance/parent/parent",
"style": { "style": {
...@@ -195,6 +196,7 @@ ...@@ -195,6 +196,7 @@
"navigationBarTitleText": "$root" "navigationBarTitleText": "$root"
} }
}, },
// #endif
{ {
"path": "pages/component-instance/slots/slots", "path": "pages/component-instance/slots/slots",
"style": { "style": {
...@@ -506,13 +508,13 @@ ...@@ -506,13 +508,13 @@
"navigationBarTitleText": "toValue" "navigationBarTitleText": "toValue"
} }
}, },
// #endif
{ {
"path": "pages/composition-api/reactivity/to-refs/to-refs", "path": "pages/composition-api/reactivity/to-refs/to-refs",
"style": { "style": {
"navigationBarTitleText": "toRefs" "navigationBarTitleText": "toRefs"
} }
}, },
// #endif
{ {
"path": "pages/composition-api/reactivity/is-proxy/is-proxy", "path": "pages/composition-api/reactivity/is-proxy/is-proxy",
"style": { "style": {
......
...@@ -8,39 +8,39 @@ ...@@ -8,39 +8,39 @@
export default { export default {
data() { data() {
return { return {
$callEasyMethod1: null as CallEasyMethodComponentPublicInstance | null callEasyMethod1: null as CallEasyMethodComponentPublicInstance | null
} }
}, },
onReady() { onReady() {
// 通过组件 ref 属性获取组件实例, 组件标签名首字母大写,驼峰+ComponentPublicInstance // 通过组件 ref 属性获取组件实例, 组件标签名首字母大写,驼峰+ComponentPublicInstance
this.$callEasyMethod1 = this.$refs['callEasyMethod1'] as CallEasyMethodComponentPublicInstance; this.callEasyMethod1 = this.$refs['callEasyMethod1'] as CallEasyMethodComponentPublicInstance;
}, },
methods: { methods: {
callMethod1() { callMethod1() {
// 调用组件的 foo1 方法 // 调用组件的 foo1 方法
this.$callEasyMethod1!.foo1(); this.callEasyMethod1!.foo1();
}, },
callMethod2() { callMethod2() {
// 调用组件的 foo2 方法并传递 1个参数 // 调用组件的 foo2 方法并传递 1个参数
this.$callEasyMethod1!.foo2(Date.now()); this.callEasyMethod1!.foo2(Date.now());
}, },
callMethod3() { callMethod3() {
// 调用组件的 foo3 方法并传递 2个参数 // 调用组件的 foo3 方法并传递 2个参数
this.$callEasyMethod1!.foo3(Date.now(), Date.now()); this.callEasyMethod1!.foo3(Date.now(), Date.now());
}, },
callMethod4() { callMethod4() {
// 调用组件的 foo4 方法并传递 callback // 调用组件的 foo4 方法并传递 callback
this.$callEasyMethod1!.foo4(() => { this.callEasyMethod1!.foo4(() => {
console.log('callback') console.log('callback')
}); });
}, },
callMethod5() { callMethod5() {
// 注意: 返回值可能为 null,当前例子一定不为空,所以加了 ! // 注意: 返回值可能为 null,当前例子一定不为空,所以加了 !
const result = this.$callEasyMethod1!.foo5('string1') as string; const result = this.callEasyMethod1!.foo5('string1') as string;
console.log(result); // string1 console.log(result); // string1
}, },
callMethodTest(text: string): string | null { callMethodTest(text: string): string | null {
const result = this.$callEasyMethod1!.foo5(text) as string; const result = this.callEasyMethod1!.foo5(text) as string;
return result; return result;
}, },
} }
......
...@@ -8,22 +8,22 @@ ...@@ -8,22 +8,22 @@
export default { export default {
data() { data() {
return { return {
$slider1: null as UniSliderElement | null slider1: null as UniSliderElement | null
} }
}, },
onReady() { onReady() {
// 通过组件 ref 属性获取组件实例, Uni组件名(驼峰)UniElement // 通过组件 ref 属性获取组件实例, Uni组件名(驼峰)UniElement
this.$slider1 = this.$refs['slider1'] as UniSliderElement; this.slider1 = this.$refs['slider1'] as UniSliderElement;
}, },
methods: { methods: {
setValue() : boolean { setValue() : boolean {
// 设置组件的 value 属性 // 设置组件的 value 属性
this.$slider1!.value = 80; this.slider1!.value = 80;
return true; return true;
}, },
callMethodTest(text: string): string | null { callMethodTest(text: string): string | null {
this.$slider1!.setAttribute('value', text); this.slider1!.setAttribute('str', text);
const result = this.$slider1!.getAttribute('value') as string; const result = this.slider1!.getAttribute('str') as string;
return result; return result;
}, },
} }
......
const PAGE_PATH = '/pages/component-instance/root/root' const PAGE_PATH = '/pages/component-instance/root/root'
describe('$root', () => { describe('$root', () => {
if (process.env.uniTestPlatformInfo.startsWith('web')) {
// TODO: web 端$root指向和app端不同,具体待定
it('web', async () => {
expect(1).toBe(1)
})
return
}
let page let page
beforeAll(async () => { beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH) page = await program.reLaunch(PAGE_PATH)
......
...@@ -11,6 +11,9 @@ export default { ...@@ -11,6 +11,9 @@ export default {
root: true root: true
} }
}, },
onReady() {
console.log(this.getRoot())
},
methods: { methods: {
getRoot (): boolean { getRoot (): boolean {
return this.$root!.$data['root'] as boolean return this.$root!.$data['root'] as boolean
......
const PAGE_PATH = '/pages/composition-api/dependency-injection/provide/provide' const PAGE_PATH = '/pages/composition-api/dependency-injection/provide/provide'
describe('provide-inject-hasInjectionContext', () => { describe('provide-inject-hasInjectionContext', () => {
const isWeb = process.env.uniTestPlatformInfo.startsWith('web')
let page = null let page = null
beforeAll(async () => { beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH) page = await program.reLaunch(PAGE_PATH)
...@@ -14,11 +15,11 @@ describe('provide-inject-hasInjectionContext', () => { ...@@ -14,11 +15,11 @@ describe('provide-inject-hasInjectionContext', () => {
expect(await num.text()).toBe('num: 0') expect(await num.text()).toBe('num: 0')
const obj = await page.$('.obj') const obj = await page.$('.obj')
expect(await obj.text()).toBe('obj: {"a":1}') expect(await obj.text()).toBe(isWeb ? 'obj: {\n"a": 1\n}' : 'obj: {"a":1}')
const arr = await page.$('.arr') const arr = await page.$('.arr')
expect(await arr.text()).toBe('arr: [1,2,3]') expect(await arr.text()).toBe(isWeb ? 'arr: [\n1,\n2,\n3\n]' : 'arr: [1,2,3]')
const fn = await page.$('.fn') const fn = await page.$('.fn')
expect(await fn.text()).toBe('fn: hello') expect(await fn.text()).toBe('fn: hello')
......
const PAGE_PATH = '/pages/composition-api/reactivity/effect-scope/effect-scope' const PAGE_PATH = '/pages/composition-api/reactivity/effect-scope/effect-scope'
describe('effectScope', () => { describe('effectScope', () => {
const isWeb = process.env.uniTestPlatformInfo.startsWith('web')
let page = null let page = null
beforeAll(async () => { beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH) page = await program.reLaunch(PAGE_PATH)
...@@ -11,7 +12,7 @@ describe('effectScope', () => { ...@@ -11,7 +12,7 @@ describe('effectScope', () => {
expect(await counter.text()).toBe('counter: 0') expect(await counter.text()).toBe('counter: 0')
const watchCounterRes = await page.$('#watch-counter-res') const watchCounterRes = await page.$('#watch-counter-res')
expect(await watchCounterRes.text()).toBe('watch counter result: ') expect(await watchCounterRes.text()).toBe(isWeb ? 'watch counter result:' : 'watch counter result: ')
const watchEffectCounterRes = await page.$('#watch-effect-counter-res') const watchEffectCounterRes = await page.$('#watch-effect-counter-res')
expect(await watchEffectCounterRes.text()).toBe('watchEffect counter result: counter: 0') expect(await watchEffectCounterRes.text()).toBe('watchEffect counter result: counter: 0')
......
const PAGE_PATH = '/pages/composition-api/reactivity/readonly/readonly' const PAGE_PATH = '/pages/composition-api/reactivity/readonly/readonly'
describe('ref', () => { describe('ref', () => {
const isWeb = process.env.uniTestPlatformInfo.startsWith('web')
let page = null let page = null
beforeAll(async () => { beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH) page = await program.reLaunch(PAGE_PATH)
...@@ -12,33 +13,33 @@ describe('ref', () => { ...@@ -12,33 +13,33 @@ describe('ref', () => {
const dataNum = await page.$('#data-num') const dataNum = await page.$('#data-num')
expect(await dataNum.text()).toBe('data.num: 0') expect(await dataNum.text()).toBe('data.num: 0')
const dataArr = await page.$('#data-arr') const dataArr = await page.$('#data-arr')
expect(await dataArr.text()).toBe('data.arr: ["a","b","c"]') expect(await dataArr.text()).toBe(isWeb ? 'data.arr: [\n"a",\n"b",\n"c"\n]' : 'data.arr: ["a","b","c"]')
const readonlyDataStr = await page.$('#readonly-data-str') const readonlyDataStr = await page.$('#readonly-data-str')
expect(await readonlyDataStr.text()).toBe('readonly data.str: default str') expect(await readonlyDataStr.text()).toBe('readonly data.str: default str')
const readonlyDataNum = await page.$('#readonly-data-num') const readonlyDataNum = await page.$('#readonly-data-num')
expect(await readonlyDataNum.text()).toBe('readonly data.num: 0') expect(await readonlyDataNum.text()).toBe('readonly data.num: 0')
const readonlyDataArr = await page.$('#readonly-data-arr') const readonlyDataArr = await page.$('#readonly-data-arr')
expect(await readonlyDataArr.text()).toBe('readonly data.arr: ["a","b","c"]') expect(await readonlyDataArr.text()).toBe(isWeb ? 'readonly data.arr: [\n"a",\n"b",\n"c"\n]' : 'readonly data.arr: ["a","b","c"]')
const updateDataBtn = await page.$('#update-data-btn') const updateDataBtn = await page.$('#update-data-btn')
await updateDataBtn.tap() await updateDataBtn.tap()
expect(await dataStr.text()).toBe('data.str: new str') expect(await dataStr.text()).toBe('data.str: new str')
expect(await dataNum.text()).toBe('data.num: 1') expect(await dataNum.text()).toBe('data.num: 1')
expect(await dataArr.text()).toBe('data.arr: ["a","b","c","d"]') expect(await dataArr.text()).toBe(isWeb ? 'data.arr: [\n"a",\n"b",\n"c",\n"d"\n]' : 'data.arr: ["a","b","c","d"]')
expect(await readonlyDataStr.text()).toBe('readonly data.str: new str') expect(await readonlyDataStr.text()).toBe('readonly data.str: new str')
expect(await readonlyDataNum.text()).toBe('readonly data.num: 1') expect(await readonlyDataNum.text()).toBe('readonly data.num: 1')
expect(await readonlyDataArr.text()).toBe('readonly data.arr: ["a","b","c","d"]') expect(await readonlyDataArr.text()).toBe(isWeb ? 'readonly data.arr: [\n"a",\n"b",\n"c",\n"d"\n]' : 'readonly data.arr: ["a","b","c","d"]')
const updateReadonlyDataBtn = await page.$('#update-readonly-data-btn') const updateReadonlyDataBtn = await page.$('#update-readonly-data-btn')
await updateReadonlyDataBtn.tap() await updateReadonlyDataBtn.tap()
expect(await dataStr.text()).toBe('data.str: new str') expect(await dataStr.text()).toBe('data.str: new str')
expect(await dataNum.text()).toBe('data.num: 1') expect(await dataNum.text()).toBe('data.num: 1')
expect(await dataArr.text()).toBe('data.arr: ["a","b","c","d"]') expect(await dataArr.text()).toBe(isWeb ? 'data.arr: [\n"a",\n"b",\n"c",\n"d"]' : 'data.arr: ["a","b","c","d"]')
expect(await readonlyDataStr.text()).toBe('readonly data.str: new str') expect(await readonlyDataStr.text()).toBe('readonly data.str: new str')
expect(await readonlyDataNum.text()).toBe('readonly data.num: 1') expect(await readonlyDataNum.text()).toBe('readonly data.num: 1')
expect(await readonlyDataArr.text()).toBe('readonly data.arr: ["a","b","c","d"]') expect(await readonlyDataArr.text()).toBe(isWeb ? 'readonly data.arr: [\n"a",\n"b",\n"c",\n"d"\n]' : 'readonly data.arr: ["a","b","c","d"]')
}) })
}) })
\ No newline at end of file
const PAGE_PATH = '/pages/composition-api/reactivity/to-ref/to-ref' const PAGE_PATH = '/pages/composition-api/reactivity/to-ref/to-ref'
describe('toRef', () => { describe('toRef', () => {
if (process.env.uniTestPlatformInfo.startsWith('web')) {
// TODO: web 端暂不支持
it('web', async () => {
expect(1).toBe(1)
})
return
}
let page = null let page = null
beforeAll(async () => { beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH) page = await program.reLaunch(PAGE_PATH)
......
const PAGE_PATH = '/pages/composition-api/reactivity/watch-post-effect/watch-post-effect' const PAGE_PATH = '/pages/composition-api/reactivity/watch-post-effect/watch-post-effect'
describe('watchPostEffect', () => { describe('watchPostEffect', () => {
const isWeb = process.env.uniTestPlatformInfo.startsWith('web')
let page = null let page = null
beforeAll(async () => { beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH) page = await program.reLaunch(PAGE_PATH)
...@@ -23,7 +24,9 @@ describe('watchPostEffect', () => { ...@@ -23,7 +24,9 @@ describe('watchPostEffect', () => {
const watchCountTriggerNum = await page.$('#watch-count-trigger-num') const watchCountTriggerNum = await page.$('#watch-count-trigger-num')
expect(await watchCountTriggerNum.text()).toBe('watch count trigger number: 0') expect(await watchCountTriggerNum.text()).toBe('watch count trigger number: 0')
const watchCountCleanupRes = await page.$('#watch-count-cleanup-res') const watchCountCleanupRes = await page.$('#watch-count-cleanup-res')
expect(await watchCountCleanupRes.text()).toBe('watch count cleanup result: ') // TODO web端自动化测试text方法应使用textContent获取内容来保留空格,目前text方法未保留首尾空格
expect(await watchCountCleanupRes.text()).toBe(isWeb ? 'watch count cleanup result:' :
'watch count cleanup result: ')
// watch count and obj.num // watch count and obj.num
const watchCountAndObjNumRes = await page.$('#watch-count-obj-num-res') const watchCountAndObjNumRes = await page.$('#watch-count-obj-num-res')
...@@ -75,11 +78,15 @@ describe('watchPostEffect', () => { ...@@ -75,11 +78,15 @@ describe('watchPostEffect', () => {
const objBool = await page.$('#obj-bool') const objBool = await page.$('#obj-bool')
expect(await objBool.text()).toBe('obj.bool: false') expect(await objBool.text()).toBe('obj.bool: false')
const objArr = await page.$('#obj-arr') const objArr = await page.$('#obj-arr')
expect(await objArr.text()).toBe('obj.arr: [0]') expect(await objArr.text()).toBe(isWeb ? 'obj.arr: [\n0\n]' : 'obj.arr: [0]')
const watchObjRes = await page.$('#watch-obj-res') const watchObjRes = await page.$('#watch-obj-res')
// TODO web端和安卓端JSON.stringify对属性的排序不一致
expect(await watchObjRes.text()).toBe( expect(await watchObjRes.text()).toBe(
'watch obj result: obj: {"arr":[0],"bool":false,"num":0,"str":"num: 0"}') isWeb ?
'watch obj result: obj: {"num":0,"str":"num: 0","bool":false,"arr":[0]}' :
'watch obj result: obj: {"arr":[0],"bool":false,"num":0,"str":"num: 0"}'
)
const watchObjStrRes = await page.$('#watch-obj-str-res') const watchObjStrRes = await page.$('#watch-obj-str-res')
expect(await watchObjStrRes.text()).toBe( expect(await watchObjStrRes.text()).toBe(
'watch obj.str result: str: num: 0, obj.str ref text: obj.str: num: 0') 'watch obj.str result: str: num: 0, obj.str ref text: obj.str: num: 0')
...@@ -92,13 +99,14 @@ describe('watchPostEffect', () => { ...@@ -92,13 +99,14 @@ describe('watchPostEffect', () => {
expect(await objStr.text()).toBe('obj.str: num: 1') expect(await objStr.text()).toBe('obj.str: num: 1')
expect(await objNum.text()).toBe('obj.num: 1') expect(await objNum.text()).toBe('obj.num: 1')
expect(await objBool.text()).toBe('obj.bool: true') expect(await objBool.text()).toBe('obj.bool: true')
expect(await objArr.text()).toBe('obj.arr: [0,1]') expect(await objArr.text()).toBe(isWeb ? 'obj.arr: [\n0,\n1\n]' : 'obj.arr: [0,1]')
expect(await watchObjRes.text()).toBe( expect(await watchObjRes.text()).toBe(
'watch obj result: obj: {"arr":[0],"bool":false,"num":0,"str":"num: 0"}') 'watch obj result: obj: {"arr":[0],"bool":false,"num":0,"str":"num: 0"}')
expect(await watchObjStrRes.text()).toBe( expect(await watchObjStrRes.text()).toBe(
'watch obj.str result: str: num: 1, obj.str ref text: obj.str: num: 1') 'watch obj.str result: str: num: 1, obj.str ref text: obj.str: num: 1')
expect(await watchObjArrRes.text()).toBe('watch obj.arr result: arr: [0,1]') expect(await watchObjArrRes.text()).toBe(isWeb ? 'watch obj.arr result: arr: [\n0,\n1\n]' :
'watch obj.arr result: arr: [0,1]')
const watchCountAndObjNumRes = await page.$('#watch-count-obj-num-res') const watchCountAndObjNumRes = await page.$('#watch-count-obj-num-res')
expect(await watchCountAndObjNumRes.text()).toBe('watch count and obj.num result: count: 3, obj.num: 1') expect(await watchCountAndObjNumRes.text()).toBe('watch count and obj.num result: count: 3, obj.num: 1')
......
...@@ -8,8 +8,7 @@ ...@@ -8,8 +8,7 @@
<text id="watch-count-track-num" class="uni-common-mb">watch count track number: {{ watchCountTrackNum }}</text> <text id="watch-count-track-num" class="uni-common-mb">watch count track number: {{ watchCountTrackNum }}</text>
<text id="watch-count-trigger-num" class="uni-common-mb">watch count trigger number: <text id="watch-count-trigger-num" class="uni-common-mb">watch count trigger number:
{{ watchCountTriggerNum }}</text> {{ watchCountTriggerNum }}</text>
<text id="watch-count-cleanup-res" class="uni-common-mb">watch count cleanup result: <text id="watch-count-cleanup-res" class="uni-common-mb">watch count cleanup result: {{ watchCountCleanupRes }}</text>
{{ watchCountCleanupRes }}</text>
<button id="increment-btn" class="uni-common-mb" @click="increment"> <button id="increment-btn" class="uni-common-mb" @click="increment">
increment increment
</button> </button>
......
const PAGE_PATH = '/pages/composition-api/reactivity/watch-sync-effect/watch-sync-effect' const PAGE_PATH = '/pages/composition-api/reactivity/watch-sync-effect/watch-sync-effect'
describe('watchSyncEffect', () => { describe('watchSyncEffect', () => {
const isWeb = process.env.uniTestPlatformInfo.startsWith('web')
let page = null let page = null
beforeAll(async () => { beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH) page = await program.reLaunch(PAGE_PATH)
...@@ -75,11 +76,14 @@ describe('watchSyncEffect', () => { ...@@ -75,11 +76,14 @@ describe('watchSyncEffect', () => {
const objBool = await page.$('#obj-bool') const objBool = await page.$('#obj-bool')
expect(await objBool.text()).toBe('obj.bool: false') expect(await objBool.text()).toBe('obj.bool: false')
const objArr = await page.$('#obj-arr') const objArr = await page.$('#obj-arr')
expect(await objArr.text()).toBe('obj.arr: [0]') expect(await objArr.text()).toBe(isWeb ? 'obj.arr: [\n0\n]' : 'obj.arr: [0]')
const watchObjRes = await page.$('#watch-obj-res') const watchObjRes = await page.$('#watch-obj-res')
expect(await watchObjRes.text()).toBe( expect(await watchObjRes.text()).toBe(
'watch obj result: obj: {"arr":[0],"bool":false,"num":0,"str":"num: 0"}') isWeb ?
'watch obj result: obj: {"num":0,"str":"num: 0","bool":false,"arr":[0]}' :
'watch obj result: obj: {"arr":[0],"bool":false,"num":0,"str":"num: 0"}'
)
const watchObjStrRes = await page.$('#watch-obj-str-res') const watchObjStrRes = await page.$('#watch-obj-str-res')
expect(await watchObjStrRes.text()).toBe( expect(await watchObjStrRes.text()).toBe(
'watch obj.str result: str: num: 0, obj.str ref text: obj.str: num: 0') 'watch obj.str result: str: num: 0, obj.str ref text: obj.str: num: 0')
......
...@@ -2,7 +2,7 @@ const PAGE_PATH = '/pages/composition/mixins/mixins' ...@@ -2,7 +2,7 @@ const PAGE_PATH = '/pages/composition/mixins/mixins'
let page let page
describe('mixins', () => { describe('mixins', () => {
if (process.env.uniTestPlatformInfo.startsWith('android')) { if (process.env.uniTestPlatformInfo.startsWith('web')) {
// TODO: web 端暂不支持 // TODO: web 端暂不支持
it('web', async () => { it('web', async () => {
expect(1).toBe(1) expect(1).toBe(1)
......
// TODO web端
const PAGE_PATH = '/pages/composition/setup/setup' const PAGE_PATH = '/pages/composition/setup/setup'
describe('options setup', () => { describe('options setup', () => {
let page let page
...@@ -23,6 +25,7 @@ describe('options setup', () => { ...@@ -23,6 +25,7 @@ describe('options setup', () => {
const objBool = await page.$('#obj-bool') const objBool = await page.$('#obj-bool')
expect(await objBool.text()).toBe('obj.bool: false') expect(await objBool.text()).toBe('obj.bool: false')
if (!process.env.uniTestPlatformInfo.startsWith('web')) {
const propsStr = await page.$('#props-str') const propsStr = await page.$('#props-str')
expect(await propsStr.text()).toBe('props.str: default str') expect(await propsStr.text()).toBe('props.str: default str')
const propsCount = await page.$('#props-count') const propsCount = await page.$('#props-count')
...@@ -33,6 +36,7 @@ describe('options setup', () => { ...@@ -33,6 +36,7 @@ describe('options setup', () => {
expect(await propsObjNum.text()).toBe(`props.obj['num']: 0`) expect(await propsObjNum.text()).toBe(`props.obj['num']: 0`)
const propsObjBool = await page.$('#props-obj-bool') const propsObjBool = await page.$('#props-obj-bool')
expect(await propsObjBool.text()).toBe(`props.obj['bool']: false`) expect(await propsObjBool.text()).toBe(`props.obj['bool']: false`)
}
}) })
it('props', async () => { it('props', async () => {
const incrementBtn = await page.$('#increment-btn') const incrementBtn = await page.$('#increment-btn')
...@@ -53,17 +57,21 @@ describe('options setup', () => { ...@@ -53,17 +57,21 @@ describe('options setup', () => {
const objBool = await page.$('#obj-bool') const objBool = await page.$('#obj-bool')
expect(await objBool.text()).toBe('obj.bool: true') expect(await objBool.text()).toBe('obj.bool: true')
if (!process.env.uniTestPlatformInfo.startsWith('web')) {
const propsObjStr = await page.$('#props-obj-str') const propsObjStr = await page.$('#props-obj-str')
expect(await propsObjStr.text()).toBe(`props.obj['str']: obj new str`) expect(await propsObjStr.text()).toBe(`props.obj['str']: obj new str`)
const propsObjNum = await page.$('#props-obj-num') const propsObjNum = await page.$('#props-obj-num')
expect(await propsObjNum.text()).toBe(`props.obj['num']: 100`) expect(await propsObjNum.text()).toBe(`props.obj['num']: 100`)
const propsObjBool = await page.$('#props-obj-bool') const propsObjBool = await page.$('#props-obj-bool')
expect(await propsObjBool.text()).toBe(`props.obj['bool']: true`) expect(await propsObjBool.text()).toBe(`props.obj['bool']: true`)
}
}) })
it('context', async () => { it('context', async () => {
if (!process.env.uniTestPlatformInfo.startsWith('web')) {
// attrs // attrs
const contextAttrsIsShow = await page.$('#context-attrs-is-show') const contextAttrsIsShow = await page.$('#context-attrs-is-show')
expect(await contextAttrsIsShow.text()).toBe('context.attrs.isShow: true') expect(await contextAttrsIsShow.text()).toBe('context.attrs.isShow: true')
// emits // emits
const compUpdateObjBtn = await page.$('#comp-update-obj-btn') const compUpdateObjBtn = await page.$('#comp-update-obj-btn')
await compUpdateObjBtn.tap() await compUpdateObjBtn.tap()
...@@ -73,6 +81,7 @@ describe('options setup', () => { ...@@ -73,6 +81,7 @@ describe('options setup', () => {
expect(await propsObjNum.text()).toBe(`props.obj['num']: 200`) expect(await propsObjNum.text()).toBe(`props.obj['num']: 200`)
const propsObjBool = await page.$('#props-obj-bool') const propsObjBool = await page.$('#props-obj-bool')
expect(await propsObjBool.text()).toBe(`props.obj['bool']: true`) expect(await propsObjBool.text()).toBe(`props.obj['bool']: true`)
}
// slots // slots
const defaultSlotInFoo = await page.$('#default-slot-in-foo') const defaultSlotInFoo = await page.$('#default-slot-in-foo')
expect(await defaultSlotInFoo.text()).toBe('default slot in Foo') expect(await defaultSlotInFoo.text()).toBe('default slot in Foo')
......
...@@ -12,7 +12,9 @@ ...@@ -12,7 +12,9 @@
<text class='uni-common-mt' id="obj-num">obj.num: {{ obj['num'] }}</text> <text class='uni-common-mt' id="obj-num">obj.num: {{ obj['num'] }}</text>
<text class='uni-common-mt' id="obj-bool">obj.bool: {{ obj['bool'] }}</text> <text class='uni-common-mt' id="obj-bool">obj.bool: {{ obj['bool'] }}</text>
<button class='uni-common-mt' id="update-obj-btn" @click="updateObj">update obj</button> <button class='uni-common-mt' id="update-obj-btn" @click="updateObj">update obj</button>
<!-- #ifdef APP -->
<RenderFunction :str='str' :count='count' :obj='obj' @compUpdateObj='compUpdateObj' :isShow='true' /> <RenderFunction :str='str' :count='count' :obj='obj' @compUpdateObj='compUpdateObj' :isShow='true' />
<!-- #endif -->
<Foo> <Foo>
<text class="uni-common-mt" id="default-slot-in-foo">default slot in Foo</text> <text class="uni-common-mt" id="default-slot-in-foo">default slot in Foo</text>
</Foo> </Foo>
...@@ -23,11 +25,15 @@ ...@@ -23,11 +25,15 @@
</template> </template>
<script> <script>
// #ifdef APP
import RenderFunction from './RenderFunction.uvue' import RenderFunction from './RenderFunction.uvue'
// #endif
import Foo from './Foo.uvue' import Foo from './Foo.uvue'
export default { export default {
components: { components: {
// #ifdef APP
RenderFunction, RenderFunction,
// #endif
Foo Foo
}, },
setup() { setup() {
......
const PAGE_PATH = '/pages/directive/v-model/v-model' const PAGE_PATH = '/pages/directive/v-model/v-model'
describe('v-model', () => { describe('v-model', () => {
if (process.env.uniTestPlatformInfo.startsWith('web')) {
// TODO: web 自动化测试InputElement input方法报错
it('web', async () => {
expect(1).toBe(1)
})
return
}
let page let page
beforeAll(async () => { beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH) page = await program.reLaunch(PAGE_PATH)
await page.waitFor(500) await page.waitFor(500)
}) })
it('input', async () => { it('input', async () => {
const value = Date.now() + '' const value = Date.now() + ''
......
...@@ -166,7 +166,12 @@ ...@@ -166,7 +166,12 @@
{ {
name: 'toRefs', name: 'toRefs',
url: 'to-refs', url: 'to-refs',
// #ifdef APP
enable: true, enable: true,
// #endif
// #ifdef WEB
enable: false,
// #endif
}, },
{ {
name: 'isProxy', name: 'isProxy',
......
...@@ -312,7 +312,12 @@ ...@@ -312,7 +312,12 @@
{ {
name: '$root', name: '$root',
url: 'root', url: 'root',
// #ifdef APP
enable: true, enable: true,
// #endif
// #ifdef WEB
enable: false,
// #endif
}, },
{ {
name: '$slots', name: '$slots',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册