| 
									
										
										
										
											2020-10-27 11:27:17 +01:00
										 |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  | const _ = require('lodash'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-05 10:32:20 +02:00
										 |  |  | const { createTestBuilder } = require('api-tests/builder'); | 
					
						
							|  |  |  | const { createStrapiInstance } = require('api-tests/strapi'); | 
					
						
							|  |  |  | const { createAuthRequest } = require('api-tests/request'); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-17 15:38:41 +01:00
										 |  |  | const builder = createTestBuilder(); | 
					
						
							|  |  |  | let strapi; | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  | let rq; | 
					
						
							| 
									
										
										
										
											2022-08-08 15:50:34 +02:00
										 |  |  | const data = { | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |   productsWithDP: [], | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const productWithDP = { | 
					
						
							|  |  |  |   attributes: { | 
					
						
							|  |  |  |     name: { | 
					
						
							|  |  |  |       type: 'string', | 
					
						
							|  |  |  |       required: true, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |     description: { | 
					
						
							|  |  |  |       type: 'text', | 
					
						
							|  |  |  |       minLength: 3, | 
					
						
							|  |  |  |       maxLength: 30, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  |   draftAndPublish: true, | 
					
						
							| 
									
										
										
										
											2021-09-13 16:57:04 +02:00
										 |  |  |   displayName: 'product with DP', | 
					
						
							|  |  |  |   singularName: 'product-with-dp', | 
					
						
							|  |  |  |   pluralName: 'product-with-dps', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |   description: '', | 
					
						
							|  |  |  |   collectionName: '', | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const compo = { | 
					
						
							| 
									
										
										
										
											2021-11-02 18:27:49 +01:00
										 |  |  |   displayName: 'compo', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |   attributes: { | 
					
						
							|  |  |  |     name: { | 
					
						
							|  |  |  |       type: 'string', | 
					
						
							|  |  |  |       required: true, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |     description: { | 
					
						
							|  |  |  |       type: 'text', | 
					
						
							|  |  |  |       minLength: 4, | 
					
						
							|  |  |  |       maxLength: 30, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('CM API - Basic + draftAndPublish', () => { | 
					
						
							|  |  |  |   beforeAll(async () => { | 
					
						
							| 
									
										
										
										
											2022-08-08 23:33:39 +02:00
										 |  |  |     await builder.addComponent(compo).addContentType(productWithDP).build(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-30 20:20:36 +01:00
										 |  |  |     strapi = await createStrapiInstance(); | 
					
						
							| 
									
										
										
										
											2020-11-17 15:38:41 +01:00
										 |  |  |     rq = await createAuthRequest({ strapi }); | 
					
						
							| 
									
										
										
										
											2021-03-26 20:15:38 +01:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   afterAll(async () => { | 
					
						
							| 
									
										
										
										
											2020-11-17 15:38:41 +01:00
										 |  |  |     await strapi.destroy(); | 
					
						
							|  |  |  |     await builder.cleanup(); | 
					
						
							| 
									
										
										
										
											2021-03-26 20:15:38 +01:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   test('Create a product', async () => { | 
					
						
							|  |  |  |     const product = { | 
					
						
							|  |  |  |       name: 'Product 1', | 
					
						
							|  |  |  |       description: 'Product description', | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     const res = await rq({ | 
					
						
							|  |  |  |       method: 'POST', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: '/content-manager/collection-types/api::product-with-dp.product-with-dp', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       body: product, | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							|  |  |  |     expect(res.body).toMatchObject(product); | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |     expect(res.body.publishedAt).toBeNull(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     data.productsWithDP.push(res.body); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |   test('Create a product + cannot overwrite publishedAt', async () => { | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     const product = { | 
					
						
							|  |  |  |       name: 'Product 2', | 
					
						
							|  |  |  |       description: 'Product description', | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |       publishedAt: '2020-08-20T10:27:55.866Z', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     }; | 
					
						
							|  |  |  |     const res = await rq({ | 
					
						
							|  |  |  |       method: 'POST', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: '/content-manager/collection-types/api::product-with-dp.product-with-dp', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       body: product, | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |     expect(res.body).toMatchObject(_.omit(product, 'publishedAt')); | 
					
						
							|  |  |  |     expect(res.body.publishedAt).toBeNull(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     data.productsWithDP.push(res.body); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Read all products', async () => { | 
					
						
							|  |  |  |     const res = await rq({ | 
					
						
							|  |  |  |       method: 'GET', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: '/content-manager/collection-types/api::product-with-dp.product-with-dp', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							| 
									
										
										
										
											2020-11-03 13:42:01 +01:00
										 |  |  |     expect(Array.isArray(res.body.results)).toBe(true); | 
					
						
							|  |  |  |     expect(res.body.results).toHaveLength(2); | 
					
						
							|  |  |  |     expect(res.body.results).toEqual( | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       expect.arrayContaining([ | 
					
						
							|  |  |  |         expect.objectContaining({ | 
					
						
							|  |  |  |           name: 'Product 1', | 
					
						
							|  |  |  |           description: 'Product description', | 
					
						
							|  |  |  |         }), | 
					
						
							|  |  |  |       ]) | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2022-08-08 23:33:39 +02:00
										 |  |  |     res.body.results.forEach((p) => { | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |       expect(p.publishedAt).toBeNull(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Update a draft', async () => { | 
					
						
							|  |  |  |     const product = { | 
					
						
							|  |  |  |       name: 'Product 1 updated', | 
					
						
							|  |  |  |       description: 'Updated Product description', | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     const res = await rq({ | 
					
						
							|  |  |  |       method: 'PUT', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${data.productsWithDP[0].id}`, | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       body: product, | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |     expect(res.body).toMatchObject(_.omit(product, 'publishedAt')); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     expect(res.body.id).toEqual(data.productsWithDP[0].id); | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |     expect(res.body.publishedAt).toBeNull(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     data.productsWithDP[0] = res.body; | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |   test('Update product + cannot overwrite publishedAt', async () => { | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     const product = { | 
					
						
							|  |  |  |       name: 'Product 1 updated', | 
					
						
							|  |  |  |       description: 'Updated Product description', | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |       publishedAt: '2020-08-27T09:50:50.465Z', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     }; | 
					
						
							|  |  |  |     const res = await rq({ | 
					
						
							|  |  |  |       method: 'PUT', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${data.productsWithDP[0].id}`, | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       body: product, | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |     expect(res.body).toMatchObject(_.omit(product, ['publishedAt'])); | 
					
						
							|  |  |  |     expect(res.body.publishedAt).toBeNull(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     expect(res.body.id).toEqual(data.productsWithDP[0].id); | 
					
						
							|  |  |  |     data.productsWithDP[0] = res.body; | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |   test('Publish a product, expect publishedAt to be defined', async () => { | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     const entry = data.productsWithDP[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-08 15:50:34 +02:00
										 |  |  |     const { body } = await rq({ | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${entry.id}/actions/publish`, | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       method: 'POST', | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     data.productsWithDP[0] = body; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |     expect(body.publishedAt).toBeISODate(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Publish article1, expect article1 to be already published', async () => { | 
					
						
							|  |  |  |     const entry = data.productsWithDP[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-08 15:50:34 +02:00
										 |  |  |     const { body } = await rq({ | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${entry.id}/actions/publish`, | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       method: 'POST', | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-20 17:30:05 +02:00
										 |  |  |     expect(body).toMatchObject({ | 
					
						
							|  |  |  |       data: null, | 
					
						
							|  |  |  |       error: { | 
					
						
							|  |  |  |         status: 400, | 
					
						
							|  |  |  |         name: 'ApplicationError', | 
					
						
							|  |  |  |         message: 'already.published', | 
					
						
							|  |  |  |         details: {}, | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Unpublish article1, expect article1 to be set to null', async () => { | 
					
						
							|  |  |  |     const entry = data.productsWithDP[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-08 15:50:34 +02:00
										 |  |  |     const { body } = await rq({ | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${entry.id}/actions/unpublish`, | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       method: 'POST', | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     data.productsWithDP[0] = body; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |     expect(body.publishedAt).toBeNull(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Unpublish article1, expect article1 to already be a draft', async () => { | 
					
						
							|  |  |  |     const entry = data.productsWithDP[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-08 15:50:34 +02:00
										 |  |  |     const { body } = await rq({ | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${entry.id}/actions/unpublish`, | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |       method: 'POST', | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-20 17:30:05 +02:00
										 |  |  |     expect(body).toMatchObject({ | 
					
						
							|  |  |  |       data: null, | 
					
						
							|  |  |  |       error: { | 
					
						
							|  |  |  |         status: 400, | 
					
						
							|  |  |  |         name: 'ApplicationError', | 
					
						
							|  |  |  |         message: 'already.draft', | 
					
						
							|  |  |  |         details: {}, | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Delete a draft', async () => { | 
					
						
							|  |  |  |     const res = await rq({ | 
					
						
							|  |  |  |       method: 'DELETE', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |       url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${data.productsWithDP[0].id}`, | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							|  |  |  |     expect(res.body).toMatchObject(data.productsWithDP[0]); | 
					
						
							|  |  |  |     expect(res.body.id).toEqual(data.productsWithDP[0].id); | 
					
						
							| 
									
										
										
										
											2021-09-22 12:14:41 +02:00
										 |  |  |     expect(res.body.publishedAt).toBeNull(); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     data.productsWithDP.shift(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('validators', () => { | 
					
						
							|  |  |  |     test('Can create a product - minLength', async () => { | 
					
						
							|  |  |  |       const product = { | 
					
						
							|  |  |  |         name: 'Product 1', | 
					
						
							|  |  |  |         description: '', | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |       const res = await rq({ | 
					
						
							|  |  |  |         method: 'POST', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |         url: '/content-manager/collection-types/api::product-with-dp.product-with-dp', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |         body: product, | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(res.statusCode).toBe(200); | 
					
						
							|  |  |  |       expect(res.body).toMatchObject(product); | 
					
						
							|  |  |  |       data.productsWithDP.push(res.body); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     test('Can create a product - required', async () => { | 
					
						
							|  |  |  |       const product = { | 
					
						
							|  |  |  |         description: 'Product description', | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |       const res = await rq({ | 
					
						
							|  |  |  |         method: 'POST', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |         url: '/content-manager/collection-types/api::product-with-dp.product-with-dp', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |         body: product, | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(res.statusCode).toBe(200); | 
					
						
							|  |  |  |       expect(res.body).toMatchObject({ | 
					
						
							|  |  |  |         ...product, | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       expect(_.isNil(res.body.name)).toBe(true); | 
					
						
							|  |  |  |       data.productsWithDP.push(res.body); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     test('Cannot create a product - maxLength', async () => { | 
					
						
							|  |  |  |       const product = { | 
					
						
							|  |  |  |         name: 'Product 1', | 
					
						
							|  |  |  |         description: "I'm a product description that is very long. At least thirty characters.", | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |       const res = await rq({ | 
					
						
							|  |  |  |         method: 'POST', | 
					
						
							| 
									
										
										
										
											2021-08-06 18:09:49 +02:00
										 |  |  |         url: '/content-manager/collection-types/api::product-with-dp.product-with-dp', | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |         body: product, | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(res.statusCode).toBe(400); | 
					
						
							| 
									
										
										
										
											2021-10-20 17:30:05 +02:00
										 |  |  |       expect(res.body).toMatchObject({ | 
					
						
							|  |  |  |         data: null, | 
					
						
							|  |  |  |         error: { | 
					
						
							|  |  |  |           message: 'description must be at most 30 characters', | 
					
						
							|  |  |  |           name: 'ValidationError', | 
					
						
							|  |  |  |           details: { | 
					
						
							|  |  |  |             errors: [ | 
					
						
							|  |  |  |               { | 
					
						
							|  |  |  |                 path: ['description'], | 
					
						
							|  |  |  |                 message: 'description must be at most 30 characters', | 
					
						
							|  |  |  |                 name: 'ValidationError', | 
					
						
							|  |  |  |               }, | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |           }, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2020-09-22 12:31:26 +02:00
										 |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }); |