Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 1915116

Browse files
Merge pull request #1375 from apiaryio/1370-endpoint-nesting
fix: coerces "server" option to "endpoint"
2 parents bad575f + a9b344d commit 1915116

File tree

3 files changed

+31
-18
lines changed

3 files changed

+31
-18
lines changed

lib/configuration/applyConfiguration.js

+17-13
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,26 @@ const DEFAULT_CONFIG = {
5050
// a breaking change to the library's public API.
5151
// TODO https://github.com/apiaryio/dredd/issues/1344
5252
function flattenConfig(config) {
53-
const proxiedConfig = R.compose(
54-
// Rename root "server" key to "endpoint".
55-
// Necessary to prevent options values collision, as:
56-
// - root.server - stands for server url.
57-
// - options.server - stands for a server command (i.e. "npm start").
58-
// - options.endpoint - semantically the same as "root.server"
59-
// When merged, these values must not be overriden.
60-
R.dissoc('server'),
61-
R.over(
62-
R.lens(R.prop('server'), R.assoc('endpoint')),
63-
R.identity
53+
// Rename "root.server" key to "root.endpoint".
54+
// Necessary to prevent options values collision between:
55+
// - root.server - stands for server url.
56+
// - options.server - stands for a server command (i.e. "npm start").
57+
// - options.endpoint - semantically the same as "root.server"
58+
//
59+
// NOTE It's important to rename the option here, as when flattened
60+
// there is no difference between "root.server" and "options.server"
61+
// which serve entirely different purposes. Thus it cannot be coerced
62+
// on the normalization layer.
63+
const aliasedConfig = R.when(
64+
R.has('server'),
65+
R.compose(
66+
R.dissoc('server'),
67+
R.assoc('endpoint', R.prop('server', config))
6468
)
6569
)(config);
6670

67-
const nestedOptions = R.prop('options', proxiedConfig);
68-
const rootOptions = R.omit(['server', 'options'], proxiedConfig);
71+
const rootOptions = R.omit(['options'], aliasedConfig);
72+
const nestedOptions = R.prop('options', aliasedConfig);
6973

7074
if (nestedOptions) {
7175
logger.warn('Deprecated usage of `options` in Dredd configuration.');

lib/configuration/normalizeConfig.js

-5
Original file line numberDiff line numberDiff line change
@@ -166,16 +166,11 @@ const normalizeConfig = R.compose(
166166
);
167167

168168
normalizeConfig.removeUnsupportedOptions = removeUnsupportedOptions;
169-
170-
normalizeConfig.removeUnsupportedOptions = removeUnsupportedOptions;
171-
172169
normalizeConfig.coerceToArray = coerceToArray;
173170
normalizeConfig.coerceToBoolean = coerceToBoolean;
174-
175171
normalizeConfig.coerceUserOption = coerceUserOption;
176172
normalizeConfig.coerceApiDescriptions = coerceApiDescriptions;
177173
normalizeConfig.coerceColorOption = coerceColorOption;
178-
179174
normalizeConfig.coerceDeprecatedLevelOption = coerceDeprecatedLevelOption;
180175
normalizeConfig.coerceDeprecatedDataOption = coerceDeprecatedDataOption;
181176

test/integration/configuration/resolveConfig-test.js

+14
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,20 @@ describe('resolveConfig()', () => {
5858

5959
// Options
6060
describe('option: server', () => {
61+
describe('when no "server" set', () => {
62+
const { config: nextConfig } = resolveConfig({
63+
path: [],
64+
});
65+
66+
it('has default "endpoint" option value', () => {
67+
assert.propertyVal(nextConfig, 'endpoint', DEFAULT_CONFIG.endpoint);
68+
});
69+
70+
it('has no "server" option', () => {
71+
assert.notProperty(nextConfig, 'server');
72+
});
73+
});
74+
6175
describe('when "server" set', () => {
6276
const { config: nextConfig } = resolveConfig({
6377
server: 'http://127.0.0.1',

0 commit comments

Comments
 (0)