1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests.ts

58 lines
1.6 KiB
TypeScript
Raw Normal View History

2018-05-28 21:50:44 -04:00
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License.
// This test is executed as part of integration_test.go
// But it can also be run manually:
// ./deno tests.ts
2018-05-28 14:56:13 -04:00
// There must also be a static file http server running on localhost:4545
// serving the deno project directory. Try this:
// http-server -p 4545 --cors .
2018-05-29 04:56:00 -04:00
import { test, assert, assertEqual } from "./testing/testing.ts";
2018-05-29 03:08:01 -04:00
import { readFileSync, writeFileSync } from "deno";
test(async function tests_test() {
assert(true);
});
2018-05-28 14:56:13 -04:00
test(async function tests_fetch() {
2018-05-29 03:08:01 -04:00
const response = await fetch("http://localhost:4545/package.json");
2018-05-28 14:56:13 -04:00
const json = await response.json();
assertEqual(json.name, "deno");
});
2018-06-05 03:58:50 -04:00
test(function tests_console_assert() {
console.assert(true);
let hasThrown = false;
try {
console.assert(false);
} catch {
hasThrown = true;
}
assertEqual(hasThrown, true);
});
test(async function tests_readFileSync() {
2018-06-04 02:59:02 -04:00
const data = readFileSync("package.json");
if (!data.byteLength) {
throw Error(
`Expected positive value for data.byteLength ${data.byteLength}`
);
}
const decoder = new TextDecoder("utf-8");
const json = decoder.decode(data);
const pkg = JSON.parse(json);
assertEqual(pkg.name, "deno");
});
2018-05-28 14:06:25 -04:00
2018-05-28 14:39:02 -04:00
test(async function tests_writeFileSync() {
const enc = new TextEncoder();
const data = enc.encode("Hello");
// TODO need ability to get tmp dir.
const fn = "/tmp/test.txt";
writeFileSync("/tmp/test.txt", data, 0o666);
const dataRead = readFileSync("/tmp/test.txt");
const dec = new TextDecoder("utf-8");
const actual = dec.decode(dataRead);
assertEqual("Hello", actual);
});