Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

New rule: AvoidOverwritingBuiltInCmdlets#1348

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged

Conversation

@thomasrayner
Copy link
Contributor

PR Summary

Addresses#1023 .

This rule (PSAvoidOverwritingBuiltInCmdlets) looks forFunctionDefinitionAsts that have the same name as a cmdlet that comes with PowerShell. This rule leverages the JSON files which contain information on all the cmdlets for PS 3, 4, 5, and 6 (and presumably 7 later) that already ship with PSScriptAnalzyer.

I've editedGetScriptAnalyzerRule.tests.ps1 to reflect the addition of this new rule, but suspect that ifthe other rule I recently created a PR for is merged before this one, that I'll need to edit that test again.

PR Checklist

@thomasrayner
Copy link
ContributorAuthor

It appears that a whole bunch of tests are busted but I'm not sure it's a result of the changes in this PR, however, I haven't dug that deep into them on the assumption that this is already known.

@bergmeister
Copy link
Collaborator

Please look into the test failures, they are definitely caused by your code as I see a lot of exceptions of typeArgumentNullException that likely comes from your rule as it is being run by default. What kind of performance impact does running this rule by default have (cold and warm run)? I've just merged your other PR, so please resolve the merge conflict as well (and you probably need to re-generate the resource strings as well).
The JSON files that you use are from an old compatibility rule, it is probably OK for this use case but maybe@rjmholt can make a statement whether his compatibility profiles contain more commands? They are here btw:https://github.com/PowerShell/PSScriptAnalyzer/tree/master/PSCompatibilityCollector/profiles

@rjmholt
Copy link
Contributor

@rjmholt can make a statement whether his compatibility profiles contain more commands?

If it's just builtin commands, I would imagine the old profiles have the same information (a list of those commands).

Depending on the full compatibility profiles would be a resource drain. In a case like this, since you only need a list, either using those old profiles or just storing a list in the rule's code will probably suffice for now.

@rjmholt
Copy link
Contributor

Ah but I just saw it's a configuration thing... Hmmm, not sure what the right answer is there, since it's public, so we don't want to break it in future. Those old profiles aren't about to get any updates as far as I know, so it's not ideal to depend on them publicly.

It might be that it's time to solve the question of how to specify a PowerShell platform nicely...

@bergmeister
Copy link
Collaborator

The reason why those old command data files contain less cmdlets is because of the way they are generated here:https://github.com/PowerShell/PSScriptAnalyzer/blob/master/Utils/New-CommandDataFile.ps1

@thomasrayner
Copy link
ContributorAuthor

Obviously I've got more to do here, like dig into those test failures, but I wanted to get some of these changes back to you folks to discuss.

@thomasrayner
Copy link
ContributorAuthor

I took a shot at fixing the test errors that were definitely my fault 😂, contrary to my original thought. The four remaining tests that fail are for theUseCompatibleCommands rule test, and only appear to occur on the Ubuntu test env.

@bergmeister
Copy link
Collaborator

bergmeister commentedOct 23, 2019
edited
Loading

@thomasrayner Thanks, I will look at the PR this weekend. You are right, the 4 failing Ubuntu tests are a new integration failure on master caused by the last merged PR#1331 (@rjmholt please fix them please). The sporadically failing test around runspace disposal, you can ignore as well (the maximum number needs increasing).
Most of it looks ok but I can already tell you we'll need to have a conversation around that test process stuff (sorry, but just wrong on so many levels IMHO). First of all, the user should be explicit in the settings and second, this is how you can determine in which version of PowerShell you are currently running in order to determine a useful default

boolrunningInPowerShellCore=false;#ifCORECLRrunningInPowerShellCore=true;#endif
thomasrayner reacted with laugh emojithomasrayner reacted with heart emoji

@thomasrayner
Copy link
ContributorAuthor

Well, I'm not sure how I missed that, but I'm looking forward to changing it 😁

Copy link
Collaborator

@bergmeisterbergmeister left a comment

Choose a reason for hiding this comment

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

Just some minor comments to be discussed but otherwise I'm pretty happy with it and I've done a quick performance test and can say that this does not seem to have an impact on PSSA performance despite it being enabled by default

Copy link
Collaborator

@bergmeisterbergmeister left a comment

Choose a reason for hiding this comment

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

Some more minor comments but after that I'm happy to sign it off. What do you think@rjmholt

Copy link
Collaborator

@bergmeisterbergmeister left a comment

Choose a reason for hiding this comment

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

I'm happy, what about you@rjmholt ?

@bergmeister
Copy link
Collaborator

I'm happy, what about you@rjmholt ? I'd merge it if you're happy.
You don't need to do a full review, just checking you're happy with it on a high level.

Copy link
Contributor

@rjmholtrjmholt left a comment

Choose a reason for hiding this comment

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

LGTM

@bergmeister
Copy link
Collaborator

Still looks good to me, I resolved the merge conflict. The test failures on Ubuntu are new in master as well@rjmholt ...

@bergmeisterbergmeister merged commitab69069 intoPowerShell:masterDec 9, 2019
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@bergmeisterbergmeisterbergmeister approved these changes

+2 more reviewers

@kilasuitkilasuitkilasuit left review comments

@rjmholtrjmholtrjmholt approved these changes

Reviewers whose approvals may not affect merge requirements

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

4 participants

@thomasrayner@bergmeister@rjmholt@kilasuit

[8]ページ先頭

©2009-2025 Movatter.jp