mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 02:16:45 +00:00
Fix.
This commit is contained in:
parent
596a6da241
commit
c1a589c5b6
7078 changed files with 1882834 additions and 319 deletions
14
node_modules/jest-each/build/table/array.d.ts
generated
vendored
Normal file
14
node_modules/jest-each/build/table/array.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
*/
|
||||
import { Global } from '@jest/types';
|
||||
declare const _default: (title: string, arrayTable: Global.ArrayTable) => {
|
||||
title: string;
|
||||
arguments: unknown[];
|
||||
}[];
|
||||
export default _default;
|
||||
//# sourceMappingURL=array.d.ts.map
|
1
node_modules/jest-each/build/table/array.d.ts.map
generated
vendored
Normal file
1
node_modules/jest-each/build/table/array.d.ts.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"array.d.ts","sourceRoot":"","sources":["../../src/table/array.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAKH,OAAO,EAAC,MAAM,EAAC,MAAM,aAAa,CAAC;;;;;AASnC,wBAIM"}
|
126
node_modules/jest-each/build/table/array.js
generated
vendored
Normal file
126
node_modules/jest-each/build/table/array.js
generated
vendored
Normal file
|
@ -0,0 +1,126 @@
|
|||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
function _util() {
|
||||
const data = _interopRequireDefault(require('util'));
|
||||
|
||||
_util = function _util() {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
function _prettyFormat() {
|
||||
const data = _interopRequireDefault(require('pretty-format'));
|
||||
|
||||
_prettyFormat = function _prettyFormat() {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
|
||||
function _slicedToArray(arr, i) {
|
||||
return (
|
||||
_arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest()
|
||||
);
|
||||
}
|
||||
|
||||
function _nonIterableRest() {
|
||||
throw new TypeError('Invalid attempt to destructure non-iterable instance');
|
||||
}
|
||||
|
||||
function _iterableToArrayLimit(arr, i) {
|
||||
var _arr = [];
|
||||
var _n = true;
|
||||
var _d = false;
|
||||
var _e = undefined;
|
||||
try {
|
||||
for (
|
||||
var _i = arr[Symbol.iterator](), _s;
|
||||
!(_n = (_s = _i.next()).done);
|
||||
_n = true
|
||||
) {
|
||||
_arr.push(_s.value);
|
||||
if (i && _arr.length === i) break;
|
||||
}
|
||||
} catch (err) {
|
||||
_d = true;
|
||||
_e = err;
|
||||
} finally {
|
||||
try {
|
||||
if (!_n && _i['return'] != null) _i['return']();
|
||||
} finally {
|
||||
if (_d) throw _e;
|
||||
}
|
||||
}
|
||||
return _arr;
|
||||
}
|
||||
|
||||
function _arrayWithHoles(arr) {
|
||||
if (Array.isArray(arr)) return arr;
|
||||
}
|
||||
|
||||
const SUPPORTED_PLACEHOLDERS = /%[sdifjoOp%]/g;
|
||||
const PRETTY_PLACEHOLDER = '%p';
|
||||
const INDEX_PLACEHOLDER = '%#';
|
||||
const PLACEHOLDER_PREFIX = '%';
|
||||
const JEST_EACH_PLACEHOLDER_ESCAPE = '@@__JEST_EACH_PLACEHOLDER_ESCAPE__@@';
|
||||
|
||||
var _default = (title, arrayTable) =>
|
||||
normaliseTable(arrayTable).map((row, index) => ({
|
||||
arguments: row,
|
||||
title: formatTitle(title, row, index)
|
||||
}));
|
||||
|
||||
exports.default = _default;
|
||||
|
||||
const normaliseTable = table => (isTable(table) ? table : table.map(colToRow));
|
||||
|
||||
const isTable = table => table.every(Array.isArray);
|
||||
|
||||
const colToRow = col => [col];
|
||||
|
||||
const formatTitle = (title, row, rowIndex) =>
|
||||
row
|
||||
.reduce((formattedTitle, value) => {
|
||||
const _getMatchingPlacehold = getMatchingPlaceholders(formattedTitle),
|
||||
_getMatchingPlacehold2 = _slicedToArray(_getMatchingPlacehold, 1),
|
||||
placeholder = _getMatchingPlacehold2[0];
|
||||
|
||||
const normalisedValue = normalisePlaceholderValue(value);
|
||||
if (!placeholder) return formattedTitle;
|
||||
if (placeholder === PRETTY_PLACEHOLDER)
|
||||
return interpolatePrettyPlaceholder(formattedTitle, normalisedValue);
|
||||
return _util().default.format(formattedTitle, normalisedValue);
|
||||
}, interpolateTitleIndex(title, rowIndex))
|
||||
.replace(new RegExp(JEST_EACH_PLACEHOLDER_ESCAPE, 'g'), PLACEHOLDER_PREFIX);
|
||||
|
||||
const normalisePlaceholderValue = value =>
|
||||
typeof value === 'string' && SUPPORTED_PLACEHOLDERS.test(value)
|
||||
? value.replace(PLACEHOLDER_PREFIX, JEST_EACH_PLACEHOLDER_ESCAPE)
|
||||
: value;
|
||||
|
||||
const getMatchingPlaceholders = title =>
|
||||
title.match(SUPPORTED_PLACEHOLDERS) || [];
|
||||
|
||||
const interpolateTitleIndex = (title, index) =>
|
||||
title.replace(INDEX_PLACEHOLDER, index.toString());
|
||||
|
||||
const interpolatePrettyPlaceholder = (title, value) =>
|
||||
title.replace(
|
||||
PRETTY_PLACEHOLDER,
|
||||
(0, _prettyFormat().default)(value, {
|
||||
maxDepth: 1,
|
||||
min: true
|
||||
})
|
||||
);
|
13
node_modules/jest-each/build/table/template.d.ts
generated
vendored
Normal file
13
node_modules/jest-each/build/table/template.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
*/
|
||||
declare const _default: (title: string, headings: string[], row: unknown[]) => {
|
||||
title: string;
|
||||
arguments: unknown[];
|
||||
}[];
|
||||
export default _default;
|
||||
//# sourceMappingURL=template.d.ts.map
|
1
node_modules/jest-each/build/table/template.d.ts.map
generated
vendored
Normal file
1
node_modules/jest-each/build/table/template.d.ts.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"template.d.ts","sourceRoot":"","sources":["../../src/table/template.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;;;;AAWH,wBAWE"}
|
100
node_modules/jest-each/build/table/template.js
generated
vendored
Normal file
100
node_modules/jest-each/build/table/template.js
generated
vendored
Normal file
|
@ -0,0 +1,100 @@
|
|||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
function _prettyFormat() {
|
||||
const data = _interopRequireDefault(require('pretty-format'));
|
||||
|
||||
_prettyFormat = function _prettyFormat() {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
function _jestGetType() {
|
||||
const data = require('jest-get-type');
|
||||
|
||||
_jestGetType = function _jestGetType() {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
*/
|
||||
var _default = (title, headings, row) => {
|
||||
const table = convertRowToTable(row, headings);
|
||||
const templates = convertTableToTemplates(table, headings);
|
||||
return templates.map(template => ({
|
||||
arguments: [template],
|
||||
title: interpolate(title, template)
|
||||
}));
|
||||
};
|
||||
|
||||
exports.default = _default;
|
||||
|
||||
const convertRowToTable = (row, headings) =>
|
||||
Array.from({
|
||||
length: row.length / headings.length
|
||||
}).map((_, index) =>
|
||||
row.slice(
|
||||
index * headings.length,
|
||||
index * headings.length + headings.length
|
||||
)
|
||||
);
|
||||
|
||||
const convertTableToTemplates = (table, headings) =>
|
||||
table.map(row =>
|
||||
row.reduce(
|
||||
(acc, value, index) =>
|
||||
Object.assign(acc, {
|
||||
[headings[index]]: value
|
||||
}),
|
||||
{}
|
||||
)
|
||||
);
|
||||
|
||||
const interpolate = (title, template) =>
|
||||
Object.keys(template)
|
||||
.reduce(getMatchingKeyPaths(title), []) // aka flatMap
|
||||
.reduce(replaceKeyPathWithValue(template), title);
|
||||
|
||||
const getMatchingKeyPaths = title => (matches, key) =>
|
||||
matches.concat(title.match(new RegExp(`\\$${key}[\\.\\w]*`, 'g')) || []);
|
||||
|
||||
const replaceKeyPathWithValue = template => (title, match) => {
|
||||
const keyPath = match.replace('$', '').split('.');
|
||||
const value = getPath(template, keyPath);
|
||||
|
||||
if ((0, _jestGetType().isPrimitive)(value)) {
|
||||
return title.replace(match, String(value));
|
||||
}
|
||||
|
||||
return title.replace(
|
||||
match,
|
||||
(0, _prettyFormat().default)(value, {
|
||||
maxDepth: 1,
|
||||
min: true
|
||||
})
|
||||
);
|
||||
};
|
||||
|
||||
const getPath = (template, [head, ...tail]) => {
|
||||
if (!head || !template.hasOwnProperty || !template.hasOwnProperty(head))
|
||||
return template;
|
||||
return getPath(template[head], tail);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue