-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: export unit test utility methods to be used in SDKs (#65)
* these are not for the core tests themselves - the generated unit tests for service client sdks rely on these methods
- Loading branch information
Showing
5 changed files
with
137 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
test | ||
test/resources | ||
test/unit | ||
test/.eslintrc.js | ||
node_modules | ||
coverage | ||
.jshintignore | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* Copyright 2019 IBM Corp. All Rights Reserved. | ||
* | ||
* 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. | ||
*/ | ||
|
||
/* | ||
* The utility methods in this directory are not to assist in the testing | ||
* of the core, but to assist with the testing of the SDKs that depend on | ||
* this core library. Specifically, the unit tests generated by the | ||
* IBM OpenAPI SDK Gen project rely on these methods. | ||
*/ | ||
|
||
const unitTestUtils = require('./unit-test-helpers'); | ||
|
||
module.exports.unitTestUtils = unitTestUtils; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/** | ||
* Copyright 2019 IBM Corp. All Rights Reserved. | ||
* | ||
* 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. | ||
*/ | ||
|
||
/* istanbul ignore file */ | ||
|
||
/** | ||
* This module provides a set of helper methods used to reduce code duplication in the generated unit tests | ||
* for the SDKs that depend on this core package. Note that these methods are not used by the tests for this | ||
* package - they are meant to be exported and made available to dependent libraries. | ||
* | ||
* They are included in the `test` directory since they rely on `jest` globals (like `expect`) and this | ||
* requires special linting rules that should not be configured in the rest of the source code. | ||
*/ | ||
|
||
/** | ||
* Takes the request options constructed by the SDK and checks that the `url` and `method` properties | ||
* were set to their correct values. | ||
* | ||
* @param {Object} options - the options object put together by the SDK, retrieved from the createRequest mock | ||
* @param {String} url - The URL path of the service endpoint, from the paths section of the API definition | ||
* @param {String} string - The HTTP method for the request, from the API definition | ||
* @returns {void} | ||
*/ | ||
module.exports.checkUrlAndMethod = function(options, url, method) { | ||
expect(options.url).toEqual(url); | ||
expect(options.method).toEqual(method); | ||
}; | ||
|
||
/** | ||
* Takes the mock object for the `createRequest` method, extracts the headers that were sent with the call, | ||
* and checks for the expected values for `Accept` and `Content-Type`. This to verify that the SDK sets | ||
* the correct values in the code. | ||
* | ||
* @param {Object} createRequestMock - the jest mock object for the `createRequest` method in the `RequestWrapper` class | ||
* @param {String} accept - the expected value for the `Accept` header | ||
* @param {String} contentType - the expected value for the `Content-Type` header | ||
* @returns {void} | ||
*/ | ||
module.exports.checkMediaHeaders = function(createRequestMock, accept, contentType) { | ||
const headers = createRequestMock.mock.calls[0][0].defaultOptions.headers; | ||
expect(headers.Accept).toEqual(accept); | ||
expect(headers['Content-Type']).toEqual(contentType); | ||
}; | ||
|
||
/** | ||
* Takes the mock object for the `createRequest` method, extracts the headers that were sent with the call, | ||
* and checks for the expected value for a user-defined header. This is verify that the SDK accepts header | ||
* parameters and sends them as headers in the request. | ||
* | ||
* @param {Object} createRequestMock - the jest mock object for the `createRequest` method in the `RequestWrapper` class | ||
* @param {String} userHeaderName - the name of the header passed by the user, e.g. `Contained-Content-Type` | ||
* @param {String} userHeaderValue - the expected value for the header passed by the user | ||
* @returns {void} | ||
*/ | ||
module.exports.checkUserHeader = function(createRequestMock, userHeaderName, userHeaderValue) { | ||
const headers = createRequestMock.mock.calls[0][0].defaultOptions.headers; | ||
expect(headers[userHeaderName]).toEqual(userHeaderValue); | ||
}; | ||
|
||
/** | ||
* This method simply ensures that the method executed without any issues by extracting | ||
* the argument from the mock object for the `createRequest` method and verifying that it is an object. | ||
* | ||
* @param {Object} createRequestMock - the jest mock object for the `createRequest` method in the `RequestWrapper` class | ||
* @returns {void} | ||
*/ | ||
module.exports.checkForSuccessfulExecution = function(createRequestMock) { | ||
const sdkParams = createRequestMock.mock.calls[0][0]; | ||
expect(typeof sdkParams).toEqual('object'); | ||
}; | ||
|
||
/** | ||
* This method extracts the `options` property from the object passed into `createRequest`. This property is | ||
* an object containing all of the SDK method-specific information (like `path` and `body`) used to build a request. | ||
* This method is just a convenience method for the unit tests to be able to make assertions on the items in the request. | ||
* | ||
* @param {Object} createRequestMock - the jest mock object for the `createRequest` method in the `RequestWrapper` class | ||
* @returns {void} | ||
*/ | ||
module.exports.getOptions = function(createRequestMock) { | ||
return createRequestMock.mock.calls[0][0].options; | ||
}; | ||
|
||
/** | ||
* This method simply ensures that the SDK methods return Promises by checking for | ||
* the `then` function - common way to assess whether or not an object is a Promise. | ||
* | ||
* @param {Promise<any>} sdkPromise - the Promise returned by an SDK method | ||
* @returns {void} | ||
*/ | ||
module.exports.expectToBePromise = function(sdkPromise) { | ||
expect(typeof sdkPromise.then).toBe('function'); | ||
}; |