forked from cosmiconfig/cosmiconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.ts
110 lines (87 loc) · 3.16 KB
/
util.ts
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
import path from 'path';
import del from 'del';
import makeDir from 'make-dir';
import parentModule from 'parent-module';
import os from 'os';
const fs = jest.requireActual('fs');
function normalizeDirectorySlash(pathname: string): string {
const normalizeCrossPlatform = pathname.replace(/\\/g, '/');
return normalizeCrossPlatform;
}
class TempDir {
public dir: string;
public constructor() {
/**
* Get the actual path for temp directories that are symlinks (MacOS).
* Without the actual path, tests that use process.chdir will unexpectedly
* return the real path instead of symlink path.
*/
const tempDir = fs.realpathSync(os.tmpdir());
/**
* Get the pathname of the file that imported util.js.
* Used to create a unique directory name for each test suite.
*/
const parent = parentModule() || 'cosmiconfig';
const relativeParent = path.relative(process.cwd(), parent);
/**
* Each temp directory will be unique to the test file.
* This ensures that temp files/dirs won't cause side effects for other tests.
*/
this.dir = path.resolve(tempDir, 'cosmiconfig', `${relativeParent}-dir`);
// create directory
makeDir.sync(this.dir);
// re-enable once: https://github.com/typescript-eslint/typescript-eslint/issues/636
/* eslint-disable @typescript-eslint/unbound-method */
this.absolutePath = this.absolutePath.bind(this);
this.createDir = this.createDir.bind(this);
this.createFile = this.createFile.bind(this);
this.clean = this.clean.bind(this);
this.deleteTempDir = this.deleteTempDir.bind(this);
/* eslint-enable @typescript-eslint/unbound-method */
}
public absolutePath(dir: string): string {
// Use path.join to ensure dir is always inside the working temp directory
const absolutePath = path.join(this.dir, dir);
return absolutePath;
}
public createDir(dir: string): void {
const dirname = this.absolutePath(dir);
makeDir.sync(dirname);
}
public createFile(file: string, contents: string): void {
const filePath = this.absolutePath(file);
const fileDir = path.parse(filePath).dir;
makeDir.sync(fileDir);
fs.writeFileSync(filePath, `${contents}\n`);
}
public getSpyPathCalls(spy: jest.Mock | jest.SpyInstance): Array<string> {
const calls = spy.mock.calls;
const result = calls.map((call): string => {
const filePath = call[0];
const relativePath = path.relative(this.dir, filePath);
/**
* Replace Windows backslash directory separators with forward slashes
* so expected paths will be consistent cross platform
*/
const normalizeCrossPlatform = normalizeDirectorySlash(relativePath);
return normalizeCrossPlatform;
});
return result;
}
public clean(): Array<string> {
const cleanPattern = normalizeDirectorySlash(this.absolutePath('**/*'));
const removed = del.sync(cleanPattern, {
dot: true,
force: true,
});
return removed;
}
public deleteTempDir(): Array<string> {
const removed = del.sync(normalizeDirectorySlash(this.dir), {
force: true,
dot: true,
});
return removed;
}
}
export { TempDir };