This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 249
/
jest-setup.js
145 lines (126 loc) · 4.09 KB
/
jest-setup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* eslint-disable */
// https://github.com/facebook/jest/issues/3552
jest.doMock("oniguruma", function mockOniguruma() {
// https://github.com/atom/node-oniguruma/blob/3664b41e615697a3abd3b13e67226d177fa4143b/src/oniguruma.js
// with just "configurable: true" on Object.defineProperty
"use strict";
const OnigScanner = require("oniguruma/build/Release/onig_scanner.node")
.OnigScanner;
const OnigString = require("oniguruma/build/Release/onig_scanner.node")
.OnigString;
function OnigRegExp(source) {
this.source = source;
this.scanner = new OnigScanner([this.source]);
}
OnigRegExp.prototype.captureIndicesForMatch = function(string, match) {
var capture, captureIndices, i, len;
if (match != null) {
captureIndices = match.captureIndices;
string = this.scanner.convertToString(string);
for (i = 0, len = captureIndices.length; i < len; i++) {
capture = captureIndices[i];
capture.match = string.slice(capture.start, capture.end);
}
return captureIndices;
} else {
return null;
}
};
OnigRegExp.prototype.searchSync = function(string, startPosition) {
var match;
if (startPosition == null) {
startPosition = 0;
}
match = this.scanner.findNextMatchSync(string, startPosition);
return this.captureIndicesForMatch(string, match);
};
OnigRegExp.prototype.search = function(string, startPosition, callback) {
if (startPosition == null) {
startPosition = 0;
}
if (typeof startPosition === "function") {
callback = startPosition;
startPosition = 0;
}
return this.scanner.findNextMatch(
string,
startPosition,
(function(_this) {
return function(error, match) {
return typeof callback === "function"
? callback(error, _this.captureIndicesForMatch(string, match))
: void 0;
};
})(this),
);
};
OnigRegExp.prototype.testSync = function(string) {
return this.searchSync(string) != null;
};
OnigRegExp.prototype.test = function(string, callback) {
return this.search(string, 0, function(error, result) {
return typeof callback === "function"
? callback(error, result != null)
: void 0;
});
};
OnigScanner.prototype.findNextMatch = function(
string,
startPosition,
callback,
) {
if (startPosition == null) startPosition = 0;
if (typeof startPosition === "function") {
callback = startPosition;
startPosition = 0;
}
string = this.convertToString(string);
startPosition = this.convertToNumber(startPosition);
this._findNextMatch(string, startPosition, (error, match) => {
if (match) match.scanner = this;
return callback(error, match);
});
};
OnigScanner.prototype.findNextMatchSync = function(string, startPosition) {
if (startPosition == null) {
startPosition = 0;
}
string = this.convertToString(string);
startPosition = this.convertToNumber(startPosition);
let match = this._findNextMatchSync(string, startPosition);
if (match) match.scanner = this;
return match;
};
OnigScanner.prototype.convertToString = function(value) {
if (value === undefined) return "undefined";
if (value === null) return "null";
if (value.constructor == OnigString) return value;
return value.toString();
};
OnigScanner.prototype.convertToNumber = function(value) {
value = parseInt(value);
if (!isFinite(value)) {
value = 0;
}
value = Math.max(value, 0);
return value;
};
OnigString.prototype.substring = function(start, end) {
return this.content.substring(start, end);
};
OnigString.prototype.toString = function(start, end) {
return this.content;
};
Object.defineProperty(OnigString.prototype, "length", {
get() {
return this.content.length;
},
// https://github.com/facebook/jest/issues/3552
configurable: true,
});
// exports.OnigScanner = OnigScanner
// exports.OnigRegExp = OnigRegExp
// exports.OnigString = OnigString
return { OnigScanner, OnigRegExp, OnigString };
});
/* eslint-enable */