permission-table-simple.test.js 30.4 KB
Newer Older
study夏羽's avatar
study夏羽 已提交
1
describe('pages/clientDB/permission-table-simple/permission-table-simple.vue', () => {
A
Anne_LXM 已提交
2
	let page,errMsgA,errMsgB,errMsgC,perPage,segItems,roles;
study夏羽's avatar
study夏羽 已提交
3 4 5 6
	beforeAll(async () => {
		// 重新reLaunch至首页,并获取首页page对象(其中 program 是uni-automator自动注入的全局对象)
		page = await program.reLaunch(
			'/pages/clientDB/permission-table-simple/permission-table-simple')
A
Anne_LXM 已提交
7 8
		page = await program.currentPage()
		await page.waitFor('view')
A
Anne_LXM 已提交
9 10 11
		errMsgA = "权限校验未通过,参与权限校验的集合:[],请参考文档:https://uniapp.dcloud.net.cn/uniCloud/schema.html#handler-permission-error"
		errMsgB = "权限校验未通过,未能获取当前用户信息,当前用户为匿名身份 ,参与权限校验的集合:[],请参考文档:https://uniapp.dcloud.net.cn/uniCloud/schema.html#handler-permission-error"
		errMsgC = "未能获取当前用户信息:当前用户为匿名身份"
A
Anne_LXM 已提交
12 13 14 15 16
		perPage = await page.$('.page')
		//头部操作控制条
		segItems = await perPage.$$('.segmented-control__item')
		//底部角色控制条
		roles = await perPage.$$('.roles-item')
A
Anne_LXM 已提交
17
	})
study夏羽's avatar
study夏羽 已提交
18 19 20 21 22 23 24 25 26 27 28 29
	it('创建--未登陆', async () => {
		//点击创建
		await segItems[0].tap()
		await roles[0].tap()

		const createUnlogin = await page.waitFor(async () => {
			const createUnlogintIndex = await page.data('typeIndex')
			const createUnloginRole = await page.data('currentRole')
			return createUnlogintIndex === 0 && createUnloginRole === 0
		})
		console.log(createUnlogin, "创建--未登陆");
		if (createUnlogin) {
A
Anne_LXM 已提交
30
			// 允许任何角色创建本表
31
			const createA = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
32 33 34
				"type": "create",
				"index": 0
			})
A
Anne_LXM 已提交
35
			console.log('createA: ',createA);
A
Anne_LXM 已提交
36
			expect(createA.result.id).toHaveLength(24)
A
Anne_LXM 已提交
37
			
38 39
			// 禁止任何角色创建,管理员除外
			const createB = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
40 41 42
				"type": "create",
				"index": 1
			})
A
Anne_LXM 已提交
43
			console.log('createB: ',createB);
44 45 46 47
			expect(createB.errMsg).toBe(errMsgC)
			
			// 需要登录后
			const createC = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
48 49 50
				"type": "create",
				"index": 2
			})
51 52 53 54
			expect(createC.errMsg).toBe(errMsgC)
			
			// 限审核员角色创建
			const createD = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
55 56 57
				"type": "create",
				"index": 5
			})
58
			expect(createD.errMsg).toBe(errMsgC)
study夏羽's avatar
study夏羽 已提交
59

60 61
			// 请求同时必须同时附带执行一个action云函数,如未触发该action则权限验证失败
			const createE = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
62 63 64
				"type": "create",
				"index": 6
			})
65 66 67 68
			expect(createE.errMsg).toBe(errMsgB)
			
			// 附带执行一个action云函数
			const createAction = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
69 70 71 72
				"type": "create",
				"index": 6,
				"action": "add_view_count"
			})
A
Anne_LXM 已提交
73 74
			// console.log('createAction: ',createAction);
			expect(createAction.result.id).toHaveLength(24)
study夏羽's avatar
study夏羽 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
		}
	})

	it('读取--未登陆', async () => {
		await segItems[1].tap()
		await roles[0].tap()

		const readUnlogin = await page.waitFor(async () => {
			const readUnloginIndex = await page.data('typeIndex')
			const readUnloginRole = await page.data('currentRole')
			return readUnloginIndex === 1 && readUnloginRole === 0
		})
		//console.log(readUnlogin, '读取--未登陆');

		if (readUnlogin) {
A
Anne_LXM 已提交
90
			// 含义解释:允许任何角色【读取】
91
			const readA = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
92 93 94
				"type": "read",
				"index": 0
			})
A
Anne_LXM 已提交
95
			console.log('readA: ',readA);
A
Anne_LXM 已提交
96
			expect(readA.result.data.length).toBeGreaterThanOrEqual(1)
A
Anne_LXM 已提交
97 98
			
			// 禁止任何角色读取
99
			const readB = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
100 101 102
				"type": "read",
				"index": 1
			})
103 104 105 106
			expect(readB.errMsg).toBe(errMsgB)
			
			// 需登录后读取
			const readC = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
107 108 109
				"type": "read",
				"index": 2
			})
110
			expect(readC.errMsg).toBe(errMsgB)
A
Anne_LXM 已提交
111
			
112 113
			// 只能读取自己创建的数据,先创建数据
			const readD = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
114 115 116
				"type": "create",
				"index": 3
			})
117 118 119 120
			expect(readD.errMsg).toBe(errMsgC)
			
			// 只能读取自己创建的数据
			const readE = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
121 122 123 124
				"type": "read",
				"index": 3,
				"where": "uid == $env.uid"
			})
125
			expect(readE.errMsg).toBe(errMsgC)
study夏羽's avatar
study夏羽 已提交
126

127 128
			// 读取全表数据
			const readF = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
129 130 131
				"type": "read",
				"index": 3
			})
A
Anne_LXM 已提交
132 133
			// console.log('readF: ',readF);
			// expect(readF.errMsg).toBe(errMsgB)
134 135 136 137
			
			
			// 只能读取1分钟内创建的数据,先创建数据
			const readG = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
138 139 140
				"type": "create",
				"index": 4
			})
141 142 143 144
			expect(readG.errMsg).toBe(errMsgC)
			
			// 只能读取1分钟内创建的数据
			const readH = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
145 146 147
				"type": "read",
				"index": 4,
				"where": "create_time > 1613541303576"
148
				})
A
Anne_LXM 已提交
149
			// console.log('readH: ',readH);
150 151 152 153
			
			
			// 读取全表数据
			const readI =await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
154 155 156
				"type": "read",
				"index": 4
			})
A
Anne_LXM 已提交
157
			// console.log('readI: ',readI);
158 159
			// expect(readI.errCode).toBe(0)
			
A
Anne_LXM 已提交
160
			// 限审核员读取
161
			const readJ = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
162 163 164
				"type": "create",
				"index": 5
			})
165
			expect(readJ.errMsg).toBe(errMsgC)
study夏羽's avatar
study夏羽 已提交
166

167 168
			// 请求同时必须同时附带执行一个action云函数,如未触发该action则权限验证失败 读取全表数据
			const readK = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
169 170 171
				"type": "create",
				"index": 6
			})
172 173 174
			expect(readK.errMsg).toBe(errMsgB)
			
			// 执行一个action云函数
A
Anne_LXM 已提交
175
			const actionRead = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
176 177 178 179
				"type": "read",
				"index": 6,
				"action": "add_view_count"
			})
A
Anne_LXM 已提交
180 181
			console.log('actionRead:--- ',actionRead);
			// expect(actionRead.result.data.length).toBeGreaterThanOrEqual(1)
study夏羽's avatar
study夏羽 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
		}

	})

	it('更新--未登陆', async () => {
		await segItems[2].tap()
		await roles[0].tap()

		const updateUnlogin = await page.waitFor(async () => {
			const updateUnloginIndex = await page.data('typeIndex')
			const updateUnloginRole = await page.data('currentRole')
			return updateUnloginIndex === 2 && updateUnloginRole === 0
		})
		//console.log(updateUnlogin, '更新--未登陆');

		if (updateUnlogin) {
198 199
			// 允许任何角色更新此表
			const updateA = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
200 201 202
				"type": "update",
				"index": 0
			})
A
Anne_LXM 已提交
203 204
			console.log('updateA:--- ',updateA);
			// expect(updateA.result.updated).toBeGreaterThanOrEqual(1)
205 206 207
			
			// 禁止任何角色更新,管理员除外
			const updateB = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
208 209 210
				"type": "update",
				"index": 1
			})
211 212 213 214
			expect(updateB.errMsg).toBe(errMsgB)
			
			// 需要登录后
			const updateC = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
215 216 217
				"type": "update",
				"index": 2
			})
218 219 220 221
			expect(updateC.errMsg).toBe(errMsgB)
			
			// 只能更新自己创建的数据,先创建数据
			const updateD = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
222 223 224
				"type": "create",
				"index": 3
			})
225 226 227 228
			expect(updateD.errMsg).toBe(errMsgC)
			
			// 只能更新自己创建的数据
			const updateE = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
229 230 231 232
				"type": "update",
				"index": 3,
				"where": "uid == $env.uid"
			})
233
			expect(updateE.errMsg).toBe(errMsgC)
study夏羽's avatar
study夏羽 已提交
234

235 236
			//更新全表数据表
			const updateF = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
237 238 239
				"type": "update",
				"index": 3
			})
A
Anne_LXM 已提交
240
			console.log('updateF:--- ',updateF);
A
Anne_LXM 已提交
241
			// expect(updateF.result.updated).toBe(0)
study夏羽's avatar
study夏羽 已提交
242

243 244
			// 只更新1分钟内创建的数据,先创建数据
			const updateG = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
245 246 247
				"type": "create",
				"index": 4
			})
248
			expect(updateG.errMsg).toBe(errMsgC)
study夏羽's avatar
study夏羽 已提交
249

250 251
			// 只更新1分钟内创建的数据
			const updateH = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
252 253 254 255
				"type": "update",
				"index": 4,
				"where": "create_time > 1613546251521"
			})
A
Anne_LXM 已提交
256
			// console.log('updateH:------------------ ',updateH);
A
Anne_LXM 已提交
257
			// expect(updateH.result.updated).toBe(0)
258 259 260
			
			// 更新全表数据
			const updateI = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
261 262 263
				"type": "update",
				"index": 4
			})
A
Anne_LXM 已提交
264
			expect(updateI.result.updated).toBe(0)
study夏羽's avatar
study夏羽 已提交
265

266 267
			//限审核员更新全表数据
			const updateJ = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
268 269 270
				"type": "update",
				"index": 5
			})
271 272 273 274
			expect(updateJ.errMsg).toBe(errMsgB)
			
			// 更新全表 请求同时必须同时附带执行一个action云函数
			const updateK = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
275 276 277
				"type": "update",
				"index": 6
			})
278
			expect(updateK.errMsg).toBe(errMsgB)
study夏羽's avatar
study夏羽 已提交
279

280 281
			// 执行一个action云函数
			const updateAction = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
282 283 284 285
				"type": "update",
				"index": 6,
				"action": "add_view_count"
			})
A
Anne_LXM 已提交
286 287
			console.log('updateAction:--- ',updateAction);
			// expect(updateAction.result.updated).toBeGreaterThanOrEqual(1)
study夏羽's avatar
study夏羽 已提交
288 289 290 291 292 293 294 295 296 297 298 299 300
		}

	})

	it('删除--未登陆', async () => {
		await segItems[3].tap()
		await roles[0].tap()

		const deleteUnlogin = await page.waitFor(async () => {
			const deleteUnloginIndex = await page.data('typeIndex')
			const deleteUnloginRole = await page.data('currentRole')
			return deleteUnloginIndex === 3 && deleteUnloginRole === 0
		})
301
		console.log(deleteUnlogin, '删除--未登陆');
study夏羽's avatar
study夏羽 已提交
302

303 304
		// 允许任何角色删除全表
		const deleteA = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
305 306 307
			"type": "delete",
			"index": 0
		})
A
Anne_LXM 已提交
308 309
		console.log("deleteA---",deleteA);
		// expect(deleteA.result.deleted).toBeGreaterThanOrEqual(1)
310 311 312
		
		// 禁止任何角色删除,管理员除外
		const deleteB = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
313 314 315
			"type": "delete",
			"index": 1
		})
316 317 318 319
		expect(deleteB.errMsg).toBe(errMsgB)
		
		// 需登录后可删除
		const deleteC = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
320 321 322
			"type": "delete",
			"index": 2
		})
323 324 325 326
		expect(deleteC.errMsg).toBe(errMsgB)
		
		// 只能删除自己创建的数据,先创建数据
		const deleteD = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
327 328 329
			"type": "create",
			"index": 3
		})
330 331 332 333
		expect(deleteD.errMsg).toBe(errMsgC)
		
		// 只能删除自己创建的数据
		const deleteE = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
334 335 336 337
			"type": "delete",
			"index": 3,
			"where": "uid == $env.uid"
		})
338
		expect(deleteE.errMsg).toBe(errMsgC)
study夏羽's avatar
study夏羽 已提交
339

340 341
		// 删除全表数据
		const deleteF = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
342 343 344
			"type": "delete",
			"index": 3
		})
A
Anne_LXM 已提交
345
		console.log('deleteF: ---',deleteF);
A
Anne_LXM 已提交
346
		// expect(deleteF.result.deleted).toBe(0)
study夏羽's avatar
study夏羽 已提交
347

348 349 350
		// 只更新1分钟内创建的数据,先创建数据
		const deleteG = await page.callMethod('myFn', {
			"type": "create",
study夏羽's avatar
study夏羽 已提交
351 352
			"index": 4
		})
353
		expect(deleteG.errMsg).toBe(errMsgC)
A
Anne_LXM 已提交
354
		
355
		// 只更新1分钟内创建的数据
A
Anne_LXM 已提交
356 357 358 359 360
		await page.callMethod('myFn', {
			"type": "delete",
			"index": 4,
			"where": "create_time > 1613546644107"
		})
361 362
		
		// 删除全表数据
A
Anne_LXM 已提交
363 364 365 366
		await page.callMethod('myFn', {
			"type": "delete",
			"index": 4
		})
study夏羽's avatar
study夏羽 已提交
367

368 369
		// 删除全表 仅审核员
		const deleteH = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
370 371 372
			"type": "delete",
			"index": 5
		})
373 374 375 376
		expect(deleteH.errMsg).toBe(errMsgB)
		
		// 更新全表 请求同时必须同时附带执行一个action云函数
		const deleteI = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
377 378 379
			"type": "delete",
			"index": 6
		})
380
		expect(deleteI.errMsg).toBe(errMsgB)
study夏羽's avatar
study夏羽 已提交
381

382 383
		// 附带执行一个action云函数
		const deleteAction = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
384 385 386 387
			"type": "delete",
			"index": 6,
			"action": "add_view_count"
		})
A
Anne_LXM 已提交
388 389
		console.log('deleteAction: ---',deleteAction);
		// expect(deleteAction.result.deleted).toBeGreaterThanOrEqual(1)
study夏羽's avatar
study夏羽 已提交
390 391 392 393 394 395 396 397 398 399 400 401
	})

	it('创建--用户', async () => {
		await segItems[0].tap()
		await roles[1].tap()
		const createUser = await page.waitFor(async () => {
			const typeIndex = await page.data('typeIndex')
			const currentRole = await page.data('currentRole')
			return typeIndex === 0 && currentRole == 'user'
		})
		console.log(createUser, '创建--用户');

402 403
		// 任何角色可创建
		const createUserA = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
404 405 406
			"type": "create",
			"index": 0
		})
407 408 409 410
		expect(createUserA.result.id).toHaveLength(24)
		
		// 禁止任何角色创建,仅管理员
		const createUserB = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
411 412 413
			"type": "create",
			"index": 1
		})
414 415 416 417
		expect(createUserB.errMsg).toBe(errMsgA)
		
		// 已登录 可创建
		const createUserC = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
418 419 420
			"type": "create",
			"index": 2
		})
421
		expect(createUserC.result.id).toHaveLength(24)
study夏羽's avatar
study夏羽 已提交
422

423 424
		// 仅审核员可创建
		const createUserD = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
425 426 427
			"type": "create",
			"index": 5
		})
428
		expect(createUserD.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
429

430 431
		// 请求同时必须同时附带执行一个action云函数,如未触发该action则权限验证失败
		const createUserE = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
432 433 434
			"type": "create",
			"index": 6
		})
435 436 437 438
		expect(createUserE.errMsg).toBe(errMsgA)
		
		// 附带执行一个action云函数
		const createUserF = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
439 440 441 442
			"type": "create",
			"index": 6,
			"action": "add_view_count"
		})
443
		expect(createUserF.result.id).toHaveLength(24)
study夏羽's avatar
study夏羽 已提交
444 445 446 447 448 449 450 451 452 453 454 455

	})

	it('读取--用户', async () => {
		await segItems[1].tap()
		await roles[1].tap()

		const readUser = await page.waitFor(async () => {
			const readUserIndex = await page.data('typeIndex')
			const readUserRole = await page.data('currentRole')
			return readUserIndex === 1 && readUserRole == 'user'
		})
456
		console.log(readUser, '读取--用户');
study夏羽's avatar
study夏羽 已提交
457

458 459
		// 任何人可读取
		const readUserA = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
460 461 462
			"type": "read",
			"index": 0
		})
A
Anne_LXM 已提交
463 464
		// console.log('readUserA: ',readUserA);
		expect(readUserA.errCode).toBe(0)
A
Anne_LXM 已提交
465
		// expect(readUserA.result.data.length).toBeGreaterThan(0)
466 467 468
		
		// 仅管理员可读
		const readUserB = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
469 470 471
			"type": "read",
			"index": 1
		})
472 473 474 475
		expect(readUserB.errMsg).toBe(errMsgA)
		
		// 登录后可读取
		const readUserC = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
476 477 478
			"type": "read",
			"index": 2
		})
A
Anne_LXM 已提交
479 480
		// console.log('readUserC: ',readUserC);
		// expect(readUserA.errCode).toBe(0)
481 482 483 484
		expect(readUserC.result.data.length).toBeGreaterThan(0)
		
		// 只能读取自己创建的数据,先创建数据
		const readUserD = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
485 486 487
			"type": "create",
			"index": 3
		})
488 489 490 491
		expect(readUserD.result.id).toHaveLength(24)
		
		// 只能读取自己创建的数据
		const readUserE = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
492 493 494 495
			"type": "read",
			"index": 3,
			"where": "uid == $env.uid"
		})
A
Anne_LXM 已提交
496
		// console.log('readUserE: ',readUserE);
497 498 499 500
		expect(readUserE.result.data.length).toBeGreaterThan(0)
		
		// 读取全表数据
		const readUserF = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
501 502 503
			"type": "read",
			"index": 3
		})
A
Anne_LXM 已提交
504
		// console.log('readUserF: --------------',readUserF);
505 506 507 508
		expect(readUserF.result.data.length).toBeGreaterThan(0)
		
		// 只读取1分钟内创建的数据,先创建数据
		const readUserG = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
509 510 511
			"type": "create",
			"index": 4
		})
512 513 514 515
		expect(readUserG.result.id).toHaveLength(24)
		
		// 只读取1分钟内创建的数据
		const readUserH = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
516 517 518 519
			"type": "read",
			"index": 4,
			"where": "create_time > 1613541303576"
		})
A
Anne_LXM 已提交
520
		// console.log('readUserH: ',readUserH);
521 522 523 524
		expect(readUserH.result.data.length).toBeGreaterThan(0)
		
		// 读取全表数据
		const readUserI = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
525 526 527
			"type": "read",
			"index": 4
		})
A
Anne_LXM 已提交
528
		// console.log('readUserI: ',readUserI);
529 530 531 532
		expect(readUserI.result.data.length).toBeGreaterThanOrEqual(1)
		
		// 仅审核员读取全表数据
		const readUserJ = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
533 534 535
			"type": "read",
			"index": 5
		})
536
		expect(readUserJ.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
537

538 539
		// 请求同时必须同时附带执行一个action云函数,如未触发该action则权限验证失败
		const readUserK = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
540 541 542
			"type": "read",
			"index": 6
		})
543 544 545 546
		expect(readUserK.errMsg).toBe(errMsgA)
		
		// 执行一个action云函数
		const readUserO = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
547 548 549 550
			"type": "read",
			"index": 6,
			"action": "add_view_count"
		})
A
Anne_LXM 已提交
551
		// console.log('readUserO: ',readUserO);
A
Anne_LXM 已提交
552
		// expect(readUserO.result.data.length).toBeGreaterThan(0)
A
Anne_LXM 已提交
553
		expect(readUserO.errCode).toBe(0)
study夏羽's avatar
study夏羽 已提交
554 555

	})
A
Anne_LXM 已提交
556
	
study夏羽's avatar
study夏羽 已提交
557 558 559 560 561 562 563 564 565 566 567
	it('更新--用户', async () => {
		await segItems[2].tap()
		await roles[1].tap()

		const updateUser = await page.waitFor(async () => {
			const updateUserIndex = await page.data('typeIndex')
			const updateUserRole = await page.data('currentRole')
			return updateUserIndex === 2 && updateUserRole == 'user'
		})
		console.log(updateUser, '更新--用户');

568 569
		// 允许任何人更新
		const updateUserA = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
570 571 572
			"type": "update",
			"index": 0
		})
573 574 575 576
		expect(updateUserA.result.updated).toBeGreaterThanOrEqual(1)
		
		// 禁止任何人更新 除管理员
		const updateUserB = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
577 578 579
			"type": "update",
			"index": 1
		})
580 581 582 583
		expect(updateUserB.errMsg).toBe(errMsgA)
		
		// 需要登录后更新
		const updateUserC = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
584 585 586
			"type": "update",
			"index": 2
		})
A
Anne_LXM 已提交
587
		expect(updateUserC.result.updated).toBeGreaterThanOrEqual(1)
588 589 590
		
		// 仅更新自己创建的数据 先创建数据
		const updateUserD = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
591 592 593
			"type": "create",
			"index": 3
		})
594
		expect(updateUserD.result.id).toHaveLength(24)
study夏羽's avatar
study夏羽 已提交
595

596 597
		// 仅更新自己创建的数据 
		const updateUserE = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
598 599 600 601
			"type": "update",
			"index": 3,
			"where": "uid == $env.uid"
		})
602 603 604 605
		expect(updateUserE.result.updated).toBeGreaterThanOrEqual(1)
		
		// 更新全部数据
		const updateUserF = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
606 607 608
			"type": "update",
			"index": 3
		})
A
Anne_LXM 已提交
609 610
		// console.log('updateUserF: ------------------',updateUserF);
		expect(updateUserF.result.updated).toBeGreaterThanOrEqual(1)
611 612 613
		
		// 只更新1分钟内创建的数据 先创建数据
		const updateUserG = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
614 615 616
			"type": "create",
			"index": 4
		})
617
		expect(updateUserG.result.id).toHaveLength(24)
study夏羽's avatar
study夏羽 已提交
618

619 620
		// 只更新1分钟内创建的数据
		const updateUserH = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
621 622 623 624
			"type": "update",
			"index": 4,
			"where": "create_time > 1613546251521"
		})
625 626 627 628
		expect(updateUserH.result.updated).toBeGreaterThanOrEqual(1)
		
		// 更新全部数据
		const updateUserI = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
629 630 631
			"type": "update",
			"index": 4
		})
632 633 634 635
		expect(updateUserI.result.updated).toBeGreaterThanOrEqual(1)
		
		// 限审核员更新数据
		const updateUserJ = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
636 637 638
			"type": "update",
			"index": 5
		})
639 640 641 642
		expect(updateUserJ.errMsg).toBe(errMsgA)
		
		// 请求同时必须同时附带执行一个action云函数,如未触发该action则权限验证失败
		const updateUserK = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
643 644 645
			"type": "update",
			"index": 6
		})
646
		expect(updateUserK.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
647

648 649
		// 请求同时必须同时附带执行一个action云函数
		const updateUserAction = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
650 651 652 653
			"type": "update",
			"index": 6,
			"action": "add_view_count"
		})
A
Anne_LXM 已提交
654 655
		// console.log('updateUserAction: ',updateUserAction);
		expect(updateUserAction.result.updated).toBeGreaterThanOrEqual(1)
study夏羽's avatar
study夏羽 已提交
656 657 658 659 660 661 662 663 664 665 666
	})

	it('删除--用户', async () => {
		await segItems[3].tap()
		await roles[1].tap()

		const deleteUser = await page.waitFor(async () => {
			const deleteUserIndex = await page.data('typeIndex')
			const deleteUserRole = await page.data('currentRole')
			return deleteUserIndex === 3 && deleteUserRole == 'user'
		})
667
		console.log(deleteUser, '删除--用户');
study夏羽's avatar
study夏羽 已提交
668 669 670 671 672 673 674 675 676 677

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 0
		})

		const deleteUserA = await page.callMethod('myFn', {
			"type": "delete",
			"index": 1
		})
A
Anne_LXM 已提交
678
		expect(deleteUserA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 3,
			"where": "uid == $env.uid"
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 4,
			"where": "create_time > 1613547725091"
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 4
		})

		const deleteUserB = await page.callMethod('myFn', {
			"type": "delete",
			"index": 5
		})
A
Anne_LXM 已提交
721
		expect(deleteUserB.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
722 723 724 725 726

		const deleteUserC = await page.callMethod('myFn', {
			"type": "delete",
			"index": 6
		})
A
Anne_LXM 已提交
727
		expect(deleteUserC.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 6,
			"action": "add_view_count"
		})

	})

	it('创建--审核员Auditor', async () => {
		await segItems[0].tap()
		await roles[2].tap()

		const createAuditor = await page.waitFor(async () => {
			const createAuditorIndex = await page.data('typeIndex')
			const createAuditorRole = await page.data('currentRole')
			return createAuditorIndex === 0 && createAuditorRole == 'auditor'
		})
		//console.log(createAuditor, '创建--审核员');
		await page.callMethod('myFn', {
			"type": "create",
			"index": 0
		})

		const createAuditorA = await page.callMethod('myFn', {
			"type": "create",
			"index": 1
		})
A
Anne_LXM 已提交
756
		expect(createAuditorA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802

		await page.callMethod('myFn', {
			"type": "create",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 5
		})

		const createAuditorB = await page.callMethod('myFn', {
			"type": "create",
			"index": 6
		})
		// expect(createAuditorB.id).toBeTruthy()
		// expect(createAuditorB).toBe('[permission-test-7.create]权限校验未通过')

		await page.callMethod('myFn', {
			"type": "create",
			"index": 6,
			"action": "add_view_count"
		})

	})

	it('读取--审核员', async () => {
		await segItems[1].tap()
		await roles[2].tap()

		const readAuditor = await page.waitFor(async () => {
			const readAuditorIndex = await page.data('typeIndex')
			const readAuditorRole = await page.data('currentRole')
			return readAuditorIndex === 1 && readAuditorRole == 'auditor'
		})
		console.log(readAuditor, '读取--审核员');

		await page.callMethod('myFn', {
			"type": "read",
			"index": 0
		})

		const readAuditorA = await page.callMethod('myFn', {
			"type": "read",
			"index": 1
		})
A
Anne_LXM 已提交
803
		expect(readAuditorA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853

		await page.callMethod('myFn', {
			"type": "read",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 3,
			"where": "uid == $env.uid"
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 4,
			"where": "create_time > 1613541303576"
		})


		await page.callMethod('myFn', {
			"type": "read",
			"index": 4
		})


		await page.callMethod('myFn', {
			"type": "read",
			"index": 5
		})


		const readAuditorB = await page.callMethod('myFn', {
			"type": "read",
			"index": 6
		})
A
Anne_LXM 已提交
854
		expect(readAuditorB.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882

		await page.callMethod('myFn', {
			"type": "read",
			"index": 6,
			"action": "add_view_count"
		})
	})

	it('更新--审核员', async () => {
		await segItems[2].tap()
		await roles[2].tap()

		const updateAuditor = await page.waitFor(async () => {
			const updateAuditorIndex = await page.data('typeIndex')
			const updateAuditorRole = await page.data('currentRole')
			return updateAuditorIndex === 2 && updateAuditorRole == 'auditor'
		})
		console.log(updateAuditor, '更新--审核员');

		await page.callMethod('myFn', {
			"type": "update",
			"index": 0
		})

		const updateAuditorA = await page.callMethod('myFn', {
			"type": "update",
			"index": 1
		})
A
Anne_LXM 已提交
883
		expect(updateAuditorA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931

		await page.callMethod('myFn', {
			"type": "update",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 3,
			"where": "uid == $env.uid"
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 3
		})


		await page.callMethod('myFn', {
			"type": "create",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 4,
			"where": "create_time > 1613546251521"
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 5
		})

		const updateAuditorB = await page.callMethod('myFn', {
			"type": "update",
			"index": 6
		})
A
Anne_LXM 已提交
932
		expect(updateAuditorB.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960

		await page.callMethod('myFn', {
			"type": "update",
			"index": 6,
			"action": "add_view_count"
		})
	})

	it('删除--审核员', async () => {
		await segItems[3].tap()
		await roles[2].tap()

		const deleteAuditor = await page.waitFor(async () => {
			const deleteAuditorIndex = await page.data('typeIndex')
			const deleteAuditorRole = await page.data('currentRole')
			return deleteAuditorIndex === 3 && deleteAuditorRole == 'auditor'
		})
		//console.log(deleteAuditor, '删除--审核员');

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 0
		})

		const deleteAuditorA = await page.callMethod('myFn', {
			"type": "delete",
			"index": 1
		})
A
Anne_LXM 已提交
961
		expect(deleteAuditorA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 3,
			"where": "uid == $env.uid"
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 4,
			"where": "create_time > 1613547725091"
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 5
		})

		const deleteAuditorB = await page.callMethod('myFn', {
			"type": "delete",
			"index": 6
		})
A
Anne_LXM 已提交
1009
		expect(deleteAuditorB.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 6,
			"action": "add_view_count"
		})

	})

	it('创建--管理员admin', async () => {
		await segItems[0].tap()
		await roles[3].tap()

		const createAdmin = await page.waitFor(async () => {
			const createAdminIndex = await page.data('typeIndex')
			const createAdminRole = await page.data('currentRole')
			return createAdminIndex === 0 && createAdminRole == 'admin'
		})
		console.log(createAdmin, '创建--管理员');

		await page.callMethod('myFn', {
			"type": "create",
			"index": 0
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 1
		})


		await page.callMethod('myFn', {
			"type": "create",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 5
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 6
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 6,
			"action": "add_view_count"
		})

	})

	it('读取--管理员', async () => {
		await segItems[1].tap()
		await roles[3].tap()
		const readAdmin = await page.waitFor(async () => {
			const readAdminIndex = await page.data('typeIndex')
			const readAdminRole = await page.data('currentRole')
			return readAdminIndex === 1 && readAdminRole == 'admin'
		})
		//console.log(readAdmin, '读取--管理员');
		await page.callMethod('myFn', {
			"type": "read",
			"index": 0
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 1
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 3,
			"where": "uid == $env.uid"
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 4,
			"where": "create_time > 1613541303576"
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 5
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 6
		})

		await page.callMethod('myFn', {
			"type": "read",
			"index": 6,
			"action": "add_view_count"
		})
	})

	it('更新--管理员', async () => {
		await segItems[2].tap()
		await roles[3].tap()

		const updateAdmin = await page.waitFor(async () => {
			const updateAdminIndex = await page.data('typeIndex')
			const updateAdminRole = await page.data('currentRole')
			return updateAdminIndex === 2 && updateAdminRole == 'admin'
		})
		//console.log(updateAdmin, '更新--管理员');

		await page.callMethod('myFn', {
			"type": "update",
			"index": 0
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 1
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 3,
			"where": "uid == $env.uid"
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 3
		})


		await page.callMethod('myFn', {
			"type": "create",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 4,
			"where": "create_time > 1613546251521"
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 5
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 6
		})

		await page.callMethod('myFn', {
			"type": "update",
			"index": 6,
			"action": "add_view_count"
		})
	})

	it('删除--管理员', async () => {
		await segItems[3].tap()
		await roles[3].tap()

		const deleteAdmin = await page.waitFor(async () => {
			const deleteAdminIndex = await page.data('typeIndex')
			const deleteAdminRole = await page.data('currentRole')
			return deleteAdminIndex === 3 && deleteAdminRole === 'admin'
		})
		//console.log(deleteAdmin, '删除--管理员');
		await page.callMethod('myFn', {
			"type": "delete",
			"index": 0
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 1
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 2
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 3,
			"where": "create_time > 1613572491536"
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 3
		})

		await page.callMethod('myFn', {
			"type": "create",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 4,
			"where": "create_time > 1613547725091"
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 4
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 5
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 6
		})

		await page.callMethod('myFn', {
			"type": "delete",
			"index": 6,
			"action": "add_view_count"
		})

	})

})