-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathextract.spec.ts
More file actions
157 lines (143 loc) · 4.32 KB
/
extract.spec.ts
File metadata and controls
157 lines (143 loc) · 4.32 KB
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
150
151
152
153
154
155
156
157
import { codeBlock } from 'common-tags';
import { fs } from '~test/util.ts';
import { extractAllPackageFiles, extractPackageFile } from './extract.ts';
vi.mock('../../../util/fs/index.ts');
describe('modules/manager/ant/extract', () => {
it('extracts inline version dependencies from build.xml', () => {
expect(
extractPackageFile(
codeBlock`
<project>
<artifact:dependencies>
<dependency groupId="junit" artifactId="junit" version="4.13.2" scope="test" />
</artifact:dependencies>
</project>
`,
'build.xml',
),
).toEqual({
deps: [
expect.objectContaining({
datasource: 'maven',
depName: 'junit:junit',
currentValue: '4.13.2',
depType: 'test',
registryUrls: [],
}),
],
});
});
it('extracts multiple dependencies', () => {
expect(
extractPackageFile(
codeBlock`
<project>
<artifact:dependencies>
<dependency groupId="junit" artifactId="junit" version="4.13.2" scope="test" />
<dependency groupId="org.slf4j" artifactId="slf4j-api" version="1.7.36" scope="compile" />
<dependency groupId="org.apache.commons" artifactId="commons-lang3" version="3.12.0" scope="runtime" />
</artifact:dependencies>
</project>
`,
'build.xml',
),
).toMatchObject({
deps: [
expect.objectContaining({
depName: 'junit:junit',
currentValue: '4.13.2',
depType: 'test',
}),
expect.objectContaining({
depName: 'org.slf4j:slf4j-api',
currentValue: '1.7.36',
depType: 'compile',
}),
expect.objectContaining({
depName: 'org.apache.commons:commons-lang3',
currentValue: '3.12.0',
depType: 'runtime',
}),
],
});
});
it('defaults depType to compile when no scope is set', () => {
expect(
extractPackageFile(
codeBlock`
<project>
<artifact:dependencies>
<dependency groupId="junit" artifactId="junit" version="4.13.2" />
</artifact:dependencies>
</project>
`,
'build.xml',
),
).toEqual({
deps: [
expect.objectContaining({
depName: 'junit:junit',
depType: 'compile',
}),
],
});
});
it('returns null for invalid XML', () => {
expect(extractPackageFile('<<< not xml >>>', 'build.xml')).toBeNull();
});
it('returns null for build.xml with no dependencies', async () => {
fs.readLocalFile.mockResolvedValue(
'<project><target name="build" /></project>',
);
await expect(extractAllPackageFiles({}, ['build.xml'])).resolves.toBeNull();
});
it('ignores dependency nodes without version', () => {
expect(
extractPackageFile(
codeBlock`
<project>
<artifact:dependencies>
<dependency groupId="org.example" artifactId="lib" />
</artifact:dependencies>
</project>
`,
'build.xml',
),
).toBeNull();
});
it('extracts dependencies with single-quoted attributes', () => {
expect(
extractPackageFile(
"<project><artifact:dependencies><dependency groupId='junit' artifactId='junit' version='4.13.2' /></artifact:dependencies></project>",
'build.xml',
),
).toEqual({
deps: [
expect.objectContaining({
depName: 'junit:junit',
currentValue: '4.13.2',
}),
],
});
});
it('returns null for unreadable build.xml', async () => {
fs.readLocalFile.mockResolvedValue(null);
await expect(extractAllPackageFiles({}, ['build.xml'])).resolves.toBeNull();
});
it('does not revisit the same file', async () => {
let readCount = 0;
fs.readLocalFile.mockImplementation(() => {
readCount++;
return Promise.resolve(codeBlock`
<project>
<artifact:dependencies>
<dependency groupId="junit" artifactId="junit" version="4.13.2" />
</artifact:dependencies>
</project>
`);
});
const result = await extractAllPackageFiles({}, ['build.xml', 'build.xml']);
expect(result).toHaveLength(1);
expect(readCount).toBe(1);
});
});