permission-table-simple.test.js 30.3 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 12 13
		
		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 已提交
14 15 16 17 18
		perPage = await page.$('.page')
		//头部操作控制条
		segItems = await perPage.$$('.segmented-control__item')
		//底部角色控制条
		roles = await perPage.$$('.roles-item')
A
Anne_LXM 已提交
19
	})
study夏羽's avatar
study夏羽 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34


	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 已提交
35
			// 允许任何角色创建本表
36
			const createA = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
37 38 39
				"type": "create",
				"index": 0
			})
A
Anne_LXM 已提交
40
			console.log('createA: ',createA);
A
Anne_LXM 已提交
41
			expect(createA.result.id).toHaveLength(24)
A
Anne_LXM 已提交
42
			
43 44
			// 禁止任何角色创建,管理员除外
			const createB = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
45 46 47
				"type": "create",
				"index": 1
			})
A
Anne_LXM 已提交
48
			console.log('createB: ',createB);
49 50 51 52
			expect(createB.errMsg).toBe(errMsgC)
			
			// 需要登录后
			const createC = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
53 54 55
				"type": "create",
				"index": 2
			})
56 57 58 59
			expect(createC.errMsg).toBe(errMsgC)
			
			// 限审核员角色创建
			const createD = await page.callMethod('myFn', {
study夏羽's avatar
study夏羽 已提交
60 61 62
				"type": "create",
				"index": 5
			})
63
			expect(createD.errMsg).toBe(errMsgC)
study夏羽's avatar
study夏羽 已提交
64

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

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

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

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

	})

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

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

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

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

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

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

	})

	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
		})
304
		console.log(deleteUnlogin, '删除--未登陆');
study夏羽's avatar
study夏羽 已提交
305

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

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

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

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

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

	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, '创建--用户');

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

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

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

	})

	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'
		})
459
		console.log(readUser, '读取--用户');
study夏羽's avatar
study夏羽 已提交
460

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

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

	})
A
Anne_LXM 已提交
559
	
study夏羽's avatar
study夏羽 已提交
560 561 562 563 564 565 566 567 568 569 570
	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, '更新--用户');

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

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

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

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

	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'
		})
670
		console.log(deleteUser, '删除--用户');
study夏羽's avatar
study夏羽 已提交
671 672 673 674 675 676 677 678 679 680

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

		const deleteUserA = await page.callMethod('myFn', {
			"type": "delete",
			"index": 1
		})
A
Anne_LXM 已提交
681
		expect(deleteUserA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 721 722 723

		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 已提交
724
		expect(deleteUserB.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
725 726 727 728 729

		const deleteUserC = await page.callMethod('myFn', {
			"type": "delete",
			"index": 6
		})
A
Anne_LXM 已提交
730
		expect(deleteUserC.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 756 757 758

		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 已提交
759
		expect(createAuditorA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 803 804 805

		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 已提交
806
		expect(readAuditorA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 854 855 856

		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 已提交
857
		expect(readAuditorB.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 883 884 885

		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 已提交
886
		expect(updateAuditorA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 932 933 934

		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 已提交
935
		expect(updateAuditorB.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 961 962 963

		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 已提交
964
		expect(deleteAuditorA.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 1009 1010 1011

		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 已提交
1012
		expect(deleteAuditorB.errMsg).toBe(errMsgA)
study夏羽's avatar
study夏羽 已提交
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 1289 1290 1291

		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"
		})

	})

})