mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
326 lines
8.3 KiB
JavaScript
326 lines
8.3 KiB
JavaScript
var assert = require('assert');
|
|
var path = require('path');
|
|
var fs = require('fs');
|
|
var muk = require('muk');
|
|
|
|
var _http = require('../_http.js');
|
|
|
|
var thinkjs = require('../../lib/index.js');
|
|
|
|
var tjs = new thinkjs();
|
|
tjs.load();
|
|
|
|
function getHttp(config, options){
|
|
think.APP_PATH = path.dirname(__dirname) + '/testApp';
|
|
var req = think.extend({}, _http.req);
|
|
var res = think.extend({}, _http.res);
|
|
return think.http(req, res).then(function(http){
|
|
if(config){
|
|
http._config = config;
|
|
}
|
|
if(options){
|
|
for(var key in options){
|
|
http[key] = options[key];
|
|
}
|
|
}
|
|
return http;
|
|
})
|
|
}
|
|
|
|
function execMiddleware(middleware, config, options, data){
|
|
return getHttp(config, options).then(function(http){
|
|
return think.middleware(middleware, http, data);
|
|
})
|
|
}
|
|
|
|
|
|
describe('bootstrap/middleware.js', function(){
|
|
it('parse_json_payload empty', function(done){
|
|
getHttp('', {
|
|
payload: ''
|
|
}).then(function(http){
|
|
think.middleware('parse_json_payload', http).then(function(data){
|
|
assert.equal(data, undefined);
|
|
assert.deepEqual(http._post, {});
|
|
done();
|
|
}).catch(function(err){
|
|
console.log(err.stack)
|
|
})
|
|
}).catch(function(err){
|
|
console.log(err.stack)
|
|
})
|
|
})
|
|
it('parse_json_payload, empty content-type', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: 'welefen',
|
|
_type: ''
|
|
}).then(function(http){
|
|
think.middleware('parse_json_payload', http).then(function(data){
|
|
assert.equal(data, undefined);
|
|
assert.deepEqual(http._post, {});
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('parse_json_payload, has content-type', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: 'welefen',
|
|
|
|
_type: 'application/json'
|
|
}).then(function(http){
|
|
think.middleware('parse_json_payload', http).then(function(data){
|
|
assert.equal(data, undefined);
|
|
assert.deepEqual(http._post, {});
|
|
done();
|
|
}).catch(function(err){
|
|
console.log(err.stack)
|
|
})
|
|
}).catch(function(err){
|
|
console.log(err.stack)
|
|
})
|
|
})
|
|
it('parse_json_payload, has payload', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: JSON.stringify({name: 'welefen', test: 'haha'}),
|
|
|
|
_type: 'application/json'
|
|
}).then(function(http){
|
|
think.middleware('parse_json_payload', http).then(function(data){
|
|
assert.equal(data, undefined);
|
|
assert.deepEqual(http._post, {name: 'welefen', test: 'haha'});
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('output_resource, false', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: JSON.stringify({name: 'welefen', test: 'haha'}),
|
|
|
|
_type: 'application/json'
|
|
}).then(function(http){
|
|
think.middleware('output_resource', http, false).then(function(data){
|
|
assert.equal(data, undefined)
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('output_resource, true', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: JSON.stringify({name: 'welefen', test: 'haha'}),
|
|
|
|
_type: 'application/json'
|
|
}).then(function(http){
|
|
think.middleware('output_resource', http, true).catch(function(err){
|
|
assert.equal(think.isPrevent(err), true)
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('output_resource', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: JSON.stringify({name: 'welefen', test: 'haha'}),
|
|
|
|
_type: 'application/json'
|
|
}).then(function(http){
|
|
think.middleware('output_resource', http, __filename).catch(function(err){
|
|
assert.equal(think.isPrevent(err), true);
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('output_resource file not exist', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: JSON.stringify({name: 'welefen', test: 'haha'}),
|
|
|
|
_type: 'application/json'
|
|
}).then(function(http){
|
|
think.middleware('output_resource', http, __filename + '_____').catch(function(err){
|
|
assert.equal(think.isError(err), true);
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('output_resource file, range', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: JSON.stringify({name: 'welefen', test: 'haha'}),
|
|
_type: 'application/json',
|
|
headers: {
|
|
range: 'bytes=0-'
|
|
},
|
|
end: function(){},
|
|
status: function(status){
|
|
assert.equal(status, 206);
|
|
}
|
|
}).then(function(http){
|
|
think.middleware('output_resource', http, __filename).catch(function(err){
|
|
assert.equal(think.isPrevent(err), true)
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
|
|
it('output_resource file, range, more than max', function(done){
|
|
getHttp({
|
|
post: {
|
|
json_content_type: ['application/json']
|
|
},
|
|
}, {
|
|
payload: JSON.stringify({name: 'welefen', test: 'haha'}),
|
|
_type: 'application/json',
|
|
headers: {
|
|
range: 'bytes=0-1000000'
|
|
},
|
|
end: function(){},
|
|
status: function(status){
|
|
assert.equal(status, 206);
|
|
}
|
|
}).then(function(http){
|
|
think.middleware('output_resource', http, __filename).catch(function(err){
|
|
assert.equal(think.isPrevent(err), true)
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
|
|
|
|
it('rewrite_pathname, empty pathname', function(done){
|
|
getHttp({}, {
|
|
pathname: ''
|
|
}).then(function(http){
|
|
think.middleware('rewrite_pathname', http).then(function(data){
|
|
assert.equal(data, undefined);
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('rewrite_pathname, pathname', function(done){
|
|
getHttp({
|
|
pathname_prefix: '',
|
|
pathname_suffix: ''
|
|
}, {
|
|
pathname: 'welefen'
|
|
}).then(function(http){
|
|
think.middleware('rewrite_pathname', http).then(function(data){
|
|
assert.equal(http.pathname, 'welefen');
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('rewrite_pathname, pathname, has prefix', function(done){
|
|
getHttp({
|
|
pathname_prefix: '/test',
|
|
pathname_suffix: ''
|
|
}, {
|
|
pathname: '/test/welefen'
|
|
}).then(function(http){
|
|
think.middleware('rewrite_pathname', http).then(function(data){
|
|
assert.equal(http.pathname, '/welefen');
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('rewrite_pathname, pathname, has suffix', function(done){
|
|
getHttp({
|
|
pathname_prefix: '',
|
|
pathname_suffix: '.text'
|
|
}, {
|
|
pathname: '/test/welefen.text'
|
|
}).then(function(http){
|
|
think.middleware('rewrite_pathname', http).then(function(data){
|
|
assert.equal(http.pathname, '/test/welefen');
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('rewrite_pathname, pathname, has prefix & suffix', function(done){
|
|
getHttp({
|
|
pathname_prefix: '/test/',
|
|
pathname_suffix: '.text'
|
|
}, {
|
|
pathname: '/test/welefen.text'
|
|
}).then(function(http){
|
|
think.middleware('rewrite_pathname', http).then(function(data){
|
|
assert.equal(http.pathname, 'welefen');
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('subdomain_deploy, subdomain emtpy', function(done){
|
|
getHttp({
|
|
subdomain: {},
|
|
}, {
|
|
pathname: '/test/welefen.text'
|
|
}).then(function(http){
|
|
think.middleware('subdomain_deploy', http).then(function(data){
|
|
assert.equal(http.pathname, '/test/welefen.text');
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('subdomain_deploy, subdomain', function(done){
|
|
getHttp({
|
|
subdomain: {
|
|
test: 'test'
|
|
},
|
|
}, {
|
|
hostname: 'www.thinkjs.org',
|
|
pathname: '/test/welefen.text'
|
|
}).then(function(http){
|
|
think.middleware('subdomain_deploy', http).then(function(data){
|
|
assert.equal(http.pathname, '/test/welefen.text');
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
it('subdomain_deploy, subdomain 1', function(done){
|
|
getHttp({
|
|
subdomain: {
|
|
test: 'test'
|
|
},
|
|
}, {
|
|
hostname: 'test.thinkjs.org',
|
|
pathname: 'welefen.text'
|
|
}).then(function(http){
|
|
think.middleware('subdomain_deploy', http).then(function(data){
|
|
assert.equal(http.pathname, 'test/welefen.text');
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
|
|
|
|
|
|
|
|
}) |