zig/test/behavior/misc.zig

760 lines
16 KiB
Zig
Raw Normal View History

const std = @import("std");
const expect = std.testing.expect;
const expectEqualSlices = std.testing.expectEqualSlices;
const expectEqualStrings = std.testing.expectEqualStrings;
const mem = std.mem;
const builtin = @import("builtin");
2017-01-05 16:57:48 +08:00
2016-12-19 13:53:18 +08:00
// normal comment
2016-12-19 13:53:18 +08:00
/// this is a documentation comment
/// doc comment line 2
fn emptyFunctionWithComments() void {}
test "empty function with comments" {
emptyFunctionWithComments();
2016-12-19 13:53:18 +08:00
}
2017-12-18 22:59:57 +08:00
comptime {
@export(disabledExternFn, .{ .name = "disabledExternFn", .linkage = .Internal });
2017-12-18 22:59:57 +08:00
}
fn disabledExternFn() callconv(.C) void {}
2016-12-19 13:53:18 +08:00
test "call disabled extern fn" {
2016-12-19 13:53:18 +08:00
disabledExternFn();
}
test "short circuit" {
try testShortCircuit(false, true);
comptime try testShortCircuit(false, true);
2017-01-09 11:25:38 +08:00
}
fn testShortCircuit(f: bool, t: bool) !void {
2017-01-09 11:25:38 +08:00
var hit_1 = f;
var hit_2 = f;
var hit_3 = f;
var hit_4 = f;
if (t or x: {
try expect(f);
break :x f;
}) {
2017-01-09 11:25:38 +08:00
hit_1 = t;
}
if (f or x: {
hit_2 = t;
break :x f;
}) {
try expect(f);
}
if (t and x: {
hit_3 = t;
break :x f;
}) {
try expect(f);
}
if (f and x: {
try expect(f);
break :x f;
}) {
try expect(f);
} else {
2017-01-09 11:25:38 +08:00
hit_4 = t;
}
try expect(hit_1);
try expect(hit_2);
try expect(hit_3);
try expect(hit_4);
}
test "truncate" {
try expect(testTruncate(0x10fd) == 0xfd);
}
fn testTruncate(x: u32) u8 {
return @truncate(u8, x);
}
fn first4KeysOfHomeRow() []const u8 {
return "aoeu";
}
test "return string from function" {
try expect(mem.eql(u8, first4KeysOfHomeRow(), "aoeu"));
}
const g1: i32 = 1233 + 1;
var g2: i32 = 0;
2016-12-22 14:20:08 +08:00
test "global variables" {
try expect(g2 == 0);
2016-12-22 14:20:08 +08:00
g2 = g1;
try expect(g2 == 1234);
2016-12-22 13:20:14 +08:00
}
test "memcpy and memset intrinsics" {
var foo: [20]u8 = undefined;
var bar: [20]u8 = undefined;
2016-12-22 14:42:30 +08:00
@memset(&foo, 'A', foo.len);
@memcpy(&bar, &foo, bar.len);
2016-12-22 14:42:30 +08:00
if (bar[11] != 'A') unreachable;
2016-12-22 14:42:30 +08:00
}
test "builtin static eval" {
const x: i32 = comptime x: {
break :x 1 + 2 + 3;
};
try expect(x == comptime 6);
2016-12-22 14:42:30 +08:00
}
test "slicing" {
var array: [20]i32 = undefined;
2016-12-22 14:42:30 +08:00
array[5] = 1234;
var slice = array[5..10];
2016-12-22 14:42:30 +08:00
if (slice.len != 5) unreachable;
2016-12-22 14:42:30 +08:00
const ptr = &slice[0];
if (ptr.* != 1234) unreachable;
2016-12-22 14:42:30 +08:00
var slice_rest = array[10..];
if (slice_rest.len != 10) unreachable;
2016-12-22 14:42:30 +08:00
}
test "constant equal function pointers" {
2016-12-22 14:42:30 +08:00
const alias = emptyFn;
try expect(comptime x: {
break :x emptyFn == alias;
});
2016-12-22 14:42:30 +08:00
}
fn emptyFn() void {}
2016-12-22 14:42:30 +08:00
test "hex escape" {
try expect(mem.eql(u8, "\x68\x65\x6c\x6c\x6f", "hello"));
2016-12-22 14:42:30 +08:00
}
test "string concatenation" {
try expect(mem.eql(u8, "OK" ++ " IT " ++ "WORKED", "OK IT WORKED"));
2016-12-22 14:42:30 +08:00
}
test "array mult operator" {
try expect(mem.eql(u8, "ab" ** 5, "ababababab"));
2016-12-22 14:42:30 +08:00
}
test "string escapes" {
try expectEqualStrings("\"", "\x22");
try expectEqualStrings("\'", "\x27");
try expectEqualStrings("\n", "\x0a");
try expectEqualStrings("\r", "\x0d");
try expectEqualStrings("\t", "\x09");
try expectEqualStrings("\\", "\x5c");
try expectEqualStrings("\u{1234}\u{069}\u{1}", "\xe1\x88\xb4\x69\x01");
2016-12-22 14:42:30 +08:00
}
2016-12-22 14:20:08 +08:00
test "multiline string" {
2018-05-29 08:23:55 +08:00
const s1 =
2016-12-22 23:09:53 +08:00
\\one
\\two)
\\three
;
const s2 = "one\ntwo)\nthree";
try expect(mem.eql(u8, s1, s2));
2016-12-22 23:09:53 +08:00
}
2020-10-30 23:20:16 +08:00
test "multiline string comments at start" {
const s1 =
//\\one
\\two)
\\three
;
const s2 = "two)\nthree";
try expect(mem.eql(u8, s1, s2));
2020-10-30 23:20:16 +08:00
}
test "multiline string comments at end" {
const s1 =
\\one
\\two)
//\\three
;
const s2 = "one\ntwo)";
try expect(mem.eql(u8, s1, s2));
2020-10-30 23:20:16 +08:00
}
test "multiline string comments in middle" {
const s1 =
\\one
//\\two)
\\three
;
const s2 = "one\nthree";
try expect(mem.eql(u8, s1, s2));
2020-10-30 23:20:16 +08:00
}
test "multiline string comments at multiple places" {
const s1 =
\\one
//\\two
\\three
//\\four
\\five
;
const s2 = "one\nthree\nfive";
try expect(mem.eql(u8, s1, s2));
2020-10-30 23:20:16 +08:00
}
test "multiline C string" {
2018-05-29 08:23:55 +08:00
const s1 =
\\one
\\two)
\\three
2016-12-22 23:39:10 +08:00
;
const s2 = "one\ntwo)\nthree";
try expect(std.cstr.cmp(s1, s2) == 0);
2016-12-22 23:39:10 +08:00
}
test "type equality" {
try expect(*const u8 != *u8);
2016-12-22 23:39:10 +08:00
}
2016-12-22 14:20:08 +08:00
const global_a: i32 = 1234;
const global_b: *const i32 = &global_a;
const global_c: *const f32 = @ptrCast(*const f32, global_b);
test "compile time global reinterpret" {
const d = @ptrCast(*const i32, global_c);
try expect(d.* == 1234);
}
test "explicit cast maybe pointers" {
const a: ?*i32 = undefined;
const b: ?*f32 = @ptrCast(?*f32, a);
_ = b;
}
test "generic malloc free" {
const a = memAlloc(u8, 10) catch unreachable;
2016-12-26 16:02:20 +08:00
memFree(u8, a);
}
var some_mem: [100]u8 = undefined;
fn memAlloc(comptime T: type, n: usize) anyerror![]T {
return @ptrCast([*]T, &some_mem[0])[0..n];
2016-12-26 16:02:20 +08:00
}
fn memFree(comptime T: type, memory: []T) void {}
2016-12-26 16:02:20 +08:00
test "cast undefined" {
2016-12-26 16:05:33 +08:00
const array: [100]u8 = undefined;
const slice = @as([]const u8, &array);
2016-12-26 16:05:33 +08:00
testCastUndefined(slice);
}
fn testCastUndefined(x: []const u8) void {}
2016-12-26 16:05:33 +08:00
test "cast small unsigned to larger signed" {
try expect(castSmallUnsignedToLargerSigned1(200) == @as(i16, 200));
try expect(castSmallUnsignedToLargerSigned2(9999) == @as(i64, 9999));
2016-12-26 16:05:33 +08:00
}
fn castSmallUnsignedToLargerSigned1(x: u8) i16 {
return x;
}
fn castSmallUnsignedToLargerSigned2(x: u16) i64 {
return x;
}
2016-12-26 16:05:33 +08:00
test "implicit cast after unreachable" {
try expect(outer() == 1234);
2016-12-26 16:05:33 +08:00
}
fn inner() i32 {
return 1234;
}
fn outer() i64 {
2016-12-26 16:05:33 +08:00
return inner();
}
2016-12-26 16:02:20 +08:00
test "pointer dereferencing" {
2019-11-07 12:25:57 +08:00
var x = @as(i32, 3);
2016-12-26 16:44:59 +08:00
const y = &x;
y.* += 1;
2016-12-26 16:44:59 +08:00
try expect(x == 4);
try expect(y.* == 4);
2016-12-26 16:44:59 +08:00
}
test "call result of if else expression" {
try expect(mem.eql(u8, f2(true), "a"));
try expect(mem.eql(u8, f2(false), "b"));
2016-12-26 16:44:59 +08:00
}
fn f2(x: bool) []const u8 {
2016-12-26 16:44:59 +08:00
return (if (x) fA else fB)();
}
fn fA() []const u8 {
return "a";
}
fn fB() []const u8 {
return "b";
}
2016-12-26 16:44:59 +08:00
test "const expression eval handling of variables" {
2016-12-26 16:44:59 +08:00
var x = true;
while (x) {
x = false;
}
}
test "constant enum initialization with differing sizes" {
try test3_1(test3_foo);
try test3_2(test3_bar);
2016-12-26 16:44:59 +08:00
}
const Test3Foo = union(enum) {
One: void,
2016-12-26 16:44:59 +08:00
Two: f32,
Three: Test3Point,
};
const Test3Point = struct {
2016-12-26 16:44:59 +08:00
x: i32,
y: i32,
};
const test3_foo = Test3Foo{
.Three = Test3Point{
.x = 3,
.y = 4,
},
};
const test3_bar = Test3Foo{ .Two = 13 };
fn test3_1(f: Test3Foo) !void {
switch (f) {
2016-12-26 16:44:59 +08:00
Test3Foo.Three => |pt| {
try expect(pt.x == 3);
try expect(pt.y == 4);
2016-12-26 16:44:59 +08:00
},
else => unreachable,
2016-12-26 16:44:59 +08:00
}
}
fn test3_2(f: Test3Foo) !void {
switch (f) {
2016-12-26 16:44:59 +08:00
Test3Foo.Two => |x| {
try expect(x == 13);
2016-12-26 16:44:59 +08:00
},
else => unreachable,
2016-12-26 16:44:59 +08:00
}
}
test "character literals" {
try expect('\'' == single_quote);
2016-12-26 16:44:59 +08:00
}
const single_quote = '\'';
test "take address of parameter" {
try testTakeAddressOfParameter(12.34);
2016-12-26 16:44:59 +08:00
}
fn testTakeAddressOfParameter(f: f32) !void {
2016-12-26 16:44:59 +08:00
const f_ptr = &f;
try expect(f_ptr.* == 12.34);
2016-12-26 16:44:59 +08:00
}
test "pointer comparison" {
const a = @as([]const u8, "a");
2016-12-27 04:49:03 +08:00
const b = &a;
try expect(ptrEql(b, b));
2016-12-27 04:49:03 +08:00
}
fn ptrEql(a: *const []const u8, b: *const []const u8) bool {
return a == b;
2016-12-27 04:49:03 +08:00
}
2016-12-26 16:44:59 +08:00
test "string concatenation" {
const a = "OK" ++ " IT " ++ "WORKED";
const b = "OK IT WORKED";
comptime try expect(@TypeOf(a) == *const [12:0]u8);
comptime try expect(@TypeOf(b) == *const [12:0]u8);
2016-12-27 05:04:14 +08:00
const len = mem.len(b);
2016-12-27 05:04:14 +08:00
const len_with_null = len + 1;
{
var i: u32 = 0;
while (i < len_with_null) : (i += 1) {
try expect(a[i] == b[i]);
}
}
try expect(a[len] == 0);
try expect(b[len] == 0);
2016-12-27 05:04:14 +08:00
}
test "pointer to void return type" {
testPointerToVoidReturnType() catch unreachable;
2016-12-28 14:31:46 +08:00
}
fn testPointerToVoidReturnType() anyerror!void {
2016-12-28 14:31:46 +08:00
const a = testPointerToVoidReturnType2();
return a.*;
2016-12-28 14:31:46 +08:00
}
const test_pointer_to_void_return_type_x = void{};
fn testPointerToVoidReturnType2() *const void {
2016-12-28 14:31:46 +08:00
return &test_pointer_to_void_return_type_x;
}
2017-01-06 07:50:36 +08:00
test "non const ptr to aliased type" {
2017-01-06 07:50:36 +08:00
const int = i32;
try expect(?*int == ?*i32);
2017-01-06 07:50:36 +08:00
}
test "array 2D const double ptr" {
const rect_2d_vertexes = [_][1]f32{
[_]f32{1.0},
[_]f32{2.0},
};
try testArray2DConstDoublePtr(&rect_2d_vertexes[0][0]);
}
fn testArray2DConstDoublePtr(ptr: *const f32) !void {
const ptr2 = @ptrCast([*]const f32, ptr);
try expect(ptr2[0] == 1.0);
try expect(ptr2[1] == 2.0);
}
const AStruct = struct {
x: i32,
};
const AnEnum = enum {
One,
Two,
};
const AUnionEnum = union(enum) {
One: i32,
Two: void,
};
const AUnion = union {
One: void,
Two: void,
};
test "@typeName" {
const Struct = struct {};
const Union = union {
unused: u8,
};
const Enum = enum {
Unused,
};
comptime {
try expect(mem.eql(u8, @typeName(i64), "i64"));
try expect(mem.eql(u8, @typeName(*usize), "*usize"));
// https://github.com/ziglang/zig/issues/675
try expect(mem.eql(u8, "behavior.misc.TypeFromFn(u8)", @typeName(TypeFromFn(u8))));
try expect(mem.eql(u8, @typeName(Struct), "Struct"));
try expect(mem.eql(u8, @typeName(Union), "Union"));
try expect(mem.eql(u8, @typeName(Enum), "Enum"));
}
}
fn TypeFromFn(comptime T: type) type {
return struct {};
}
test "double implicit cast in same expression" {
2019-11-07 12:25:57 +08:00
var x = @as(i32, @as(u16, nine()));
try expect(x == 9);
}
fn nine() u8 {
return 9;
}
test "global variable initialized to global variable array element" {
try expect(global_ptr == &gdt[0]);
}
const GDTEntry = struct {
field: i32,
};
var gdt = [_]GDTEntry{
GDTEntry{ .field = 1 },
GDTEntry{ .field = 2 },
};
var global_ptr = &gdt[0];
// can't really run this test but we can make sure it has no compile error
// and generates code
const vram = @intToPtr([*]volatile u8, 0x20000000)[0..0x8000];
export fn writeToVRam() void {
vram[0] = 'X';
}
2017-08-30 12:17:11 +08:00
const OpaqueA = opaque {};
const OpaqueB = opaque {};
2020-04-28 13:14:40 +08:00
test "opaque types" {
try expect(*OpaqueA != *OpaqueB);
try expect(mem.eql(u8, @typeName(OpaqueA), "OpaqueA"));
try expect(mem.eql(u8, @typeName(OpaqueB), "OpaqueB"));
2017-09-06 06:51:07 +08:00
}
test "variable is allowed to be a pointer to an opaque type" {
var x: i32 = 1234;
_ = hereIsAnOpaqueType(@ptrCast(*OpaqueA, &x));
}
fn hereIsAnOpaqueType(ptr: *OpaqueA) *OpaqueA {
var a = ptr;
return a;
}
test "comptime if inside runtime while which unconditionally breaks" {
testComptimeIfInsideRuntimeWhileWhichUnconditionallyBreaks(true);
comptime testComptimeIfInsideRuntimeWhileWhichUnconditionallyBreaks(true);
}
fn testComptimeIfInsideRuntimeWhileWhichUnconditionallyBreaks(cond: bool) void {
while (cond) {
if (false) {}
break;
}
}
test "implicit comptime while" {
while (false) {
@compileError("bad");
}
}
fn fnThatClosesOverLocalConst() type {
const c = 1;
return struct {
fn g() i32 {
return c;
}
};
}
test "function closes over local const" {
const x = fnThatClosesOverLocalConst().g();
try expect(x == 1);
}
test "cold function" {
thisIsAColdFn();
comptime thisIsAColdFn();
}
fn thisIsAColdFn() void {
@setCold(true);
}
const PackedStruct = packed struct {
a: u8,
b: u8,
};
const PackedUnion = packed union {
a: u8,
b: u32,
};
test "packed struct, enum, union parameters in extern function" {
testPackedStuff(&(PackedStruct{
.a = 1,
.b = 2,
}), &(PackedUnion{ .a = 1 }));
}
export fn testPackedStuff(a: *const PackedStruct, b: *const PackedUnion) void {}
test "slicing zero length array" {
const s1 = ""[0..];
const s2 = ([_]u32{})[0..];
try expect(s1.len == 0);
try expect(s2.len == 0);
try expect(mem.eql(u8, s1, ""));
try expect(mem.eql(u32, s2, &[_]u32{}));
}
const addr1 = @ptrCast(*const u8, emptyFn);
test "comptime cast fn to ptr" {
const addr2 = @ptrCast(*const u8, emptyFn);
comptime try expect(addr1 == addr2);
}
test "equality compare fn ptrs" {
var a = emptyFn;
try expect(a == a);
}
test "self reference through fn ptr field" {
const S = struct {
const A = struct {
f: fn (A) u8,
};
fn foo(a: A) u8 {
return 12;
}
};
var a: S.A = undefined;
a.f = S.foo;
try expect(a.f(a) == 12);
}
test "volatile load and store" {
var number: i32 = 1234;
const ptr = @as(*volatile i32, &number);
ptr.* += 1;
try expect(ptr.* == 1235);
}
test "slice string literal has correct type" {
comptime {
try expect(@TypeOf("aoeu"[0..]) == *const [4:0]u8);
const array = [_]i32{ 1, 2, 3, 4 };
try expect(@TypeOf(array[0..]) == *const [4]i32);
}
var runtime_zero: usize = 0;
comptime try expect(@TypeOf("aoeu"[runtime_zero..]) == [:0]const u8);
const array = [_]i32{ 1, 2, 3, 4 };
comptime try expect(@TypeOf(array[runtime_zero..]) == []const i32);
}
test "struct inside function" {
try testStructInFn();
comptime try testStructInFn();
}
fn testStructInFn() !void {
const BlockKind = u32;
const Block = struct {
kind: BlockKind,
};
var block = Block{ .kind = 1234 };
block.kind += 1;
try expect(block.kind == 1235);
}
test "fn call returning scalar optional in equality expression" {
try expect(getNull() == null);
}
fn getNull() ?*i32 {
return null;
}
test "thread local variable" {
const S = struct {
threadlocal var t: i32 = 1234;
};
S.t += 1;
try expect(S.t == 1235);
}
test "unicode escape in character literal" {
var a: u24 = '\u{01f4a9}';
try expect(a == 128169);
}
2019-10-07 01:52:35 +08:00
test "unicode character in character literal" {
try expect('💩' == 128169);
2019-10-07 01:52:35 +08:00
}
test "result location zero sized array inside struct field implicit cast to slice" {
const E = struct {
entries: []u32,
};
var foo = E{ .entries = &[_]u32{} };
try expect(foo.entries.len == 0);
}
var global_foo: *i32 = undefined;
test "global variable assignment with optional unwrapping with var initialized to undefined" {
const S = struct {
var data: i32 = 1234;
fn foo() ?*i32 {
return &data;
}
};
global_foo = S.foo() orelse {
@panic("bad");
};
try expect(global_foo.* == 1234);
}
test "peer result location with typed parent, runtime condition, comptime prongs" {
const S = struct {
fn doTheTest(arg: i32) i32 {
const st = Structy{
.bleh = if (arg == 1) 1 else 1,
};
if (st.bleh == 1)
return 1234;
return 0;
}
const Structy = struct {
bleh: i32,
};
};
try expect(S.doTheTest(0) == 1234);
try expect(S.doTheTest(1) == 1234);
}
test "nested optional field in struct" {
const S2 = struct {
y: u8,
};
const S1 = struct {
x: ?S2,
};
var s = S1{
.x = S2{ .y = 127 },
};
try expect(s.x.?.y == 127);
}
fn maybe(x: bool) anyerror!?u32 {
return switch (x) {
2019-11-07 12:25:57 +08:00
true => @as(u32, 42),
else => null,
};
}
test "result location is optional inside error union" {
const x = maybe(true) catch unreachable;
try expect(x.? == 42);
}
threadlocal var buffer: [11]u8 = undefined;
test "pointer to thread local array" {
const s = "Hello world";
std.mem.copy(u8, buffer[0..], s);
try std.testing.expectEqualSlices(u8, buffer[0..], s);
}
test "auto created variables have correct alignment" {
const S = struct {
fn foo(str: [*]const u8) u32 {
for (@ptrCast([*]align(1) const u32, str)[0..1]) |v| {
return v;
}
return 0;
}
};
try expect(S.foo("\x7a\x7a\x7a\x7a") == 0x7a7a7a7a);
comptime try expect(S.foo("\x7a\x7a\x7a\x7a") == 0x7a7a7a7a);
}
extern var opaque_extern_var: opaque {};
var var_to_export: u32 = 42;
test "extern variable with non-pointer opaque type" {
@export(var_to_export, .{ .name = "opaque_extern_var" });
try expect(@ptrCast(*align(1) u32, &opaque_extern_var).* == 42);
}
test "lazy typeInfo value as generic parameter" {
const S = struct {
fn foo(args: anytype) void {}
};
S.foo(@typeInfo(@TypeOf(.{})));
}