-
Notifications
You must be signed in to change notification settings - Fork 268
Fix VS Code extension commands failing with undefined fsPath in virtual file systems #6601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+128
−8
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
90e2d5e
Initial plan
Copilot b052577
Add defensive checks for undefined fsPath in VS Code extension commands
Copilot 4deb151
Simplify provision.test.ts based on code review feedback
Copilot d866848
Refactor validation logic into shared utility function
Copilot a53d159
Fix validation to use strict equality check for undefined
Copilot ca17642
Fix l10n.t() to use single string literal instead of concatenation
Copilot 629d7e6
Merge remote-tracking branch 'origin/main' into copilot/fix-provision…
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| import { expect } from 'chai'; | ||
| import * as vscode from 'vscode'; | ||
| import * as sinon from 'sinon'; | ||
| import { provision } from '../../../commands/provision'; | ||
| import { IActionContext } from '@microsoft/vscode-azext-utils'; | ||
|
|
||
| suite('provision command', () => { | ||
| let sandbox: sinon.SinonSandbox; | ||
| let mockContext: IActionContext; | ||
|
|
||
| setup(() => { | ||
| sandbox = sinon.createSandbox(); | ||
|
|
||
| mockContext = { | ||
| errorHandling: { | ||
| suppressReportIssue: false | ||
| }, | ||
| telemetry: { | ||
| properties: {} | ||
| } | ||
| } as unknown as IActionContext; | ||
| }); | ||
|
|
||
| teardown(() => { | ||
| sandbox.restore(); | ||
| }); | ||
|
|
||
| test('throws error when selectedFile has undefined fsPath (virtual file system)', async () => { | ||
| // Mock the URI to ensure fsPath is undefined - simulates virtual file system | ||
| const mockUri = { | ||
| scheme: 'virtual', | ||
| fsPath: undefined, | ||
| authority: '', | ||
| path: '', | ||
| query: '', | ||
| fragment: '', | ||
| with: () => mockUri, | ||
| toString: () => 'virtual:/test' | ||
| } as unknown as vscode.Uri; | ||
|
|
||
| try { | ||
| await provision(mockContext, mockUri); | ||
| expect.fail('Should have thrown an error'); | ||
| } catch (error) { | ||
| expect(error).to.be.instanceOf(Error); | ||
| const errMessage = (error as Error).message; | ||
| expect(errMessage).to.include('Unable to determine working folder'); | ||
| expect(errMessage).to.include('virtual'); | ||
| expect(errMessage).to.include('vscode.Uri'); | ||
| expect(errMessage).to.include('virtual file systems'); | ||
| } | ||
|
|
||
| expect(mockContext.errorHandling.suppressReportIssue).to.equal(true, 'Should suppress automatic issue reporting for user errors'); | ||
| }); | ||
| }); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.