diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-04 17:31:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 17:31:14 +0100 |
commit | 8d96dffa410a149d0fff6115bd97f41fc1fe7459 (patch) | |
tree | b00dc7a78e5030b68741de8bf9dde83b9fa07364 /cli/js/stat_test.ts | |
parent | 30682cf74fa039d3493c74101dca2dbb3a8d49b6 (diff) |
refactor: rewrite testPerm into unitTest (#4231)
Rewrite "testPerm" helper function used for testing of internal
runtime code. It's been renamed to "unitTest" and provides API that
is extensible in the future by accepting optional "UnitTestOptions"
argument. "test" helper was also removed and replaced by
overloaded version of "unitTest" that takes only function argument.
"UnitTestOptions" currently supports "perms" and "skip"
options, where former works exactly as first argument to "testPerm"
did, while the latter allows to conditionally skip tests.
Diffstat (limited to 'cli/js/stat_test.ts')
-rw-r--r-- | cli/js/stat_test.ts | 139 |
1 files changed, 77 insertions, 62 deletions
diff --git a/cli/js/stat_test.ts b/cli/js/stat_test.ts index 147e3842e..e97396c4f 100644 --- a/cli/js/stat_test.ts +++ b/cli/js/stat_test.ts @@ -1,9 +1,11 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { testPerm, assert, assertEquals } from "./test_util.ts"; +import { unitTest, assert, assertEquals } from "./test_util.ts"; // TODO Add tests for modified, accessed, and created fields once there is a way // to create temp files. -testPerm({ read: true }, async function statSyncSuccess(): Promise<void> { +unitTest({ perms: { read: true } }, async function statSyncSuccess(): Promise< + void +> { const packageInfo = Deno.statSync("README.md"); assert(packageInfo.isFile()); assert(!packageInfo.isSymlink()); @@ -17,7 +19,9 @@ testPerm({ read: true }, async function statSyncSuccess(): Promise<void> { assert(!testsInfo.isSymlink()); }); -testPerm({ read: false }, async function statSyncPerm(): Promise<void> { +unitTest({ perms: { read: false } }, async function statSyncPerm(): Promise< + void +> { let caughtError = false; try { Deno.statSync("README.md"); @@ -28,7 +32,9 @@ testPerm({ read: false }, async function statSyncPerm(): Promise<void> { assert(caughtError); }); -testPerm({ read: true }, async function statSyncNotFound(): Promise<void> { +unitTest({ perms: { read: true } }, async function statSyncNotFound(): Promise< + void +> { let caughtError = false; let badInfo; @@ -43,7 +49,9 @@ testPerm({ read: true }, async function statSyncNotFound(): Promise<void> { assertEquals(badInfo, undefined); }); -testPerm({ read: true }, async function lstatSyncSuccess(): Promise<void> { +unitTest({ perms: { read: true } }, async function lstatSyncSuccess(): Promise< + void +> { const packageInfo = Deno.lstatSync("README.md"); assert(packageInfo.isFile()); assert(!packageInfo.isSymlink()); @@ -57,7 +65,9 @@ testPerm({ read: true }, async function lstatSyncSuccess(): Promise<void> { assert(!coreInfo.isSymlink()); }); -testPerm({ read: false }, async function lstatSyncPerm(): Promise<void> { +unitTest({ perms: { read: false } }, async function lstatSyncPerm(): Promise< + void +> { let caughtError = false; try { Deno.lstatSync("README.md"); @@ -68,7 +78,9 @@ testPerm({ read: false }, async function lstatSyncPerm(): Promise<void> { assert(caughtError); }); -testPerm({ read: true }, async function lstatSyncNotFound(): Promise<void> { +unitTest({ perms: { read: true } }, async function lstatSyncNotFound(): Promise< + void +> { let caughtError = false; let badInfo; @@ -83,7 +95,9 @@ testPerm({ read: true }, async function lstatSyncNotFound(): Promise<void> { assertEquals(badInfo, undefined); }); -testPerm({ read: true }, async function statSuccess(): Promise<void> { +unitTest({ perms: { read: true } }, async function statSuccess(): Promise< + void +> { const packageInfo = await Deno.stat("README.md"); assert(packageInfo.isFile()); assert(!packageInfo.isSymlink()); @@ -97,7 +111,7 @@ testPerm({ read: true }, async function statSuccess(): Promise<void> { assert(!testsInfo.isSymlink()); }); -testPerm({ read: false }, async function statPerm(): Promise<void> { +unitTest({ perms: { read: false } }, async function statPerm(): Promise<void> { let caughtError = false; try { await Deno.stat("README.md"); @@ -108,7 +122,9 @@ testPerm({ read: false }, async function statPerm(): Promise<void> { assert(caughtError); }); -testPerm({ read: true }, async function statNotFound(): Promise<void> { +unitTest({ perms: { read: true } }, async function statNotFound(): Promise< + void +> { let caughtError = false; let badInfo; @@ -123,7 +139,9 @@ testPerm({ read: true }, async function statNotFound(): Promise<void> { assertEquals(badInfo, undefined); }); -testPerm({ read: true }, async function lstatSuccess(): Promise<void> { +unitTest({ perms: { read: true } }, async function lstatSuccess(): Promise< + void +> { const packageInfo = await Deno.lstat("README.md"); assert(packageInfo.isFile()); assert(!packageInfo.isSymlink()); @@ -137,7 +155,7 @@ testPerm({ read: true }, async function lstatSuccess(): Promise<void> { assert(!coreInfo.isSymlink()); }); -testPerm({ read: false }, async function lstatPerm(): Promise<void> { +unitTest({ perms: { read: false } }, async function lstatPerm(): Promise<void> { let caughtError = false; try { await Deno.lstat("README.md"); @@ -148,7 +166,9 @@ testPerm({ read: false }, async function lstatPerm(): Promise<void> { assert(caughtError); }); -testPerm({ read: true }, async function lstatNotFound(): Promise<void> { +unitTest({ perms: { read: true } }, async function lstatNotFound(): Promise< + void +> { let caughtError = false; let badInfo; @@ -163,52 +183,47 @@ testPerm({ read: true }, async function lstatNotFound(): Promise<void> { assertEquals(badInfo, undefined); }); -const isWindows = Deno.build.os === "win"; - -// OS dependent tests -if (isWindows) { - testPerm( - { read: true, write: true }, - async function statNoUnixFields(): Promise<void> { - const enc = new TextEncoder(); - const data = enc.encode("Hello"); - const tempDir = Deno.makeTempDirSync(); - const filename = tempDir + "/test.txt"; - Deno.writeFileSync(filename, data, { perm: 0o666 }); - const s = Deno.statSync(filename); - assert(s.dev === null); - assert(s.ino === null); - assert(s.mode === null); - assert(s.nlink === null); - assert(s.uid === null); - assert(s.gid === null); - assert(s.rdev === null); - assert(s.blksize === null); - assert(s.blocks === null); - } - ); -} else { - testPerm( - { read: true, write: true }, - async function statUnixFields(): Promise<void> { - const enc = new TextEncoder(); - const data = enc.encode("Hello"); - const tempDir = Deno.makeTempDirSync(); - const filename = tempDir + "/test.txt"; - const filename2 = tempDir + "/test2.txt"; - Deno.writeFileSync(filename, data, { perm: 0o666 }); - // Create a link - Deno.linkSync(filename, filename2); - const s = Deno.statSync(filename); - assert(s.dev !== null); - assert(s.ino !== null); - assertEquals(s.mode! & 0o666, 0o666); - assertEquals(s.nlink, 2); - assert(s.uid !== null); - assert(s.gid !== null); - assert(s.rdev !== null); - assert(s.blksize !== null); - assert(s.blocks !== null); - } - ); -} +unitTest( + { skip: Deno.build.os !== "win", perms: { read: true, write: true } }, + async function statNoUnixFields(): Promise<void> { + const enc = new TextEncoder(); + const data = enc.encode("Hello"); + const tempDir = Deno.makeTempDirSync(); + const filename = tempDir + "/test.txt"; + Deno.writeFileSync(filename, data, { perm: 0o666 }); + const s = Deno.statSync(filename); + assert(s.dev === null); + assert(s.ino === null); + assert(s.mode === null); + assert(s.nlink === null); + assert(s.uid === null); + assert(s.gid === null); + assert(s.rdev === null); + assert(s.blksize === null); + assert(s.blocks === null); + } +); + +unitTest( + { skip: Deno.build.os === "win", perms: { read: true, write: true } }, + async function statUnixFields(): Promise<void> { + const enc = new TextEncoder(); + const data = enc.encode("Hello"); + const tempDir = Deno.makeTempDirSync(); + const filename = tempDir + "/test.txt"; + const filename2 = tempDir + "/test2.txt"; + Deno.writeFileSync(filename, data, { perm: 0o666 }); + // Create a link + Deno.linkSync(filename, filename2); + const s = Deno.statSync(filename); + assert(s.dev !== null); + assert(s.ino !== null); + assertEquals(s.mode! & 0o666, 0o666); + assertEquals(s.nlink, 2); + assert(s.uid !== null); + assert(s.gid !== null); + assert(s.rdev !== null); + assert(s.blksize !== null); + assert(s.blocks !== null); + } +); |