1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-09 07:39:15 -05:00
denoland-deno/cli/js/tests
2020-04-09 12:03:44 +02:00
..
blob_test.ts feat: Expose ReadableStream and make Blob more standardized (#4581) 2020-04-03 14:55:23 -04:00
body_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
buffer_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
build_test.ts
chmod_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
chown_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
console_test.ts console: print promise details (#4524) 2020-03-30 19:01:19 -04:00
copy_file_test.ts
custom_event_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
dir_test.ts
dispatch_json_test.ts
dispatch_minimal_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
dom_iterable_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
error_stack_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
event_target_test.ts Remove __event, __eventTarget, __customEvent namespaces (#4683) 2020-04-09 12:03:44 +02:00
event_test.ts
fetch_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
file_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
files_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
form_data_test.ts feat: Add File support in FormData (#4632) 2020-04-05 15:49:04 -04:00
format_error_test.ts refactor(cli/js/testing): Reduce testing interfaces (#4451) 2020-04-01 10:47:23 +02:00
fs_events_test.ts fix: add fsEvent notify::Error casts (#4488) 2020-03-24 23:50:51 -04:00
get_random_values_test.ts
globals_test.ts
headers_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
internals_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
link_test.ts
location_test.ts
make_temp_test.ts
metrics_test.ts
mkdir_test.ts Refactor and expand mkdir tests (#4579) 2020-04-02 14:54:33 -04:00
net_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
os_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
performance_test.ts
permissions_test.ts
process_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
read_dir_test.ts
read_file_test.ts
read_link_test.ts
README.md
realpath_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
remove_test.ts
rename_test.ts Improve tests and docs for Deno.rename (#4597) 2020-04-03 11:00:16 -04:00
request_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
resources_test.ts
signal_test.ts fix: async ops sanitizer false positives in timers (#4602) 2020-04-03 19:20:36 +02:00
stat_test.ts
symbols_test.ts
symlink_test.ts
test_util.ts refactor(cli/js/testing): Reduce testing interfaces (#4451) 2020-04-01 10:47:23 +02:00
testing_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
text_encoding_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
timers_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
tls_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
truncate_test.ts
tty_test.ts
umask_test.ts Fix umask test (#4533) 2020-03-30 19:02:02 -04:00
unit_test_runner.ts feat: deno test --filter (#4570) 2020-04-02 09:26:40 -04:00
unit_tests.ts
url_search_params_test.ts Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
url_test.ts refactor(cli/js/testing): Reduce testing interfaces (#4451) 2020-04-01 10:47:23 +02:00
utime_test.ts fix(#4546) Added Math.trunc to toSecondsFromEpoch to conform the result to u64 (#4575) 2020-04-03 15:20:40 -04:00
version_test.ts
write_file_test.ts

Deno runtime tests

Files in this directory are unit tests for Deno runtime.

They are run under compiled Deno binary as opposed to files in cli/js/ which are bundled and snapshotted using deno_typescript crate.

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 === "win",
    perms: { read: true, write: true },
  },
  function complexTestFn(): void {
    // test code here
  }
);

unitTest is 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 discoveres required permissions combinations by loading cli/js/tests/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 -A cli/js/tests/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 -A cli/js/tests/unit_test_runner.ts --master --verbose

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

# Run subset tests that require "net" and "read" permissions
target/debug/deno --allow-net --allow-read cli/js/tests/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 -A cli/js/tests/unit_test_runner.ts --worker --addr=127.0.0.1:4500 --perms=net,write,run

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

Http server

tools/http_server.py 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.