-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
Behavior between New-ModuleManifest, Update-ModuleManifest, Test-ModuleManifest is inconsistent #9114
Comments
Looks good. /cc @SteveL-MSFT |
One problem I see is that a standard workflow to create a new module is: new-modulemanifest -path ./foo.psd1 -rootmodule foo.psm1
code foo.psm1 Meaning that they create the manifest before creating the root module script. If |
|
Hey @SteveL-MSFT, |
I vote for -Force
…On Mon, Apr 1, 2019 at 1:10 PM pougetat ***@***.***> wrote:
Hey @SteveL-MSFT <https://github.com/SteveL-MSFT>,
I'm hesitating between -Force and -Validate. On the one hand -Force does
seem much more idiomatic than -Validate and it forces the user to think
about what the command is doing behind the scenes. The fact that it is a
breaking change though does cut down on the appeal.
Can I still go with -Force or should we stick to -Validate ?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#9114 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAbT_eyNjaSrIflImEeH4SNfaAb-2Z-Pks5vcj1zgaJpZM4boyxo>
.
|
The base workflow seems very common to me. Might we be okay with throwing warnings for non-valid values in Given the unlikelihood of |
@PowerShell/powershell-committee reviewed this, we agree that all the checks should be in one place which is |
How is |
@jzabroski the difference is opt-in vs opt-out. We are optimizing for backwards compatibility here so introducing new behavior we decided to have it opt-in so the user needs to explicitly use |
Let me re-phrase. What specifically would potentially cause scripts to break if you changed Can you please re-name
|
@jzabroski When creating a new module, it's pretty common to run |
@daxian-dbw It's funny, because that is exactly what I hate about building PowerShell modules. Have you ever used C#, especially the new .NET SDK MSBuild project system and auto-globing compile items like *.cs files? PowerShell modules are so painful to use in my experience, and the documentation is really bad. I was so frustrated trying to write my own modules the first time I tried - and there were SO MANY knobs to turn that I pretty much gave up and went back to C#. tl;dr: PowerShell module development workflow sucks. When I do PowerShell development, I feel like I'm back in Java 1995 world, before Ruby on Rails woke up the echoes of the entire development community and evangelized convention over configuration. .NET Core has adopted this convention over configuration, but PowerShell seems resistant and determined to waste my time. |
@jzabroski just so I understand correct, you would like: New-ModuleManifest -Path "myModule.psd1" -RootModule "myModule.psm1" -Force To create |
That's one request as part of a full feature. There's a couple of things I want , most inspired by @RamblingCookieMonster 's WFTools. The only drawback I have to creating Manifests the WFTools way is the stack traces are bad, because everything is dot-sourced into the module, which creates horrible stack trace line numbers. You can see his psm1 file here: https://github.com/RamblingCookieMonster/PowerShell/blob/master/.build/WFTools.psm1 The other problem I had reading the docs on defining psd1 and psm1 files is the whole vocabulary lesson it takes to understand how to build a module. I feel like I'm back in 1999 reading CfEngine documentation written by a physicist from CERN laboratories who just finished his PhD in particle physics. For example, what is a RootModule? That took me a week to understand, and there are so few clean open source PowerShell modules to use as reference. Even you guys at Microsoft write your junk in C# instead of PowerShell, so how is somebody supposed to learn how to do it the right way? The official documentation for Going back to the "no examples" comment, I was completely perplexed that you are concerned about breaking backward compatibility for a command I could find no good examples for how to use in the first place. Which is why I think the focus should be, rather than on maintaining backward compatibility, focusing on user stories and adding features that make module development easier. Nobody will care what the interface was 5 years from now if we get the user stories right. |
@jzabroski You may be find Plaster helpful for module development. If you're not familiar with it, it's a scaffolding generator for various things like modules, Pester tests, etc. Stucco is a Plaster template for PowerShell modules written by Brandon Olin that may also be helpful. I'm not offering these as a solution to making module development easier out of the box -- there's work to be done there. That work aside, you should look at these resources if you haven't already. Also, I want to focus on one paragraph from your comment for a moment to make sure I understand where you're coming from:
This statement really surprised me. Personally, I think there are many clean open source PowerShell modules to use as reference; however, there are many more that are not that clean, which I think is part of the point you are trying to make. One recommendation I have here is to look for Microsoft MVP modules. There are many, and they are generally great examples to follow. Where do you go looking for clean open source PowerShell modules to use as reference?
True, and if you invoke I wonder if it might be helpful if in a manifest generated by |
@KirkMunro It's a bit circular to say there are examples written by Microsoft MVPs without defining thhe set of MVPs you respect. Perhaps you were indirectly referring to yourself. Until you go ahead and define it, I'll think of it as an empty set - just like PowerShell's documentation! I actually recently discussed with the Pester team the trade-offs in defining PowerShell modules, and in just a day of thinking, discovered with another programmer serious gaps and problems in the PowerShell module system: You do have a number of good suggestions here. I'd suggest creating a PR rather than just discussing them. I grew up in the Linus Torvalds' ethic of the one who writes sensible, working code usually gets the most votes on how the system takes shape. |
@jzabroski: While there are many MVPs, I was referring to Cloud and Datacenter Management MVPs, and in particular, those which were previously PowerShell MVPs when that was a separate category. But I didn't have a set to share since I don't have a specifically defined set myself. As for a PR, I have no problem submitting PRs when I have clarity on issues. For this discussion though, I think it's premature to submit a PR. I asked you a bunch of questions to get clarity on what might be missing, and I don't have answers to those questions yet. I could create a PR based on my assumptions, but having worked as a Product Manager for quite a few years my preference is to get more clarity before moving forward with recommendations or a PR. |
Let me try to summarize and complement the discussion:
While just referring to a module (not: assembly) by name only is common, the For instance, the following example specifies a dependency on version
The caveats are:
|
We could check presence and create .psm1 file. |
I fixed my comment to say:
Sorry about that. |
Technically this issue is a mix of Core PowerShell cmdlet issues mixed with PowerShellGet which I expect will get resolved as part of the PowerShellGet 3.0 RFC - PowerShell/PowerShell-RFC#185 Screen grab taken from psv7-preview1 |
Here is one example of where I have sought expert feedback, and received little guidance: pester/Pester#1314 We have a team of three very experienced developers trying to make usable PowerShell modules, and it is very difficult. While experimenting with figuring out the best approach, we have learned a stunning number of problems with PowerShell, such as:
I'm sure there are more pain points, but this is just off the top of my head. And these are "brush your teeth and eat your veggies" problems that have been solved since .NET 1.1.
It seems like there may be something useful here, but it is not particularly well-documented. It would be helpful if you gave me an idea on the ramp up time to learning to use this, as my best guess is it might be powerful, but might take days to learn, and might only obfuscate some of the problems I've found with PowerShell modules in general, making debugging and reporting these issues like the ones above that much harder (how do I reproduce issues to submit bug reports here, etc.) |
Specifically regarding point 1 there -- I've not tried with full VS myself, but Visual Studio Code's debugger seems perfectly capable of stepping through C# cmdlets as needed. I usually open the powershell console, use the It's pretty effective in my experience; not sure if something similar is doable in full VS? 🙂 |
I guess, until Resharper is supported with VS Code, I will stick with Visual Studio. Note: Thanks! |
I do this using Visual Studio 2019 just about every day, or if not then every other day using Attach to Process with
If you have a public class that implements
See this RFC on using ScriptBlock message handlers to facilitate centralized message management. |
Thanks; we're going to give this a shot. What we resorted to doing instead was creating an abstract class |
This issue has not had any activity in 6 months, if this is a bug please try to reproduce on the latest version of PowerShell and reopen a new issue and reference this issue if this is still a blocker for you. |
2 similar comments
This issue has not had any activity in 6 months, if this is a bug please try to reproduce on the latest version of PowerShell and reopen a new issue and reference this issue if this is still a blocker for you. |
This issue has not had any activity in 6 months, if this is a bug please try to reproduce on the latest version of PowerShell and reopen a new issue and reference this issue if this is still a blocker for you. |
This issue has been marked as "No Activity" as there has been no activity for 6 months. It has been closed for housekeeping purposes. |
Summary of the new feature/enhancement
The behavior between New-ModuleManifest, Update-ModuleManifest and Test-ModuleManifest seems inconsistent.
New-ModuleManifest does not check whether or not the values entered by a user are correct. This means that a user can create an invalid manifest file using this cmdlet on which Test-ModuleManifest will fail.
Update-ModuleManifest uses Test-ModuleManifest to check certain fields in the manifest file that the user is updating. These values are not necessarily values passed to Update-ModuleManifest but rather values which are already present in the manifest file. Update-ModuleManifest also adds some extra checks that Test-ModuleManifest does not do (ex : ExternalModuleDependencies need to be present under RequiredModules or NestedModules)
Test-ModuleManifest does not check the Private data section at all.
Proposed technical implementation details (optional)
Test-ModuleManifest should include all checks currently in this cmdlet and in Update-ModuleManifest that are not present in Test-ModuleManifest. This would allow us to remove a lot of extra checks present in Update-ModuleManifest (PowerShellGet issue but still important to mention here)
Update-ModuleManifest solely relies on Test-ModuleManifest for its checks.
New-ModuleManifest uses Test-ModuleManifest to check for invalid values. This would be a breaking change since users would no longer be able to create invalid manifest files via this cmdlet. However I think it would be a minor breaking change since it's hard to see the use case for automating the creation of manifest files.
The text was updated successfully, but these errors were encountered: