-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathtest_context.py
278 lines (264 loc) · 8.19 KB
/
test_context.py
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# -*- coding: utf-8 -*-
import pytest
from mathics_scanner.errors import IncompleteSyntaxError
from .helper import check_evaluation, reset_session
str_test_context_1 = """
BeginPackage["FeynCalc`"];
AppendTo[$ContextPath, "FeynCalc`Package`"];
Begin["`Package`"];(*Symbols to be shared between subpackages*)
sharedSymbol;
End[];
foo::usage = "";
bar::usage = "";(*-----------------------------------------*)
Begin["`MySubpackageA`Private`"];
intVarA::usage = "";
foo[x_] := (
Print["I can access sharedSymbol directly, since it is in ",
Context[sharedSymbol], " and not in ",
Context[intVarA]];
sharedSymbol = x;
x
);
End[];(*-----------------------------------------*)
Begin["`MySubpackageB`Private`"];
intVarB::usage = "";
bar[] := (
Print["I can access sharedSymbol directly, since it is in ",
Context[sharedSymbol], " and not in ",
Context[intVarB]];
sharedSymbol
);
End[];
EndPackage[];
"""
def test_context1():
expr = ""
for line in str_test_context_1.split("\n"):
if line in ("", "\n"):
continue
expr = expr + line
try:
print("expr=", expr)
check_evaluation(
expr, "Null", to_string_expr=False, to_string_expected=False
)
expr = ""
print(" OK")
except IncompleteSyntaxError:
continue
check_evaluation("foo[42]", "42", to_string_expr=False, to_string_expected=False)
check_evaluation("bar[]", "42", to_string_expr=False, to_string_expected=False)
@pytest.mark.parametrize(
("expr", "expected", "lst_messages", "msg"),
[
(
"""globalvarY = 37;""",
None,
None,
"set the value of a global symbol",
),
(
"""globalvarZ = 37;""",
None,
None,
"set the value of a global symbol",
),
(
"""BeginPackage["apackage`"];""",
None,
None,
"Start a context. Add it to the context path",
),
(
"""Minus::usage=" usage string set in the package for Minus";""",
None,
None,
"set the usage string for a protected symbol ->no error",
),
(
"""Minus::mymessage=" custom message string for Minus";""",
None,
None,
"set a custom message for a protected symbol ->no error",
),
(
"""Minus = pq;""",
None,
tuple(
[
"Symbol Minus is Protected.",
]
),
"try to set a value for a protected symbol ->error",
),
(
"""X::usage = "package variable";""",
None,
None,
"set the usage string for a package variable",
),
(
"""globalvarZ::usage = "a global variable";""",
None,
None,
"set the usage string for a global symbol",
),
(
"""globalvarZ = 57;""",
None,
None,
"reset the value of a global symbol",
),
("""B = 6;""", None, None, "Set a symbol value in the package context"),
(
"""Begin["`implementation`"];""",
None,
None,
"Start a context. Do not add it to the context path",
),
(
"""{Context[A], Context[B], Context[X], Context[globalvarY], Context[globalvarZ]}""",
"""{"apackage`implementation`", "apackage`", "apackage`", "apackage`implementation`", "apackage`"}""",
None,
None, # "context of the variables"
),
(
"""globalvarY::usage = "a global variable";""",
None,
None,
"set the usage string for a global symbol",
),
(
"""globalvarY = 97;""",
None,
None,
"reset the value of a global symbol",
),
(
"""Plus = PP;""",
None,
tuple(
[
"Symbol Plus is Protected.",
]
),
"try to set a value for a protected symbol ->error",
),
(
"""Plus::usage=" usage string set in the package for Plus";""",
None,
None,
"set the usage string for a protected symbol ->no error",
),
(
"""Plus::mymessage=" custom message string for Plus";""",
None,
None,
"set a custom message for a protected symbol ->no error",
),
("""A = 7;""", None, None, "Set a symbol value in the context"),
("""X = 9;""", None, None, "set the value of the package variable"),
("""End[];""", None, None, "go back to the previous context"),
(
"""{Context[A], Context[B], Context[X], Context[globalvarY], Context[globalvarZ]}""",
"""{"apackage`", "apackage`", "apackage`", "apackage`", "apackage`"}""",
None,
None, # "context of the variables in the package"
),
(
"""EndPackage[];""",
None,
None,
"go back to the previous context. Keep the context in the contextpath",
),
(
"""{Context[A], Context[B], Context[X], Context[globalvarY], Context[globalvarZ]}""",
"""{"apackage`", "apackage`", "apackage`", "apackage`", "apackage`"}""",
None,
None, # "context of the variables at global level"
),
("""A""", "A", None, "A is not in any context of the context path. "),
("""B""", "6", None, "B is in a context of the context path"),
("""Global`globalvarY""", "37", None, ""),
(
"""Global`globalvarY::usage""",
"Global`globalvarY::usage",
None,
"In WMA, the value would be set in the package",
),
("""Global`globalvarZ""", "37", None, "the value set inside the package"),
(
"""Global`globalvarZ::usage""",
"Global`globalvarZ::usage",
None,
"not affected by the package",
),
("""globalvarY""", "apackage`globalvarY", None, ""),
(
"""globalvarY::usage""",
"apackage`globalvarY::usage",
None,
"In WMA, the value would be set in the package",
),
("""globalvarZ""", "57", None, "the value set inside the package"),
(
"""globalvarZ::usage""",
'"a global variable"',
None,
"not affected by the package",
),
("""X""", "9", None, "X is in a context of the context path"),
(
"""X::usage""",
'"package variable"',
None,
"X is in a context of the context path",
),
(
"""apackage`implementation`A""",
"7",
None,
"get A using its fully qualified name",
),
("""apackage`B""", "6", None, "get B using its fully qualified name"),
(
"""Plus::usage""",
' " usage string set in the package for Plus" ',
None,
"custom usage for Plus",
),
(
"""Minus::usage""",
'" usage string set in the package for Minus"',
None,
"custom usage for Minus",
),
(
"""Plus::mymessage""",
'" custom message string for Plus"',
None,
"custom message for Plus",
),
(
"""Minus::mymessage""",
'" custom message string for Minus"',
None,
"custom message for Minus",
),
(None, None, None, None),
],
)
def test_context2(expr, expected, lst_messages, msg):
if expr is not None and expected is None:
expected = "System`Null"
if lst_messages is None:
lst_messages = tuple([])
check_evaluation(
expr,
expected,
failure_message=msg,
to_string_expr=False,
to_string_expected=False,
expected_messages=lst_messages,
hold_expected=True,
)