1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 |
x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x2 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 |
/**
* A library of assertion functions.
* If the assertion is false an `AssertionError` will be thrown which will
* result in pretty-printed diff of failing assertion.
*
* This module is browser compatible, but do not rely on good formatting of
* values for AssertionError messages in browsers.
*
* ```ts ignore
* import { assert } from "@std/assert";
*
* assert("I am truthy"); // Doesn't throw
* assert(false); // Throws `AssertionError`
* ```
*
* @module
*/
import { assertAlmostEquals as _function_assertAlmostEquals } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` and `expected` are almost equal numbers
* through a given tolerance. It can be used to take into account IEEE-754
* double-precision floating-point representation limitations. If the values
* are not almost equal then throw.
*
* The default tolerance is one hundred thousandth of a percent of the
* expected value.
*
* @example Usage
* ```ts ignore
* import { assertAlmostEquals } from "@std/assert";
*
* assertAlmostEquals(0.01, 0.02); // Throws
* assertAlmostEquals(1e-8, 1e-9); // Throws
* assertAlmostEquals(1.000000001e-8, 1.000000002e-8); // Doesn't throw
* assertAlmostEquals(0.01, 0.02, 0.1); // Doesn't throw
* assertAlmostEquals(0.1 + 0.2, 0.3, 1e-16); // Doesn't throw
* assertAlmostEquals(0.1 + 0.2, 0.3, 1e-17); // Throws
* ```
*
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param tolerance The tolerance to consider the values almost equal. The
* default is one hundred thousandth of a percent of the expected value.
* @param msg The optional message to include in the error.
*/
const assertAlmostEquals = _function_assertAlmostEquals as typeof _function_assertAlmostEquals
export { assertAlmostEquals }
import type { ArrayLikeArg as _typeAlias_ArrayLikeArg } from "jsr:@std/[email protected]"
/**
* An array-like object (`Array`, `Uint8Array`, `NodeList`, etc.) that is not a string
*/
type ArrayLikeArg<T> = _typeAlias_ArrayLikeArg<T>
export type { ArrayLikeArg }
import { assertArrayIncludes as _function_assertArrayIncludes } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` includes the `expected` values. If not then
* an error will be thrown.
*
* Type parameter can be specified to ensure values under comparison have the
* same type.
*
* @example Usage
* ```ts ignore
* import { assertArrayIncludes } from "@std/assert";
*
* assertArrayIncludes([1, 2], [2]); // Doesn't throw
* assertArrayIncludes([1, 2], [3]); // Throws
* ```
*
* @template T The type of the elements in the array to compare.
* @param actual The array-like object to check for.
* @param expected The array-like object to check for.
* @param msg The optional message to display if the assertion fails.
*/
const assertArrayIncludes = _function_assertArrayIncludes as typeof _function_assertArrayIncludes
export { assertArrayIncludes }
import { assertEquals as _function_assertEquals } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` and `expected` are equal, deeply. If not
* deeply equal, then throw.
*
* Type parameter can be specified to ensure values under comparison have the
* same type.
*
* @example Usage
* ```ts ignore
* import { assertEquals } from "@std/assert";
*
* assertEquals("world", "world"); // Doesn't throw
* assertEquals("hello", "world"); // Throws
* ```
*
* @template T The type of the values to compare. This is usually inferred.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
*/
const assertEquals = _function_assertEquals as typeof _function_assertEquals
export { assertEquals }
import { assertExists as _function_assertExists } from "jsr:@std/[email protected]"
/**
* Make an assertion that actual is not null or undefined.
* If not then throw.
*
* @example Usage
* ```ts ignore
* import { assertExists } from "@std/assert";
*
* assertExists("something"); // Doesn't throw
* assertExists(undefined); // Throws
* ```
*
* @template T The type of the actual value.
* @param actual The actual value to check.
* @param msg The optional message to include in the error if the assertion fails.
*/
const assertExists = _function_assertExists as typeof _function_assertExists
export { assertExists }
import type { Falsy as _typeAlias_Falsy } from "jsr:@std/[email protected]"
/**
* Assertion condition for {@linkcode assertFalse}.
*/
type Falsy = _typeAlias_Falsy
export type { Falsy }
import { assertFalse as _function_assertFalse } from "jsr:@std/[email protected]"
/**
* Make an assertion, error will be thrown if `expr` have truthy value.
*
* @example Usage
* ```ts ignore
* import { assertFalse } from "@std/assert";
*
* assertFalse(false); // Doesn't throw
* assertFalse(true); // Throws
* ```
*
* @param expr The expression to test.
* @param msg The optional message to display if the assertion fails.
*/
const assertFalse = _function_assertFalse as typeof _function_assertFalse
export { assertFalse }
import { assertGreaterOrEqual as _function_assertGreaterOrEqual } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` is greater than or equal to `expected`.
* If not then throw.
*
* @example Usage
* ```ts ignore
* import { assertGreaterOrEqual } from "@std/assert";
*
* assertGreaterOrEqual(2, 1); // Doesn't throw
* assertGreaterOrEqual(1, 1); // Doesn't throw
* assertGreaterOrEqual(0, 1); // Throws
* ```
*
* @template T The type of the values to compare.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
*/
const assertGreaterOrEqual = _function_assertGreaterOrEqual as typeof _function_assertGreaterOrEqual
export { assertGreaterOrEqual }
import { assertGreater as _function_assertGreater } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` is greater than `expected`.
* If not then throw.
*
* @example Usage
* ```ts ignore
* import { assertGreater } from "@std/assert";
*
* assertGreater(2, 1); // Doesn't throw
* assertGreater(1, 1); // Throws
* assertGreater(0, 1); // Throws
* ```
*
* @template T The type of the values to compare.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
*/
const assertGreater = _function_assertGreater as typeof _function_assertGreater
export { assertGreater }
import type { AnyConstructor as _typeAlias_AnyConstructor } from "jsr:@std/[email protected]"
/**
* Any constructor
*/
type AnyConstructor = _typeAlias_AnyConstructor
export type { AnyConstructor }
import type { GetConstructorType as _typeAlias_GetConstructorType } from "jsr:@std/[email protected]"
/**
* Gets constructor type
*/
type GetConstructorType<T extends AnyConstructor> = _typeAlias_GetConstructorType<T>
export type { GetConstructorType }
import { assertInstanceOf as _function_assertInstanceOf } from "jsr:@std/[email protected]"
/**
* Make an assertion that `obj` is an instance of `type`.
* If not then throw.
*
* @example Usage
* ```ts ignore
* import { assertInstanceOf } from "@std/assert";
*
* assertInstanceOf(new Date(), Date); // Doesn't throw
* assertInstanceOf(new Date(), Number); // Throws
* ```
*
* @template T The expected type of the object.
* @param actual The object to check.
* @param expectedType The expected class constructor.
* @param msg The optional message to display if the assertion fails.
*/
const assertInstanceOf = _function_assertInstanceOf as typeof _function_assertInstanceOf
export { assertInstanceOf }
import { assertIsError as _function_assertIsError } from "jsr:@std/[email protected]"
/**
* Make an assertion that `error` is an `Error`.
* If not then an error will be thrown.
* An error class and a string that should be included in the
* error message can also be asserted.
*
* @example Usage
* ```ts ignore
* import { assertIsError } from "@std/assert";
*
* assertIsError(null); // Throws
* assertIsError(new RangeError("Out of range")); // Doesn't throw
* assertIsError(new RangeError("Out of range"), SyntaxError); // Throws
* assertIsError(new RangeError("Out of range"), SyntaxError, "Out of range"); // Doesn't throw
* assertIsError(new RangeError("Out of range"), SyntaxError, "Within range"); // Throws
* ```
*
* @template E The type of the error to assert.
* @param error The error to assert.
* @param ErrorClass The optional error class to assert.
* @param msgMatches The optional string or RegExp to assert in the error message.
* @param msg The optional message to display if the assertion fails.
*/
const assertIsError = _function_assertIsError as typeof _function_assertIsError
export { assertIsError }
import { assertLessOrEqual as _function_assertLessOrEqual } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` is less than or equal to `expected`.
* If not then throw.
*
* @example Usage
* ```ts ignore
* import { assertLessOrEqual } from "@std/assert";
*
* assertLessOrEqual(1, 2); // Doesn't throw
* assertLessOrEqual(1, 1); // Doesn't throw
* assertLessOrEqual(1, 0); // Throws
* ```
*
* @template T The type of the values to compare.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
*/
const assertLessOrEqual = _function_assertLessOrEqual as typeof _function_assertLessOrEqual
export { assertLessOrEqual }
import { assertLess as _function_assertLess } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` is less than `expected`.
* If not then throw.
*
* @example Usage
* ```ts ignore
* import { assertLess } from "@std/assert";
*
* assertLess(1, 2); // Doesn't throw
* assertLess(2, 1); // Throws
* ```
*
* @template T The type of the values to compare.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
*/
const assertLess = _function_assertLess as typeof _function_assertLess
export { assertLess }
import { assertMatch as _function_assertMatch } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` match RegExp `expected`. If not
* then throw.
*
* @example Usage
* ```ts ignore
* import { assertMatch } from "@std/assert";
*
* assertMatch("Raptor", /Raptor/); // Doesn't throw
* assertMatch("Denosaurus", /Raptor/); // Throws
* ```
*
* @param actual The actual value to be matched.
* @param expected The expected pattern to match.
* @param msg The optional message to display if the assertion fails.
*/
const assertMatch = _function_assertMatch as typeof _function_assertMatch
export { assertMatch }
import { assertNotEquals as _function_assertNotEquals } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` and `expected` are not equal, deeply.
* If not then throw.
*
* Type parameter can be specified to ensure values under comparison have the same type.
*
* @example Usage
* ```ts ignore
* import { assertNotEquals } from "@std/assert";
*
* assertNotEquals(1, 2); // Doesn't throw
* assertNotEquals(1, 1); // Throws
* ```
*
* @template T The type of the values to compare.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
*/
const assertNotEquals = _function_assertNotEquals as typeof _function_assertNotEquals
export { assertNotEquals }
import { assertNotInstanceOf as _function_assertNotInstanceOf } from "jsr:@std/[email protected]"
/**
* Make an assertion that `obj` is not an instance of `type`.
* If so, then throw.
*
* @example Usage
* ```ts ignore
* import { assertNotInstanceOf } from "@std/assert";
*
* assertNotInstanceOf(new Date(), Number); // Doesn't throw
* assertNotInstanceOf(new Date(), Date); // Throws
* ```
*
* @template A The type of the object to check.
* @template T The type of the class to check against.
* @param actual The object to check.
* @param unexpectedType The class constructor to check against.
* @param msg The optional message to display if the assertion fails.
*/
const assertNotInstanceOf = _function_assertNotInstanceOf as typeof _function_assertNotInstanceOf
export { assertNotInstanceOf }
import { assertNotMatch as _function_assertNotMatch } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` not match RegExp `expected`. If match
* then throw.
*
* @example Usage
* ```ts ignore
* import { assertNotMatch } from "@std/assert";
*
* assertNotMatch("Denosaurus", /Raptor/); // Doesn't throw
* assertNotMatch("Raptor", /Raptor/); // Throws
* ```
*
* @param actual The actual value to match.
* @param expected The expected value to not match.
* @param msg The optional message to display if the assertion fails.
*/
const assertNotMatch = _function_assertNotMatch as typeof _function_assertNotMatch
export { assertNotMatch }
import { assertNotStrictEquals as _function_assertNotStrictEquals } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` and `expected` are not strictly equal, using
* {@linkcode Object.is} for equality comparison. If the values are strictly
* equal then throw.
*
* @example Usage
* ```ts ignore
* import { assertNotStrictEquals } from "@std/assert";
*
* assertNotStrictEquals(1, 1); // Throws
* assertNotStrictEquals(1, 2); // Doesn't throw
*
* assertNotStrictEquals(0, 0); // Throws
* assertNotStrictEquals(0, -0); // Doesn't throw
* ```
*
* @template T The type of the values to compare.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
*/
const assertNotStrictEquals = _function_assertNotStrictEquals as typeof _function_assertNotStrictEquals
export { assertNotStrictEquals }
import { assertObjectMatch as _function_assertObjectMatch } from "jsr:@std/[email protected]"
/**
* Make an assertion that `expected` object is a subset of `actual` object,
* deeply. If not, then throw.
*
* @example Usage
* ```ts ignore
* import { assertObjectMatch } from "@std/assert";
*
* assertObjectMatch({ foo: "bar" }, { foo: "bar" }); // Doesn't throw
* assertObjectMatch({ foo: "bar" }, { foo: "baz" }); // Throws
* assertObjectMatch({ foo: 1, bar: 2 }, { foo: 1 }); // Doesn't throw
* assertObjectMatch({ foo: 1 }, { foo: 1, bar: 2 }); // Throws
* ```
*
* @example Usage with nested objects
* ```ts ignore
* import { assertObjectMatch } from "@std/assert";
*
* assertObjectMatch({ foo: { bar: 3, baz: 4 } }, { foo: { bar: 3 } }); // Doesn't throw
* assertObjectMatch({ foo: { bar: 3 } }, { foo: { bar: 3, baz: 4 } }); // Throws
* ```
*
* @param actual The actual value to be matched.
* @param expected The expected value to match.
* @param msg The optional message to display if the assertion fails.
*/
const assertObjectMatch = _function_assertObjectMatch as typeof _function_assertObjectMatch
export { assertObjectMatch }
import { assertRejects as _function_assertRejects } from "jsr:@std/[email protected]"
/** UNDOCUMENTED */
const assertRejects = _function_assertRejects as typeof _function_assertRejects
export { assertRejects }
import { assertStrictEquals as _function_assertStrictEquals } from "jsr:@std/[email protected]"
/**
* Make an assertion that `actual` and `expected` are strictly equal, using
* {@linkcode Object.is} for equality comparison. If not, then throw.
*
* @example Usage
* ```ts ignore
* import { assertStrictEquals } from "@std/assert";
*
* const a = {};
* const b = a;
* assertStrictEquals(a, b); // Doesn't throw
*
* const c = {};
* const d = {};
* assertStrictEquals(c, d); // Throws
* ```
*
* @template T The type of the expected value.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
*/
const assertStrictEquals = _function_assertStrictEquals as typeof _function_assertStrictEquals
export { assertStrictEquals }
import { assertStringIncludes as _function_assertStringIncludes } from "jsr:@std/[email protected]"
/**
* Make an assertion that actual includes expected. If not
* then throw.
*
* @example Usage
* ```ts ignore
* import { assertStringIncludes } from "@std/assert";
*
* assertStringIncludes("Hello", "ello"); // Doesn't throw
* assertStringIncludes("Hello", "world"); // Throws
* ```
*
* @param actual The actual string to check for inclusion.
* @param expected The expected string to check for inclusion.
* @param msg The optional message to display if the assertion fails.
*/
const assertStringIncludes = _function_assertStringIncludes as typeof _function_assertStringIncludes
export { assertStringIncludes }
import { assertThrows as _function_assertThrows } from "jsr:@std/[email protected]"
/** UNDOCUMENTED */
const assertThrows = _function_assertThrows as typeof _function_assertThrows
export { assertThrows }
import { assert as _function_assert } from "jsr:@std/[email protected]"
/**
* Make an assertion, error will be thrown if `expr` does not have truthy value.
*
* @example Usage
* ```ts ignore
* import { assert } from "@std/assert";
*
* assert("hello".includes("ello")); // Doesn't throw
* assert("hello".includes("world")); // Throws
* ```
*
* @param expr The expression to test.
* @param msg The optional message to display if the assertion fails.
*/
const assert = _function_assert as typeof _function_assert
export { assert }
import { AssertionError as _class_AssertionError } from "jsr:@std/[email protected]"
/**
* Error thrown when an assertion fails.
*
* @example Usage
* ```ts ignore
* import { AssertionError } from "@std/assert";
*
* try {
* throw new AssertionError("foo", { cause: "bar" });
* } catch (error) {
* if (error instanceof AssertionError) {
* error.message === "foo"; // true
* error.cause === "bar"; // true
* }
* }
* ```
*/
class AssertionError extends _class_AssertionError {}
export { AssertionError }
import { equal as _function_equal } from "jsr:@std/[email protected]"
/**
* Deep equality comparison used in assertions.
*
* @param c The actual value
* @param d The expected value
* @return `true` if the values are deeply equal, `false` otherwise
*
* @example Usage
* ```ts
* import { equal } from "@std/assert/equal";
*
* equal({ foo: "bar" }, { foo: "bar" }); // Returns `true`
* equal({ foo: "bar" }, { foo: "baz" }); // Returns `false
* ```
*/
const equal = _function_equal as typeof _function_equal
export { equal }
import { fail as _function_fail } from "jsr:@std/[email protected]"
/**
* Forcefully throws a failed assertion.
*
* @example Usage
* ```ts ignore
* import { fail } from "@std/assert";
*
* fail("Deliberately failed!"); // Throws
* ```
*
* @param msg Optional message to include in the error.
* @return Never returns, always throws.
*/
const fail = _function_fail as typeof _function_fail
export { fail }
import { unimplemented as _function_unimplemented } from "jsr:@std/[email protected]"
/**
* Use this to stub out methods that will throw when invoked.
*
* @example Usage
* ```ts ignore
* import { unimplemented } from "@std/assert";
*
* unimplemented(); // Throws
* ```
*
* @param msg Optional message to include in the error.
* @return Never returns, always throws.
*/
const unimplemented = _function_unimplemented as typeof _function_unimplemented
export { unimplemented }
import { unreachable as _function_unreachable } from "jsr:@std/[email protected]"
/**
* Use this to assert unreachable code.
*
* @example Usage
* ```ts ignore
* import { unreachable } from "@std/assert";
*
* unreachable(); // Throws
* ```
*
* @param msg Optional message to include in the error.
* @return Never returns, always throws.
*/
const unreachable = _function_unreachable as typeof _function_unreachable
export { unreachable }
|