Files
js-openstack-lib/test/unit/keystoneTest.js
msmol e09ccbd473 Added basic Keystone authentication
authenticate() is called outside the constructor
so that the Keystone class plays nicely with
Promises. (It would be weird for the constructor
to return a Promise)

Change-Id: I3f9008d4d954c340178c77ec0433c5a1ddc971d2
2016-08-06 09:38:01 -07:00

75 lines
1.8 KiB
JavaScript

import Keystone from '../../src/keystone.js';
import fetchMock from 'fetch-mock';
describe('Openstack connection test', () => {
it('should export a class', () => {
const keystone = new Keystone(aCloudsConfig('cloud1'), 'cloud1');
expect(keystone).toBeDefined();
});
it('should throw an error for an unknown cloud', () => {
const cloudsConfig = aCloudsConfig('cloud1');
const cloudName = 'cloud2';
try {
const keystone = new Keystone(cloudsConfig, cloudName);
keystone.authenticate();
} catch (e) {
expect(e.message).toEqual('Config for this cloud not found');
}
});
it('should authenticate', (done) => {
const cloudsConfig = aCloudsConfig('cloud1');
const authUrl = cloudsConfig.clouds.cloud1.auth.auth_url;
const cloudName = 'cloud1';
fetchMock
.post(authUrl, {
body: {
catalog: {
foo: 'bar'
}
},
headers: {
'X-Subject-Token': 'the-token'
}
});
const keystone = new Keystone(cloudsConfig, cloudName);
keystone.authenticate()
.then(() => {
expect(fetchMock.called(authUrl)).toEqual(true);
expect(typeof keystone.token).toEqual('string');
expect(keystone.token).toEqual('the-token');
expect(keystone.catalog).toEqual({foo: 'bar'});
done();
})
.catch((reason) => {
expect(reason).toBeUndefined();
done();
});
});
function aCloudsConfig (name) {
const cloudsConfig = {
clouds: {}
};
cloudsConfig.clouds[name] = {
region_name: 'Region1',
auth: {
username: 'user',
password: 'pass',
project_name: 'js-openstack-lib',
auth_url: 'http://keystone'
}
};
return cloudsConfig;
}
});