1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-04 17:18:23 -05:00
denoland-deno/flags/tests/short.ts

58 lines
1.4 KiB
TypeScript
Raw Normal View History

2018-12-19 13:06:31 -05:00
import { test, assertEqual } from "https://deno.land/x/testing/testing.ts";
import { parse } from "../index.ts";
2018-12-19 13:06:31 -05:00
test(function numbericShortArgs() {
assertEqual(parse([ '-n123' ]), { n: 123, _: [] });
2018-12-19 13:06:31 -05:00
assertEqual(
parse([ '-123', '456' ]),
2018-12-19 13:06:31 -05:00
{ 1: true, 2: true, 3: 456, _: [] }
);
});
test(function short() {
assertEqual(
parse([ '-b' ]),
2018-12-19 13:06:31 -05:00
{ b : true, _ : [] },
);
assertEqual(
parse([ 'foo', 'bar', 'baz' ]),
2018-12-19 13:06:31 -05:00
{ _ : [ 'foo', 'bar', 'baz' ] },
);
assertEqual(
parse([ '-cats' ]),
2018-12-19 13:06:31 -05:00
{ c : true, a : true, t : true, s : true, _ : [] },
);
assertEqual(
parse([ '-cats', 'meow' ]),
2018-12-19 13:06:31 -05:00
{ c : true, a : true, t : true, s : 'meow', _ : [] },
);
assertEqual(
parse([ '-h', 'localhost' ]),
2018-12-19 13:06:31 -05:00
{ h : 'localhost', _ : [] },
);
assertEqual(
parse([ '-h', 'localhost', '-p', '555' ]),
2018-12-19 13:06:31 -05:00
{ h : 'localhost', p : 555, _ : [] },
);
});
test(function mixedShortBoolAndCapture() {
assertEqual(
parse([ '-h', 'localhost', '-fp', '555', 'script.js' ]),
2018-12-19 13:06:31 -05:00
{
f : true, p : 555, h : 'localhost',
_ : [ 'script.js' ]
}
);
});
test(function shortAndLong() {
assertEqual(
parse([ '-h', 'localhost', '-fp', '555', 'script.js' ]),
2018-12-19 13:06:31 -05:00
{
f : true, p : 555, h : 'localhost',
_ : [ 'script.js' ]
}
);
});