Fix view stack tests
This commit is contained in:
parent
454e2454b6
commit
21c3969c5f
@ -129,9 +129,9 @@ pub fn ViewStack(comptime T: type) type {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const testing = @import("std").testing;
|
|
||||||
|
|
||||||
test "push/remove (*View)" {
|
test "push/remove (*View)" {
|
||||||
|
const testing = @import("std").testing;
|
||||||
|
|
||||||
const allocator = testing.allocator;
|
const allocator = testing.allocator;
|
||||||
|
|
||||||
var views: ViewStack(*View) = undefined;
|
var views: ViewStack(*View) = undefined;
|
||||||
@ -260,44 +260,52 @@ test "push/remove (*View)" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
test "iteration (View)" {
|
test "iteration (View)" {
|
||||||
|
const c = @import("c.zig");
|
||||||
|
const testing = @import("std").testing;
|
||||||
|
|
||||||
const allocator = testing.allocator;
|
const allocator = testing.allocator;
|
||||||
|
|
||||||
var views: ViewStack(View) = undefined;
|
var views: ViewStack(View) = undefined;
|
||||||
views.init();
|
views.init();
|
||||||
|
|
||||||
|
// Pretty nice hack for testing: we don't actually need a wlr_surface here,
|
||||||
|
// but we need the iteration function to thing that the view has a non-null
|
||||||
|
// wlr_surface. So, just cast an integer to a pointer to get an arbitrary
|
||||||
|
// but non-null value. Use 8 so the alignment checks out.
|
||||||
|
|
||||||
const one_a_pb = try allocator.create(ViewStack(View).Node);
|
const one_a_pb = try allocator.create(ViewStack(View).Node);
|
||||||
defer allocator.destroy(one_a_pb);
|
defer allocator.destroy(one_a_pb);
|
||||||
one_a_pb.view.mapped = true;
|
one_a_pb.view.wlr_surface = @intToPtr(*c.wlr_surface, 8);
|
||||||
one_a_pb.view.current_tags = 1 << 0;
|
one_a_pb.view.current_tags = 1 << 0;
|
||||||
one_a_pb.view.pending_tags = 1 << 1;
|
one_a_pb.view.pending_tags = 1 << 1;
|
||||||
|
|
||||||
const two_a = try allocator.create(ViewStack(View).Node);
|
const two_a = try allocator.create(ViewStack(View).Node);
|
||||||
defer allocator.destroy(two_a);
|
defer allocator.destroy(two_a);
|
||||||
two_a.view.mapped = true;
|
two_a.view.wlr_surface = @intToPtr(*c.wlr_surface, 8);
|
||||||
two_a.view.current_tags = 1 << 0;
|
two_a.view.current_tags = 1 << 0;
|
||||||
two_a.view.pending_tags = null;
|
two_a.view.pending_tags = null;
|
||||||
|
|
||||||
const three_b_pa = try allocator.create(ViewStack(View).Node);
|
const three_b_pa = try allocator.create(ViewStack(View).Node);
|
||||||
defer allocator.destroy(three_b_pa);
|
defer allocator.destroy(three_b_pa);
|
||||||
three_b_pa.view.mapped = true;
|
three_b_pa.view.wlr_surface = @intToPtr(*c.wlr_surface, 8);
|
||||||
three_b_pa.view.current_tags = 1 << 1;
|
three_b_pa.view.current_tags = 1 << 1;
|
||||||
three_b_pa.view.pending_tags = 1 << 0;
|
three_b_pa.view.pending_tags = 1 << 0;
|
||||||
|
|
||||||
const four_b = try allocator.create(ViewStack(View).Node);
|
const four_b = try allocator.create(ViewStack(View).Node);
|
||||||
defer allocator.destroy(four_b);
|
defer allocator.destroy(four_b);
|
||||||
four_b.view.mapped = true;
|
four_b.view.wlr_surface = @intToPtr(*c.wlr_surface, 8);
|
||||||
four_b.view.current_tags = 1 << 1;
|
four_b.view.current_tags = 1 << 1;
|
||||||
four_b.view.pending_tags = null;
|
four_b.view.pending_tags = null;
|
||||||
|
|
||||||
const five_b = try allocator.create(ViewStack(View).Node);
|
const five_b = try allocator.create(ViewStack(View).Node);
|
||||||
defer allocator.destroy(five_b);
|
defer allocator.destroy(five_b);
|
||||||
five_b.view.mapped = true;
|
five_b.view.wlr_surface = @intToPtr(*c.wlr_surface, 8);
|
||||||
five_b.view.current_tags = 1 << 1;
|
five_b.view.current_tags = 1 << 1;
|
||||||
five_b.view.pending_tags = null;
|
five_b.view.pending_tags = null;
|
||||||
|
|
||||||
const unmapped_1 = try allocator.create(ViewStack(View).Node);
|
const unmapped_1 = try allocator.create(ViewStack(View).Node);
|
||||||
defer allocator.destroy(unmapped_1);
|
defer allocator.destroy(unmapped_1);
|
||||||
unmapped_1.view.mapped = false;
|
unmapped_1.view.wlr_surface = null;
|
||||||
|
|
||||||
views.push(three_b_pa); // {3}
|
views.push(three_b_pa); // {3}
|
||||||
views.push(one_a_pb); // {1, 3}
|
views.push(one_a_pb); // {1, 3}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user