0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 09:57:11 -05:00
deno/cli/tests/unit
2021-04-12 01:40:42 +02:00
..
abort_controller_test.ts
blob_test.ts chore: update std submodule (#10017) 2021-04-05 15:57:52 +02:00
body_test.ts
buffer_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
build_test.ts
chmod_test.ts
chown_test.ts
console_test.ts fix(op_crates/console): console.table value misalignment with varying keys (#10127) 2021-04-11 14:19:50 +02:00
copy_file_test.ts
custom_event_test.ts
dir_test.ts refactor: clean up permission handling (#9367) 2021-03-17 17:45:12 -04:00
dispatch_bin_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
dom_iterable_test.ts refactor: move Console to op_crates/console (#9770) 2021-03-12 21:23:59 +01:00
error_stack_test.ts
event_target_test.ts
event_test.ts fix: webidl utils and align Event to spec (#9470) 2021-02-13 15:58:12 +01:00
fetch_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
file_test.ts
filereader_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
files_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
filter_function_test.ts
form_data_test.ts chore: add jsdoc to 26_fetch.js and enable some fetch tests (#9305) 2021-01-28 21:37:21 +01:00
format_error_test.ts
fs_events_test.ts
get_random_values_test.ts
globals_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
headers_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
http_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
internals_test.ts
io_test.ts chore: deprecate Deno.Buffer and read/write utils (#9793) 2021-04-06 00:05:36 +02:00
link_test.ts
make_temp_test.ts
metrics_test.ts refactor: new optimized op-layer using serde_v8 (#9843) 2021-03-31 10:37:38 -04:00
mkdir_test.ts
net_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
os_test.ts refactor: clean up permission handling (#9367) 2021-03-17 17:45:12 -04:00
path_from_url_test.ts
performance_test.ts
permissions_test.ts feat(runtime): stabilise permissions and add event target capabilities (#9573) 2021-02-25 14:33:09 +11:00
process_test.ts
progressevent_test.ts
read_dir_test.ts fix(runtime): do not panic on irregular dir entries (#9579) 2021-02-25 05:16:18 -05:00
read_file_test.ts fix(runtime/readFile*): close resources on error during read (#10059) 2021-04-08 16:36:52 +02:00
read_link_test.ts
read_text_file_test.ts fix(runtime/readFile*): close resources on error during read (#10059) 2021-04-08 16:36:52 +02:00
README.md
real_path_test.ts
remove_test.ts
rename_test.ts
request_test.ts chore: add jsdoc to 26_fetch.js and enable some fetch tests (#9305) 2021-01-28 21:37:21 +01:00
resources_test.ts
response_test.ts chore: update std submodule (#10017) 2021-04-05 15:57:52 +02:00
signal_test.ts
stat_test.ts
stdio_test.ts
streams_deprecated.ts
symlink_test.ts
sync_test.ts
test_util.ts fix(runtime/js/timers): Use (0, eval) instead of eval() (#10103) 2021-04-12 01:40:42 +02:00
testing_test.ts
text_encoding_test.ts chore: upgrade dependencies (#10094) 2021-04-09 23:35:29 +02:00
timers_test.ts fix(runtime/js/timers): Use (0, eval) instead of eval() (#10103) 2021-04-12 01:40:42 +02:00
tls_test.ts fix(runtime/tls): handle invalid host for connectTls/startTls (#9453) 2021-02-11 12:45:10 +01:00
truncate_test.ts
tty_test.ts
umask_test.ts
unit_test_runner.ts
unit_tests.ts feat: native HTTP bindings (#9935) 2021-04-08 18:34:15 -04:00
url_search_params_test.ts
url_test.ts test(op_crates/web): add regression tests for past URL bugs (#9639) (#9639) 2021-03-02 19:09:58 +01:00
utime_test.ts
version_test.ts feat(cli): update to TypeScript 4.2 (#9341) 2021-02-25 15:16:19 +11:00
webgpu_test.ts chore: upgrade crates (#9632) 2021-03-02 13:39:56 +01:00
websocket_test.ts
worker_types.ts chore: Reorganise workers tests (#9493) 2021-02-15 14:48:47 +01:00
write_file_test.ts
write_text_file_test.ts

Deno runtime tests

Files in this directory are unit tests for Deno runtime.

Testing Deno runtime code requires checking API under different runtime permissions (ie. running with different --allow-* flags). To accomplish this all tests exercised are created using unitTest() function.

import { unitTest } from "./test_util.ts";

unitTest(function simpleTestFn(): void {
  // test code here
});

unitTest(
  {
    ignore: Deno.build.os === "windows",
    perms: { read: true, write: true },
  },
  function complexTestFn(): void {
    // test code here
  },
);

unitTest is a wrapper function that enhances Deno.test() API in several ways:

  • ability to conditionally skip tests using UnitTestOptions.skip.
  • ability to register required set of permissions for given test case using UnitTestOptions.perms.
  • sanitization of resources - ensuring that tests close all opened resources preventing interference between tests.
  • sanitization of async ops - ensuring that tests don't leak async ops by ensuring that all started async ops are done before test finishes.

Running tests

unit_test_runner.ts is the main script used to run unit tests.

Runner discovers required permissions combinations by loading cli/tests/unit/unit_tests.ts and going through all registered instances of unitTest.

There are three ways to run unit_test_runner.ts:

# Run all tests. Spawns worker processes for each discovered permission
# combination:
target/debug/deno run -A cli/tests/unit/unit_test_runner.ts --master

# By default all output of worker processes is discarded; for debug purposes
# the --verbose flag preserves output from the worker.
target/debug/deno run -A cli/tests/unit/unit_test_runner.ts --master --verbose

# Run subset of tests that don't require any permissions.
target/debug/deno run --unstable cli/tests/unit/unit_test_runner.ts

# Run subset tests that require "net" and "read" permissions.
target/debug/deno run --unstable --allow-net --allow-read cli/tests/unit/unit_test_runner.ts

# "worker" mode communicates with parent using TCP socket on provided address;
# after initial setup drops permissions to specified set. It shouldn't be used
# directly, only be "master" process.
target/debug/deno run -A cli/tests/unit/unit_test_runner.ts --worker --addr=127.0.0.1:4500 --perms=net,write,run

# Run specific tests.
target/debug/deno run --unstable --allow-net cli/tests/unit/unit_test_runner.ts -- netTcpListenClose

RUST_BACKTRACE=1 cargo run -- run --unstable --allow-read --allow-write cli/tests/unit/unit_test_runner.ts -- netUnixDialListen

Http server

target/debug/test_server is required to run when one's running unit tests. During CI it's spawned automatically, but if you want to run tests manually make sure that server is spawned otherwise there'll be cascade of test failures.