-
Notifications
You must be signed in to change notification settings - Fork 2
/
TestItem.cs
executable file
·331 lines (277 loc) · 8.72 KB
/
TestItem.cs
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
// Copyright 2004 Dominic Cooney. All Rights Reserved.
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using NUnit.Framework;
using System;
using System.Collections.Generic;
namespace Earley
{
[TestFixture]
public class TestItem
{
[Test]
public void Create()
{
new Item(new Production(), new State());
}
[Test, ExpectedException(typeof(ArgumentNullException))]
public void CreateNullProduction()
{
new Item(null, new State());
}
[Test, ExpectedException(typeof(ArgumentNullException))]
public void CreateNullParent()
{
new Item(new Production(), null);
}
[Test, ExpectedException(typeof(InvalidOperationException))]
public void ShiftAtStart()
{
Production p = new Production(new Terminal('x', 'y'));
Item item = new Item(p, new State());
item.Add('x');
}
[Test]
public void ShiftTerminal()
{
Production p = new Production(new Terminal('x', 'y'));
Item item = new Item(p, new State());
item.NextItem.Add('x');
}
[Test, ExpectedException(typeof(ArgumentException))]
public void ShiftUnrelatedTerminal()
{
Production p = new Production(new Terminal('x', 'y'));
Item item = new Item(p, new State());
item.NextItem.Add('a');
}
[Test]
public void ShiftNonterminal()
{
Production p = new Production();
Production q = new Production(new Nonterminal(p));
Item item = new Item(q, new State());
item.NextItem.Add(new Item(p, new State()));
}
[Test, ExpectedException(typeof(InvalidOperationException))]
public void ShiftTerminalForNonterminal()
{
Production p = new Production();
Production q = new Production(new Nonterminal(p));
Item item = new Item(q, new State());
item.NextItem.Add('x');
}
[Test, ExpectedException(typeof(InvalidOperationException))]
public void ShiftNonterminalForTerminal()
{
Production p = new Production(new Terminal('x', 'y'));
Item item = new Item(p, new State());
item.NextItem.Add(new Item(p, new State()));
}
[Test, ExpectedException(typeof(ArgumentException))]
public void ShiftUnrelatedNonterminal()
{
Production p = new Production();
Production q = new Production(new Nonterminal(p));
Item item = new Item(q, new State());
item.NextItem.Add(new Item(new Production(), new State()));
}
[Test]
public void Equals()
{
Production p = new Production(Terminal.Eof);
State s = new State();
Item item = new Item(p, s);
Assert.IsFalse(item.Equals(null));
Assert.IsFalse(item.Equals(new object()));
Assert.IsTrue(item.Equals(item), "Identity");
Assert.IsTrue(item.Equals(new Item(p, s)), "Value equality");
Assert.IsFalse(item.Equals(new Item(p, new State())), "Vary by state");
Assert.IsFalse(item.Equals(new Item(new Production(), s)), "Vary by production");
Assert.IsFalse(item.Equals(item.NextItem), "Vary by index");
Item another = new Item(p, s);
Assert.IsFalse(item.NextItem.Equals(another.NextItem), "Vary by previous item");
}
[Test, ExpectedException(typeof(InvalidOperationException))]
public void NextItemAtEnd()
{
Item item = new Item(new Production(), new State());
item = item.NextItem;
}
[Test]
public void NextItem()
{
Item item = new Item(new Production(Terminal.Eof), new State());
}
[Test, ExpectedException(typeof(InvalidOperationException))]
public void SymbolAtEnd()
{
Item item = new Item(new Production(), new State());
Symbol sym = item.Symbol;
}
[Test]
public void Symbol()
{
Item item = new Item(new Production(new Terminal('x'), Terminal.Eof), new State());
Assert.IsTrue(((Terminal)item.Symbol).Contains('x'));
Assert.AreEqual(item.NextItem.Symbol, Terminal.Eof);
}
[Test]
public void AtEnd()
{
Assert.IsTrue(new Item(new Production(), new State()).AtEnd);
Item item = new Item(new Production(Terminal.Eof), new State());
Assert.IsFalse(item.AtEnd);
Assert.IsTrue(item.NextItem.AtEnd);
}
[Test, ExpectedException(typeof(ArgumentNullException))]
public void ContainsNull()
{
new State().Contains(null);
}
[Test]
public void Contains()
{
State s = new State();
Item item = new Item(new Production(), s);
Assert.IsFalse(s.Contains(item));
s.Add(item);
Assert.IsTrue(s.Contains(item));
}
[Test, ExpectedException(typeof(InvalidOperationException))]
public void ReduceBeforeEnd()
{
Reduction r = new Reduction("return \"hello\";", Terminal.Eof);
ReductionCompiler comp = new ReductionCompiler();
comp.Add(r);
comp.Compile();
new Item(r, new State()).Reduce();
}
[Test]
public void TrivalReduce()
{
Reduction reduction = new Reduction("return 42;");
ReductionCompiler comp = new ReductionCompiler();
comp.Add(reduction);
comp.Compile();
Item item = new Item(reduction, new State());
IList<object> results = item.Reduce();
Assert.AreEqual(1, results.Count);
Assert.AreEqual(42, results[0]);
}
[Test, ExpectedException(typeof(InvalidOperationException))]
public void ReduceProduction()
{
new Item(new Production(), new State()).Reduce();
}
[Test]
public void Reduce()
{
Reduction n1 = new Reduction("return 1;");
Reduction n2 = new Reduction("return 2;");
Reduction n10 = new Reduction("return 10;");
Nonterminal exp = new Nonterminal();
Reduction plus = new Reduction("return (int)$0 + (int)$1;", exp, exp);
exp.Add(n1);
exp.Add(n2);
exp.Add(n10);
exp.Add(plus);
ReductionCompiler comp = new ReductionCompiler();
comp.Add(n1);
comp.Add(n2);
comp.Add(n10);
comp.Add(plus);
comp.Compile();
// +
// / \
// + \
// / \ \
// ? 1 ?
// / \ / \
// 1 2 + 10
// / \
// ? 1
// / \
// 1 2
Item inner = new Item(plus, new State());
inner = inner.NextItem;
inner.Add(new Item(n1, new State()));
inner.Add(new Item(n2, new State()));
inner = inner.NextItem;
inner.Add(new Item(n1, new State()));
Item item = new Item(plus, new State());
item = item.NextItem;
item.Add(inner);
item = item.NextItem;
item.Add(inner);
item.Add(new Item(n10, new State()));
IList<object> result = item.Reduce();
int[] precomputed = new int[] {
4, 5, 12, 5, 6, 13
};
Assert.AreEqual(precomputed.Length, result.Count);
for (int i = 0; i < precomputed.Length; i++)
{
Assert.AreEqual(precomputed[i], result[i]);
}
}
[Test]
public void ReduceTerminals()
{
Reduction r = new Reduction(
"return string.Format(\"{0}{1}{2}\", (char)(int)$0, (char)(int)$1, (char)(int)$2);",
new Terminal('f', 'b'),
new Terminal('o'),
new Terminal('o'));
ReductionCompiler comp = new ReductionCompiler();
comp.Add(r);
comp.Compile();
Item item = new Item(r, new State());
item = item.NextItem;
item.Add('f');
item.Add('b');
item = item.NextItem;
item.Add('o');
item = item.NextItem;
item.Add('o');
IList<object> results = item.Reduce();
Assert.AreEqual(2, results.Count);
Assert.AreEqual("foo", results[0]);
Assert.AreEqual("boo", results[1]);
}
[Test, ExpectedException(typeof(ArgumentNullException))]
public void IsImportCompatibleNull()
{
new Item(new Production(), new State()).IsImportCompatible(null);
}
[Test]
public void IsImportCompatible()
{
Item item = new Item(new Production(new Terminal('x')), new State());
Assert.IsTrue(item.IsImportCompatible(item));
// unrelated items are not import compatible
Assert.IsFalse(item.IsImportCompatible(item.NextItem));
// related items with no derivations are import compatible
Item nextItem = item.NextItem;
Assert.IsTrue(nextItem.IsImportCompatible(nextItem));
// calling x.IsImportCompatible(x) is unusual, but is false
// below because item has derivation now!
nextItem.Add('x');
Assert.IsFalse(nextItem.IsImportCompatible(nextItem));
// related item with no derivations is compatible with one
// *with* derivations
Assert.IsTrue(nextItem.IsImportCompatible(item.NextItem));
}
}
}