Skip to content
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

Add specific error if PS class resource doesn't implement export #505

Merged
merged 2 commits into from
Aug 5, 2024

Conversation

SteveL-MSFT
Copy link
Member

PR Summary

The current adapter needs a check when discovering the export method of a class and it's not found. In this case, it will return a specific error message is export is attempted and not implemented:

PS> dsc config export -d $document
2024-07-30T00:34:43.531017Z ERROR Process id 3408 : Export method not implemented by resource 'Microsoft.WinGet.DSC/WinGetPackage'
2024-07-30T00:34:43.613933Z ERROR Error: Command: Resource 'pwsh' [Exit code 1] manifest description: Error

PR Context

Fix #503

@SteveL-MSFT SteveL-MSFT requested a review from anmenaga July 30, 2024 00:45
@@ -475,6 +475,10 @@ function Invoke-DscOperation {
'Export' {
$t = $dscResourceInstance.GetType()
$method = $t.GetMethod('Export')
if ($null -eq $method) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

psDscAdapter\win_psDscAdapter.psm1 needs a similar change.

Copy link
Member Author

@SteveL-MSFT SteveL-MSFT Aug 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WinPS Adapter doesn't support export

{
}

[bool] Test()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for this NoExport class I would get rid of all not-used business-logic (if conditions) in Test and Get methods.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will update

@SteveL-MSFT SteveL-MSFT added this pull request to the merge queue Aug 5, 2024
Merged via the queue into PowerShell:main with commit 3ea98ff Aug 5, 2024
4 checks passed
@SteveL-MSFT SteveL-MSFT deleted the psadapter-export-error branch August 5, 2024 21:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Export operation method cannot be called on a null-valued expression
2 participants