mockFilesystem.ts ×4

Frontier kind: Code frontier

unlabeled · c_194763b3d52c

151 tests · 12953 LOC · 51 files · introduces 0 tests · 28 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
4 ranges28 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
2213 ranges12953 lines · 51 files · Browse complete extent
All tests (intent)
151 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 28 introduced LOC across 4 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/workbench/contrib/chat/test/common/promptSyntax/testUtils/mockFilesystem.ts 28 introduced LOC · 4 ranges

Open complete file

143 // Check if input is the new simplified format
144 if (this.input.length > 0 && 'path' in this.input[0]) {
145 > return this.mockFromFileEntries(this.input as IMockFileEntry[]); mockFilesystem.ts
146 > }
147
148 // Use the old format
154 */
155 private async mockFromFileEntries(fileEntries: IMockFileEntry[]): Promise<void> {
156 > // Create all files and their parent directories mockFilesystem.ts
157 > for (const fileEntry of fileEntries) {
158 > const fileUri = URI.file(fileEntry.path);
159 >
160 > // Ensure parent directories exist
161 > await this.ensureParentDirectories(dirname(fileUri));
162 >
163 > // Create the file
164 > const contents = fileEntry.contents.join('\n');
165 > await this.fileService.writeFile(fileUri, VSBuffer.fromString(contents));
166 >
167 > this.createdFiles.push(fileUri);
168 > }
169 > }
170
171 /**
240 */
241 private async ensureParentDirectories(dirUri: URI): Promise<void> {
242 > if (!await this.fileService.exists(dirUri)) { mockFilesystem.ts
243 > // First ensure the parent directory exists (recursive call)
244 > if (dirUri.path !== '/') {
245 > await this.ensureParentDirectories(dirname(dirUri));
246 > }
247 > // Then create this directory
248 > try {
249 > await this.fileService.createFolder(dirUri);
250 > this.createdFolders.push(dirUri);
251 > } catch (error) {
252 throw new Error(`Failed to create directory '${dirUri.toString()}': ${error}.`);
253 }
255 > }
256 }