zig/test/cases/enum.zig

106 lines
1.8 KiB
Zig
Raw Normal View History

2017-01-05 00:57:48 -08:00
const assert = @import("std").debug.assert;
test "enumType" {
2016-12-19 22:50:32 -08:00
const foo1 = Foo.One {13};
const foo2 = Foo.Two { Point { .x = 1234, .y = 5678, }};
const bar = Bar.B;
assert(bar == Bar.B);
assert(@memberCount(Foo) == 3);
assert(@memberCount(Bar) == 4);
const expected_foo_size = 16 + @sizeOf(usize);
assert(@sizeOf(Foo) == expected_foo_size);
assert(@sizeOf(Bar) == 1);
}
test "enumAsReturnValue" {
switch (returnAnInt(13)) {
Foo.One => |value| assert(value == 13),
else => @unreachable(),
}
}
2016-12-19 22:50:32 -08:00
const Point = struct {
x: u64,
y: u64,
};
const Foo = enum {
One: i32,
Two: Point,
Three: void,
};
const Bar = enum {
A,
B,
C,
D,
};
fn returnAnInt(x: i32) -> Foo {
Foo.One { x }
}
test "constantEnumWithPayload" {
2016-12-21 22:20:08 -08:00
var empty = AnEnumWithPayload.Empty;
var full = AnEnumWithPayload.Full {13};
shouldBeEmpty(empty);
shouldBeNotEmpty(full);
}
2017-03-26 00:39:18 -07:00
fn shouldBeEmpty(x: &const AnEnumWithPayload) {
switch (*x) {
2016-12-21 22:20:08 -08:00
AnEnumWithPayload.Empty => {},
else => @unreachable(),
}
}
2017-03-26 00:39:18 -07:00
fn shouldBeNotEmpty(x: &const AnEnumWithPayload) {
switch (*x) {
2016-12-21 22:20:08 -08:00
AnEnumWithPayload.Empty => @unreachable(),
else => {},
}
}
const AnEnumWithPayload = enum {
Empty,
Full: i32,
};
2016-12-25 23:36:04 -08:00
const Number = enum {
Zero,
One,
Two,
Three,
Four,
};
test "enumToInt" {
2016-12-25 23:36:04 -08:00
shouldEqual(Number.Zero, 0);
shouldEqual(Number.One, 1);
shouldEqual(Number.Two, 2);
shouldEqual(Number.Three, 3);
shouldEqual(Number.Four, 4);
}
fn shouldEqual(n: Number, expected: usize) {
assert(usize(n) == expected);
}
2016-12-26 00:44:59 -08:00
test "intToEnum" {
2016-12-26 13:34:18 -08:00
testIntToEnumEval(3);
}
fn testIntToEnumEval(x: i32) {
assert(IntToEnumNumber(x) == IntToEnumNumber.Three);
}
const IntToEnumNumber = enum {
Zero,
One,
Two,
Three,
Four,
};