-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-FunctionNamesFromScript.ps1
60 lines (55 loc) · 2.27 KB
/
Get-FunctionNamesFromScript.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
function Get-FunctionNamesFromScript
{
<#
.SYNOPSIS
Extracts function and filter names from a PowerShell script.
.DESCRIPTION
This function reads a PowerShell script from a specified path, tokenizes its content, and extracts all function
and filter names defined in the script. Useful to collect function names for comparing against your Pester test suite.
.PARAMETER ScriptPath
The path to the PowerShell script file from which to extract function and filter names.
.OUTPUTS
PSCustomObject of the names of functions and filters defined in the script.
.EXAMPLE
This command extracts and displays the names of functions and filters defined in the script
Get-FunctionNamesFromScript -ScriptPath "C:\Path\To\YourScript.ps1"
.EXAMPLE
This command supports pipelining
$ScriptPath | Get-FunctionNamesFromScript
.NOTES
Author: Paul Naughton
Date: June 2024
Version: 1.0
#>
[CmdletBinding()]
param (
[Parameter(Mandatory,ValueFromPipeline,ValueFromPipelineByPropertyName)]
[string]$ScriptPath
)
process {
# Read the content of the script
$scriptContent = Get-Content -Path $ScriptPath -Raw
# Tokenize the PowerShell script content
$tokens = [System.Management.Automation.PSParser]::Tokenize($scriptContent, [ref]$null)
# Iterate through the tokens
for ($i = 0; $i -lt $tokens.Count; $i++) {
$token = $tokens[$i]
# Check if the token represents the start of a function or filter definition
if ($token.Type -eq "Keyword" -and ($token.Content -eq "function" -or $token.Content -eq "filter")) {
# Find the corresponding function or filter name
for ($j = $i + 1; $j -lt $tokens.Count; $j++) {
$nextToken = $tokens[$j]
if ($nextToken.Type -eq "CommandArgument") {
# PSCustomObject
Write-Output (
[PSCustomObject] @{
FunctionName = $nextToken.Content
}
)
break # Exit the inner loop once the function or filter name is found
}
}
}
}#for (outer loop)
}
}