You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							146 lines
						
					
					
						
							4.2 KiB
						
					
					
				
			
		
		
	
	
							146 lines
						
					
					
						
							4.2 KiB
						
					
					
				| 'use strict'
 | |
| 
 | |
| const t = require('tap')
 | |
| const test = t.test
 | |
| const FindMyWay = require('../')
 | |
| 
 | |
| test('Test route with optional parameter', (t) => {
 | |
|   t.plan(2)
 | |
|   const findMyWay = FindMyWay({
 | |
|     defaultRoute: (req, res) => {
 | |
|       t.fail('Should not be defaultRoute')
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.on('GET', '/a/:param/b/:optional?', (req, res, params) => {
 | |
|     if (params.optional) {
 | |
|       t.equal(params.optional, 'foo')
 | |
|     } else {
 | |
|       t.equal(params.optional, undefined)
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.lookup({ method: 'GET', url: '/a/foo-bar/b', headers: {} }, null)
 | |
|   findMyWay.lookup({ method: 'GET', url: '/a/foo-bar/b/foo', headers: {} }, null)
 | |
| })
 | |
| 
 | |
| test('Test for duplicate route with optional param', (t) => {
 | |
|   t.plan(1)
 | |
|   const findMyWay = FindMyWay({
 | |
|     defaultRoute: (req, res) => {
 | |
|       t.fail('Should not be defaultRoute')
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.on('GET', '/foo/:bar?', (req, res, params) => {})
 | |
| 
 | |
|   try {
 | |
|     findMyWay.on('GET', '/foo', (req, res, params) => {})
 | |
|     t.fail('method is already declared for route with optional param')
 | |
|   } catch (e) {
 | |
|     t.equal(e.message, 'Method \'GET\' already declared for route \'/foo\' with constraints \'{}\'')
 | |
|   }
 | |
| })
 | |
| 
 | |
| test('Test for param with ? not at the end', (t) => {
 | |
|   t.plan(1)
 | |
|   const findMyWay = FindMyWay({
 | |
|     defaultRoute: (req, res) => {
 | |
|       t.fail('Should not be defaultRoute')
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   try {
 | |
|     findMyWay.on('GET', '/foo/:bar?/baz', (req, res, params) => {})
 | |
|     t.fail('Optional Param in the middle of the path is not allowed')
 | |
|   } catch (e) {
 | |
|     t.equal(e.message, 'Optional Parameter needs to be the last parameter of the path')
 | |
|   }
 | |
| })
 | |
| 
 | |
| test('Multi parametric route with optional param', (t) => {
 | |
|   t.plan(2)
 | |
|   const findMyWay = FindMyWay({
 | |
|     defaultRoute: (req, res) => {
 | |
|       t.fail('Should not be defaultRoute')
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.on('GET', '/a/:p1-:p2?', (req, res, params) => {
 | |
|     if (params.p1 && params.p2) {
 | |
|       t.equal(params.p1, 'foo')
 | |
|       t.equal(params.p2, 'bar-baz')
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.lookup({ method: 'GET', url: '/a/foo-bar-baz', headers: {} }, null)
 | |
|   findMyWay.lookup({ method: 'GET', url: '/a', headers: {} }, null)
 | |
| })
 | |
| 
 | |
| test('Optional Parameter with ignoreTrailingSlash = true', (t) => {
 | |
|   t.plan(4)
 | |
|   const findMyWay = FindMyWay({
 | |
|     ignoreTrailingSlash: true,
 | |
|     defaultRoute: (req, res) => {
 | |
|       t.fail('Should not be defaultRoute')
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.on('GET', '/test/hello/:optional?', (req, res, params) => {
 | |
|     if (params.optional) {
 | |
|       t.equal(params.optional, 'foo')
 | |
|     } else {
 | |
|       t.equal(params.optional, undefined)
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.lookup({ method: 'GET', url: '/test/hello/', headers: {} }, null)
 | |
|   findMyWay.lookup({ method: 'GET', url: '/test/hello', headers: {} }, null)
 | |
|   findMyWay.lookup({ method: 'GET', url: '/test/hello/foo', headers: {} }, null)
 | |
|   findMyWay.lookup({ method: 'GET', url: '/test/hello/foo/', headers: {} }, null)
 | |
| })
 | |
| 
 | |
| test('Optional Parameter with ignoreTrailingSlash = false', (t) => {
 | |
|   t.plan(4)
 | |
|   const findMyWay = FindMyWay({
 | |
|     ignoreTrailingSlash: false,
 | |
|     defaultRoute: (req, res) => {
 | |
|       t.match(req.url, '/test/hello/foo/')
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.on('GET', '/test/hello/:optional?', (req, res, params) => {
 | |
|     if (req.url === '/test/hello/') {
 | |
|       t.same(params, { optional: '' })
 | |
|     } else if (req.url === '/test/hello') {
 | |
|       t.same(params, {})
 | |
|     } else if (req.url === '/test/hello/foo') {
 | |
|       t.same(params, { optional: 'foo' })
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.lookup({ method: 'GET', url: '/test/hello/', headers: {} }, null)
 | |
|   findMyWay.lookup({ method: 'GET', url: '/test/hello', headers: {} }, null)
 | |
|   findMyWay.lookup({ method: 'GET', url: '/test/hello/foo', headers: {} }, null)
 | |
|   findMyWay.lookup({ method: 'GET', url: '/test/hello/foo/', headers: {} }, null)
 | |
| })
 | |
| 
 | |
| test('derigister a route with optional param', (t) => {
 | |
|   t.plan(4)
 | |
|   const findMyWay = FindMyWay({
 | |
|     defaultRoute: (req, res) => {
 | |
|       t.fail('Should not be defaultRoute')
 | |
|     }
 | |
|   })
 | |
| 
 | |
|   findMyWay.on('GET', '/a/:param/b/:optional?', (req, res, params) => {})
 | |
| 
 | |
|   t.ok(findMyWay.find('GET', '/a/:param/b'))
 | |
|   t.ok(findMyWay.find('GET', '/a/:param/b/:optional'))
 | |
| 
 | |
|   findMyWay.off('GET', '/a/:param/b/:optional?')
 | |
| 
 | |
|   t.notOk(findMyWay.find('GET', '/a/:param/b'))
 | |
|   t.notOk(findMyWay.find('GET', '/a/:param/b/:optional'))
 | |
| })
 |