koa-lite/test/request/querystring.js

55 lines
1.7 KiB
JavaScript
Raw Normal View History

'use strict';
var context = require('../context');
var parseurl = require('parseurl');
var should = require('should');
2015-10-03 00:18:05 +00:00
describe('ctx.querystring', function(){
2015-10-03 01:49:20 +00:00
it('should return the querystring', function(){
2015-10-03 00:18:05 +00:00
var ctx = context({ url: '/store/shoes?page=2&color=blue' });
ctx.querystring.should.equal('page=2&color=blue');
})
2015-10-03 01:49:20 +00:00
describe('when ctx.req not present', function(){
it('should return an empty string', function(){
2015-10-03 00:18:05 +00:00
var ctx = context();
ctx.request.req = null;
ctx.querystring.should.equal('');
})
})
})
describe('ctx.querystring=', function(){
it('should replace the querystring', function(){
var ctx = context({ url: '/store/shoes' });
ctx.querystring = 'page=2&color=blue';
ctx.url.should.equal('/store/shoes?page=2&color=blue');
ctx.querystring.should.equal('page=2&color=blue');
})
2013-11-19 03:29:29 +00:00
it('should update ctx.search and ctx.query', function(){
var ctx = context({ url: '/store/shoes' });
ctx.querystring = 'page=2&color=blue';
ctx.url.should.equal('/store/shoes?page=2&color=blue');
ctx.search.should.equal('?page=2&color=blue');
should(ctx.query).have.property('page', '2');
should(ctx.query).have.property('color', 'blue');
2013-11-19 03:29:29 +00:00
})
it('should change .url but not .originalUrl', function(){
var ctx = context({ url: '/store/shoes' });
ctx.querystring = 'page=2&color=blue';
ctx.url.should.equal('/store/shoes?page=2&color=blue');
ctx.originalUrl.should.equal('/store/shoes');
ctx.request.originalUrl.should.equal('/store/shoes');
})
it('should not affect parseurl', function(){
const ctx = context({ url: '/login?foo=bar' });
ctx.querystring = 'foo=bar';
const url = parseurl(ctx.req);
url.path.should.equal('/login?foo=bar');
})
})