kinvey-flex-sdk
Version:
SDK for creating Kinvey Flex Services
41 lines (38 loc) • 1.45 kB
JavaScript
/**
* Copyright (c) 2018 Kinvey Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
const backendContextModule = require('../../../../lib/service/modules/backendContext');
describe('modules / backendContext', () => {
let backendContext = null;
const metadata = {
_id: 'test ID',
appsecret: 'test app secret',
mastersecret: 'test master secret'
};
before((done) => {
backendContext = backendContextModule(metadata);
done();
});
it('exposes the environment ID through the getAppKey method', (done) => {
backendContext.getAppKey().should.eql(metadata._id);
done();
});
it('exposes the app secret through the getAppSecret method', (done) => {
backendContext.getAppSecret().should.eql(metadata.appsecret);
done();
});
it('exposes the master secret through the getMasterSecret method', (done) => {
backendContext.getMasterSecret().should.eql(metadata.mastersecret);
done();
});
});