mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 07:04:17 +00:00 
			
		
		
		
	Add UxPerfUiAutomation class
UxPerfUiAutomation contains methods specific to UX performance testing.
This commit is contained in:
		
							
								
								
									
										8
									
								
								wlauto/external/uiauto/build.sh
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								wlauto/external/uiauto/build.sh
									
									
									
									
										vendored
									
									
								
							| @@ -16,6 +16,12 @@ | ||||
|  | ||||
|  | ||||
|  | ||||
| # Build and return appropriate exit code if failed | ||||
| ant build | ||||
| exit_code=$? | ||||
| if [ $exit_code -ne 0 ]; then | ||||
|     echo "ERROR: 'ant build' exited with code $exit_code" | ||||
|     exit $exit_code | ||||
| fi | ||||
|  | ||||
| cp bin/classes/com/arm/wlauto/uiauto/BaseUiAutomation.class ../../common/android | ||||
| cp bin/classes/com/arm/wlauto/uiauto/*.class ../../common/android | ||||
|   | ||||
							
								
								
									
										49
									
								
								wlauto/external/uiauto/src/com/arm/wlauto/uiauto/UxPerfUiAutomation.java
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										49
									
								
								wlauto/external/uiauto/src/com/arm/wlauto/uiauto/UxPerfUiAutomation.java
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,49 @@ | ||||
| /*    Copyright 2013-2016 ARM Limited | ||||
|  * | ||||
|  * Licensed under the Apache License, Version 2.0 (the "License"); | ||||
|  * you may not use this file except in compliance with the License. | ||||
|  * You may obtain a copy of the License at | ||||
|  * | ||||
|  *     http://www.apache.org/licenses/LICENSE-2.0 | ||||
|  * | ||||
|  * Unless required by applicable law or agreed to in writing, software | ||||
|  * distributed under the License is distributed on an "AS IS" BASIS, | ||||
|  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
|  * See the License for the specific language governing permissions and | ||||
|  * limitations under the License. | ||||
| */ | ||||
|  | ||||
| package com.arm.wlauto.uiauto; | ||||
|  | ||||
| import java.util.logging.Logger; | ||||
|  | ||||
| public class UxPerfUiAutomation extends BaseUiAutomation { | ||||
|  | ||||
|     private Logger logger = Logger.getLogger(UxPerfUiAutomation.class.getName()); | ||||
|  | ||||
|     public enum GestureType { UIDEVICE_SWIPE, UIOBJECT_SWIPE, PINCH }; | ||||
|  | ||||
|     public static class GestureTestParams { | ||||
|         public GestureType gestureType; | ||||
|         public Direction gestureDirection; | ||||
|         public PinchType pinchType; | ||||
|         public int percent; | ||||
|         public int steps; | ||||
|  | ||||
|         public GestureTestParams(GestureType gesture, Direction direction, int steps) { | ||||
|             this.gestureType = gesture; | ||||
|             this.gestureDirection = direction; | ||||
|             this.pinchType = PinchType.NULL; | ||||
|             this.steps = steps; | ||||
|             this.percent = 0; | ||||
|         } | ||||
|  | ||||
|         public GestureTestParams(GestureType gesture, PinchType pinchType, int steps, int percent) { | ||||
|             this.gestureType = gesture; | ||||
|             this.gestureDirection = Direction.NULL; | ||||
|             this.pinchType = pinchType; | ||||
|             this.steps = steps; | ||||
|             this.percent = percent; | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user