@adobe/generator-aio-app
Version:
Adobe I/O application yeoman code generator
85 lines (78 loc) • 3.32 kB
JavaScript
/*<% if (false) { %>
Copyright 2019 Adobe. All rights reserved.
This file is licensed to you 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 REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
<% } %>
* <license header>
*/
jest.mock('@adobe/aio-sdk', () => ({
Analytics: {
init: jest.fn()
},
Core: {
Logger: jest.fn()
}
}))
const { Core, Analytics } = require('@adobe/aio-sdk')
const mockAnalyticsInstance = { getCollections: jest.fn() }
const mockLoggerInstance = { info: jest.fn(), debug: jest.fn(), error: jest.fn() }
Core.Logger.mockReturnValue(mockLoggerInstance)
Analytics.init.mockResolvedValue(mockAnalyticsInstance)
const action = require('./<%= actionRelPath %>')
beforeEach(() => {
Analytics.init.mockClear() // only clears calls stats
mockAnalyticsInstance.getCollections.mockReset() // clears calls + mock implementation
Core.Logger.mockClear()
mockLoggerInstance.info.mockReset()
mockLoggerInstance.debug.mockReset()
mockLoggerInstance.error.mockReset()
})
const fakeRequestParams = { companyId: 'fakeId', apiKey: 'fakeKey', __ow_headers: { authorization: 'Bearer fakeToken' } }
describe('<%= actionName %>', () => {
test('main should be defined', () => {
expect(action.main).toBeInstanceOf(Function)
})
test('should set logger to use LOG_LEVEL param', async () => {
await action.main({ ...fakeRequestParams, LOG_LEVEL: 'fakeLevel' })
expect(Core.Logger).toHaveBeenCalledWith(expect.any(String), { level: 'fakeLevel' })
})
test('analytics sdk should be initialized with input credentials', async () => {
await action.main({ ...fakeRequestParams, otherParam: 'fake4' })
expect(Analytics.init).toHaveBeenCalledWith('fakeId', 'fakeKey', 'fakeToken' )
})
test('should return an http response with analytics collections', async () => {
const fakeResponse = { collections: 'fake' }
mockAnalyticsInstance.getCollections.mockResolvedValue(fakeResponse)
const response = await action.main(fakeRequestParams)
expect(response).toEqual(expect.objectContaining({
statusCode: 200,
body: fakeResponse
}))
})
test('if there is an error should return a 500 and log the error', async () => {
const fakeError = new Error('fake')
mockAnalyticsInstance.getCollections.mockRejectedValue(fakeError)
const response = await action.main(fakeRequestParams)
expect(response).toEqual(expect.objectContaining({
error: {
statusCode: 500,
body: { error: 'server error' }
}
}))
expect(mockLoggerInstance.error).toHaveBeenCalledWith(fakeError)
})
test('missing input request parameters, should return 400', async () => {
const response = await action.main({})
expect(response).toEqual({
error: {
statusCode: 400,
body: { error: 'missing header(s) \'authorization\' and missing parameter(s) \'apiKey,companyId\'' }
}
})
})
})