mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
docs: Update standard library and testing manual pages (#6323)
This commit is contained in:
parent
2a5af8b36b
commit
78a311aa5f
3 changed files with 117 additions and 29 deletions
|
@ -1077,7 +1077,7 @@ fn test_subcommand<'a, 'b>() -> App<'a, 'b> {
|
||||||
Arg::with_name("filter")
|
Arg::with_name("filter")
|
||||||
.long("filter")
|
.long("filter")
|
||||||
.takes_value(true)
|
.takes_value(true)
|
||||||
.help("A pattern to filter the tests to run by"),
|
.help("Run tests with this string in the test name"),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name("files")
|
Arg::with_name("files")
|
||||||
|
|
|
@ -9,17 +9,34 @@ Standard library is available at: https://deno.land/std/
|
||||||
|
|
||||||
Standard library is not yet stable and therefore it is versioned differently
|
Standard library is not yet stable and therefore it is versioned differently
|
||||||
than Deno. For latest release consult https://deno.land/std/ or
|
than Deno. For latest release consult https://deno.land/std/ or
|
||||||
https://deno.land/std/version.ts.
|
https://deno.land/std/version.ts. The standard library is released each time
|
||||||
|
Deno is released.
|
||||||
|
|
||||||
We strongly suggest to always use imports with pinned version of standard
|
We strongly suggest to always use imports with pinned version of standard
|
||||||
library to avoid unintended changes.
|
library to avoid unintended changes. For example, rather than linking to the
|
||||||
|
master branch of code, which may change at any time, potentially causing
|
||||||
|
compilation errors or unexpected behavior:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
// imports from master, this should be avoided
|
||||||
|
import { copy } from "https://deno.land/std/fs/copy.ts";
|
||||||
|
```
|
||||||
|
|
||||||
|
instead, used a version of the std library which is immutable and will not
|
||||||
|
change:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
// imports from v0.50.0 of std, never changes
|
||||||
|
import { copy } from "https://deno.land/std@0.50.0/fs/copy.ts";
|
||||||
|
```
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
Some of the modules provided in standard library use unstable Deno APIs.
|
Some of the modules provided in standard library use unstable Deno APIs.
|
||||||
|
|
||||||
Trying to run such modules without `--unstable` CLI flag ends up with a lot of
|
Trying to run such modules without `--unstable` CLI flag ends up with a lot of
|
||||||
TypeScript errors suggesting that some APIs on `Deno` namespace do not exist:
|
TypeScript errors suggesting that some APIs in the `Deno` namespace do not
|
||||||
|
exist:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
// main.ts
|
// main.ts
|
||||||
|
@ -55,4 +72,5 @@ To make sure that API producing error is unstable check
|
||||||
[`lib.deno.unstable.d.ts`](https://github.com/denoland/deno/blob/master/cli/js/lib.deno.unstable.d.ts)
|
[`lib.deno.unstable.d.ts`](https://github.com/denoland/deno/blob/master/cli/js/lib.deno.unstable.d.ts)
|
||||||
declaration.
|
declaration.
|
||||||
|
|
||||||
This problem should be fixed in the near future.
|
This problem should be fixed in the near future. Feel free to omit the flag if
|
||||||
|
the particular modules you depend on compile successfully without it.
|
||||||
|
|
118
docs/testing.md
118
docs/testing.md
|
@ -6,26 +6,41 @@ TypeScript code.
|
||||||
## Writing tests
|
## Writing tests
|
||||||
|
|
||||||
To define a test you need to call `Deno.test` with a name and function to be
|
To define a test you need to call `Deno.test` with a name and function to be
|
||||||
tested:
|
tested. There are two styles you can use.
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
Deno.test("hello world", () => {
|
// Simple name and function, compact form, but not configurable
|
||||||
|
Deno.test("hello world #1", () => {
|
||||||
const x = 1 + 2;
|
const x = 1 + 2;
|
||||||
if (x !== 3) {
|
assertEquals(x, 3);
|
||||||
throw Error("x should be equal to 3");
|
});
|
||||||
|
|
||||||
|
// Fully fledged test definition, longer form, but configurable (see below)
|
||||||
|
Deno.test({
|
||||||
|
name: "hello world #2",
|
||||||
|
fn() => {
|
||||||
|
const x = 1 + 2;
|
||||||
|
assertEquals(x, 3);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
There are some useful assertion utilities at https://deno.land/std/testing to
|
## Assertions
|
||||||
make testing easier:
|
|
||||||
|
There are some useful assertion utilities at https://deno.land/std/testing#usage
|
||||||
|
to make testing easier:
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
|
import {
|
||||||
|
assertEquals,
|
||||||
|
assertArrayContains,
|
||||||
|
} from "https://deno.land/std/testing/asserts.ts";
|
||||||
|
|
||||||
Deno.test("hello world", () => {
|
Deno.test("hello world", () => {
|
||||||
const x = 1 + 2;
|
const x = 1 + 2;
|
||||||
assertEquals(x, 3);
|
assertEquals(x, 3);
|
||||||
|
assertArrayContains([1, 2, 3, 4, 5, 6], [3], "Expected 3 to be in the array");
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -55,7 +70,7 @@ Certain actions in Deno create resources in the resource table
|
||||||
([learn more here](./contributing/architecture.md)). These resources should be
|
([learn more here](./contributing/architecture.md)). These resources should be
|
||||||
closed after you are done using them.
|
closed after you are done using them.
|
||||||
|
|
||||||
For each test definition the test runner checks that all resources created in
|
For each test definition, the test runner checks that all resources created in
|
||||||
this test have been closed. This is to prevent resource 'leaks'. This is enabled
|
this test have been closed. This is to prevent resource 'leaks'. This is enabled
|
||||||
by default for all tests, but can be disabled by setting the `sanitizeResources`
|
by default for all tests, but can be disabled by setting the `sanitizeResources`
|
||||||
boolean to false in the test definition.
|
boolean to false in the test definition.
|
||||||
|
@ -76,7 +91,57 @@ Deno.test({
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
### Ignoring tests
|
## Running tests
|
||||||
|
|
||||||
|
To run the test, call `deno test` with the file that contains your test
|
||||||
|
function. You can also omit the file name, in which case all tests in the
|
||||||
|
current directory (recursively) that match the glob
|
||||||
|
`{*_,*.,}test.{js,mjs,ts,jsx,tsx}` will be run. If you pass a directory, all
|
||||||
|
files in the directory that match this glob will be run.
|
||||||
|
|
||||||
|
```shell
|
||||||
|
# Run all tests in the current directly and all sub-directories
|
||||||
|
deno test
|
||||||
|
|
||||||
|
# Run all tests in the util directory
|
||||||
|
deno test util/
|
||||||
|
|
||||||
|
# Run just my_test.ts
|
||||||
|
deno test my_test.ts
|
||||||
|
```
|
||||||
|
|
||||||
|
`deno test` uses the same permission model as `deno run` and therefore will
|
||||||
|
require, for example, `--allow-write` to write to the file system during
|
||||||
|
testing.
|
||||||
|
|
||||||
|
To see all runtime options with `deno test`, you can reference the command line
|
||||||
|
help:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
deno help test
|
||||||
|
```
|
||||||
|
|
||||||
|
## Filtering
|
||||||
|
|
||||||
|
There are a number of options to filter the tests you are running.
|
||||||
|
|
||||||
|
### Command line filtering
|
||||||
|
|
||||||
|
Tests can be run individually or in groups using the command line `--filter`
|
||||||
|
option.
|
||||||
|
|
||||||
|
```shell
|
||||||
|
deno test --filter "hello world" tests/
|
||||||
|
```
|
||||||
|
|
||||||
|
This command will run any test which contains the string "hello world" in its
|
||||||
|
test name for tests found within files in the `tests/` directory.
|
||||||
|
|
||||||
|
### Test definition filtering
|
||||||
|
|
||||||
|
Within the tests themselves, you have two options for filtering.
|
||||||
|
|
||||||
|
#### Filtering out (Ignoring these tests)
|
||||||
|
|
||||||
Sometimes you want to ignore tests based on some sort of condition (for example
|
Sometimes you want to ignore tests based on some sort of condition (for example
|
||||||
you only want a test to run on Windows). For this you can use the `ignore`
|
you only want a test to run on Windows). For this you can use the `ignore`
|
||||||
|
@ -92,26 +157,31 @@ Deno.test({
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
## Running tests
|
#### Filtering in (Only run these tests)
|
||||||
|
|
||||||
To run the test, call `deno test` with the file that contains your test
|
Sometimes you may be in the middle of a problem within a large test class and
|
||||||
function:
|
you would like to focus on just that test and ignore the rest for now. For this
|
||||||
|
you can use the `only` option to tell the test framework to only run tests with
|
||||||
|
this set to true. Multiple tests can set this option. While the test run will
|
||||||
|
report on the success or failure of each test, the overall test run will always
|
||||||
|
fail if any test is flagged with `only`, as this is a temporary measure only
|
||||||
|
which disables nearly all of your tests.
|
||||||
|
|
||||||
```shell
|
```ts
|
||||||
deno test my_test.ts
|
Deno.test({
|
||||||
|
name: "Focus on this test only",
|
||||||
|
only: true,
|
||||||
|
fn() {
|
||||||
|
testComplicatedStuff();
|
||||||
|
},
|
||||||
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also omit the file name, in which case all tests in the current
|
## Failing fast
|
||||||
directory (recursively) that match the glob `{*_,*.,}test.{js,mjs,ts,jsx,tsx}`
|
|
||||||
will be run. If you pass a directory, all files in the directory that match this
|
|
||||||
glob will be run.
|
|
||||||
|
|
||||||
Tests can be run individually or in groups using the command line `--filter`
|
If you have a long running test suite and wish for it to stop on the first
|
||||||
option.
|
failure, you can specify the `--failfast` flag when running the suite.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
deno test --filter "hello world" tests/
|
deno test --failfast
|
||||||
```
|
```
|
||||||
|
|
||||||
This command will run any test which contains the pattern "hello world" in its
|
|
||||||
name stored within the `tests/` directory.
|
|
||||||
|
|
Loading…
Reference in a new issue