whiley_file 0.1.0

An API for manipulating files written in the Whiley Programming Language.
Documentation
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
use whiley_file::ast::*;
use whiley_file::parser::Parser;

// ======================================================
// Tests (Type Declarations)
// ======================================================

#[test]
fn test_type_01() {
    check_parse_error("type nat is i32 x");
}

#[test]
fn test_type_02() {
    check_parse_error("type nat is i8;");
}

#[test]
fn test_type_03() {
    let ast = check_parse("type t is bool");
    check_name(ast.get(0),"t");
    assert_eq!(ast.get(1),&Node::from(BoolType{}));
}

#[test]
fn test_type_04() {
    let ast = check_parse("type nat is i8");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(true,8)));
}

#[test]
fn test_type_05() {
    let ast = check_parse("type nat is i16");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(true,16)));
}

#[test]
fn test_type_06() {
    let ast = check_parse("type nat is i32");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(true,32)));
}

#[test]
fn test_type_07() {
    let ast = check_parse("type nat is i64");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(true,64)));
}

#[test]
fn test_type_08() {
    let ast = check_parse("type nat is u8");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(false,8)));
}

#[test]
fn test_type_09() {
    let ast = check_parse("type nat is u16");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(false,16)));
}

#[test]
fn test_type_10() {
    let ast = check_parse("type nat is u32");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(false,32)));
}

#[test]
fn test_type_11() {
    let ast = check_parse("type nat is u64");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(false,64)));
}

#[test]
fn test_type_12() {
    let ast = check_parse("type nat is i32[]");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(true,32)));
    assert_eq!(ast.get(2),&Node::from(ArrayType(Type(1))));
}

#[test]
fn test_type_13() {
    let ast = check_parse("type nat is i32[][]");
    check_name(ast.get(0),"nat");
    assert_eq!(ast.get(1),&Node::from(IntType(true,32)));
    assert_eq!(ast.get(2),&Node::from(ArrayType(Type(1))));
    assert_eq!(ast.get(3),&Node::from(ArrayType(Type(2))));
}

#[test]
fn test_type_14() {
    let ast = check_parse("type ref is &i16");
    check_name(ast.get(0),"ref");
    assert_eq!(ast.get(1),&Node::from(IntType(true,16)));
    assert_eq!(ast.get(2),&Node::from(ReferenceType(Type(1))));
}

#[test]
fn test_type_15() {
    let ast = check_parse("type ref is &(&i16)");
    check_name(ast.get(0),"ref");
    assert_eq!(ast.get(1),&Node::from(IntType(true,16)));
    assert_eq!(ast.get(2),&Node::from(ReferenceType(Type(1))));
    assert_eq!(ast.get(3),&Node::from(ReferenceType(Type(2))));
}

#[test]
fn test_type_16() {
    let ast = check_parse("type rec is {i64 f}");
    check_name(ast.get(0),"rec");
    assert_eq!(ast.get(1),&Node::from(IntType(true,64)));
    check_name(ast.get(2),"f");
    assert_eq!(ast.get(3),&Node::from(RecordType(vec![(Type(1),Name(2))])));
}

#[test]
fn test_type_17() {
    let ast = check_parse("type rec is {i32 f, u16 g}");
    check_name(ast.get(0),"rec");
    assert_eq!(ast.get(1),&Node::from(IntType(true,32)));
    check_name(ast.get(2),"f");
    assert_eq!(ast.get(3),&Node::from(IntType(false,16)));
    check_name(ast.get(4),"g");
    assert_eq!(ast.get(5),&Node::from(RecordType(vec![(Type(1),Name(2)),(Type(3),Name(4))])));
}

#[test]
fn test_type_18() {
    let ast = check_parse("type rar is (&u32)[]");
    check_name(ast.get(0),"rar");
    assert_eq!(ast.get(1),&Node::from(IntType(false,32)));
    assert_eq!(ast.get(2),&Node::from(ReferenceType(Type(1))));
    assert_eq!(ast.get(3),&Node::from(ArrayType(Type(2))));
}

#[test]
fn test_type_19() {
    let ast = check_parse("type rec is {&i8 f, u16[] g}");
    check_name(ast.get(0),"rec");
    assert_eq!(ast.get(1),&Node::from(IntType(true,8)));
    assert_eq!(ast.get(2),&Node::from(ReferenceType(Type(1))));
    check_name(ast.get(3),"f");
    assert_eq!(ast.get(4),&Node::from(IntType(false,16)));
    assert_eq!(ast.get(5),&Node::from(ArrayType(Type(4))));
    check_name(ast.get(6),"g");
    assert_eq!(ast.get(7),&Node::from(RecordType(vec![(Type(2),Name(3)),(Type(5),Name(6))])));
}

// ======================================================
// Tests (Function Declarations)
// ======================================================

#[test]
fn test_function_01() {
    check_parse_error("func");
}

#[test]
fn test_function_02() {
    check_parse_error("function");
}

#[test]
fn test_function_03() {
    check_parse_error("function f");
}

#[test]
fn test_function_04() {
    check_parse_error("function f(");
}

#[test]
fn test_function_05() {
    check_parse_error("function f():");
}

#[test]
fn test_function_06a() {
    check_parse_error("function f()->():");
}

#[test]
fn test_function_06b() {
    check_parse_error("function f()->():\n");
}

#[test]
fn test_function_06c() {
    check_parse_error("function f()->():\n ");
}

#[test]
fn test_function_06d() {
    let ast = check_parse("function f()->() :\n skip");
}

#[test]
fn test_function_06e() {
    let ast = check_parse("function f()->():\n skip");
    check_name(ast.get(0),"f");
    assert_eq!(ast.get(1),&Node::from(SkipStmt()));
    assert_eq!(ast.get(2),&Node::from(BlockStmt(vec![Stmt(1)])));
    assert_eq!(ast.get(3),&Node::from(FunctionDecl::new(Name(0),vec![],vec![],Stmt(2))));
}

#[test]
fn test_function_06f() {
    let ast = check_parse("function f() ->():\n skip");
    check_name(ast.get(0),"f");
    assert_eq!(ast.get(1),&Node::from(SkipStmt()));
    assert_eq!(ast.get(2),&Node::from(BlockStmt(vec![Stmt(1)])));
    assert_eq!(ast.get(3),&Node::from(FunctionDecl::new(Name(0),vec![],vec![],Stmt(2))));
}

#[test]
fn test_function_06g() {
    let ast = check_parse("function f()-> ():\n skip");
    check_name(ast.get(0),"f");
    assert_eq!(ast.get(1),&Node::from(SkipStmt()));
    assert_eq!(ast.get(2),&Node::from(BlockStmt(vec![Stmt(1)])));
    assert_eq!(ast.get(3),&Node::from(FunctionDecl::new(Name(0),vec![],vec![],Stmt(2))));
}


#[test]
fn test_function_06h() {
    let ast = check_parse("function f() -> ():\n skip");
    check_name(ast.get(0),"f");
    assert_eq!(ast.get(1),&Node::from(SkipStmt()));
    assert_eq!(ast.get(2),&Node::from(BlockStmt(vec![Stmt(1)])));
    assert_eq!(ast.get(3),&Node::from(FunctionDecl::new(Name(0),vec![],vec![],Stmt(2))));
}

#[test]
fn test_function_07() {
    let ast = check_parse("function f(i32 x):\n skip");
    check_name(ast.get(0),"f");
    assert_eq!(ast.get(1),&Node::from(IntType(true,32)));
    check_name(ast.get(2),"x");
    assert_eq!(ast.get(3),&Node::from(SkipStmt()));
    assert_eq!(ast.get(4),&Node::from(BlockStmt(vec![Stmt(3)])));
    let params = vec![Parameter{declared:Type(1),name:Name(2)}];
    assert_eq!(ast.get(5),&Node::from(FunctionDecl::new(Name(0),params,vec![],Stmt(4))));
}

#[test]
fn test_function_08() {
    let ast = check_parse("function f(i32 i, bool b) -> (bool r):\n skip");
    check_name(ast.get(0),"f");
    assert_eq!(ast.get(1),&Node::from(IntType(true,32)));
    check_name(ast.get(2),"i");
    assert_eq!(ast.get(3),&Node::from(BoolType()));
    check_name(ast.get(4),"b");
    assert_eq!(ast.get(5),&Node::from(BoolType()));
    check_name(ast.get(6),"r");
    assert_eq!(ast.get(7),&Node::from(SkipStmt()));
    assert_eq!(ast.get(8),&Node::from(BlockStmt(vec![Stmt(7)])));
    let params = vec![Parameter{declared:Type(1),name:Name(2)},Parameter{declared:Type(3),name:Name(4)}];
    let returns = vec![Parameter{declared:Type(5),name:Name(6)}];
    assert_eq!(ast.get(9),&Node::from(FunctionDecl::new(Name(0),params,returns,Stmt(8))));
}

// ======================================================
// Tests (Method Declarations)
// ======================================================


// ======================================================
// Tests (Skip)
// ======================================================

#[test]
fn test_skip_01() {
    check_parse_error("function f() -> ():\n ski");
}

#[test]
fn test_skip_02() {
    let ast = check_parse("function f() -> ():\n skip");
    assert_eq!(ast.get(1),&Node::from(SkipStmt()));
}

#[test]
fn test_skip_03() {
    let ast = check_parse("function f() -> ():\n skip\n skip");
    assert_eq!(ast.get(1),&Node::from(SkipStmt()));
    assert_eq!(ast.get(2),&Node::from(SkipStmt()));
}

// ======================================================
// Tests (Assert)
// ======================================================

#[test]
fn test_assert_04() {
    check_parse_error("function f() -> ():\n asse");
}

#[test]
fn test_assert_05() {
    check_parse_error("function f() -> ():\n assert");
}

#[test]
fn test_assert_06() {
    let ast = check_parse("function f() -> ():\n assert true");
    assert_eq!(ast.get(1),&Node::from(BoolExpr(true)));
    assert_eq!(ast.get(2),&Node::from(AssertStmt(Expr(1))));
}

#[test]
fn test_assert_07() {
    let ast = check_parse("function f() -> ():\n assert false");
    assert_eq!(ast.get(1),&Node::from(BoolExpr(false)));
    assert_eq!(ast.get(2),&Node::from(AssertStmt(Expr(1))));
}

#[test]
fn test_assert_08() {
    let ast = check_parse("function f() -> ():\n assert (false)");
    assert_eq!(ast.get(1),&Node::from(BoolExpr(false)));
    assert_eq!(ast.get(2),&Node::from(AssertStmt(Expr(1))));
}

#[test]
fn test_assert_10() {
    let ast = check_type_error("function f() -> ():\n assert b");
}

#[test]
fn test_assert_11() {
    let ast = check_parse("function f(bool b) -> ():\n assert b");
    check_name(ast.get(2),"b");
    assert_eq!(ast.get(4),&Node::from(VarExpr(Name(3))));
    assert_eq!(ast.get(5),&Node::from(AssertStmt(Expr(4))));
}

#[test]
fn test_assert_12() {
    let ast = check_parse("function f(i32 i) -> ():\n assert i < 0");
    assert_eq!(ast.get(4),&Node::from(VarExpr(Name(3))));
    assert_eq!(ast.get(5),&Node::from(IntExpr(0)));
    assert_eq!(ast.get(6),&Node::from(LessThanExpr(Expr(4),Expr(5))));
    assert_eq!(ast.get(7),&Node::from(AssertStmt(Expr(6))));
}

// ======================================================
// Helpers
// ======================================================

/// A dummy source mapper which does nothing.
fn source_mapper<'a>(_: usize, _: &'a str) { }

/// A dummy type mapper which does nothing.
fn type_mapper<'a>(_: usize, _: Type) { }

#[cfg(test)]
fn check_parse(input: &str) -> Box<AbstractSyntaxTree> {
    let mut ast = AbstractSyntaxTree::new();
    let mut parser = Parser::new(input,&mut ast, source_mapper);
    // Parse input
    let d = parser.parse_decl();
    println!("PARSED {:?}",d);
    assert!(!d.is_err());
    // Type input
    // let mut typer = TypeChecker::new(&mut ast, type_mapper);
    // let r = typer.check(d.unwrap());
    // assert!(!r.is_err());
    // Done
    Box::new(ast)
}

#[cfg(test)]
fn check_parse_error(input: &str) {
    let mut ast = AbstractSyntaxTree::new();
    let mut p = Parser::new(input,&mut ast, source_mapper);
    let d = p.parse_decl();
    assert!(d.is_err());
}

#[cfg(test)]
fn check_type_error(input: &str) {
    let mut ast = AbstractSyntaxTree::new();
    let mut parser = Parser::new(input,&mut ast, source_mapper);
    // Parse input
    let d = parser.parse_decl();
    println!("PARSED {:?}",d);
    assert!(!d.is_err());
    // Type input
    // let mut typer = TypeChecker::new(&mut ast, type_mapper);
    // let r = typer.check(d.unwrap());
    // assert!(r.is_err());
}

/// Check that a given node is an instance of Node::Utf8 and matches
/// the corresponding string.
#[cfg(test)]
fn check_name(n: &Node, s: &str) {
    let r = match n {
	Node::Utf8(m) => Some(m),
	_ => None
    };
    assert_eq!(r.unwrap(),s);
}