mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* buggy snapshot * error output for failed snapshot * missing first * hints * open dir once, better cleanup * update flag * truncate on update * object and class snapshot formatting * array formatting * no function name, single item is empty array * string objects, maps, sets, promise * avoid using invalid memory * handle number objects * handle extending `Number` * boolean objects * snapshot tests and test updates * snapshot format for buffers * safer snapshot parsing * property matchers setup * strings and tests * generate classes with empty prototype * optional `propertyMatchers` parameter * new test folder structure * strings.eqlLong * globalObject.throwPretty() and expect.any tests * add updateSnapshot flag to help * move snapshot format out of `printErrorlikeObject` * empty object snapshot format * separate typed array, remove trailing comma * use `isCell`, object trailing commas * handle unicode * todo for primitive constructors * switch to `JSC.Node.Syscall.open` and `JSC.Maybe` * use js parser for snapshot files * deinit ast, log parse error * copy/paste most of `exports.ZigConsoleClient` * remove snapshot option * remove ordered properties option * remove snapshot format option from `exports.zig` * remove extra newlines * change mode * update test runner output * escape backticks faster * `bunx jest` in temp dir * remove buffered writer * add `toMatchSnapshot` to types * cleanup, switch to `pread` * cli `--update` flag * `--update-snapshots` * remove string object format
672 lines
26 KiB
Zig
672 lines
26 KiB
Zig
const bun = @import("bun");
|
|
const string = bun.string;
|
|
const Output = bun.Output;
|
|
const Global = bun.Global;
|
|
const Environment = bun.Environment;
|
|
const strings = bun.strings;
|
|
const MutableString = bun.MutableString;
|
|
const stringZ = bun.stringZ;
|
|
const default_allocator = bun.default_allocator;
|
|
const C = bun.C;
|
|
const std = @import("std");
|
|
|
|
const lex = bun.js_lexer;
|
|
const logger = @import("bun").logger;
|
|
|
|
const FileSystem = @import("../fs.zig").FileSystem;
|
|
const PathName = @import("../fs.zig").PathName;
|
|
const options = @import("../options.zig");
|
|
const js_parser = bun.js_parser;
|
|
const json_parser = bun.JSON;
|
|
const js_printer = bun.js_printer;
|
|
const js_ast = bun.JSAst;
|
|
const linker = @import("../linker.zig");
|
|
|
|
const sync = @import("../sync.zig");
|
|
const Api = @import("../api/schema.zig").Api;
|
|
const resolve_path = @import("../resolver/resolve_path.zig");
|
|
const configureTransformOptionsForBun = @import("../bun.js/config.zig").configureTransformOptionsForBun;
|
|
const Command = @import("../cli.zig").Command;
|
|
const bundler = bun.bundler;
|
|
const NodeModuleBundle = @import("../node_module_bundle.zig").NodeModuleBundle;
|
|
const DotEnv = @import("../env_loader.zig");
|
|
const which = @import("../which.zig").which;
|
|
const Run = @import("../bun_js.zig").Run;
|
|
var path_buf: [bun.MAX_PATH_BYTES]u8 = undefined;
|
|
var path_buf2: [bun.MAX_PATH_BYTES]u8 = undefined;
|
|
const PathString = bun.PathString;
|
|
const is_bindgen = std.meta.globalOption("bindgen", bool) orelse false;
|
|
const HTTPThread = @import("bun").HTTP.HTTPThread;
|
|
|
|
const JSC = @import("bun").JSC;
|
|
const jest = JSC.Jest;
|
|
const TestRunner = JSC.Jest.TestRunner;
|
|
const Snapshots = JSC.Jest.Snapshots;
|
|
const Test = TestRunner.Test;
|
|
const NetworkThread = @import("bun").HTTP.NetworkThread;
|
|
const uws = @import("bun").uws;
|
|
|
|
fn fmtStatusTextLine(comptime status: @Type(.EnumLiteral), comptime emoji: bool) []const u8 {
|
|
comptime {
|
|
return switch (status) {
|
|
.pass => Output.prettyFmt("<r><green>✓<r>", emoji),
|
|
.fail => Output.prettyFmt("<r><red>✗<r>", emoji),
|
|
.skip => Output.prettyFmt("<r><yellow>-<d>", emoji),
|
|
else => @compileError("Invalid status " ++ @tagName(status)),
|
|
};
|
|
}
|
|
}
|
|
|
|
fn writeTestStatusLine(comptime status: @Type(.EnumLiteral), writer: anytype) void {
|
|
if (Output.enable_ansi_colors_stderr)
|
|
writer.print(fmtStatusTextLine(status, true), .{}) catch unreachable
|
|
else
|
|
writer.print(fmtStatusTextLine(status, false), .{}) catch unreachable;
|
|
}
|
|
|
|
pub const CommandLineReporter = struct {
|
|
jest: TestRunner,
|
|
callback: TestRunner.Callback,
|
|
last_dot: u32 = 0,
|
|
summary: Summary = Summary{},
|
|
prev_file: u64 = 0,
|
|
|
|
failures_to_repeat_buf: std.ArrayListUnmanaged(u8) = .{},
|
|
skips_to_repeat_buf: std.ArrayListUnmanaged(u8) = .{},
|
|
|
|
pub const Summary = struct {
|
|
pass: u32 = 0,
|
|
expectations: u32 = 0,
|
|
skip: u32 = 0,
|
|
fail: u32 = 0,
|
|
};
|
|
|
|
const DotColorMap = std.EnumMap(TestRunner.Test.Status, string);
|
|
const dots: DotColorMap = brk: {
|
|
var map: DotColorMap = DotColorMap.init(.{});
|
|
map.put(TestRunner.Test.Status.pending, Output.RESET ++ Output.ED ++ Output.color_map.get("yellow").? ++ "." ++ Output.RESET);
|
|
map.put(TestRunner.Test.Status.pass, Output.RESET ++ Output.ED ++ Output.color_map.get("green").? ++ "." ++ Output.RESET);
|
|
map.put(TestRunner.Test.Status.fail, Output.RESET ++ Output.ED ++ Output.color_map.get("red").? ++ "." ++ Output.RESET);
|
|
break :brk map;
|
|
};
|
|
|
|
pub fn handleUpdateCount(cb: *TestRunner.Callback, _: u32, _: u32) void {
|
|
_ = cb;
|
|
}
|
|
|
|
pub fn handleTestStart(_: *TestRunner.Callback, _: Test.ID) void {
|
|
// var this: *CommandLineReporter = @fieldParentPtr(CommandLineReporter, "callback", cb);
|
|
}
|
|
|
|
fn printTestLine(label: string, parent: ?*jest.DescribeScope, comptime skip: bool, writer: anytype) void {
|
|
var scopes_stack = std.BoundedArray(*jest.DescribeScope, 64).init(0) catch unreachable;
|
|
var parent_ = parent;
|
|
|
|
while (parent_) |scope| {
|
|
scopes_stack.append(scope) catch break;
|
|
parent_ = scope.parent;
|
|
}
|
|
|
|
var scopes: []*jest.DescribeScope = scopes_stack.slice();
|
|
|
|
const display_label = if (label.len > 0) label else "test";
|
|
|
|
const color_code = comptime if (skip) "<d>" else "";
|
|
|
|
if (Output.enable_ansi_colors_stderr) {
|
|
for (scopes, 0..) |_, i| {
|
|
const index = (scopes.len - 1) - i;
|
|
const scope = scopes[index];
|
|
if (scope.label.len == 0) continue;
|
|
writer.writeAll(" ") catch unreachable;
|
|
|
|
writer.print(comptime Output.prettyFmt("<r>" ++ color_code, true), .{}) catch unreachable;
|
|
writer.writeAll(scope.label) catch unreachable;
|
|
writer.print(comptime Output.prettyFmt("<d>", true), .{}) catch unreachable;
|
|
writer.writeAll(" >") catch unreachable;
|
|
}
|
|
} else {
|
|
for (scopes, 0..) |_, i| {
|
|
const index = (scopes.len - 1) - i;
|
|
const scope = scopes[index];
|
|
if (scope.label.len == 0) continue;
|
|
writer.writeAll(" ") catch unreachable;
|
|
writer.writeAll(scope.label) catch unreachable;
|
|
writer.writeAll(" >") catch unreachable;
|
|
}
|
|
}
|
|
|
|
const line_color_code = if (comptime skip) "<r><d>" else "<r><b>";
|
|
|
|
if (Output.enable_ansi_colors_stderr)
|
|
writer.print(comptime Output.prettyFmt(line_color_code ++ " {s}<r>", true), .{display_label}) catch unreachable
|
|
else
|
|
writer.print(comptime Output.prettyFmt(" {s}", false), .{display_label}) catch unreachable;
|
|
|
|
writer.writeAll("\n") catch unreachable;
|
|
}
|
|
|
|
pub fn handleTestPass(cb: *TestRunner.Callback, id: Test.ID, _: string, label: string, expectations: u32, parent: ?*jest.DescribeScope) void {
|
|
var writer_: std.fs.File.Writer = Output.errorWriter();
|
|
var buffered_writer = std.io.bufferedWriter(writer_);
|
|
var writer = buffered_writer.writer();
|
|
defer buffered_writer.flush() catch unreachable;
|
|
|
|
var this: *CommandLineReporter = @fieldParentPtr(CommandLineReporter, "callback", cb);
|
|
|
|
writeTestStatusLine(.pass, &writer);
|
|
|
|
printTestLine(label, parent, false, writer);
|
|
|
|
this.jest.tests.items(.status)[id] = TestRunner.Test.Status.pass;
|
|
this.summary.pass += 1;
|
|
this.summary.expectations += expectations;
|
|
}
|
|
|
|
pub fn handleTestFail(cb: *TestRunner.Callback, id: Test.ID, _: string, label: string, expectations: u32, parent: ?*jest.DescribeScope) void {
|
|
var writer_: std.fs.File.Writer = Output.errorWriter();
|
|
var this: *CommandLineReporter = @fieldParentPtr(CommandLineReporter, "callback", cb);
|
|
|
|
// when the tests fail, we want to repeat the failures at the end
|
|
// so that you can see them better when there are lots of tests that ran
|
|
const initial_length = this.failures_to_repeat_buf.items.len;
|
|
var writer = this.failures_to_repeat_buf.writer(bun.default_allocator);
|
|
|
|
writeTestStatusLine(.fail, &writer);
|
|
printTestLine(label, parent, false, writer);
|
|
|
|
writer_.writeAll(this.failures_to_repeat_buf.items[initial_length..]) catch unreachable;
|
|
Output.flush();
|
|
|
|
// this.updateDots();
|
|
this.summary.fail += 1;
|
|
this.summary.expectations += expectations;
|
|
this.jest.tests.items(.status)[id] = TestRunner.Test.Status.fail;
|
|
}
|
|
|
|
pub fn handleTestSkip(cb: *TestRunner.Callback, id: Test.ID, _: string, label: string, expectations: u32, parent: ?*jest.DescribeScope) void {
|
|
var writer_: std.fs.File.Writer = Output.errorWriter();
|
|
var this: *CommandLineReporter = @fieldParentPtr(CommandLineReporter, "callback", cb);
|
|
|
|
// If you do it.only, don't report the skipped tests because its pretty noisy
|
|
if (jest.Jest.runner != null and !jest.Jest.runner.?.only) {
|
|
// when the tests skip, we want to repeat the failures at the end
|
|
// so that you can see them better when there are lots of tests that ran
|
|
const initial_length = this.skips_to_repeat_buf.items.len;
|
|
var writer = this.skips_to_repeat_buf.writer(bun.default_allocator);
|
|
|
|
writeTestStatusLine(.skip, &writer);
|
|
printTestLine(label, parent, true, writer);
|
|
|
|
writer_.writeAll(this.skips_to_repeat_buf.items[initial_length..]) catch unreachable;
|
|
Output.flush();
|
|
}
|
|
|
|
// this.updateDots();
|
|
this.summary.skip += 1;
|
|
this.summary.expectations += expectations;
|
|
this.jest.tests.items(.status)[id] = TestRunner.Test.Status.skip;
|
|
}
|
|
};
|
|
|
|
const Scanner = struct {
|
|
const Fifo = std.fifo.LinearFifo(ScanEntry, .Dynamic);
|
|
exclusion_names: []const []const u8 = &.{},
|
|
filter_names: []const []const u8 = &.{},
|
|
dirs_to_scan: Fifo,
|
|
results: std.ArrayList(bun.PathString),
|
|
fs: *FileSystem,
|
|
open_dir_buf: [bun.MAX_PATH_BYTES]u8 = undefined,
|
|
scan_dir_buf: [bun.MAX_PATH_BYTES]u8 = undefined,
|
|
options: *options.BundleOptions,
|
|
has_iterated: bool = false,
|
|
search_count: usize = 0,
|
|
|
|
const ScanEntry = struct {
|
|
relative_dir: bun.StoredFileDescriptorType,
|
|
dir_path: string,
|
|
name: strings.StringOrTinyString,
|
|
};
|
|
|
|
fn readDirWithName(this: *Scanner, name: string, handle: ?std.fs.Dir) !*FileSystem.RealFS.EntriesOption {
|
|
return try this.fs.fs.readDirectoryWithIterator(name, handle, *Scanner, this);
|
|
}
|
|
|
|
pub fn scan(this: *Scanner, path_literal: string) void {
|
|
var parts = &[_]string{ this.fs.top_level_dir, path_literal };
|
|
const path = this.fs.absBuf(parts, &this.scan_dir_buf);
|
|
|
|
var root = this.readDirWithName(path, null) catch |err| {
|
|
if (err == error.NotDir) {
|
|
if (this.isTestFile(path)) {
|
|
this.results.append(bun.PathString.init(this.fs.filename_store.append(@TypeOf(path), path) catch unreachable)) catch unreachable;
|
|
}
|
|
}
|
|
|
|
return;
|
|
};
|
|
|
|
// you typed "." and we already scanned it
|
|
if (!this.has_iterated) {
|
|
if (@as(FileSystem.RealFS.EntriesOption.Tag, root.*) == .entries) {
|
|
var iter = root.entries.data.iterator();
|
|
const fd = root.entries.fd;
|
|
while (iter.next()) |entry| {
|
|
this.next(entry.value_ptr.*, fd);
|
|
}
|
|
}
|
|
}
|
|
|
|
while (this.dirs_to_scan.readItem()) |entry| {
|
|
var dir = std.fs.Dir{ .fd = entry.relative_dir };
|
|
var parts2 = &[_]string{ entry.dir_path, entry.name.slice() };
|
|
var path2 = this.fs.absBuf(parts2, &this.open_dir_buf);
|
|
this.open_dir_buf[path2.len] = 0;
|
|
var pathZ = this.open_dir_buf[path2.len - entry.name.slice().len .. path2.len :0];
|
|
var child_dir = bun.openDir(dir, pathZ) catch continue;
|
|
path2 = this.fs.dirname_store.append(string, path2) catch unreachable;
|
|
FileSystem.setMaxFd(child_dir.dir.fd);
|
|
_ = this.readDirWithName(path2, child_dir.dir) catch continue;
|
|
}
|
|
}
|
|
|
|
const test_name_suffixes = [_]string{
|
|
".test",
|
|
"_test",
|
|
".spec",
|
|
"_spec",
|
|
};
|
|
|
|
pub fn couldBeTestFile(this: *Scanner, name: string) bool {
|
|
const extname = std.fs.path.extension(name);
|
|
if (!this.options.loader(extname).isJavaScriptLike()) return false;
|
|
const name_without_extension = name[0 .. name.len - extname.len];
|
|
inline for (test_name_suffixes) |suffix| {
|
|
if (strings.endsWithComptime(name_without_extension, suffix)) return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
pub fn doesAbsolutePathMatchFilter(this: *Scanner, name: string) bool {
|
|
if (this.filter_names.len == 0) return true;
|
|
|
|
for (this.filter_names) |filter_name| {
|
|
if (strings.contains(name, filter_name)) return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
pub fn isTestFile(this: *Scanner, name: string) bool {
|
|
return this.couldBeTestFile(name) and this.doesAbsolutePathMatchFilter(name);
|
|
}
|
|
|
|
pub fn next(this: *Scanner, entry: *FileSystem.Entry, fd: bun.StoredFileDescriptorType) void {
|
|
const name = entry.base_lowercase();
|
|
this.has_iterated = true;
|
|
switch (entry.kind(&this.fs.fs)) {
|
|
.dir => {
|
|
if ((name.len > 0 and name[0] == '.') or strings.eqlComptime(name, "node_modules")) {
|
|
return;
|
|
}
|
|
|
|
for (this.exclusion_names) |exclude_name| {
|
|
if (strings.eql(exclude_name, name)) return;
|
|
}
|
|
|
|
this.search_count += 1;
|
|
|
|
this.dirs_to_scan.writeItem(.{
|
|
.relative_dir = fd,
|
|
.name = entry.base_,
|
|
.dir_path = entry.dir,
|
|
}) catch unreachable;
|
|
},
|
|
.file => {
|
|
// already seen it!
|
|
if (!entry.abs_path.isEmpty()) return;
|
|
|
|
this.search_count += 1;
|
|
if (!this.couldBeTestFile(name)) return;
|
|
|
|
var parts = &[_]string{ entry.dir, entry.base() };
|
|
const path = this.fs.absBuf(parts, &this.open_dir_buf);
|
|
|
|
if (!this.doesAbsolutePathMatchFilter(path)) return;
|
|
|
|
entry.abs_path = bun.PathString.init(this.fs.filename_store.append(@TypeOf(path), path) catch unreachable);
|
|
this.results.append(entry.abs_path) catch unreachable;
|
|
},
|
|
}
|
|
}
|
|
};
|
|
|
|
pub const TestCommand = struct {
|
|
pub const name = "test";
|
|
pub const old_name = "wiptest";
|
|
pub fn exec(ctx: Command.Context) !void {
|
|
if (comptime is_bindgen) unreachable;
|
|
// print the version so you know its doing stuff if it takes a sec
|
|
if (strings.eqlComptime(ctx.positionals[0], old_name)) {
|
|
Output.prettyErrorln("<r><b>bun wiptest <r><d>v" ++ Global.package_json_version_with_sha ++ "<r>", .{});
|
|
} else {
|
|
Output.prettyErrorln("<r><b>bun test <r><d>v" ++ Global.package_json_version_with_sha ++ "<r>", .{});
|
|
}
|
|
Output.flush();
|
|
|
|
var env_loader = brk: {
|
|
var map = try ctx.allocator.create(DotEnv.Map);
|
|
map.* = DotEnv.Map.init(ctx.allocator);
|
|
|
|
var loader = try ctx.allocator.create(DotEnv.Loader);
|
|
loader.* = DotEnv.Loader.init(map, ctx.allocator);
|
|
break :brk loader;
|
|
};
|
|
bun.JSC.initialize();
|
|
HTTPThread.init() catch {};
|
|
|
|
var snapshot_file_buf = std.ArrayList(u8).init(ctx.allocator);
|
|
var snapshot_values = Snapshots.ValuesHashMap.init(ctx.allocator);
|
|
var snapshot_counts = bun.StringHashMap(usize).init(ctx.allocator);
|
|
|
|
var reporter = try ctx.allocator.create(CommandLineReporter);
|
|
reporter.* = CommandLineReporter{
|
|
.jest = TestRunner{
|
|
.allocator = ctx.allocator,
|
|
.log = ctx.log,
|
|
.callback = undefined,
|
|
.snapshots = Snapshots{
|
|
.allocator = ctx.allocator,
|
|
.update_snapshots = ctx.test_options.update_snapshots,
|
|
.file_buf = &snapshot_file_buf,
|
|
.values = &snapshot_values,
|
|
.counts = &snapshot_counts,
|
|
},
|
|
},
|
|
.callback = undefined,
|
|
};
|
|
reporter.callback = TestRunner.Callback{
|
|
.onUpdateCount = CommandLineReporter.handleUpdateCount,
|
|
.onTestStart = CommandLineReporter.handleTestStart,
|
|
.onTestPass = CommandLineReporter.handleTestPass,
|
|
.onTestFail = CommandLineReporter.handleTestFail,
|
|
.onTestSkip = CommandLineReporter.handleTestSkip,
|
|
};
|
|
reporter.jest.callback = &reporter.callback;
|
|
jest.Jest.runner = &reporter.jest;
|
|
|
|
js_ast.Expr.Data.Store.create(default_allocator);
|
|
js_ast.Stmt.Data.Store.create(default_allocator);
|
|
var vm = try JSC.VirtualMachine.init(ctx.allocator, ctx.args, null, ctx.log, env_loader);
|
|
vm.argv = ctx.passthrough;
|
|
vm.preload = ctx.preloads;
|
|
|
|
try vm.bundler.configureDefines();
|
|
vm.bundler.options.rewrite_jest_for_tests = true;
|
|
|
|
vm.loadExtraEnv();
|
|
vm.is_main_thread = true;
|
|
JSC.VirtualMachine.is_main_thread_vm = true;
|
|
|
|
var scanner = Scanner{
|
|
.dirs_to_scan = Scanner.Fifo.init(ctx.allocator),
|
|
.options = &vm.bundler.options,
|
|
.fs = vm.bundler.fs,
|
|
.filter_names = ctx.positionals[1..],
|
|
.results = std.ArrayList(PathString).init(ctx.allocator),
|
|
};
|
|
const dir_to_scan = brk: {
|
|
if (ctx.debug.test_directory.len > 0) {
|
|
break :brk try vm.allocator.dupe(u8, resolve_path.joinAbs(scanner.fs.top_level_dir, .auto, ctx.debug.test_directory));
|
|
}
|
|
|
|
break :brk scanner.fs.top_level_dir;
|
|
};
|
|
|
|
scanner.scan(dir_to_scan);
|
|
scanner.dirs_to_scan.deinit();
|
|
|
|
const test_files = try scanner.results.toOwnedSlice();
|
|
if (test_files.len > 0) {
|
|
// vm.bundler.fs.fs.readDirectory(_dir: string, _handle: ?std.fs.Dir)
|
|
runAllTests(reporter, vm, test_files, ctx.allocator);
|
|
}
|
|
|
|
try jest.Jest.runner.?.snapshots.writeSnapshotFile();
|
|
|
|
if (reporter.summary.pass > 20) {
|
|
if (reporter.summary.skip > 0) {
|
|
Output.prettyError("\n<r><d>{d} tests skipped:<r>\n", .{reporter.summary.skip});
|
|
Output.flush();
|
|
|
|
var error_writer = Output.errorWriter();
|
|
error_writer.writeAll(reporter.skips_to_repeat_buf.items) catch unreachable;
|
|
}
|
|
|
|
if (reporter.summary.fail > 0) {
|
|
if (reporter.summary.skip > 0) {
|
|
Output.prettyError("\n", .{});
|
|
}
|
|
|
|
Output.prettyError("\n<r><d>{d} tests failed:<r>\n", .{reporter.summary.fail});
|
|
Output.flush();
|
|
|
|
var error_writer = Output.errorWriter();
|
|
error_writer.writeAll(reporter.failures_to_repeat_buf.items) catch unreachable;
|
|
}
|
|
}
|
|
|
|
Output.flush();
|
|
|
|
if (scanner.filter_names.len == 0 and test_files.len == 0) {
|
|
Output.prettyErrorln(
|
|
\\<b><yellow>No tests found<r>! Tests need ".test", "_test_", ".spec" or "_spec_" in the filename <d>(ex: "MyApp.test.ts")<r>
|
|
\\
|
|
,
|
|
.{},
|
|
);
|
|
|
|
Output.printStartEnd(ctx.start_time, std.time.nanoTimestamp());
|
|
if (scanner.search_count > 0)
|
|
Output.prettyError(
|
|
\\ {d} files searched
|
|
, .{
|
|
scanner.search_count,
|
|
});
|
|
} else {
|
|
Output.prettyError("\n", .{});
|
|
|
|
if (reporter.summary.pass > 0) {
|
|
Output.prettyError("<r><green>", .{});
|
|
}
|
|
|
|
Output.prettyError(" {d:5>} pass<r>\n", .{reporter.summary.pass});
|
|
|
|
if (reporter.summary.skip > 0) {
|
|
Output.prettyError(" <r><yellow>{d:5>} skip<r>\n", .{reporter.summary.skip});
|
|
}
|
|
|
|
if (reporter.summary.fail > 0) {
|
|
Output.prettyError("<r><red>", .{});
|
|
} else {
|
|
Output.prettyError("<r><d>", .{});
|
|
}
|
|
|
|
Output.prettyError(" {d:5>} fail<r>\n", .{reporter.summary.fail});
|
|
|
|
if (reporter.jest.snapshots.total > 0) {
|
|
const passed = reporter.jest.snapshots.passed;
|
|
const failed = reporter.jest.snapshots.failed;
|
|
const added = reporter.jest.snapshots.added;
|
|
|
|
var first = true;
|
|
Output.prettyError(" <d>snapshots:<r> ", .{});
|
|
|
|
if (passed > 0) {
|
|
Output.prettyError("<d>{d} passed<r>", .{passed});
|
|
first = false;
|
|
}
|
|
|
|
if (added > 0) {
|
|
if (first) {
|
|
first = false;
|
|
Output.prettyError("<d>{d} added<r>", .{added});
|
|
} else {
|
|
Output.prettyError("<d>, {d} added<r>", .{added});
|
|
}
|
|
}
|
|
|
|
if (failed > 0) {
|
|
if (first) {
|
|
first = false;
|
|
Output.prettyError("<red>{d} failed<r>", .{failed});
|
|
} else {
|
|
Output.prettyError(", <red>{d} failed<r>", .{failed});
|
|
}
|
|
}
|
|
|
|
Output.prettyError("\n", .{});
|
|
}
|
|
|
|
if (reporter.summary.expectations > 0) Output.prettyError(" {d:5>} expect() calls\n", .{reporter.summary.expectations});
|
|
|
|
Output.prettyError("Ran {d} tests across {d} files ", .{
|
|
reporter.summary.fail + reporter.summary.pass,
|
|
test_files.len,
|
|
});
|
|
Output.printStartEnd(ctx.start_time, std.time.nanoTimestamp());
|
|
}
|
|
|
|
Output.prettyError("\n", .{});
|
|
Output.flush();
|
|
|
|
if (reporter.summary.fail > 0) {
|
|
Global.exit(1);
|
|
}
|
|
}
|
|
|
|
pub fn runAllTests(
|
|
reporter_: *CommandLineReporter,
|
|
vm_: *JSC.VirtualMachine,
|
|
files_: []const PathString,
|
|
allocator_: std.mem.Allocator,
|
|
) void {
|
|
const Context = struct {
|
|
reporter: *CommandLineReporter,
|
|
vm: *JSC.VirtualMachine,
|
|
files: []const PathString,
|
|
allocator: std.mem.Allocator,
|
|
pub fn begin(this: *@This()) void {
|
|
var reporter = this.reporter;
|
|
var vm = this.vm;
|
|
var files = this.files;
|
|
var allocator = this.allocator;
|
|
std.debug.assert(files.len > 0);
|
|
|
|
if (files.len > 1) {
|
|
for (files[0 .. files.len - 1]) |file_name| {
|
|
TestCommand.run(reporter, vm, file_name.slice(), allocator) catch {};
|
|
Global.mimalloc_cleanup(false);
|
|
}
|
|
}
|
|
|
|
TestCommand.run(reporter, vm, files[files.len - 1].slice(), allocator) catch {};
|
|
}
|
|
};
|
|
|
|
var arena = bun.MimallocArena.init() catch @panic("Unexpected error in mimalloc");
|
|
vm_.eventLoop().ensureWaker();
|
|
vm_.arena = &arena;
|
|
vm_.allocator = arena.allocator();
|
|
var ctx = Context{ .reporter = reporter_, .vm = vm_, .files = files_, .allocator = allocator_ };
|
|
vm_.runWithAPILock(Context, &ctx, Context.begin);
|
|
}
|
|
|
|
fn timerNoop(_: *uws.Timer) callconv(.C) void {}
|
|
|
|
pub fn run(
|
|
reporter: *CommandLineReporter,
|
|
vm: *JSC.VirtualMachine,
|
|
file_name: string,
|
|
_: std.mem.Allocator,
|
|
) !void {
|
|
defer {
|
|
js_ast.Expr.Data.Store.reset();
|
|
js_ast.Stmt.Data.Store.reset();
|
|
|
|
if (vm.log.errors > 0) {
|
|
if (Output.enable_ansi_colors) {
|
|
vm.log.printForLogLevelWithEnableAnsiColors(Output.errorWriter(), true) catch {};
|
|
} else {
|
|
vm.log.printForLogLevelWithEnableAnsiColors(Output.errorWriter(), false) catch {};
|
|
}
|
|
vm.log.msgs.clearRetainingCapacity();
|
|
vm.log.errors = 0;
|
|
}
|
|
|
|
Output.flush();
|
|
}
|
|
|
|
var file_start = reporter.jest.files.len;
|
|
var resolution = try vm.bundler.resolveEntryPoint(file_name);
|
|
vm.clearEntryPoint();
|
|
|
|
Output.prettyErrorln("<r>\n{s}:\n", .{resolution.path_pair.primary.name.filename});
|
|
Output.flush();
|
|
|
|
vm.main_hash = @truncate(u32, bun.hash(resolution.path_pair.primary.text));
|
|
var promise = try vm.loadEntryPoint(resolution.path_pair.primary.text);
|
|
|
|
switch (promise.status(vm.global.vm())) {
|
|
.Rejected => {
|
|
var result = promise.result(vm.global.vm());
|
|
vm.runErrorHandler(result, null);
|
|
reporter.summary.fail += 1;
|
|
return;
|
|
},
|
|
else => {},
|
|
}
|
|
|
|
{
|
|
vm.global.vm().drainMicrotasks();
|
|
var count = vm.unhandled_error_counter;
|
|
vm.global.handleRejectedPromises();
|
|
while (vm.unhandled_error_counter > count) {
|
|
count = vm.unhandled_error_counter;
|
|
vm.global.vm().drainMicrotasks();
|
|
vm.global.handleRejectedPromises();
|
|
}
|
|
vm.global.vm().doWork();
|
|
}
|
|
|
|
var modules: []*jest.DescribeScope = reporter.jest.files.items(.module_scope)[file_start..];
|
|
for (modules) |module| {
|
|
vm.onUnhandledRejectionCtx = null;
|
|
vm.onUnhandledRejection = jest.TestRunnerTask.onUnhandledRejection;
|
|
module.runTests(JSC.JSValue.zero, vm.global);
|
|
vm.eventLoop().tick();
|
|
|
|
var prev_unhandled_count = vm.unhandled_error_counter;
|
|
while (vm.active_tasks > 0) {
|
|
if (!jest.Jest.runner.?.has_pending_tests) jest.Jest.runner.?.drain();
|
|
vm.eventLoop().tick();
|
|
|
|
while (jest.Jest.runner.?.has_pending_tests) {
|
|
vm.eventLoop().autoTick();
|
|
if (!jest.Jest.runner.?.has_pending_tests) break;
|
|
vm.eventLoop().tick();
|
|
}
|
|
|
|
while (prev_unhandled_count < vm.unhandled_error_counter) {
|
|
vm.global.handleRejectedPromises();
|
|
prev_unhandled_count = vm.unhandled_error_counter;
|
|
}
|
|
}
|
|
_ = vm.global.vm().runGC(false);
|
|
}
|
|
vm.global.vm().clearMicrotaskCallback();
|
|
vm.global.handleRejectedPromises();
|
|
}
|
|
};
|