Skip to content

Commit d62430e

Browse files
committed
Initial commit
0 parents  commit d62430e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2540
-0
lines changed

PStSQLtTestGenerator.psd1

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
@{
2+
# Script module or binary module file associated with this manifest
3+
RootModule = 'PStSQLtTestGenerator.psm1'
4+
5+
# Version number of this module.
6+
ModuleVersion = '1.0.0'
7+
8+
# ID used to uniquely identify this module
9+
GUID = 'c3ce04e7-d9cd-46b1-84f4-f01b9d5878c4'
10+
11+
# Author of this module
12+
Author = 'Sander Stad'
13+
14+
# Company or vendor of this module
15+
CompanyName = 'SQLStad'
16+
17+
# Copyright statement for this module
18+
Copyright = 'Copyright (c) 2019 Sander Stad'
19+
20+
# Description of the functionality provided by this module
21+
Description = 'PowerShell module to generate tSQLt tests'
22+
23+
# Minimum version of the Windows PowerShell engine required by this module
24+
PowerShellVersion = '5.0'
25+
26+
# Modules that must be imported into the global environment prior to importing
27+
# this module
28+
RequiredModules = @(
29+
@{ ModuleName = 'PSFramework'; ModuleVersion = '1.0.19' }
30+
@{ ModuleName = 'dbatools'; ModuleVersion = '1.0.38' }
31+
)
32+
33+
# Assemblies that must be loaded prior to importing this module
34+
# RequiredAssemblies = @('bin\PStSQLtTestGenerator.dll')
35+
36+
# Type files (.ps1xml) to be loaded when importing this module
37+
# TypesToProcess = @('xml\PStSQLtTestGenerator.Types.ps1xml')
38+
39+
# Format files (.ps1xml) to be loaded when importing this module
40+
# FormatsToProcess = @('xml\PStSQLtTestGenerator.Format.ps1xml')
41+
42+
# Functions to export from this module
43+
FunctionsToExport = 'Invoke-PSTGTestGenerator',
44+
'New-PSTGObjectExistenceTest',
45+
'New-PSTGDatabaseCollationTest',
46+
'New-PSTGFunctionParameterTest'
47+
48+
# Cmdlets to export from this module
49+
CmdletsToExport = ''
50+
51+
# Variables to export from this module
52+
VariablesToExport = ''
53+
54+
# Aliases to export from this module
55+
AliasesToExport = ''
56+
57+
# List of all modules packaged with this module
58+
ModuleList = @()
59+
60+
# List of all files packaged with this module
61+
FileList = @()
62+
63+
# Private data to pass to the module specified in ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
64+
PrivateData = @{
65+
66+
#Support for PowerShellGet galleries.
67+
PSData = @{
68+
69+
# Tags applied to this module. These help with module discovery in online galleries.
70+
# Tags = @()
71+
72+
# A URL to the license for this module.
73+
# LicenseUri = ''
74+
75+
# A URL to the main website for this project.
76+
# ProjectUri = ''
77+
78+
# A URL to an icon representing this module.
79+
# IconUri = ''
80+
81+
# ReleaseNotes of this module
82+
# ReleaseNotes = ''
83+
84+
} # End of PSData hashtable
85+
86+
} # End of PrivateData hashtable
87+
}

PStSQLtTestGenerator.psm1

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
$script:ModuleRoot = $PSScriptRoot
2+
$script:ModuleVersion = (Import-PowerShellDataFile -Path "$($script:ModuleRoot)\PStSQLtTestGenerator.psd1").ModuleVersion
3+
4+
# Detect whether at some level dotsourcing was enforced
5+
$script:doDotSource = Get-PSFConfigValue -FullName PStSQLtTestGenerator.Import.DoDotSource -Fallback $false
6+
if ($PStSQLtTestGenerator_dotsourcemodule) { $script:doDotSource = $true }
7+
8+
<#
9+
Note on Resolve-Path:
10+
All paths are sent through Resolve-Path/Resolve-PSFPath in order to convert them to the correct path separator.
11+
This allows ignoring path separators throughout the import sequence, which could otherwise cause trouble depending on OS.
12+
Resolve-Path can only be used for paths that already exist, Resolve-PSFPath can accept that the last leaf my not exist.
13+
This is important when testing for paths.
14+
#>
15+
16+
# Detect whether at some level loading individual module files, rather than the compiled module was enforced
17+
$importIndividualFiles = Get-PSFConfigValue -FullName PStSQLtTestGenerator.Import.IndividualFiles -Fallback $false
18+
if ($PStSQLtTestGenerator_importIndividualFiles) { $importIndividualFiles = $true }
19+
if (Test-Path (Resolve-PSFPath -Path "$($script:ModuleRoot)\..\.git" -SingleItem -NewChild)) { $importIndividualFiles = $true }
20+
if ("<was not compiled>" -eq '<was not compiled>') { $importIndividualFiles = $true }
21+
22+
function Import-ModuleFile
23+
{
24+
<#
25+
.SYNOPSIS
26+
Loads files into the module on module import.
27+
28+
.DESCRIPTION
29+
This helper function is used during module initialization.
30+
It should always be dotsourced itself, in order to proper function.
31+
32+
This provides a central location to react to files being imported, if later desired
33+
34+
.PARAMETER Path
35+
The path to the file to load
36+
37+
.EXAMPLE
38+
PS C:\> . Import-ModuleFile -File $function.FullName
39+
40+
Imports the file stored in $function according to import policy
41+
#>
42+
[CmdletBinding()]
43+
Param (
44+
[string]
45+
$Path
46+
)
47+
48+
$resolvedPath = $ExecutionContext.SessionState.Path.GetResolvedPSPathFromPSPath($Path).ProviderPath
49+
if ($doDotSource) { . $resolvedPath }
50+
else { $ExecutionContext.InvokeCommand.InvokeScript($false, ([scriptblock]::Create([io.file]::ReadAllText($resolvedPath))), $null, $null) }
51+
}
52+
53+
#region Load individual files
54+
if ($importIndividualFiles)
55+
{
56+
# Execute Preimport actions
57+
. Import-ModuleFile -Path "$ModuleRoot\internal\scripts\preimport.ps1"
58+
59+
# Import all internal functions
60+
foreach ($function in (Get-ChildItem "$ModuleRoot\internal\functions" -Filter "*.ps1" -Recurse -ErrorAction Ignore))
61+
{
62+
. Import-ModuleFile -Path $function.FullName
63+
}
64+
65+
# Import all public functions
66+
foreach ($function in (Get-ChildItem "$ModuleRoot\functions" -Filter "*.ps1" -Recurse -ErrorAction Ignore))
67+
{
68+
. Import-ModuleFile -Path $function.FullName
69+
}
70+
71+
# Execute Postimport actions
72+
. Import-ModuleFile -Path "$ModuleRoot\internal\scripts\postimport.ps1"
73+
74+
# End it here, do not load compiled code below
75+
return
76+
}
77+
#endregion Load individual files
78+
79+
#region Load compiled code
80+
"<compile code into here>"
81+
#endregion Load compiled code

bin/readme.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# bin folder
2+
3+
The bin folder exists to store binary data. And scripts related to the type system.
4+
5+
This may include your own C#-based library, third party libraries you want to include (watch the license!), or a script declaring type accelerators (effectively aliases for .NET types)
6+
7+
For more information on Type Accelerators, see the help on Set-PSFTypeAlias

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
## 1.0.0 (2019-09-18)
3+
- New: Some Stuff
4+
- Upd: Moar Stuff
5+
- Fix: Much Stuff
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
TOPIC
2+
about_PStSQLtTestGenerator
3+
4+
SHORT DESCRIPTION
5+
Explains how to use the PStSQLtTestGenerator powershell module
6+
7+
LONG DESCRIPTION
8+
<Insert Content here>
9+
10+
KEYWORDS
11+
PStSQLtTestGenerator

en-us/strings.psd1

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# This is where the strings go, that are written by
2+
# Write-PSFMessage, Stop-PSFFunction or the PSFramework validation scriptblocks
3+
@{
4+
'key' = 'Value'
5+
}

0 commit comments

Comments
 (0)