2015-09-04 22:05:18 +00:00
|
|
|
|
function Clean-State
|
|
|
|
|
{
|
2016-02-29 20:23:28 +00:00
|
|
|
|
if (Test-Path $FullyQualifiedLink)
|
|
|
|
|
{
|
|
|
|
|
Remove-Item $FullyQualifiedLink -Force
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-04 22:05:18 +00:00
|
|
|
|
if (Test-Path $FullyQualifiedFile)
|
|
|
|
|
{
|
|
|
|
|
Remove-Item $FullyQualifiedFile -Force
|
|
|
|
|
}
|
2015-08-25 21:46:29 +00:00
|
|
|
|
|
2015-09-04 22:05:18 +00:00
|
|
|
|
if (Test-Path $FullyQualifiedFolder)
|
|
|
|
|
{
|
|
|
|
|
Remove-Item $FullyQualifiedFolder -Recurse -Force
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-08-25 21:46:29 +00:00
|
|
|
|
|
2015-10-22 23:35:31 +00:00
|
|
|
|
Describe "New-Item" {
|
2016-02-05 16:53:44 +00:00
|
|
|
|
$tmpDirectory = $TestDrive
|
2015-09-04 22:05:18 +00:00
|
|
|
|
$testfile = "testfile.txt"
|
|
|
|
|
$testfolder = "newDirectory"
|
2016-02-29 18:09:30 +00:00
|
|
|
|
$testlink = "testlink"
|
2016-02-05 16:53:44 +00:00
|
|
|
|
$FullyQualifiedFile = Join-Path -Path $tmpDirectory -ChildPath $testfile
|
|
|
|
|
$FullyQualifiedFolder = Join-Path -Path $tmpDirectory -ChildPath $testfolder
|
2016-02-29 18:09:30 +00:00
|
|
|
|
$FullyQualifiedLink = Join-Path -Path $tmpDirectory -ChildPath $testlink
|
2015-08-25 21:46:29 +00:00
|
|
|
|
|
2015-09-04 22:05:18 +00:00
|
|
|
|
BeforeEach {
|
|
|
|
|
Clean-State
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-25 21:46:29 +00:00
|
|
|
|
It "should call the function without error" {
|
|
|
|
|
{ New-Item -Name $testfile -Path $tmpDirectory -ItemType file } | Should Not Throw
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should create a file without error" {
|
|
|
|
|
New-Item -Name $testfile -Path $tmpDirectory -ItemType file
|
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should create a folder without an error" {
|
|
|
|
|
New-Item -Name newDirectory -Path $tmpDirectory -ItemType directory
|
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFolder | Should Be $true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should create a file using the ni alias" {
|
|
|
|
|
ni -Name $testfile -Path $tmpDirectory -ItemType file
|
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should create a file using the Type alias instead of ItemType" {
|
|
|
|
|
New-Item -Name $testfile -Path $tmpDirectory -Type file
|
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should create a file with sample text inside the file using the Value switch" {
|
|
|
|
|
$expected = "This is test string"
|
|
|
|
|
New-Item -Name $testfile -Path $tmpDirectory -ItemType file -Value $expected
|
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $true
|
|
|
|
|
|
|
|
|
|
Get-Content $FullyQualifiedFile | Should Be $expected
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should not create a file when the Name switch is not used and only a directory specified" {
|
|
|
|
|
#errorAction used because permissions issue in windows
|
|
|
|
|
New-Item -Path $tmpDirectory -ItemType file -ErrorAction SilentlyContinue
|
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $false
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should create a file when the Name switch is not used but a fully qualified path is specified" {
|
|
|
|
|
New-Item -Path $FullyQualifiedFile -ItemType file
|
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to create a multiple items in different directories" {
|
2016-02-05 16:53:44 +00:00
|
|
|
|
$FullyQualifiedFile2 = Join-Path -Path $tmpDirectory -ChildPath test2.txt
|
2015-08-25 21:46:29 +00:00
|
|
|
|
New-Item -ItemType file -Path $FullyQualifiedFile, $FullyQualifiedFile2
|
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $true
|
|
|
|
|
Test-Path $FullyQualifiedFile2 | Should Be $true
|
|
|
|
|
|
|
|
|
|
Remove-Item $FullyQualifiedFile2
|
|
|
|
|
}
|
2015-09-04 22:05:18 +00:00
|
|
|
|
|
|
|
|
|
It "Should be able to call the whatif switch without error" {
|
2016-02-05 16:53:44 +00:00
|
|
|
|
{ New-Item -Name testfile.txt -Path $tmpDirectory -ItemType file -WhatIf } | Should Not Throw
|
2015-09-04 22:05:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should not create a new file when the whatif switch is used" {
|
2015-09-14 23:30:33 +00:00
|
|
|
|
New-Item -Name $testfile -Path $tmpDirectory -ItemType file -WhatIf
|
2015-09-04 22:05:18 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $false
|
|
|
|
|
}
|
2016-02-29 18:09:30 +00:00
|
|
|
|
|
|
|
|
|
It "Should create a symbolic link of a file without error" {
|
|
|
|
|
New-Item -Name $testfile -Path $tmpDirectory -ItemType file
|
|
|
|
|
Test-Path $FullyQualifiedFile | Should Be $true
|
|
|
|
|
|
|
|
|
|
New-Item -ItemType SymbolicLink -Target $FullyQualifiedFile -Name $testlink -Path $tmpDirectory
|
|
|
|
|
Test-Path $FullyQualifiedLink | Should Be $true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should create a symbolic link from directory without error" {
|
|
|
|
|
New-Item -Name $testFolder -Path $tmpDirectory -ItemType directory
|
|
|
|
|
Test-Path $FullyQualifiedFolder | Should Be $true
|
|
|
|
|
|
|
|
|
|
New-Item -ItemType SymbolicLink -Target $FullyQualifiedFolder -Name $testlink -Path $tmpDirectory
|
|
|
|
|
Test-Path $FullyQualifiedLink | Should Be $true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-08-25 21:46:29 +00:00
|
|
|
|
}
|