ref #5
This commit is contained in:
		
							
								
								
									
										75
									
								
								src/tests/selfservice_forgot_mail.spec.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										75
									
								
								src/tests/selfservice_forgot_mail.spec.ts
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,75 @@
 | 
				
			|||||||
 | 
					import axios from 'axios';
 | 
				
			||||||
 | 
					import { config } from '../config';
 | 
				
			||||||
 | 
					const base = "http://localhost:" + config.internal_port
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const axios_config = {
 | 
				
			||||||
 | 
						validateStatus: undefined
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					describe('POST /registration_forgot without auth', () => {
 | 
				
			||||||
 | 
						it('Post without auth should return 401', async () => {
 | 
				
			||||||
 | 
							const res = await axios.post(base + '/registration_forgot', null, axios_config);
 | 
				
			||||||
 | 
							expect(res.status).toEqual(401);
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					describe('POST /registration_forgot with auth but wrong body', () => {
 | 
				
			||||||
 | 
						it('Post with auth but no body should return 400', async () => {
 | 
				
			||||||
 | 
							const res = await axios.post(base + '/registration_forgot?key=' + config.api_key, null, axios_config);
 | 
				
			||||||
 | 
							expect(res.status).toEqual(400);
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
						it('Post with auth but no mail should return 400', async () => {
 | 
				
			||||||
 | 
							const res = await axios.post(base + '/registration_forgot?key=' + config.api_key, { selfserviceToken: "test" }, axios_config);
 | 
				
			||||||
 | 
							expect(res.status).toEqual(400);
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
						it('Post with auth but no reset key should return 400', async () => {
 | 
				
			||||||
 | 
							const res = await axios.post(base + '/registration_forgot?key=' + config.api_key, { address: "test@dev.lauf-fuer-kaya.de" }, axios_config);
 | 
				
			||||||
 | 
							expect(res.status).toEqual(400);
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
						it('Post with auth but invalid mail should return 400', async () => {
 | 
				
			||||||
 | 
							const res = await axios.post(base + '/registration_forgot?key=' + config.api_key, { selfserviceToken: "test", address: "testdev.l.de" }, axios_config);
 | 
				
			||||||
 | 
							expect(res.status).toEqual(400);
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					describe('POST /reset with auth and vaild body', () => {
 | 
				
			||||||
 | 
						it('Post with auth, body and no locale should return 200', async () => {
 | 
				
			||||||
 | 
							const res = await axios.post(base + '/registration_forgot?key=' + config.api_key, {
 | 
				
			||||||
 | 
								selfserviceToken: "test",
 | 
				
			||||||
 | 
								address: "test@dev.lauf-fuer-kaya.de"
 | 
				
			||||||
 | 
							}, axios_config);
 | 
				
			||||||
 | 
							expect(res.status).toEqual(200);
 | 
				
			||||||
 | 
							expect(res.data).toEqual({
 | 
				
			||||||
 | 
								success: true,
 | 
				
			||||||
 | 
								message: "Sent!",
 | 
				
			||||||
 | 
								locale: "en",
 | 
				
			||||||
 | 
								type: "RUNNER_FORGOT"
 | 
				
			||||||
 | 
							})
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
						it('Post with auth, body and locale=en should return 200', async () => {
 | 
				
			||||||
 | 
							const res = await axios.post(base + '/registration_forgot?locale=en&key=' + config.api_key, {
 | 
				
			||||||
 | 
								selfserviceToken: "test",
 | 
				
			||||||
 | 
								address: "test@dev.lauf-fuer-kaya.de"
 | 
				
			||||||
 | 
							}, axios_config);
 | 
				
			||||||
 | 
							expect(res.status).toEqual(200);
 | 
				
			||||||
 | 
							expect(res.data).toEqual({
 | 
				
			||||||
 | 
								success: true,
 | 
				
			||||||
 | 
								message: "Sent!",
 | 
				
			||||||
 | 
								locale: "en",
 | 
				
			||||||
 | 
								type: "RUNNER_FORGOT"
 | 
				
			||||||
 | 
							})
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
						it('Post with auth, body and locale=de should return 200', async () => {
 | 
				
			||||||
 | 
							const res = await axios.post(base + '/registration_forgot?locale=de&key=' + config.api_key, {
 | 
				
			||||||
 | 
								selfserviceToken: "test",
 | 
				
			||||||
 | 
								address: "test@dev.lauf-fuer-kaya.de"
 | 
				
			||||||
 | 
							}, axios_config);
 | 
				
			||||||
 | 
							expect(res.status).toEqual(200);
 | 
				
			||||||
 | 
							expect(res.data).toEqual({
 | 
				
			||||||
 | 
								success: true,
 | 
				
			||||||
 | 
								message: "Sent!",
 | 
				
			||||||
 | 
								locale: "de",
 | 
				
			||||||
 | 
								type: "RUNNER_FORGOT"
 | 
				
			||||||
 | 
							})
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
		Reference in New Issue
	
	Block a user