1

我正在研究一个 PowerShell 模块,我的一个测试中的路径解析表现得非常奇怪。

当前文件夹结构如下所示:

ISPS/
├── ISPS/
│   ├── Private/
│   ├── Public/
│   │   ├── Add-ICDCrawler.ps1
│   │   ├── Get-ICDCrawler.ps1
│   │   ├── New-ICDCrawler.ps1
│   │   └── Remove-ICDCrawler.ps1
│   ├── ISPSCrawler.psd1
│   └── ISPSCrawler.psm1
├── tests/
│   ├── Add-ICDCrawler.tests.ps1
│   ├── Get-ICDCrawler.tests.ps1
│   ├── New-ICDCrawler.tests.ps1
│   └── Remove-ICDCrawler.tests.ps1

表现怪异的测试是Remove-ICDCrawler.tests.ps1. 文件的开头和相关部分如下所示:

$ModuleRoot = Split-Path $PSScriptRoot -Parent

. $ModuleRoot\ISPS\Public\Get-ICDCrawler.ps1
. $ModuleRoot\ISPS\Public\Remove-ICDCrawler.ps1

当它运行时,点源对Get-ICDCrawler线路正常工作,但不适用于Remove-ICDCrawler. 这是出现的错误消息:

. : The term 'D:\Projects\ISPS\ISPS\ISPS\Public\Remove-ICDCrawler.ps1' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At D:\Projects\ISPS\tests\Remove-ICDCrawler.tests.ps1:4 char:3
+ . $ModuleRoot\ISPS\Public\Remove-ICDCrawler.ps1
+   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

这已经够直截了当了。ISPS路径中的文件夹过多。如果我ISPS从测试的第 4 行删除其中一个文件夹并重试,它会完美运行。问题是文件Get-ICDCrawler.ps1Remove-ICDCrawler.ps1文件都存储在同一个目录中,据我所知,路径应该解析为正确的目录。正如我所提到的,ISPS从第 4 行的路径中删除是可行的,但这与我所知道的关于 PowerShell 的一切背道而驰。有谁知道为什么会这样?

Name                           Value                  
----                           -----                  
PSVersion                      5.1.15063.608          
PSEdition                      Desktop                
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.15063.608         
CLRVersion                     4.0.30319.42000        
WSManStackVersion              3.0                    
PSRemotingProtocolVersion      2.3                    
SerializationVersion           1.1.0.1                
4

1 回答 1

2

我想通了,所以我要离开这个,以便将来人们可以嘲笑它。

文件的开头Get-ICDCrawler如下所示:

$ModuleRoot = Split-Path $PSScriptRoot -Parent

. $ModuleRoot\Private\Find-XmlNode.ps1
. $PSScriptRoot\New-ICDCrawler.ps1

所以发生的事情是我导入该文件并且$ModuleRoot变量被更改为相对于该Get-ICDCrawler.ps1文件。我必须确保变量的命名不同,这样命名空间就不会发生冲突。

于 2017-09-21T10:23:38.050 回答