2017-05-22 12:03:45 -04:00
|
|
|
/* eslint-env mocha */
|
|
|
|
require('should')
|
|
|
|
var origin = require('../src/origin')
|
2014-05-08 08:47:51 -04:00
|
|
|
|
2017-05-22 12:03:45 -04:00
|
|
|
describe('Origin list', function () {
|
2014-06-02 23:19:10 -04:00
|
|
|
it('returns false if the request has no origin', function () {
|
|
|
|
var list = ['http://api.myapp.com', 'http://www.myapp.com']
|
|
|
|
origin.allowed(list, null).should.eql(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns false if the origin is not in the list', function () {
|
|
|
|
var list = ['http://api.myapp.com', 'http://www.myapp.com']
|
|
|
|
origin.allowed(list, 'http://random-website.com').should.eql(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns true if the origin matched', function () {
|
|
|
|
var list = ['http://api.myapp.com', 'http://www.myapp.com']
|
|
|
|
origin.allowed(list, 'http://api.myapp.com').should.eql(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('does not do partial matches by default', function () {
|
|
|
|
var list = ['http://api.myapp.com', 'http://www.myapp.com']
|
|
|
|
origin.allowed(list, 'api.myapp.com').should.eql(false)
|
|
|
|
})
|
2014-05-08 08:47:51 -04:00
|
|
|
|
2014-06-02 23:19:10 -04:00
|
|
|
it('always matches if the list contains *', function () {
|
|
|
|
var list = ['*']
|
|
|
|
origin.allowed(list, 'http://random-website.com').should.eql(true)
|
2017-05-22 12:03:45 -04:00
|
|
|
})
|
2014-05-08 08:47:51 -04:00
|
|
|
|
2014-06-02 23:19:10 -04:00
|
|
|
it('supports * for partial matches', function () {
|
|
|
|
var list = ['http://*.myapp.com', 'http://other-website.com']
|
|
|
|
origin.allowed(list, 'http://api.myapp.com').should.eql(true)
|
2017-05-22 12:03:45 -04:00
|
|
|
})
|
2014-05-08 08:47:51 -04:00
|
|
|
|
2014-06-02 23:19:10 -04:00
|
|
|
it('escapes the partial regex properly', function () {
|
|
|
|
// the "." should be a real dot, not mean "[any character]myapp"
|
|
|
|
var list = ['http://*.myapp.com', 'http://other-website.com']
|
|
|
|
origin.allowed(list, 'http://xmyapp.com').should.eql(false)
|
2017-05-22 12:03:45 -04:00
|
|
|
})
|
2014-05-08 08:47:51 -04:00
|
|
|
|
2014-06-02 23:19:10 -04:00
|
|
|
it('returns false if there was no partial match', function () {
|
|
|
|
var list = ['http://*.myapp.com']
|
|
|
|
origin.allowed(list, 'http://random-website.com').should.eql(false)
|
2017-05-22 12:03:45 -04:00
|
|
|
})
|
|
|
|
})
|