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.
299 lines
7.3 KiB
299 lines
7.3 KiB
'use strict'
|
|
|
|
const t = require('tap')
|
|
const test = t.test
|
|
const FindMyWay = require('../')
|
|
|
|
test('Method should be a string', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
try {
|
|
findMyWay.on(0, '/test', () => {})
|
|
t.fail('method shoukd be a string')
|
|
} catch (e) {
|
|
t.is(e.message, 'Method should be a string')
|
|
}
|
|
})
|
|
|
|
test('Method should be a string [ignoreTrailingSlash=true]', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
try {
|
|
findMyWay.on(0, '/test', () => {})
|
|
t.fail('method shoukd be a string')
|
|
} catch (e) {
|
|
t.is(e.message, 'Method should be a string')
|
|
}
|
|
})
|
|
|
|
test('Method should be a string (array)', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
try {
|
|
findMyWay.on(['GET', 0], '/test', () => {})
|
|
t.fail('method shoukd be a string')
|
|
} catch (e) {
|
|
t.is(e.message, 'Method should be a string')
|
|
}
|
|
})
|
|
|
|
test('Method should be a string (array) [ignoreTrailingSlash=true]', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
try {
|
|
findMyWay.on(['GET', 0], '/test', () => {})
|
|
t.fail('method shoukd be a string')
|
|
} catch (e) {
|
|
t.is(e.message, 'Method should be a string')
|
|
}
|
|
})
|
|
|
|
test('Path should be a string', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
try {
|
|
findMyWay.on('GET', 0, () => {})
|
|
t.fail('path should be a string')
|
|
} catch (e) {
|
|
t.is(e.message, 'Path should be a string')
|
|
}
|
|
})
|
|
|
|
test('Path should be a string [ignoreTrailingSlash=true]', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
try {
|
|
findMyWay.on('GET', 0, () => {})
|
|
t.fail('path should be a string')
|
|
} catch (e) {
|
|
t.is(e.message, 'Path should be a string')
|
|
}
|
|
})
|
|
|
|
test('The path could not be empty', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
try {
|
|
findMyWay.on('GET', '', () => {})
|
|
t.fail('The path could not be empty')
|
|
} catch (e) {
|
|
t.is(e.message, 'The path could not be empty')
|
|
}
|
|
})
|
|
|
|
test('The path could not be empty [ignoreTrailingSlash=true]', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
try {
|
|
findMyWay.on('GET', '', () => {})
|
|
t.fail('The path could not be empty')
|
|
} catch (e) {
|
|
t.is(e.message, 'The path could not be empty')
|
|
}
|
|
})
|
|
|
|
test('The first character of a path should be `/` or `*`', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
try {
|
|
findMyWay.on('GET', 'a', () => {})
|
|
t.fail('The first character of a path should be `/` or `*`')
|
|
} catch (e) {
|
|
t.is(e.message, 'The first character of a path should be `/` or `*`')
|
|
}
|
|
})
|
|
|
|
test('The first character of a path should be `/` or `*` [ignoreTrailingSlash=true]', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
try {
|
|
findMyWay.on('GET', 'a', () => {})
|
|
t.fail('The first character of a path should be `/` or `*`')
|
|
} catch (e) {
|
|
t.is(e.message, 'The first character of a path should be `/` or `*`')
|
|
}
|
|
})
|
|
|
|
test('Handler should be a function', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test', 0)
|
|
t.fail('handler should be a function')
|
|
} catch (e) {
|
|
t.is(e.message, 'Handler should be a function')
|
|
}
|
|
})
|
|
|
|
test('Method is not an http method.', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
try {
|
|
findMyWay.on('GETT', '/test', () => {})
|
|
t.fail('method is not a valid http method')
|
|
} catch (e) {
|
|
t.is(e.message, 'Method \'GETT\' is not an http method.')
|
|
}
|
|
})
|
|
|
|
test('Method is not an http method. (array)', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
try {
|
|
findMyWay.on(['POST', 'GETT'], '/test', () => {})
|
|
t.fail('method is not a valid http method')
|
|
} catch (e) {
|
|
t.is(e.message, 'Method \'GETT\' is not an http method.')
|
|
}
|
|
})
|
|
|
|
test('The default route must be a function', t => {
|
|
t.plan(1)
|
|
try {
|
|
FindMyWay({
|
|
defaultRoute: '/404'
|
|
})
|
|
t.fail('default route must be a function')
|
|
} catch (e) {
|
|
t.is(e.message, 'The default route must be a function')
|
|
}
|
|
})
|
|
|
|
test('Method already declared', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
findMyWay.on('GET', '/test', () => {})
|
|
try {
|
|
findMyWay.on('GET', '/test', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test'`)
|
|
}
|
|
})
|
|
|
|
test('Method already declared [ignoreTrailingSlash=true]', t => {
|
|
t.plan(2)
|
|
|
|
t.test('without trailing slash', t => {
|
|
t.plan(2)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
findMyWay.on('GET', '/test', () => {})
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test'`)
|
|
}
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test/', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test/'`)
|
|
}
|
|
})
|
|
|
|
t.test('with trailing slash', t => {
|
|
t.plan(2)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
findMyWay.on('GET', '/test/', () => {})
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test'`)
|
|
}
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test/', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test/'`)
|
|
}
|
|
})
|
|
})
|
|
|
|
test('Method already declared nested route', t => {
|
|
t.plan(1)
|
|
const findMyWay = FindMyWay()
|
|
|
|
findMyWay.on('GET', '/test', () => {})
|
|
findMyWay.on('GET', '/test/hello', () => {})
|
|
findMyWay.on('GET', '/test/world', () => {})
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test/hello', () => {})
|
|
t.fail('method already delcared in nested route')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test/hello'`)
|
|
}
|
|
})
|
|
|
|
test('Method already declared nested route [ignoreTrailingSlash=true]', t => {
|
|
t.plan(2)
|
|
|
|
t.test('without trailing slash', t => {
|
|
t.plan(2)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
findMyWay.on('GET', '/test', () => {})
|
|
findMyWay.on('GET', '/test/hello', () => {})
|
|
findMyWay.on('GET', '/test/world', () => {})
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test/hello', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test/hello'`)
|
|
}
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test/hello/', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test/hello/'`)
|
|
}
|
|
})
|
|
|
|
t.test('with trailing slash', t => {
|
|
t.plan(2)
|
|
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
|
|
|
findMyWay.on('GET', '/test/', () => {})
|
|
findMyWay.on('GET', '/test/hello/', () => {})
|
|
findMyWay.on('GET', '/test/world/', () => {})
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test/hello', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test/hello'`)
|
|
}
|
|
|
|
try {
|
|
findMyWay.on('GET', '/test/hello/', () => {})
|
|
t.fail('method already declared')
|
|
} catch (e) {
|
|
t.is(e.message, `Method 'GET' already declared for route '/test/hello/'`)
|
|
}
|
|
})
|
|
})
|