asymmetricMatchers.js 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.stringNotMatching =
  6. exports.stringNotContaining =
  7. exports.stringMatching =
  8. exports.stringContaining =
  9. exports.objectNotContaining =
  10. exports.objectContaining =
  11. exports.arrayNotContaining =
  12. exports.arrayContaining =
  13. exports.anything =
  14. exports.any =
  15. exports.AsymmetricMatcher =
  16. void 0;
  17. var matcherUtils = _interopRequireWildcard(require('jest-matcher-utils'));
  18. var _jasmineUtils = require('./jasmineUtils');
  19. var _jestMatchersObject = require('./jestMatchersObject');
  20. var _utils = require('./utils');
  21. function _getRequireWildcardCache(nodeInterop) {
  22. if (typeof WeakMap !== 'function') return null;
  23. var cacheBabelInterop = new WeakMap();
  24. var cacheNodeInterop = new WeakMap();
  25. return (_getRequireWildcardCache = function (nodeInterop) {
  26. return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
  27. })(nodeInterop);
  28. }
  29. function _interopRequireWildcard(obj, nodeInterop) {
  30. if (!nodeInterop && obj && obj.__esModule) {
  31. return obj;
  32. }
  33. if (obj === null || (typeof obj !== 'object' && typeof obj !== 'function')) {
  34. return {default: obj};
  35. }
  36. var cache = _getRequireWildcardCache(nodeInterop);
  37. if (cache && cache.has(obj)) {
  38. return cache.get(obj);
  39. }
  40. var newObj = {};
  41. var hasPropertyDescriptor =
  42. Object.defineProperty && Object.getOwnPropertyDescriptor;
  43. for (var key in obj) {
  44. if (key !== 'default' && Object.prototype.hasOwnProperty.call(obj, key)) {
  45. var desc = hasPropertyDescriptor
  46. ? Object.getOwnPropertyDescriptor(obj, key)
  47. : null;
  48. if (desc && (desc.get || desc.set)) {
  49. Object.defineProperty(newObj, key, desc);
  50. } else {
  51. newObj[key] = obj[key];
  52. }
  53. }
  54. }
  55. newObj.default = obj;
  56. if (cache) {
  57. cache.set(obj, newObj);
  58. }
  59. return newObj;
  60. }
  61. var global = (function () {
  62. if (typeof globalThis !== 'undefined') {
  63. return globalThis;
  64. } else if (typeof global !== 'undefined') {
  65. return global;
  66. } else if (typeof self !== 'undefined') {
  67. return self;
  68. } else if (typeof window !== 'undefined') {
  69. return window;
  70. } else {
  71. return Function('return this')();
  72. }
  73. })();
  74. var Symbol = global['jest-symbol-do-not-touch'] || global.Symbol;
  75. function _defineProperty(obj, key, value) {
  76. if (key in obj) {
  77. Object.defineProperty(obj, key, {
  78. value: value,
  79. enumerable: true,
  80. configurable: true,
  81. writable: true
  82. });
  83. } else {
  84. obj[key] = value;
  85. }
  86. return obj;
  87. }
  88. const utils = Object.freeze({
  89. ...matcherUtils,
  90. iterableEquality: _utils.iterableEquality,
  91. subsetEquality: _utils.subsetEquality
  92. });
  93. class AsymmetricMatcher {
  94. constructor(sample, inverse = false) {
  95. this.sample = sample;
  96. this.inverse = inverse;
  97. _defineProperty(this, '$$typeof', Symbol.for('jest.asymmetricMatcher'));
  98. }
  99. getMatcherContext() {
  100. return {
  101. ...(0, _jestMatchersObject.getState)(),
  102. equals: _jasmineUtils.equals,
  103. isNot: this.inverse,
  104. utils
  105. };
  106. }
  107. }
  108. exports.AsymmetricMatcher = AsymmetricMatcher;
  109. class Any extends AsymmetricMatcher {
  110. constructor(sample) {
  111. if (typeof sample === 'undefined') {
  112. throw new TypeError(
  113. 'any() expects to be passed a constructor function. ' +
  114. 'Please pass one or use anything() to match any object.'
  115. );
  116. }
  117. super(sample);
  118. }
  119. asymmetricMatch(other) {
  120. if (this.sample == String) {
  121. return typeof other == 'string' || other instanceof String;
  122. }
  123. if (this.sample == Number) {
  124. return typeof other == 'number' || other instanceof Number;
  125. }
  126. if (this.sample == Function) {
  127. return typeof other == 'function' || other instanceof Function;
  128. }
  129. if (this.sample == Boolean) {
  130. return typeof other == 'boolean' || other instanceof Boolean;
  131. }
  132. if (this.sample == BigInt) {
  133. return typeof other == 'bigint' || other instanceof BigInt;
  134. }
  135. if (this.sample == Symbol) {
  136. return typeof other == 'symbol' || other instanceof Symbol;
  137. }
  138. if (this.sample == Object) {
  139. return typeof other == 'object';
  140. }
  141. return other instanceof this.sample;
  142. }
  143. toString() {
  144. return 'Any';
  145. }
  146. getExpectedType() {
  147. if (this.sample == String) {
  148. return 'string';
  149. }
  150. if (this.sample == Number) {
  151. return 'number';
  152. }
  153. if (this.sample == Function) {
  154. return 'function';
  155. }
  156. if (this.sample == Object) {
  157. return 'object';
  158. }
  159. if (this.sample == Boolean) {
  160. return 'boolean';
  161. }
  162. return (0, _jasmineUtils.fnNameFor)(this.sample);
  163. }
  164. toAsymmetricMatcher() {
  165. return 'Any<' + (0, _jasmineUtils.fnNameFor)(this.sample) + '>';
  166. }
  167. }
  168. class Anything extends AsymmetricMatcher {
  169. asymmetricMatch(other) {
  170. return !(0, _jasmineUtils.isUndefined)(other) && other !== null;
  171. }
  172. toString() {
  173. return 'Anything';
  174. } // No getExpectedType method, because it matches either null or undefined.
  175. toAsymmetricMatcher() {
  176. return 'Anything';
  177. }
  178. }
  179. class ArrayContaining extends AsymmetricMatcher {
  180. constructor(sample, inverse = false) {
  181. super(sample, inverse);
  182. }
  183. asymmetricMatch(other) {
  184. if (!Array.isArray(this.sample)) {
  185. throw new Error(
  186. `You must provide an array to ${this.toString()}, not '` +
  187. typeof this.sample +
  188. "'."
  189. );
  190. }
  191. const result =
  192. this.sample.length === 0 ||
  193. (Array.isArray(other) &&
  194. this.sample.every(item =>
  195. other.some(another => (0, _jasmineUtils.equals)(item, another))
  196. ));
  197. return this.inverse ? !result : result;
  198. }
  199. toString() {
  200. return `Array${this.inverse ? 'Not' : ''}Containing`;
  201. }
  202. getExpectedType() {
  203. return 'array';
  204. }
  205. }
  206. class ObjectContaining extends AsymmetricMatcher {
  207. constructor(sample, inverse = false) {
  208. super(sample, inverse);
  209. }
  210. asymmetricMatch(other) {
  211. if (typeof this.sample !== 'object') {
  212. throw new Error(
  213. `You must provide an object to ${this.toString()}, not '` +
  214. typeof this.sample +
  215. "'."
  216. );
  217. }
  218. let result = true;
  219. for (const property in this.sample) {
  220. if (
  221. !(0, _jasmineUtils.hasProperty)(other, property) ||
  222. !(0, _jasmineUtils.equals)(this.sample[property], other[property])
  223. ) {
  224. result = false;
  225. break;
  226. }
  227. }
  228. return this.inverse ? !result : result;
  229. }
  230. toString() {
  231. return `Object${this.inverse ? 'Not' : ''}Containing`;
  232. }
  233. getExpectedType() {
  234. return 'object';
  235. }
  236. }
  237. class StringContaining extends AsymmetricMatcher {
  238. constructor(sample, inverse = false) {
  239. if (!(0, _jasmineUtils.isA)('String', sample)) {
  240. throw new Error('Expected is not a string');
  241. }
  242. super(sample, inverse);
  243. }
  244. asymmetricMatch(other) {
  245. const result =
  246. (0, _jasmineUtils.isA)('String', other) && other.includes(this.sample);
  247. return this.inverse ? !result : result;
  248. }
  249. toString() {
  250. return `String${this.inverse ? 'Not' : ''}Containing`;
  251. }
  252. getExpectedType() {
  253. return 'string';
  254. }
  255. }
  256. class StringMatching extends AsymmetricMatcher {
  257. constructor(sample, inverse = false) {
  258. if (
  259. !(0, _jasmineUtils.isA)('String', sample) &&
  260. !(0, _jasmineUtils.isA)('RegExp', sample)
  261. ) {
  262. throw new Error('Expected is not a String or a RegExp');
  263. }
  264. super(new RegExp(sample), inverse);
  265. }
  266. asymmetricMatch(other) {
  267. const result =
  268. (0, _jasmineUtils.isA)('String', other) && this.sample.test(other);
  269. return this.inverse ? !result : result;
  270. }
  271. toString() {
  272. return `String${this.inverse ? 'Not' : ''}Matching`;
  273. }
  274. getExpectedType() {
  275. return 'string';
  276. }
  277. }
  278. const any = expectedObject => new Any(expectedObject);
  279. exports.any = any;
  280. const anything = () => new Anything();
  281. exports.anything = anything;
  282. const arrayContaining = sample => new ArrayContaining(sample);
  283. exports.arrayContaining = arrayContaining;
  284. const arrayNotContaining = sample => new ArrayContaining(sample, true);
  285. exports.arrayNotContaining = arrayNotContaining;
  286. const objectContaining = sample => new ObjectContaining(sample);
  287. exports.objectContaining = objectContaining;
  288. const objectNotContaining = sample => new ObjectContaining(sample, true);
  289. exports.objectNotContaining = objectNotContaining;
  290. const stringContaining = expected => new StringContaining(expected);
  291. exports.stringContaining = stringContaining;
  292. const stringNotContaining = expected => new StringContaining(expected, true);
  293. exports.stringNotContaining = stringNotContaining;
  294. const stringMatching = expected => new StringMatching(expected);
  295. exports.stringMatching = stringMatching;
  296. const stringNotMatching = expected => new StringMatching(expected, true);
  297. exports.stringNotMatching = stringNotMatching;