2018-10-24 21:42:33 +08:00
|
|
|
'use strict';
|
|
|
|
|
2011-06-13 11:23:02 +08:00
|
|
|
require('../helper');
|
|
|
|
|
2015-05-13 00:34:25 +08:00
|
|
|
var _ = require('underscore');
|
2019-10-04 00:24:39 +08:00
|
|
|
var OAuthAuth = require('../../lib/auth/oauth');
|
2015-05-13 00:34:25 +08:00
|
|
|
var MetadataDB = require('cartodb-redis');
|
2019-10-04 00:24:39 +08:00
|
|
|
var oAuth = require('../../lib/auth/oauth').backend;
|
2015-05-13 00:34:25 +08:00
|
|
|
var assert = require('assert');
|
2019-12-26 21:38:53 +08:00
|
|
|
var oauthData1 = {
|
2019-12-24 01:19:08 +08:00
|
|
|
oauth_consumer_key: 'dpf43f3p2l4k3l03',
|
|
|
|
oauth_token: 'nnch734d00sl2jdk',
|
|
|
|
oauth_signature_method: 'HMAC-SHA1',
|
|
|
|
oauth_signature: 'tR3%2BTy81lMeYAr%2FFid0kMTYa%2FWM%3D',
|
|
|
|
oauth_timestamp: '1191242096',
|
|
|
|
oauth_nonce: 'kllo9940pd9333jh'
|
2015-05-13 00:34:25 +08:00
|
|
|
};
|
2019-12-26 21:38:53 +08:00
|
|
|
var oauthData2 = { oauth_version: '1.0' };
|
|
|
|
var oauthData = _.extend(oauthData1, oauthData2);
|
|
|
|
var realOauthHeader = 'OAuth ' +
|
2015-05-13 00:34:25 +08:00
|
|
|
'realm="http://vizzuality.testhost.lan/",' +
|
|
|
|
'oauth_consumer_key="fZeNGv5iYayvItgDYHUbot1Ukb5rVyX6QAg8GaY2",' +
|
|
|
|
'oauth_token="l0lPbtP68ao8NfStCiA3V3neqfM03JKhToxhUQTR",' +
|
|
|
|
'oauth_signature_method="HMAC-SHA1", ' +
|
|
|
|
'oauth_signature="o4hx4hWP6KtLyFwggnYB4yPK8xI%3D",' +
|
|
|
|
'oauth_timestamp="1313581372",' +
|
|
|
|
'oauth_nonce="W0zUmvyC4eVL8cBd4YwlH1nnPTbxW0QBYcWkXTwe4",' +
|
|
|
|
'oauth_version="1.0"';
|
2019-12-26 21:38:53 +08:00
|
|
|
var oauthHeaderTokens = 'oauth_consumer_key="dpf43f3p2l4k3l03",' +
|
2015-05-13 00:34:25 +08:00
|
|
|
'oauth_token="nnch734d00sl2jdk",' +
|
|
|
|
'oauth_signature_method="HMAC-SHA1", ' +
|
|
|
|
'oauth_signature="tR3%2BTy81lMeYAr%2FFid0kMTYa%2FWM%3D",' +
|
|
|
|
'oauth_timestamp="1191242096",' +
|
|
|
|
'oauth_nonce="kllo9940pd9333jh",' +
|
|
|
|
'oauth_version="1.0"';
|
2019-12-26 21:38:53 +08:00
|
|
|
var fullOauthHeader = 'OAuth realm="http://photos.example.net/"' + oauthHeaderTokens;
|
2015-05-13 00:34:25 +08:00
|
|
|
|
|
|
|
var metadataBackend = new MetadataDB({
|
2014-08-06 18:51:55 +08:00
|
|
|
host: global.settings.redis_host,
|
|
|
|
port: global.settings.redis_port,
|
|
|
|
max: global.settings.redisPool,
|
|
|
|
idleTimeoutMillis: global.settings.redisIdleTimeoutMillis,
|
|
|
|
reapIntervalMillis: global.settings.redisReapIntervalMillis
|
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
describe('oauth', function () {
|
|
|
|
it('test database number', function () {
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.strictEqual(oAuth.oauth_database, 3);
|
2019-12-24 01:19:08 +08:00
|
|
|
});
|
2012-07-13 04:54:12 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('test oauth database key', function () {
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.strictEqual(oAuth.oauth_user_key, 'rails:oauth_access_tokens:<%= oauth_access_key %>');
|
2019-12-24 01:19:08 +08:00
|
|
|
});
|
2011-06-13 11:23:02 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('test parse tokens from full headers does not raise exception', function () {
|
2019-12-26 21:38:53 +08:00
|
|
|
var req = { query: {}, headers: { authorization: fullOauthHeader } };
|
2019-12-24 01:19:08 +08:00
|
|
|
assert.doesNotThrow(function () { oAuth.parseTokens(req); }, /incomplete oauth tokens in request/);
|
|
|
|
});
|
2011-06-13 11:23:02 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('test parse all normal tokens raises no exception', function () {
|
2019-12-26 21:38:53 +08:00
|
|
|
var req = { query: oauthData, headers: {} };
|
2019-12-24 01:19:08 +08:00
|
|
|
assert.doesNotThrow(function () { oAuth.parseTokens(req); }, /incomplete oauth tokens in request/);
|
|
|
|
});
|
2011-08-18 00:27:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('test headers take presedence over query parameters', function () {
|
2019-12-26 21:38:53 +08:00
|
|
|
var req = { query: { oauth_signature_method: 'MY_HASH' }, headers: { authorization: fullOauthHeader } };
|
2019-12-24 01:19:08 +08:00
|
|
|
var tokens = oAuth.parseTokens(req);
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.strictEqual(tokens.oauth_signature_method, 'HMAC-SHA1');
|
2019-12-24 01:19:08 +08:00
|
|
|
});
|
2011-08-18 00:27:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('test can access oauth hash for a user based on access token (oauth_token)', function (done) {
|
2019-12-26 21:38:53 +08:00
|
|
|
var req = { query: {}, headers: { authorization: realOauthHeader } };
|
2019-12-24 01:19:08 +08:00
|
|
|
var tokens = oAuth.parseTokens(req);
|
2011-08-18 00:27:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
oAuth.getOAuthHash(metadataBackend, tokens.oauth_token, function (err, data) {
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.ifError(err);
|
|
|
|
assert.strictEqual(tokens.oauth_consumer_key, data.consumer_key);
|
2019-12-24 01:19:08 +08:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2011-08-18 00:27:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('test non existant oauth hash for a user based on oauth_token returns empty hash', function (done) {
|
2019-12-26 21:38:53 +08:00
|
|
|
var req = { query: {}, params: { user: 'vizzuality' }, headers: { authorization: fullOauthHeader } };
|
2019-12-24 01:19:08 +08:00
|
|
|
var tokens = oAuth.parseTokens(req);
|
|
|
|
|
|
|
|
oAuth.getOAuthHash(metadataBackend, tokens.oauth_token, function (err, data) {
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.ifError(err);
|
|
|
|
assert.deepStrictEqual(data, {});
|
2019-12-24 01:19:08 +08:00
|
|
|
done();
|
|
|
|
});
|
2012-06-02 04:06:33 +08:00
|
|
|
});
|
2012-06-02 04:00:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('can return user for verified signature', function (done) {
|
|
|
|
var req = {
|
|
|
|
query: {},
|
2019-12-26 21:38:53 +08:00
|
|
|
headers: { authorization: realOauthHeader, host: 'vizzuality.testhost.lan' },
|
2019-12-24 01:19:08 +08:00
|
|
|
params: { user: 'vizzuality' },
|
|
|
|
protocol: 'http',
|
|
|
|
method: 'GET',
|
|
|
|
path: '/api/v1/tables'
|
|
|
|
};
|
|
|
|
|
|
|
|
oAuth.verifyRequest(req, metadataBackend, function (err, data) {
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.ifError(err);
|
|
|
|
assert.strictEqual(data, 'master');
|
2019-12-24 01:19:08 +08:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2012-06-02 04:00:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('can return user for verified signature (for other allowed domains)', function (done) {
|
|
|
|
var oAuthGetAllowedHostsFn = oAuth.getAllowedHosts;
|
|
|
|
oAuth.getAllowedHosts = function () {
|
|
|
|
return ['testhost.lan', 'testhostdb.lan'];
|
|
|
|
};
|
|
|
|
var req = {
|
|
|
|
query: {},
|
2019-12-26 21:38:53 +08:00
|
|
|
headers: { authorization: realOauthHeader, host: 'vizzuality.testhostdb.lan' },
|
2019-12-24 01:19:08 +08:00
|
|
|
params: { user: 'vizzuality' },
|
|
|
|
protocol: 'http',
|
|
|
|
method: 'GET',
|
|
|
|
path: '/api/v1/tables'
|
|
|
|
};
|
|
|
|
|
|
|
|
oAuth.verifyRequest(req, metadataBackend, function (err, data) {
|
|
|
|
oAuth.getAllowedHosts = oAuthGetAllowedHostsFn;
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.ifError(err);
|
|
|
|
assert.strictEqual(data, 'master');
|
2019-12-24 01:19:08 +08:00
|
|
|
done();
|
|
|
|
});
|
2012-06-02 04:06:33 +08:00
|
|
|
});
|
2012-06-02 04:00:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('returns null user for unverified signatures', function (done) {
|
|
|
|
var req = {
|
|
|
|
query: {},
|
2019-12-26 21:38:53 +08:00
|
|
|
headers: { authorization: realOauthHeader, host: 'vizzuality.testyhost.lan' },
|
2019-12-24 01:19:08 +08:00
|
|
|
params: { user: 'vizzuality' },
|
|
|
|
protocol: 'http',
|
|
|
|
method: 'GET',
|
|
|
|
path: '/api/v1/tables'
|
|
|
|
};
|
|
|
|
|
|
|
|
oAuth.verifyRequest(req, metadataBackend, function (err, data) {
|
2019-12-26 21:38:53 +08:00
|
|
|
assert.ifError(err);
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.strictEqual(data, null);
|
2019-12-24 01:19:08 +08:00
|
|
|
done();
|
|
|
|
});
|
2016-07-07 20:20:36 +08:00
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('returns null user for no oauth', function (done) {
|
|
|
|
var req = {
|
|
|
|
query: {},
|
|
|
|
headers: {},
|
|
|
|
params: { user: 'vizzuality' },
|
|
|
|
protocol: 'http',
|
|
|
|
method: 'GET',
|
|
|
|
path: '/api/v1/tables'
|
|
|
|
};
|
|
|
|
|
|
|
|
oAuth.verifyRequest(req, metadataBackend, function (err, data) {
|
2019-12-26 21:38:53 +08:00
|
|
|
assert.ifError(err);
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.strictEqual(data, null);
|
2019-12-24 01:19:08 +08:00
|
|
|
done();
|
|
|
|
});
|
2014-08-06 18:51:55 +08:00
|
|
|
});
|
2012-06-02 04:00:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('OAuthAuth reports it has credentials', function (done) {
|
2019-12-26 21:38:53 +08:00
|
|
|
var req = { query: {}, headers: { authorization: realOauthHeader } };
|
2019-12-24 01:19:08 +08:00
|
|
|
var oAuthAuth = new OAuthAuth(req);
|
|
|
|
assert.ok(oAuthAuth.hasCredentials());
|
2012-07-13 04:54:12 +08:00
|
|
|
done();
|
2014-08-06 18:51:55 +08:00
|
|
|
});
|
2012-06-02 04:00:45 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('OAuthAuth reports it has no credentials', function (done) {
|
|
|
|
var req = { query: {}, headers: {} };
|
|
|
|
var oAuthAuth = new OAuthAuth(req);
|
2019-12-26 21:01:18 +08:00
|
|
|
assert.strictEqual(oAuthAuth.hasCredentials(), false);
|
2012-07-13 04:54:12 +08:00
|
|
|
done();
|
2012-06-02 04:06:33 +08:00
|
|
|
});
|
2012-07-13 04:54:12 +08:00
|
|
|
});
|