mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
Follow up to #19079, which made test names fully qualified. This fixes tests that now-redundant information in their test names. For example here's a fully qualified test name before the changes in this commit: "priority_queue.test.std.PriorityQueue: shrinkAndFree" and the same test's name after the changes in this commit: "priority_queue.test.shrinkAndFree"
39 lines
1.1 KiB
Zig
39 lines
1.1 KiB
Zig
const std = @import("../std.zig");
|
|
const io = std.io;
|
|
const testing = std.testing;
|
|
|
|
/// A Writer that counts how many bytes has been written to it.
|
|
pub fn CountingWriter(comptime WriterType: type) type {
|
|
return struct {
|
|
bytes_written: u64,
|
|
child_stream: WriterType,
|
|
|
|
pub const Error = WriterType.Error;
|
|
pub const Writer = io.Writer(*Self, Error, write);
|
|
|
|
const Self = @This();
|
|
|
|
pub fn write(self: *Self, bytes: []const u8) Error!usize {
|
|
const amt = try self.child_stream.write(bytes);
|
|
self.bytes_written += amt;
|
|
return amt;
|
|
}
|
|
|
|
pub fn writer(self: *Self) Writer {
|
|
return .{ .context = self };
|
|
}
|
|
};
|
|
}
|
|
|
|
pub fn countingWriter(child_stream: anytype) CountingWriter(@TypeOf(child_stream)) {
|
|
return .{ .bytes_written = 0, .child_stream = child_stream };
|
|
}
|
|
|
|
test CountingWriter {
|
|
var counting_stream = countingWriter(std.io.null_writer);
|
|
const stream = counting_stream.writer();
|
|
|
|
const bytes = "yay" ** 100;
|
|
stream.writeAll(bytes) catch unreachable;
|
|
try testing.expect(counting_stream.bytes_written == bytes.len);
|
|
}
|