-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathconfigurableTest.js
135 lines (116 loc) · 4.55 KB
/
configurableTest.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
Object.defineProperty(RegExp, "fakeProp", {
value: 101,
writable: true,
enumerable: true,
configurable: true
});
var propertyConstructorArray = ["fakeProp","$_","$*","$&","$+","$`","$'","input",
"lastMatch","lastParen","leftContext","rightContext",
"index","length","prototype","constructor"
];
var propertyInstanceArray = ["global","ignoreCase","lastIndex","multiline","source","sticky","dotAll"];
function RegexTests(i,propertyArray)
{
WScript.Echo("starting Property[",i,"]: ",propertyArray[i]);
//Does the property exist
var doesPropExist = RegExp.hasOwnProperty(propertyArray[i]);
WScript.Echo("Does Property exist: ",doesPropExist);
if(!doesPropExist) return;
//Is the property configurable
var isPropConfig = Object.getOwnPropertyDescriptor(RegExp, propertyArray[i]).configurable;
WScript.Echo("Is the Property configurable: ",isPropConfig);
var canRedefine = false;
var canDelete = false;
if(isPropConfig)
{
canRedefine = true;
canDelete = true;
}
var propValueBefore = RegExp[propertyArray[i]];
try
{
Object.defineProperty(RegExp, propertyArray[i], { get : function () { return 'OVERRIDE' } });
}
catch(err)
{
if(isPropConfig) WScript.Echo("Fail");
else WScript.Echo("PASS, Not Configurable and will not allow redefinition");
}
var deleteProp = false;
if(isPropConfig)
{
if(RegExp[propertyArray[i]] =="OVERRIDE") WScript.Echo("PASS");
else WScript.Echo("FAIL, currently equals: ",RegExp[propertyArray[i]]);
}
else
{
if(RegExp[propertyArray[i]] ==propValueBefore) WScript.Echo("PASS");
else WScript.Echo("FAIL, currently equals: ",RegExp[propertyArray[i]]);
}
deleteProp = delete RegExp[propertyArray[i]];
WScript.Echo("can you delete the property: ",canDelete, "did it actually delete?",deleteProp);
if(deleteProp ==canDelete) WScript.Echo("Pass Delete Test");
else WScript.Echo("Fail Delete Test");
}
function RegexInstanceTests(i,propertyArray)
{
var pattern1=new RegExp("e");
WScript.Echo("starting Property[",i,"]: ",propertyArray[i]);
//Does the property exist
var doesPropExist = pattern1.hasOwnProperty(propertyArray[i]);
WScript.Echo("Does Property exist: ",doesPropExist);
if(!doesPropExist) return;
var isPropConfig = Object.getOwnPropertyDescriptor(pattern1, propertyArray[i]).configurable;
WScript.Echo("Is the Property configurable: ",isPropConfig);
var canRedefine = false;
var canDelete = false;
if(isPropConfig)
{
canRedefine = true;
canDelete = true;
}
var propValueBefore = pattern1[propertyArray[i]];
try
{
Object.defineProperty(pattern1, propertyArray[i], { get : function () { return 'OVERRIDE' } });
}
catch(err)
{
if(isPropConfig) WScript.Echo("Fail");
else WScript.Echo("PASS, Not Configurable and will not allow redefinition");
}
var deleteProp = false;
if(isPropConfig)
{
if(pattern1[propertyArray[i]] =="OVERRIDE") WScript.Echo("PASS");
else WScript.Echo("FAIL, currently equals: ",pattern1[propertyArray[i]]);
}
else
{
if(pattern1[propertyArray[i]] ==propValueBefore) WScript.Echo("PASS");
else WScript.Echo("FAIL, currently equals: ",pattern1[propertyArray[i]]);
}
deleteProp = delete pattern1[propertyArray[i]];
WScript.Echo("can you delete the property: ",canDelete, "did it actually delete?",deleteProp);
if(deleteProp ==canDelete) WScript.Echo("Pass Delete Test");
else WScript.Echo("Fail Delete Test");
}
for(var i = 0; i < propertyConstructorArray.length;i++)
{
RegexTests(i,propertyConstructorArray);
WScript.Echo("\n");
}
for(var i = 0; i < propertyInstanceArray.length;i++)
{
RegexTests(i,propertyInstanceArray);
WScript.Echo("\n");
}
for(var i = 0; i < propertyInstanceArray.length;i++)
{
RegexInstanceTests(i,propertyInstanceArray);
WScript.Echo("\n");
}