提交 36d5d741 编写于 作者: M Mupceet

fix gesture case

Signed-off-by: NMupceet <laiguizhong@huawei.com>
上级 6755388a
...@@ -14,7 +14,8 @@ ...@@ -14,7 +14,8 @@
*/ */
import commonEvent from '@ohos.commonEvent'; import commonEvent from '@ohos.commonEvent';
import display from '@ohos.display' import display from '@ohos.display'
import accessibility from '@ohos.accessibility' import { GesturePath } from '@ohos.accessibility.GesturePath';
import { GesturePoint } from '@ohos.accessibility.GesturePoint';
export class ExtensionContextTest { export class ExtensionContextTest {
private context = undefined; private context = undefined;
...@@ -52,14 +53,10 @@ export class ExtensionContextTest { ...@@ -52,14 +53,10 @@ export class ExtensionContextTest {
private async processCase(caseName) { private async processCase(caseName) {
console.info('ExtensionContextTest processCase: ' + caseName); console.info('ExtensionContextTest processCase: ' + caseName);
let eventType: Array<string> = [];
let bundleName: Array<string> = []; let bundleName: Array<string> = [];
let windowId = -1; let windowId = -1;
let displayId = -1; let displayId = -1;
let gesturePath = {}; let gesturePath;
let gesturePos1 = {};
let gesturePos2 = {};
let gesturePos3 = {};
switch (caseName) { switch (caseName) {
case 'AccessibilityExtensionContextTest_setTargetBundleName_asyncCallback_1500': case 'AccessibilityExtensionContextTest_setTargetBundleName_asyncCallback_1500':
...@@ -179,26 +176,26 @@ export class ExtensionContextTest { ...@@ -179,26 +176,26 @@ export class ExtensionContextTest {
this.getFocusElementByTypePromise(caseName, false, false); this.getFocusElementByTypePromise(caseName, false, false);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4500': case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4500':
gesturePos1 = {positionX: 10, positionY: 10}; gesturePath = new GesturePath(100);
gesturePath = {points: [gesturePos1], durationTime: 100}; gesturePath.points.push(new GesturePoint(10, 10));
this.gestureInjectCallback(caseName, gesturePath); this.gestureInjectCallback(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4600': case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4600':
gesturePos1 = {positionX: 50, positionY: 50}; gesturePath = new GesturePath(60000);
gesturePath = {points: [gesturePos1], durationTime: 60000}; gesturePath.points.push(new GesturePoint(50, 50));
this.gestureInjectCallback(caseName, gesturePath); this.gestureInjectCallback(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4700': case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4700':
gesturePos1 = {positionX: 200, positionY: 200}; gesturePath = new GesturePath(1000);
gesturePos2 = {positionX: 100, positionY: 100}; gesturePath.points.push(new GesturePoint(200, 200),
gesturePath = {points: [gesturePos1, gesturePos2], durationTime: 1000}; new GesturePoint(100, 100));
this.gestureInjectCallback(caseName, gesturePath); this.gestureInjectCallback(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4800': case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4800':
gesturePos1 = {positionX: 50, positionY: 50}; gesturePath = new GesturePath(60000);
gesturePos2 = {positionX: 100, positionY: 100}; gesturePath.points.push(new GesturePoint(50, 50),
gesturePos3 = {positionX: 1000, positionY: 1000}; new GesturePoint(100, 100),
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3], durationTime: 60000}; new GesturePoint(1000, 1000));
this.gestureInjectCallback(caseName, gesturePath); this.gestureInjectCallback(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4900': case 'AccessibilityExtensionContextTest_gestureInject_asyncCallback_4900':
...@@ -206,26 +203,26 @@ export class ExtensionContextTest { ...@@ -206,26 +203,26 @@ export class ExtensionContextTest {
this.gestureInjectCallback(caseName, gesturePath); this.gestureInjectCallback(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5000': case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5000':
gesturePos1 = {positionX: 10, positionY: 10}; gesturePath = new GesturePath(100);
gesturePath = {points: [gesturePos1], durationTime: 100}; gesturePath.points.push(new GesturePoint(10, 10));
this.gestureInjectPromise(caseName, gesturePath); this.gestureInjectPromise(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5100': case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5100':
gesturePos1 = {positionX: 50, positionY: 50}; gesturePath = new GesturePath(60000);
gesturePath = {points: [gesturePos1], durationTime: 60000}; gesturePath.points.push(new GesturePoint(50, 50));
this.gestureInjectPromise(caseName, gesturePath); this.gestureInjectPromise(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5200': case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5200':
gesturePos1 = {positionX: 200, positionY: 200}; gesturePath = new GesturePath(1000);
gesturePos2 = {positionX: 100, positionY: 100}; gesturePath.points.push(new GesturePoint(200, 200),
gesturePath = {points: [gesturePos1, gesturePos2], durationTime: 1000}; new GesturePoint(100, 100));
this.gestureInjectPromise(caseName, gesturePath); this.gestureInjectPromise(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5300': case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5300':
gesturePos1 = {positionX: 50, positionY: 50}; gesturePath = new GesturePath(60000);
gesturePos2 = {positionX: 100, positionY: 100}; gesturePath.points.push(new GesturePoint(50, 50),
gesturePos3 = {positionX: 1000, positionY: 1000}; new GesturePoint(100, 100),
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3], durationTime: 60000}; new GesturePoint(1000, 1000));
this.gestureInjectPromise(caseName, gesturePath); this.gestureInjectPromise(caseName, gesturePath);
break; break;
case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5400': case 'AccessibilityExtensionContextTest_gestureInject_asyncPromise_5400':
......
...@@ -13,6 +13,8 @@ ...@@ -13,6 +13,8 @@
* limitations under the License. * limitations under the License.
*/ */
import commonEvent from '@ohos.commonEvent'; import commonEvent from '@ohos.commonEvent';
import { GesturePath } from '@ohos.accessibility.GesturePath';
import { GesturePoint } from '@ohos.accessibility.GesturePoint';
export class GestureEventTest { export class GestureEventTest {
private context = undefined; private context = undefined;
...@@ -38,239 +40,196 @@ export class GestureEventTest { ...@@ -38,239 +40,196 @@ export class GestureEventTest {
private async processCase(caseName) { private async processCase(caseName) {
console.info('GestureEventTest processCase start'); console.info('GestureEventTest processCase start');
let gesturePath = {}; let gesturePath = new GesturePath(100);
let gesturePos1 = {};
let gesturePos2 = {};
let gesturePos3 = {};
let gesturePos4 = {};
let gesturePos5 = {};
let gesturePos6 = {};
let gesturePos7 = {};
let gesturePos8 = {};
let gesturePos9 = {};
let gesturePos10 = {};
let gesturePos11 = {};
switch (caseName) { switch (caseName) {
case 'AccessibilityGestureEventTest_0100'://'left' case 'AccessibilityGestureEventTest_0100'://'left'
console.info('GestureEventTest processCase left'); console.info('GestureEventTest processCase left');
gesturePos1 = {positionX: 676, positionY: 735}; gesturePath.points.push(new GesturePoint(676, 735),
gesturePos2 = {positionX: 567, positionY: 729}; new GesturePoint(567, 729),
gesturePos3 = {positionX: 444, positionY: 719}; new GesturePoint(444, 719),
gesturePos4 = {positionX: 255, positionY: 714}; new GesturePoint(255, 714),
gesturePos5 = {positionX: 153, positionY: 715}; new GesturePoint(153, 715),
gesturePos6 = {positionX: 15, positionY: 729}; new GesturePoint(15, 729));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5, gesturePos6], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_0200'://'leftThenRight' case 'AccessibilityGestureEventTest_0200'://'leftThenRight'
console.info('GestureEventTest processCase leftThenRight'); console.info('GestureEventTest processCase leftThenRight');
gesturePos1 = {positionX: 685, positionY: 798}; gesturePath.points.push(new GesturePoint(685, 798),
gesturePos2 = {positionX: 575, positionY: 792}; new GesturePoint(575, 792),
gesturePos3 = {positionX: 446, positionY: 785}; new GesturePoint(446, 785),
gesturePos4 = {positionX: 285, positionY: 784}; new GesturePoint(285, 784),
gesturePos5 = {positionX: 206, positionY: 785}; new GesturePoint(206, 785),
gesturePos6 = {positionX: 87, positionY: 787}; new GesturePoint(87, 787),
gesturePos7 = {positionX: 401, positionY: 772}; new GesturePoint(401, 772),
gesturePos8 = {positionX: 535, positionY: 786}; new GesturePoint(535, 786),
gesturePos9 = {positionX: 714, positionY: 806}; new GesturePoint(714, 806));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8, gesturePos9], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_0300'://'leftThenUp' case 'AccessibilityGestureEventTest_0300'://'leftThenUp'
console.info('GestureEventTest processCase leftThenUp'); console.info('GestureEventTest processCase leftThenUp');
gesturePos1 = {positionX: 652, positionY: 903}; gesturePath.points.push(new GesturePoint(652, 903),
gesturePos2 = {positionX: 570, positionY: 905}; new GesturePoint(570, 905),
gesturePos3 = {positionX: 460, positionY: 920}; new GesturePoint(460, 920),
gesturePos4 = {positionX: 280, positionY: 737}; new GesturePoint(280, 737),
gesturePos5 = {positionX: 281, positionY: 555}; new GesturePoint(281, 555),
gesturePos6 = {positionX: 285, positionY: 333}; new GesturePoint(285, 333),
gesturePos7 = {positionX: 284, positionY: 116}; new GesturePoint(284, 116));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_0400'://'leftThenDown' case 'AccessibilityGestureEventTest_0400'://'leftThenDown'
console.info('GestureEventTest processCase leftThenDown'); console.info('GestureEventTest processCase leftThenDown');
gesturePos1 = {positionX: 583, positionY: 520}; gesturePath.points.push(new GesturePoint(583, 520),
gesturePos2 = {positionX: 468, positionY: 485}; new GesturePoint(468, 485),
gesturePos3 = {positionX: 377, positionY: 456}; new GesturePoint(377, 456),
gesturePos4 = {positionX: 289, positionY: 435}; new GesturePoint(289, 435),
gesturePos5 = {positionX: 283, positionY: 626}; new GesturePoint(283, 626),
gesturePos6 = {positionX: 308, positionY: 836}; new GesturePoint(308, 836),
gesturePos7 = {positionX: 335, positionY: 1108}; new GesturePoint(335, 1108));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_0500'://'right' case 'AccessibilityGestureEventTest_0500'://'right'
console.info('GestureEventTest processCase right'); console.info('GestureEventTest processCase right');
gesturePos1 = {positionX: 77, positionY: 589}; gesturePath.points.push(new GesturePoint(77, 589),
gesturePos2 = {positionX: 185, positionY: 589}; new GesturePoint(185, 589),
gesturePos3 = {positionX: 318, positionY: 589}; new GesturePoint(318, 589),
gesturePos4 = {positionX: 499, positionY: 589}; new GesturePoint(499, 589),
gesturePos5 = {positionX: 630, positionY: 588}; new GesturePoint(630, 588));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_0600'://'rightThenLeft' case 'AccessibilityGestureEventTest_0600'://'rightThenLeft'
console.info('GestureEventTest processCase rightThenLeft'); console.info('GestureEventTest processCase rightThenLeft');
gesturePos1 = {positionX: 174, positionY: 731}; gesturePath.points.push(new GesturePoint(174, 731),
gesturePos2 = {positionX: 251, positionY: 743}; new GesturePoint(251, 743),
gesturePos3 = {positionX: 393, positionY: 772}; new GesturePoint(393, 772),
gesturePos4 = {positionX: 673, positionY: 817}; new GesturePoint(673, 817),
gesturePos5 = {positionX: 591, positionY: 805}; new GesturePoint(591, 805),
gesturePos6 = {positionX: 511, positionY: 791}; new GesturePoint(511, 791),
gesturePos7 = {positionX: 423, positionY: 779}; new GesturePoint(423, 779),
gesturePos8 = {positionX: 333, positionY: 768}; new GesturePoint(333, 768),
gesturePos9 = {positionX: 244, positionY: 764}; new GesturePoint(244, 764),
gesturePos10 = {positionX: 167, positionY: 759}; new GesturePoint(167, 759),
gesturePos11 = {positionX: 71, positionY: 755}; new GesturePoint(71, 755));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8, gesturePos9, gesturePos10,
gesturePos11], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_0700'://'rightThenUp' case 'AccessibilityGestureEventTest_0700'://'rightThenUp'
console.info('GestureEventTest processCase rightThenUp'); console.info('GestureEventTest processCase rightThenUp');
gesturePos1 = {positionX: 117, positionY: 950}; gesturePath.points.push(new GesturePoint(117, 950),
gesturePos2 = {positionX: 216, positionY: 950}; new GesturePoint(216, 950),
gesturePos3 = {positionX: 311, positionY: 950}; new GesturePoint(311, 950),
gesturePos4 = {positionX: 438, positionY: 933}; new GesturePoint(438, 933),
gesturePos5 = {positionX: 491, positionY: 791}; new GesturePoint(491, 791),
gesturePos6 = {positionX: 478, positionY: 622}; new GesturePoint(478, 622),
gesturePos7 = {positionX: 471, positionY: 473}; new GesturePoint(471, 473),
gesturePos8 = {positionX: 464, positionY: 320}; new GesturePoint(464, 320),
gesturePos9 = {positionX: 458, positionY: 186}; new GesturePoint(458, 186));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8, gesturePos9], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_0800'://'rightThenDown' case 'AccessibilityGestureEventTest_0800'://'rightThenDown'
console.info('GestureEventTest processCase rightThenDown'); console.info('GestureEventTest processCase rightThenDown');
gesturePos1 = {positionX: 204, positionY: 501}; gesturePath.points.push(new GesturePoint(204, 501),
gesturePos2 = {positionX: 307, positionY: 486}; new GesturePoint(307, 486),
gesturePos3 = {positionX: 422, positionY: 478}; new GesturePoint(422, 478),
gesturePos4 = {positionX: 547, positionY: 604}; new GesturePoint(547, 604),
gesturePos5 = {positionX: 440, positionY: 771}; new GesturePoint(440, 771),
gesturePos6 = {positionX: 348, positionY: 906}; new GesturePoint(348, 906));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_0900'://'up' case 'AccessibilityGestureEventTest_0900'://'up'
console.info('GestureEventTest processCase up'); console.info('GestureEventTest processCase up');
gesturePos1 = {positionX: 372, positionY: 1053}; gesturePath.points.push(new GesturePoint(372, 1053),
gesturePos2 = {positionX: 355, positionY: 873}; new GesturePoint(355, 873),
gesturePos3 = {positionX: 320, positionY: 558}; new GesturePoint(320, 558),
gesturePos4 = {positionX: 296, positionY: 314}; new GesturePoint(296, 314),
gesturePos5 = {positionX: 285, positionY: 163}; new GesturePoint(285, 163));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_1000'://'upThenLeft' case 'AccessibilityGestureEventTest_1000'://'upThenLeft'
console.info('GestureEventTest processCase upThenLeft'); console.info('GestureEventTest processCase upThenLeft');
gesturePos1 = {positionX: 437, positionY: 1139}; gesturePath.points.push(new GesturePoint(437, 1139),
gesturePos2 = {positionX: 437, positionY: 985}; new GesturePoint(437, 985),
gesturePos3 = {positionX: 453, positionY: 739}; new GesturePoint(453, 739),
gesturePos4 = {positionX: 466, positionY: 591}; new GesturePoint(466, 591),
gesturePos5 = {positionX: 483, positionY: 455}; new GesturePoint(483, 455),
gesturePos6 = {positionX: 489, positionY: 321}; new GesturePoint(489, 321),
gesturePos7 = {positionX: 383, positionY: 274}; new GesturePoint(383, 274),
gesturePos8 = {positionX: 258, positionY: 273}; new GesturePoint(258, 273),
gesturePos9 = {positionX: 179, positionY: 276}; new GesturePoint(179, 276),
gesturePos10 = {positionX: 102, positionY: 286}; new GesturePoint(102, 286),
gesturePos11 = {positionX: 3, positionY: 298}; new GesturePoint(3, 298));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8, gesturePos9, gesturePos10,
gesturePos11], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_1100'://'upThenRight' case 'AccessibilityGestureEventTest_1100'://'upThenRight'
console.info('GestureEventTest processCase upThenRight'); console.info('GestureEventTest processCase upThenRight');
gesturePos1 = {positionX: 332, positionY: 1143}; gesturePath.points.push(new GesturePoint(332, 1143),
gesturePos2 = {positionX: 322, positionY: 973}; new GesturePoint(322, 973),
gesturePos3 = {positionX: 300, positionY: 779}; new GesturePoint(300, 779),
gesturePos4 = {positionX: 276, positionY: 627}; new GesturePoint(276, 627),
gesturePos5 = {positionX: 259, positionY: 496}; new GesturePoint(259, 496),
gesturePos6 = {positionX: 375, positionY: 406}; new GesturePoint(375, 406),
gesturePos7 = {positionX: 468, positionY: 409}; new GesturePoint(468, 409),
gesturePos8 = {positionX: 704, positionY: 436}; new GesturePoint(704, 436));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_1200'://'upThenDown' case 'AccessibilityGestureEventTest_1200'://'upThenDown'
console.info('GestureEventTest processCase upThenDown'); console.info('GestureEventTest processCase upThenDown');
gesturePos1 = {positionX: 377, positionY: 1047}; gesturePath.points.push(new GesturePoint(377, 1047),
gesturePos2 = {positionX: 368, positionY: 863}; new GesturePoint(368, 863),
gesturePos3 = {positionX: 355, positionY: 564}; new GesturePoint(355, 564),
gesturePos4 = {positionX: 339, positionY: 353}; new GesturePoint(339, 353),
gesturePos5 = {positionX: 331, positionY: 210}; new GesturePoint(331, 210),
gesturePos6 = {positionX: 361, positionY: 409}; new GesturePoint(361, 409),
gesturePos7 = {positionX: 375, positionY: 665}; new GesturePoint(375, 665),
gesturePos8 = {positionX: 380, positionY: 824}; new GesturePoint(380, 824),
gesturePos9 = {positionX: 386, positionY: 977}; new GesturePoint(386, 977),
gesturePos10 = {positionX: 393, positionY: 1177}; new GesturePoint(393, 1177));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8, gesturePos9, gesturePos10],
durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_1300'://'down' case 'AccessibilityGestureEventTest_1300'://'down'
console.info('GestureEventTest processCase down'); console.info('GestureEventTest processCase down');
gesturePos1 = {positionX: 352, positionY: 250}; gesturePath.points.push(new GesturePoint(352, 250),
gesturePos2 = {positionX: 371, positionY: 462}; new GesturePoint(371, 462),
gesturePos3 = {positionX: 377, positionY: 828}; new GesturePoint(377, 828),
gesturePos4 = {positionX: 378, positionY: 956}; new GesturePoint(378, 956),
gesturePos5 = {positionX: 385, positionY: 1121}; new GesturePoint(385, 1121));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_1400'://'downThenLeft' case 'AccessibilityGestureEventTest_1400'://'downThenLeft'
console.info('GestureEventTest processCase downThenLeft'); console.info('GestureEventTest processCase downThenLeft');
gesturePos1 = {positionX: 404, positionY: 177}; gesturePath.points.push(new GesturePoint(404, 177),
gesturePos2 = {positionX: 406, positionY: 318}; new GesturePoint(406, 318),
gesturePos3 = {positionX: 405, positionY: 459}; new GesturePoint(405, 459),
gesturePos4 = {positionX: 415, positionY: 764}; new GesturePoint(415, 764),
gesturePos5 = {positionX: 432, positionY: 910}; new GesturePoint(432, 910),
gesturePos6 = {positionX: 335, positionY: 935}; new GesturePoint(335, 935),
gesturePos7 = {positionX: 262, positionY: 934}; new GesturePoint(262, 934),
gesturePos8 = {positionX: 182, positionY: 933}; new GesturePoint(182, 933),
gesturePos9 = {positionX: 24, positionY: 929}; new GesturePoint(24, 929));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8, gesturePos9], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_1500'://'downThenRight' case 'AccessibilityGestureEventTest_1500'://'downThenRight'
console.info('GestureEventTest processCase downThenRight'); console.info('GestureEventTest processCase downThenRight');
gesturePos1 = {positionX: 317, positionY: 247}; gesturePath.points.push(new GesturePoint(317, 247),
gesturePos2 = {positionX: 318, positionY: 393}; new GesturePoint(318, 393),
gesturePos3 = {positionX: 299, positionY: 614}; new GesturePoint(299, 614),
gesturePos4 = {positionX: 280, positionY: 766}; new GesturePoint(280, 766),
gesturePos5 = {positionX: 278, positionY: 919}; new GesturePoint(278, 919),
gesturePos6 = {positionX: 419, positionY: 961}; new GesturePoint(419, 961),
gesturePos7 = {positionX: 502, positionY: 957}; new GesturePoint(502, 957),
gesturePos8 = {positionX: 627, positionY: 939}; new GesturePoint(627, 939));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8], durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
case 'AccessibilityGestureEventTest_1600'://'downThenUp' case 'AccessibilityGestureEventTest_1600'://'downThenUp'
console.info('GestureEventTest processCase downThenUp'); console.info('GestureEventTest processCase downThenUp');
gesturePos1 = {positionX: 321, positionY: 213}; gesturePath.points.push(new GesturePoint(321, 213),
gesturePos2 = {positionX: 346, positionY: 407}; new GesturePoint(346, 407),
gesturePos3 = {positionX: 354, positionY: 664}; new GesturePoint(354, 664),
gesturePos4 = {positionX: 356, positionY: 833}; new GesturePoint(356, 833),
gesturePos5 = {positionX: 358, positionY: 970}; new GesturePoint(358, 970),
gesturePos6 = {positionX: 357, positionY: 738}; new GesturePoint(357, 738),
gesturePos7 = {positionX: 349, positionY: 603}; new GesturePoint(349, 603),
gesturePos8 = {positionX: 344, positionY: 450}; new GesturePoint(344, 450),
gesturePos9 = {positionX: 342, positionY: 304}; new GesturePoint(342, 304),
gesturePos10 = {positionX: 340, positionY: 115}; new GesturePoint(340, 115));
gesturePath = {points: [gesturePos1, gesturePos2, gesturePos3, gesturePos4, gesturePos5,
gesturePos6, gesturePos7, gesturePos8, gesturePos9, gesturePos10],
durationTime: 100};
this.gestureInject(caseName, gesturePath); this.gestureInject(caseName, gesturePath);
break; break;
default: default:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册