mirror of
https://github.com/zebrajr/express.git
synced 2025-12-06 12:19:51 +01:00
103 lines
2.5 KiB
JavaScript
103 lines
2.5 KiB
JavaScript
|
|
var express = require('../')
|
|
, request = require('./support/http');
|
|
|
|
describe('req', function(){
|
|
describe('.subdomains', function(){
|
|
describe('when present', function(){
|
|
it('should return an array', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
res.send(req.subdomains);
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.set('Host', 'tobi.ferrets.example.com')
|
|
.expect(["ferrets","tobi"], done);
|
|
})
|
|
})
|
|
|
|
describe('otherwise', function(){
|
|
it('should return an empty array', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
res.send(req.subdomains);
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.set('Host', 'example.com')
|
|
.expect([], done);
|
|
})
|
|
})
|
|
|
|
describe('with no host', function(){
|
|
it('should return an empty array', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
req.headers.host = null;
|
|
res.send(req.subdomains);
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.expect([], done);
|
|
})
|
|
})
|
|
|
|
describe('when subdomain offset is set', function(){
|
|
describe('when subdomain offset is zero', function(){
|
|
it('should return an array with the whole domain', function(done){
|
|
var app = express();
|
|
app.set('subdomain offset', 0);
|
|
|
|
app.use(function(req, res){
|
|
res.send(req.subdomains);
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.set('Host', 'tobi.ferrets.sub.example.com')
|
|
.expect(["com","example","sub","ferrets","tobi"], done);
|
|
})
|
|
})
|
|
|
|
describe('when present', function(){
|
|
it('should return an array', function(done){
|
|
var app = express();
|
|
app.set('subdomain offset', 3);
|
|
|
|
app.use(function(req, res){
|
|
res.send(req.subdomains);
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.set('Host', 'tobi.ferrets.sub.example.com')
|
|
.expect(["ferrets","tobi"], done);
|
|
})
|
|
})
|
|
|
|
describe('otherwise', function(){
|
|
it('should return an empty array', function(done){
|
|
var app = express();
|
|
app.set('subdomain offset', 3);
|
|
|
|
app.use(function(req, res){
|
|
res.send(req.subdomains);
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.set('Host', 'sub.example.com')
|
|
.expect([], done);
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|