-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathrefactorResultProcessor.test.js
149 lines (124 loc) · 4.32 KB
/
refactorResultProcessor.test.js
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import fs from 'fs';
import path from 'path';
import assert from 'assert';
import RefactorResultProcessor from '../src/services/RefactorResultProcessor.js'
describe('RefactorResultProcessor', () => {
describe('.call()', () => {
afterEach(() => {
if (fs.existsSync(path.resolve('test/testDir/testFile.txt'))) fs.unlinkSync(path.resolve('test/testDir/testFile.txt'));
if (fs.existsSync(path.resolve('test/testDir'))) fs.rmdirSync(path.resolve('test/testDir'), { recursive: true })
});
it('should create file at arbitrary directory tree depth', () => {
const data = {
operations: [
{
crudOperation: 'create',
filePath: 'test/testDir/testFile.txt',
fileContents: 'This is a test file'
}
]
};
RefactorResultProcessor.call(data);
assert(fs.existsSync(path.resolve('test/testDir/testFile.txt')));
});
it('should update file contents', () => {
const createData = {
operations: [
{
crudOperation: 'create',
filePath: 'test/testDir/testFile.txt',
fileContents: 'This is a test file'
}
]
};
RefactorResultProcessor.call(createData);
const updateData = {
operations: [
{
crudOperation: 'update',
filePath: 'test/testDir/testFile.txt',
fileContents: 'This is an updated test file'
}
]
};
RefactorResultProcessor.call(updateData);
const fileContents = fs.readFileSync(path.resolve('test/testDir/testFile.txt'), 'utf-8');
assert.strictEqual(fileContents, 'This is an updated test file');
});
it('should delete file', () => {
const createData = {
operations: [
{
crudOperation: 'create',
filePath: 'test/testDir/testFile.txt',
fileContents: 'This is a test file'
}
]
};
RefactorResultProcessor.call(createData);
const deleteData = {
operations: [
{
crudOperation: 'delete',
filePath: 'test/testDir/testFile.txt'
}
]
};
RefactorResultProcessor.call(deleteData);
assert(!fs.existsSync(path.resolve('test/testDir/testFile.txt')));
});
it('should move file to another location', () => {
const createData = {
operations: [
{
crudOperation: 'create',
filePath: 'test/testDir/testFile.txt',
fileContents: 'This is a test file'
}
]
};
RefactorResultProcessor.call(createData);
const moveData = {
operations: [
{
crudOperation: 'move',
filePath: 'test/testDir/testFile.txt',
destinationPath: 'test/testDirNew/testFile.txt'
}
]
};
RefactorResultProcessor.call(moveData);
assert(!fs.existsSync(path.resolve('test/testDir/testFile.txt')));
assert(fs.existsSync(path.resolve('test/testDirNew/testFile.txt')));
if (fs.existsSync(path.resolve('test/testDirNew/testFile.txt'))) fs.unlinkSync(path.resolve('test/testDirNew/testFile.txt'));
if (fs.existsSync(path.resolve('test/testDirNew'))) fs.rmdirSync(path.resolve('test/testDirNew'), { recursive: true });
});
it('handles deleting nested folders', () => {
const createOperations = {
operations: [
{
crudOperation: 'create',
filePath: 'test/testDir/nested/testFile.txt',
fileContents: 'This is a test file'
}
]
}
// create a nested folder
RefactorResultProcessor.call(createOperations)
assert(fs.existsSync(path.resolve('test/testDir/nested')))
// delete the nested folder
const deleteOperations = {
operations: [
{
crudOperation: 'delete',
filePath: 'test/testDir/nested',
}
]
}
RefactorResultProcessor.call(deleteOperations)
assert(!fs.existsSync(path.resolve('test/testDir/nested')))
if (fs.existsSync(path.resolve('test/testDirNew/testFile.txt'))) fs.unlinkSync(path.resolve('test/testDirNew/testFile.txt'))
if (fs.existsSync(path.resolve('test/testDirNew/nested'))) fs.rmdirSync(path.resolve('test/testDirNew'), { recursive: true })
});
});
});