utsAndroid.vue 6.0 KB
Newer Older
lizhongyi_'s avatar
lizhongyi_ 已提交
1
<template>
2
	<view>
3
    
杜庆泉's avatar
杜庆泉 已提交
4 5 6 7 8 9 10 11
		<view class="uni-padding-wrap uni-common-mt">
			<view class="uni-hello-text">
				逐一点击执行,观察测试反馈
			</view>
		</view>
		
		<button @click="getAppContextClick">getAppContext</button>
		<button @click="getUniActivityClick">getUniActivity</button>
杜庆泉's avatar
杜庆泉 已提交
12
    <button @click="getJavaClassClick">getJavaClass</button>
杜庆泉's avatar
杜庆泉 已提交
13 14 15 16 17 18
		<button @click="getAppTempPathClick">getAppTempPath</button>
		<button @click="typeofClick">typeof</button>
		<button @click="arrayPermissionFlowClick">组权限申请流程测试</button>
		<button @click="singlePermissionFlowClick">单权限申请流程测试</button>
		<button @click="dispatchAsyncClick">任务分发测试</button>
		<button @click="pathTestClick">路径转换测试</button>
杜庆泉's avatar
杜庆泉 已提交
19
		<button @click="privacyStateClick">隐私协议状态测试</button>
M
mahaifeng 已提交
20
    <button @click="privacyStateCallBackClick">隐私协议回调测试</button>
杜庆泉's avatar
杜庆泉 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33
		<view class="uni-padding-wrap uni-common-mt">
			<view class="uni-hello-text">
				1. 当前页面已通过initAppLifecycle函数注册了生命周期监听。
			</view>
			<view class="uni-hello-text">
				2. 手动切换其他APP再返回,可在控制台和界面观察事件日志
			</view>
		</view>
		<view class="uni-padding-wrap uni-common-mt">
			<view class="text-box" scroll-y="true">
				<text>{{text}}</text>
			</view>
		</view>
杜庆泉's avatar
杜庆泉 已提交
34
		<button @click="gotoSystemPermissionActivityClick">手动申请权限测试</button>
杜庆泉's avatar
杜庆泉 已提交
35 36 37
		<button @tap="testGoOtherActivity">跳转拍照界面</button>
		<button @tap="testUnRegLifecycle">取消注册周期函数</button>
		<image :src="selectImage" v-if="selectImage"></image>
杜庆泉's avatar
杜庆泉 已提交
38 39 40 41 42 43
		<view class="uni-padding-wrap uni-common-mt">
			<view class="uni-hello-text">
				获取设备信息,观察是否符合预期
			</view>
		</view>
		<button @tap="getDeviceInfoClick">获取设备基础信息</button>
44
    
45
	</view>
lizhongyi_'s avatar
lizhongyi_ 已提交
46 47 48
</template>

<script>
49 50 51
	import {
		getAppContextTest,
		getUniActivityTest,
杜庆泉's avatar
杜庆泉 已提交
52
    getJavaClassTest,
53 54 55
		getAppTempPathTest,
		typeofClickTest,
		gotoSystemPermissionActivityTest,
杜庆泉's avatar
杜庆泉 已提交
56 57 58 59 60 61
		arrayPermissionFlowTest,
		singlePermissionFlowTest,
		dispatchAsyncTest,
		convert2AbsFullPathTest,
		unRegLifecycle,
		initAppLifecycle,
杜庆泉's avatar
杜庆泉 已提交
62 63
		gotoCameraTake,
		getDeviceInfoTest,
M
mahaifeng 已提交
64 65
		privacyStateTest,
    privacyStateCallBackTest
66 67 68 69 70 71
	} from '@/uni_modules/uts-platform-api'
	/**
	 * 测试在页面生命周期之外,使用api
	 */
	export default {
		data() {
杜庆泉's avatar
杜庆泉 已提交
72 73 74 75 76 77 78 79 80 81 82 83
			return {
				text: '',
				selectImage:''
			}
		},
		onLoad:function(){
			let that = this;
			initAppLifecycle(function(eventLog){
				// 展示捕捉到的声明周期日志
				that.text = that.text += eventLog;
				that.text = that.text += '\n';
			});
84 85
		},
		methods: {
杜庆泉's avatar
杜庆泉 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99
			privacyStateClick(){
				privacyStateTest(function(ret,desc){
					if (ret) {
						uni.showToast({
							title: '测试通过'
						})
					} else {
						uni.showToast({
							icon: 'none',
							title: '失败:' + desc
						})
					}
				})
			},
M
mahaifeng 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113
      privacyStateCallBackClick() {
        privacyStateCallBackTest(function(ret, desc) {
          if (ret) {
            uni.showToast({
              title: '测试通过'
            })
          } else {
            uni.showToast({
              icon: 'none',
              title: '失败:' + desc
            })
          }
        })
      },
杜庆泉's avatar
杜庆泉 已提交
114 115 116
			getDeviceInfoClick(){
				this.text = getDeviceInfoTest()
			},
杜庆泉's avatar
杜庆泉 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
			testGoOtherActivity(){
				var that = this;
				let ret = gotoCameraTake(function(file){
					// 展示捕捉到的声明周期日志
					console.log(file);
					that.selectImage = "file://" + file;
				});
				
				if(!ret){
					uni.showToast({
						icon:'none',
						title:'测试失败'
					})
				}
			},
			testUnRegLifecycle(){
				// 取消注册生命周期
				unRegLifecycle();
			},
杜庆泉's avatar
杜庆泉 已提交
136 137 138 139 140 141 142 143 144 145 146 147
      getJavaClassClick() {
        if (getJavaClassTest()) {
        	uni.showToast({
        		title: '测试通过'
        	})
        } else {
        	uni.showToast({
        		icon: 'error',
        		title: '测试失败'
        	})
        }
      },
148
			getAppContextClick() {
杜庆泉's avatar
杜庆泉 已提交
149
				if (getAppContextTest()) {
150
					uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
151
						title: '测试通过'
152
					})
杜庆泉's avatar
杜庆泉 已提交
153
				} else {
154
					uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
155 156
						icon: 'error',
						title: '测试失败'
157 158 159
					})
				}
			},
杜庆泉's avatar
杜庆泉 已提交
160

161
			getUniActivityClick() {
杜庆泉's avatar
杜庆泉 已提交
162 163 164 165 166 167 168 169 170 171
				if (getUniActivityTest()) {
					uni.showToast({
						title: '测试通过'
					})
				} else {
					uni.showToast({
						icon: 'error',
						title: '测试失败'
					})
				}
172
			},
杜庆泉's avatar
杜庆泉 已提交
173 174
			pathTestClick() {
				if (convert2AbsFullPathTest()) {
175
					uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
176
						title: '测试通过'
177
					})
杜庆泉's avatar
杜庆泉 已提交
178
				} else {
179
					uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
180 181
						icon: 'error',
						title: '测试失败'
182 183 184
					})
				}
			},
杜庆泉's avatar
杜庆泉 已提交
185 186
			getAppTempPathClick() {
				if (getAppTempPathTest()) {
187
					uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
188
						title: '测试通过'
189
					})
杜庆泉's avatar
杜庆泉 已提交
190
				} else {
191
					uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
192 193
						icon: 'error',
						title: '测试失败'
194 195 196
					})
				}
			},
杜庆泉's avatar
杜庆泉 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
			dispatchAsyncClick() {
				dispatchAsyncTest(function(ret,desc){
					if (ret) {
						uni.showToast({
							title: '测试通过'
						})
					} else {
						uni.showToast({
							icon: 'none',
							title: '失败:' + desc
						})
					}
				})
			},
			typeofClick() {
				if (typeofClickTest()) {
213
					uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
214
						title: '测试通过'
215
					})
杜庆泉's avatar
杜庆泉 已提交
216
				} else {
217
					uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
218 219
						icon: 'error',
						title: '测试失败'
220 221 222
					})
				}
			},
杜庆泉's avatar
杜庆泉 已提交
223
			
224 225 226 227
			gotoSystemPermissionActivityClick() {
				gotoSystemPermissionActivityTest()
			},
			arrayPermissionFlowClick() {
杜庆泉's avatar
杜庆泉 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
				arrayPermissionFlowTest(function(ret,desc){
					if (ret) {
						uni.showToast({
							icon: 'none',
							title: '测试通过'
						})
					} else {
						uni.showToast({
							icon: 'none',
							title: '失败:' + desc
						})
					}
				})
			},
			singlePermissionFlowClick() {
				singlePermissionFlowTest(function(ret,desc){
					if (ret) {
						uni.showToast({
							icon: 'none',
							title: '测试通过'
						})
					} else {
						uni.showToast({
							icon: 'none',
							title: '失败:' + desc
						})
					}
				})
256
			}
杜庆泉's avatar
杜庆泉 已提交
257 258
			
			
259 260
		}
	}
lizhongyi_'s avatar
lizhongyi_ 已提交
261 262 263
</script>

<style>
杜庆泉's avatar
杜庆泉 已提交
264 265 266
	.testButton{
		width:100%
	}
lizhongyi_'s avatar
lizhongyi_ 已提交
267
</style>