tap
Version:
A Test-Anything-Protocol library for JavaScript
332 lines (273 loc) • 10.2 kB
JavaScript
"use strict";
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = parseMap;
var _constants = require("../constants");
var _PlainValue = _interopRequireDefault(require("../cst/PlainValue"));
var _errors = require("../errors");
var _Map = _interopRequireDefault(require("./Map"));
var _Merge = _interopRequireWildcard(require("./Merge"));
var _Pair = _interopRequireDefault(require("./Pair"));
var _parseUtils = require("./parseUtils");
var _Alias = _interopRequireDefault(require("./Alias"));
var _Collection = _interopRequireDefault(require("./Collection"));
function parseMap(doc, cst) {
if (cst.type !== _constants.Type.MAP && cst.type !== _constants.Type.FLOW_MAP) {
var msg = "A ".concat(cst.type, " node cannot be resolved as a mapping");
doc.errors.push(new _errors.YAMLSyntaxError(cst, msg));
return null;
}
var _ref = cst.type === _constants.Type.FLOW_MAP ? resolveFlowMapItems(doc, cst) : resolveBlockMapItems(doc, cst),
comments = _ref.comments,
items = _ref.items;
var map = new _Map.default();
map.items = items;
(0, _parseUtils.resolveComments)(map, comments);
var hasCollectionKey = false;
for (var i = 0; i < items.length; ++i) {
var iKey = items[i].key;
if (iKey instanceof _Collection.default) hasCollectionKey = true;
if (doc.schema.merge && iKey && iKey.value === _Merge.MERGE_KEY) {
items[i] = new _Merge.default(items[i]);
var sources = items[i].value.items;
var error = null;
sources.some(function (node) {
if (node instanceof _Alias.default) {
// During parsing, alias sources are CST nodes; to account for
// circular references their resolved values can't be used here.
var type = node.source.type;
if (type === _constants.Type.MAP || type === _constants.Type.FLOW_MAP) return false;
return error = 'Merge nodes aliases can only point to maps';
}
return error = 'Merge nodes can only have Alias nodes as values';
});
if (error) doc.errors.push(new _errors.YAMLSemanticError(cst, error));
} else {
for (var j = i + 1; j < items.length; ++j) {
var jKey = items[j].key;
if (iKey === jKey || iKey && jKey && Object.prototype.hasOwnProperty.call(iKey, 'value') && iKey.value === jKey.value) {
var _msg = "Map keys must be unique; \"".concat(iKey, "\" is repeated");
doc.errors.push(new _errors.YAMLSemanticError(cst, _msg));
break;
}
}
}
}
if (hasCollectionKey && !doc.options.mapAsMap) {
var warn = 'Keys with collection values will be stringified as YAML due to JS Object restrictions. Use mapAsMap: true to avoid this.';
doc.warnings.push(new _errors.YAMLWarning(cst, warn));
}
cst.resolved = map;
return map;
}
var valueHasPairComment = function valueHasPairComment(_ref2) {
var _ref2$context = _ref2.context,
lineStart = _ref2$context.lineStart,
node = _ref2$context.node,
src = _ref2$context.src,
props = _ref2.props;
if (props.length === 0) return false;
var start = props[0].start;
if (node && start > node.valueRange.start) return false;
if (src[start] !== _constants.Char.COMMENT) return false;
for (var i = lineStart; i < start; ++i) {
if (src[i] === '\n') return false;
}
return true;
};
function resolvePairComment(item, pair) {
if (!valueHasPairComment(item)) return;
var comment = item.getPropValue(0, _constants.Char.COMMENT, true);
var found = false;
var cb = pair.value.commentBefore;
if (cb && cb.startsWith(comment)) {
pair.value.commentBefore = cb.substr(comment.length + 1);
found = true;
} else {
var cc = pair.value.comment;
if (!item.node && cc && cc.startsWith(comment)) {
pair.value.comment = cc.substr(comment.length + 1);
found = true;
}
}
if (found) pair.comment = comment;
}
function resolveBlockMapItems(doc, cst) {
var comments = [];
var items = [];
var key = undefined;
var keyStart = null;
for (var i = 0; i < cst.items.length; ++i) {
var item = cst.items[i];
switch (item.type) {
case _constants.Type.BLANK_LINE:
comments.push({
afterKey: !!key,
before: items.length
});
break;
case _constants.Type.COMMENT:
comments.push({
afterKey: !!key,
before: items.length,
comment: item.comment
});
break;
case _constants.Type.MAP_KEY:
if (key !== undefined) items.push(new _Pair.default(key));
if (item.error) doc.errors.push(item.error);
key = doc.resolveNode(item.node);
keyStart = null;
break;
case _constants.Type.MAP_VALUE:
{
if (key === undefined) key = null;
if (item.error) doc.errors.push(item.error);
if (!item.context.atLineStart && item.node && item.node.type === _constants.Type.MAP && !item.node.context.atLineStart) {
var msg = 'Nested mappings are not allowed in compact mappings';
doc.errors.push(new _errors.YAMLSemanticError(item.node, msg));
}
var valueNode = item.node;
if (!valueNode && item.props.length > 0) {
// Comments on an empty mapping value need to be preserved, so we
// need to construct a minimal empty node here to use instead of the
// missing `item.node`. -- eemeli/yaml#19
valueNode = new _PlainValue.default(_constants.Type.PLAIN, []);
valueNode.context = {
parent: item,
src: item.context.src
};
var pos = item.range.start + 1;
valueNode.range = {
start: pos,
end: pos
};
valueNode.valueRange = {
start: pos,
end: pos
};
if (typeof item.range.origStart === 'number') {
var origPos = item.range.origStart + 1;
valueNode.range.origStart = valueNode.range.origEnd = origPos;
valueNode.valueRange.origStart = valueNode.valueRange.origEnd = origPos;
}
}
var pair = new _Pair.default(key, doc.resolveNode(valueNode));
resolvePairComment(item, pair);
items.push(pair);
(0, _parseUtils.checkKeyLength)(doc.errors, cst, i, key, keyStart);
key = undefined;
keyStart = null;
}
break;
default:
if (key !== undefined) items.push(new _Pair.default(key));
key = doc.resolveNode(item);
keyStart = item.range.start;
if (item.error) doc.errors.push(item.error);
next: for (var j = i + 1;; ++j) {
var nextItem = cst.items[j];
switch (nextItem && nextItem.type) {
case _constants.Type.BLANK_LINE:
case _constants.Type.COMMENT:
continue next;
case _constants.Type.MAP_VALUE:
break next;
default:
doc.errors.push(new _errors.YAMLSemanticError(item, 'Implicit map keys need to be followed by map values'));
break next;
}
}
if (item.valueRangeContainsNewline) {
var _msg2 = 'Implicit map keys need to be on a single line';
doc.errors.push(new _errors.YAMLSemanticError(item, _msg2));
}
}
}
if (key !== undefined) items.push(new _Pair.default(key));
return {
comments: comments,
items: items
};
}
function resolveFlowMapItems(doc, cst) {
var comments = [];
var items = [];
var key = undefined;
var keyStart = null;
var explicitKey = false;
var next = '{';
for (var i = 0; i < cst.items.length; ++i) {
(0, _parseUtils.checkKeyLength)(doc.errors, cst, i, key, keyStart);
var item = cst.items[i];
if (typeof item.char === 'string') {
var char = item.char,
offset = item.offset;
if (char === '?' && key === undefined && !explicitKey) {
explicitKey = true;
next = ':';
continue;
}
if (char === ':') {
if (key === undefined) key = null;
if (next === ':') {
next = ',';
continue;
}
} else {
if (explicitKey) {
if (key === undefined && char !== ',') key = null;
explicitKey = false;
}
if (key !== undefined) {
items.push(new _Pair.default(key));
key = undefined;
keyStart = null;
if (char === ',') {
next = ':';
continue;
}
}
}
if (char === '}') {
if (i === cst.items.length - 1) continue;
} else if (char === next) {
next = ':';
continue;
}
var msg = "Flow map contains an unexpected ".concat(char);
var err = new _errors.YAMLSyntaxError(cst, msg);
err.offset = offset;
doc.errors.push(err);
} else if (item.type === _constants.Type.BLANK_LINE) {
comments.push({
afterKey: !!key,
before: items.length
});
} else if (item.type === _constants.Type.COMMENT) {
comments.push({
afterKey: !!key,
before: items.length,
comment: item.comment
});
} else if (key === undefined) {
if (next === ',') doc.errors.push(new _errors.YAMLSemanticError(item, 'Separator , missing in flow map'));
key = doc.resolveNode(item);
keyStart = explicitKey ? null : item.range.start; // TODO: add error for non-explicit multiline plain key
} else {
if (next !== ',') doc.errors.push(new _errors.YAMLSemanticError(item, 'Indicator : missing in flow map entry'));
items.push(new _Pair.default(key, doc.resolveNode(item)));
key = undefined;
explicitKey = false;
}
}
(0, _parseUtils.checkFlowCollectionEnd)(doc.errors, cst);
if (key !== undefined) items.push(new _Pair.default(key));
return {
comments: comments,
items: items
};
}