mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
Fix format globs (#87)
This commit is contained in:
parent
4e12c2b4d2
commit
297cf0975e
10 changed files with 56 additions and 56 deletions
|
@ -27,7 +27,11 @@ async function main() {
|
|||
await checkVersion();
|
||||
|
||||
const prettier = run({
|
||||
args: ["bash", "-c", "prettier --write *.ts */**/*.ts *.md */**/*.md"]
|
||||
args: [
|
||||
"bash",
|
||||
"-c",
|
||||
"prettier --write *.ts */*.ts */**/*.ts *.md */**/*.md"
|
||||
]
|
||||
});
|
||||
const s = await prettier.status();
|
||||
exit(s.code);
|
||||
|
|
|
@ -25,14 +25,12 @@ export class BaseHandler {
|
|||
async destroy() {}
|
||||
}
|
||||
|
||||
|
||||
export class ConsoleHandler extends BaseHandler {
|
||||
log(msg: string) {
|
||||
console.log(msg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
export abstract class WriterHandler extends BaseHandler {
|
||||
protected _writer: Writer;
|
||||
|
||||
|
@ -43,7 +41,6 @@ export abstract class WriterHandler extends BaseHandler {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
export class FileHandler extends WriterHandler {
|
||||
private _file: File;
|
||||
private _filename: string;
|
||||
|
@ -55,7 +52,7 @@ export class FileHandler extends WriterHandler {
|
|||
|
||||
async setup() {
|
||||
// open file in append mode - write only
|
||||
this._file = await open(this._filename, 'a');
|
||||
this._file = await open(this._filename, "a");
|
||||
this._writer = this._file;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
import { Logger } from "./logger.ts";
|
||||
import { BaseHandler, ConsoleHandler, WriterHandler, FileHandler } from "./handlers.ts";
|
||||
import {
|
||||
BaseHandler,
|
||||
ConsoleHandler,
|
||||
WriterHandler,
|
||||
FileHandler
|
||||
} from "./handlers.ts";
|
||||
|
||||
export class LoggerConfig {
|
||||
level?: string;
|
||||
|
@ -18,14 +23,12 @@ export interface LogConfig {
|
|||
const DEFAULT_LEVEL = "INFO";
|
||||
const DEFAULT_NAME = "";
|
||||
const DEFAULT_CONFIG: LogConfig = {
|
||||
handlers: {
|
||||
|
||||
},
|
||||
handlers: {},
|
||||
|
||||
loggers: {
|
||||
"": {
|
||||
level: "INFO",
|
||||
handlers: [""],
|
||||
handlers: [""]
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -38,21 +41,26 @@ const state = {
|
|||
defaultLogger,
|
||||
handlers: new Map(),
|
||||
loggers: new Map(),
|
||||
config: DEFAULT_CONFIG,
|
||||
config: DEFAULT_CONFIG
|
||||
};
|
||||
|
||||
export const handlers = {
|
||||
BaseHandler,
|
||||
ConsoleHandler,
|
||||
WriterHandler,
|
||||
FileHandler,
|
||||
FileHandler
|
||||
};
|
||||
|
||||
export const debug = (msg: string, ...args: any[]) => defaultLogger.debug(msg, ...args);
|
||||
export const info = (msg: string, ...args: any[]) => defaultLogger.info(msg, ...args);
|
||||
export const warning = (msg: string, ...args: any[]) => defaultLogger.warning(msg, ...args);
|
||||
export const error = (msg: string, ...args: any[]) => defaultLogger.error(msg, ...args);
|
||||
export const critical = (msg: string, ...args: any[]) => defaultLogger.critical(msg, ...args);
|
||||
export const debug = (msg: string, ...args: any[]) =>
|
||||
defaultLogger.debug(msg, ...args);
|
||||
export const info = (msg: string, ...args: any[]) =>
|
||||
defaultLogger.info(msg, ...args);
|
||||
export const warning = (msg: string, ...args: any[]) =>
|
||||
defaultLogger.warning(msg, ...args);
|
||||
export const error = (msg: string, ...args: any[]) =>
|
||||
defaultLogger.error(msg, ...args);
|
||||
export const critical = (msg: string, ...args: any[]) =>
|
||||
defaultLogger.critical(msg, ...args);
|
||||
|
||||
export function getLogger(name?: string) {
|
||||
if (!name) {
|
||||
|
|
|
@ -7,7 +7,7 @@ export interface LogRecord {
|
|||
datetime: Date;
|
||||
level: number;
|
||||
levelName: string;
|
||||
};
|
||||
}
|
||||
|
||||
export class Logger {
|
||||
level: number;
|
||||
|
@ -32,8 +32,8 @@ export class Logger {
|
|||
args: args,
|
||||
datetime: new Date(),
|
||||
level: level,
|
||||
levelName: getLevelName(level),
|
||||
}
|
||||
levelName: getLevelName(level)
|
||||
};
|
||||
|
||||
this.handlers.forEach(handler => {
|
||||
handler.handle(record);
|
||||
|
|
|
@ -23,7 +23,6 @@ test(function testDefaultlogMethods() {
|
|||
log.error("Foobar");
|
||||
log.critical("Foobar");
|
||||
|
||||
const logger = log.getLogger('');
|
||||
const logger = log.getLogger("");
|
||||
console.log(logger);
|
||||
});
|
||||
|
||||
|
|
|
@ -4,11 +4,7 @@
|
|||
// license that can be found in the LICENSE file.
|
||||
|
||||
import { Buffer, Reader, ReadResult } from "deno";
|
||||
import {
|
||||
test,
|
||||
assert,
|
||||
assertEqual
|
||||
} from "../testing/mod.ts";
|
||||
import { test, assert, assertEqual } from "../testing/mod.ts";
|
||||
import { BufReader, BufState, BufWriter } from "./bufio.ts";
|
||||
import * as iotest from "./iotest.ts";
|
||||
import { charCode, copyBytes, stringsReader } from "./util.ts";
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
import { readFile } from "deno";
|
||||
|
||||
import {
|
||||
test,
|
||||
assert,
|
||||
assertEqual
|
||||
} from "../testing/mod.ts";
|
||||
import { test, assert, assertEqual } from "../testing/mod.ts";
|
||||
|
||||
// Promise to completeResolve when all tests completes
|
||||
let completeResolve;
|
||||
|
@ -27,7 +23,9 @@ export function runTests(serverReadyPromise: Promise<any>) {
|
|||
assert(res.headers.has("access-control-allow-headers"));
|
||||
assertEqual(res.headers.get("content-type"), "text/yaml");
|
||||
const downloadedFile = await res.text();
|
||||
const localFile = new TextDecoder().decode(await readFile("./azure-pipelines.yml"));
|
||||
const localFile = new TextDecoder().decode(
|
||||
await readFile("./azure-pipelines.yml")
|
||||
);
|
||||
assertEqual(downloadedFile, localFile);
|
||||
maybeCompleteTests();
|
||||
});
|
||||
|
|
|
@ -6,11 +6,7 @@
|
|||
// https://github.com/golang/go/blob/master/src/net/http/responsewrite_test.go
|
||||
|
||||
import { Buffer } from "deno";
|
||||
import {
|
||||
test,
|
||||
assert,
|
||||
assertEqual
|
||||
} from "../testing/mod.ts";
|
||||
import { test, assert, assertEqual } from "../testing/mod.ts";
|
||||
import {
|
||||
listenAndServe,
|
||||
ServerRequest,
|
||||
|
|
|
@ -6,11 +6,7 @@
|
|||
import { BufReader } from "./bufio.ts";
|
||||
import { TextProtoReader, append } from "./textproto.ts";
|
||||
import { stringsReader } from "./util.ts";
|
||||
import {
|
||||
test,
|
||||
assert,
|
||||
assertEqual
|
||||
} from "../testing/mod.ts";
|
||||
import { test, assert, assertEqual } from "../testing/mod.ts";
|
||||
|
||||
function reader(s: string): TextProtoReader {
|
||||
return new TextProtoReader(new BufReader(stringsReader(s)));
|
||||
|
|
|
@ -3,10 +3,15 @@
|
|||
## Usage
|
||||
|
||||
```ts
|
||||
import { test, assert, equal, assertEqual } from 'https://deno.land/x/testing/mod.ts';
|
||||
import {
|
||||
test,
|
||||
assert,
|
||||
equal,
|
||||
assertEqual
|
||||
} from "https://deno.land/x/testing/mod.ts";
|
||||
|
||||
test({
|
||||
name: 'testing example',
|
||||
name: "testing example",
|
||||
fn() {
|
||||
assert(equal("world", "world"));
|
||||
assert(!equal("hello", "world"));
|
||||
|
@ -14,11 +19,12 @@ test({
|
|||
assert(!equal({ world: "hello" }, { hello: "world" }));
|
||||
assertEqual("world", "world");
|
||||
assertEqual({ hello: "world" }, { hello: "world" });
|
||||
},
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
Short syntax (named function instead of object):
|
||||
|
||||
```ts
|
||||
test(function example() {
|
||||
assert(equal("world", "world"));
|
||||
|
|
Loading…
Reference in a new issue