| 
									
										
										
										
											2020-10-27 11:27:17 +01:00
										 |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:46 +02:00
										 |  |  | const { createTestBuilder } = require('../../../../../test/helpers/builder'); | 
					
						
							|  |  |  | const { createStrapiInstance } = require('../../../../../test/helpers/strapi'); | 
					
						
							|  |  |  | const { createAuthRequest } = require('../../../../../test/helpers/request'); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-17 15:38:41 +01:00
										 |  |  | const builder = createTestBuilder(); | 
					
						
							|  |  |  | let strapi; | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | let rq; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-17 15:38:41 +01:00
										 |  |  | const ct = { | 
					
						
							|  |  |  |   name: 'withdatetime', | 
					
						
							|  |  |  |   attributes: { | 
					
						
							|  |  |  |     field: { | 
					
						
							|  |  |  |       type: 'datetime', | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-17 15:38:41 +01:00
										 |  |  | describe('Test type datetime', () => { | 
					
						
							|  |  |  |   beforeAll(async () => { | 
					
						
							|  |  |  |     await builder.addContentType(ct).build(); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01: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
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01: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
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |   test('Create entry with valid value JSON', async () => { | 
					
						
							| 
									
										
										
										
											2020-11-02 12:40:35 +01:00
										 |  |  |     const res = await rq.post( | 
					
						
							|  |  |  |       '/content-manager/collection-types/application::withdatetime.withdatetime', | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         body: { | 
					
						
							|  |  |  |           field: '2019-08-08T10:10:57.000Z', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							|  |  |  |     expect(res.body).toMatchObject({ | 
					
						
							|  |  |  |       field: '2019-08-08T10:10:57.000Z', | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Create entry with timestamp value should be converted to ISO', async () => { | 
					
						
							|  |  |  |     const now = new Date(2016, 4, 8); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 12:40:35 +01:00
										 |  |  |     const res = await rq.post( | 
					
						
							|  |  |  |       '/content-manager/collection-types/application::withdatetime.withdatetime', | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         body: { | 
					
						
							|  |  |  |           field: now.getTime(), | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							|  |  |  |     expect(res.body).toMatchObject({ | 
					
						
							|  |  |  |       field: now.toISOString(), | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Accepts string timestamp', async () => { | 
					
						
							|  |  |  |     const now = new Date(2000, 0, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 12:40:35 +01:00
										 |  |  |     const res = await rq.post( | 
					
						
							|  |  |  |       '/content-manager/collection-types/application::withdatetime.withdatetime', | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         body: { | 
					
						
							|  |  |  |           field: `${now.getTime()}`, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							|  |  |  |     expect(res.body).toMatchObject({ | 
					
						
							|  |  |  |       field: now.toISOString(), | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Throws on invalid date format', async () => { | 
					
						
							| 
									
										
										
										
											2020-11-02 12:40:35 +01:00
										 |  |  |     const res = await rq.post( | 
					
						
							|  |  |  |       '/content-manager/collection-types/application::withdatetime.withdatetime', | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         body: { | 
					
						
							|  |  |  |           field: 'azdazindoaizdnoainzd', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(400); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Reading entry, returns correct value', async () => { | 
					
						
							| 
									
										
										
										
											2020-11-02 12:40:35 +01:00
										 |  |  |     const res = await rq.get( | 
					
						
							|  |  |  |       '/content-manager/collection-types/application::withdatetime.withdatetime' | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(res.statusCode).toBe(200); | 
					
						
							| 
									
										
										
										
											2020-11-03 13:42:01 +01:00
										 |  |  |     expect(res.body.pagination).toBeDefined(); | 
					
						
							|  |  |  |     expect(Array.isArray(res.body.results)).toBe(true); | 
					
						
							|  |  |  |     res.body.results.forEach(entry => { | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  |       expect(new Date(entry.field).toISOString()).toBe(entry.field); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test('Updating entry sets the right value and format JSON', async () => { | 
					
						
							|  |  |  |     const now = new Date(2018, 7, 5); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 12:40:35 +01:00
										 |  |  |     const res = await rq.post( | 
					
						
							|  |  |  |       '/content-manager/collection-types/application::withdatetime.withdatetime', | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         body: { | 
					
						
							|  |  |  |           field: now.getTime(), | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const newDate = new Date(2017, 10, 23); | 
					
						
							|  |  |  |     const updateRes = await rq.put( | 
					
						
							| 
									
										
										
										
											2020-11-02 12:40:35 +01:00
										 |  |  |       `/content-manager/collection-types/application::withdatetime.withdatetime/${res.body.id}`, | 
					
						
							| 
									
										
										
										
											2019-12-04 18:49:47 +01:00
										 |  |  |       { | 
					
						
							|  |  |  |         body: { | 
					
						
							|  |  |  |           field: newDate, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(updateRes.statusCode).toBe(200); | 
					
						
							|  |  |  |     expect(updateRes.body).toMatchObject({ | 
					
						
							|  |  |  |       id: res.body.id, | 
					
						
							|  |  |  |       field: newDate.toISOString(), | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }); |