Files
@ 9b5ea2f879a4
Branch filter:
Location: CSY/reowolf/src/protocol/tests/parser_literals.rs
9b5ea2f879a4
4.4 KiB
application/rls-services+xml
Implement MPSC queue
Multiple producer, single consumer queue with the purpose of acting
as the inbox for components.
Multiple producer, single consumer queue with the purpose of acting
as the inbox for components.
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 | use super::*;
#[test]
fn test_binary_literals() {
Tester::new_single_source_expect_ok("valid", "
func test() -> u32 {
u8 v1 = 0b0100_0010;
u16 v2 = 0b10101010;
u32 v3 = 0b10000001_01111110;
u64 v4 = 0b1001_0110_1001_0110;
return 0b10110;
}
");
Tester::new_single_source_expect_err("invalid character", "
func test() -> u32 {
return 0b10011001_10012001;
}
").error(|e| { e.assert_msg_has(0, "incorrectly formatted binary number"); });
Tester::new_single_source_expect_err("no characters", "
func test() -> u32 { return 0b; }
").error(|e| { e.assert_msg_has(0, "incorrectly formatted binary number"); });
Tester::new_single_source_expect_err("only separators", "
func test() -> u32 { return 0b____; }
").error(|e| { e.assert_msg_has(0, "incorrectly formatted binary number"); });
}
#[test]
fn test_string_literals() {
Tester::new_single_source_expect_ok("valid", "
func test() -> string {
auto v1 = \"Hello, world!\";
auto v2 = \"\\t\\r\\n\\\\\"; // why hello there, confusing thing
auto v3 = \"\";
return \"No way, dude!\";
}
").for_function("test", |f| { f
.for_variable("v1", |v| { v.assert_concrete_type("string"); })
.for_variable("v2", |v| { v.assert_concrete_type("string"); })
.for_variable("v3", |v| { v.assert_concrete_type("string"); });
});
Tester::new_single_source_expect_err("unterminated simple", "
func test() -> string { return \"'; }
").error(|e| { e
.assert_num(1)
.assert_occurs_at(0, "\"")
.assert_msg_has(0, "unterminated");
});
Tester::new_single_source_expect_err("unterminated with preceding escaped", "
func test() -> string { return \"\\\"; }
").error(|e| { e
.assert_num(1)
.assert_occurs_at(0, "\"\\")
.assert_msg_has(0, "unterminated");
});
Tester::new_single_source_expect_err("invalid escaped character", "
func test() -> string { return \"\\y\"; }
").error(|e| { e.assert_msg_has(0, "unsupported escape character 'y'"); });
// Note sure if this should always be in here...
Tester::new_single_source_expect_err("non-ASCII string", "
func test() -> string { return \"💧\"; }
").error(|e| { e.assert_msg_has(0, "non-ASCII character in string literal"); });
}
#[test]
fn test_tuple_literals() {
Tester::new_single_source_expect_ok("zero tuples", "
func test() -> () {
// Looks like lisp :)
auto t1 = ();
() t2 = ();
auto t3 = (());
() t4 = (());
auto t5 = ((((()))));
((())) t6 = ((((()))));
return ();
}
").for_function("test", |f| { f
.for_variable("t1", |v| { v.assert_concrete_type("()"); })
.for_variable("t2", |v| { v.assert_concrete_type("()"); })
.for_variable("t3", |v| { v.assert_concrete_type("()"); })
.for_variable("t4", |v| { v.assert_concrete_type("()"); })
.for_variable("t5", |v| { v.assert_concrete_type("()"); })
.for_variable("t6", |v| { v.assert_concrete_type("()"); });
});
// All one-tuples (T) are transformed into T to prevent ambiguity
Tester::new_single_source_expect_ok("one tuples", "
func test() -> (u32) {
auto a = (0);
(s32) b = (1);
((((s32)))) c = ((2));
}
").for_function("test", |f| { f
.for_variable("a", |v| { v.assert_concrete_type("s32"); })
.for_variable("b", |v| { v.assert_concrete_type("s32"); })
.for_variable("c", |v| { v.assert_concrete_type("s32"); });
});
Tester::new_single_source_expect_ok("actual tuples", "
func test() -> (u32, u32) {
(u8,u16,u32) a = (0, 1, 2);
auto b = a;
auto c = (3, 4, 5);
((auto, auto)) d = (a, c);
auto e = (\"hello\", 'c', 5 + 2);
return ((0), (1));
}
").for_function("test", |f| { f
.for_variable("a", |v| { v.assert_concrete_type("(u8,u16,u32)"); })
.for_variable("b", |v| { v.assert_concrete_type("(u8,u16,u32)"); })
.for_variable("c", |v| { v.assert_concrete_type("(s32,s32,s32)"); })
.for_variable("d", |v| { v.assert_concrete_type("((u8,u16,u32),(s32,s32,s32))"); })
.for_variable("e", |v| { v.assert_concrete_type("(string,char,s32)"); });
});
}
|