2015-10-22 23:35:31 +00:00
|
|
|
|
Describe "Remove-Item" {
|
2015-08-20 18:49:01 +00:00
|
|
|
|
$testpath = "/tmp/"
|
|
|
|
|
$testfile = "testfile.txt"
|
|
|
|
|
$testfilepath = $testpath + $testfile
|
|
|
|
|
Context "File removal Tests" {
|
|
|
|
|
BeforeEach {
|
2015-08-26 22:13:12 +00:00
|
|
|
|
New-Item -Name $testfile -Path $testpath -ItemType "file" -Value "lorem ipsum" -Force
|
|
|
|
|
|
|
|
|
|
Test-Path $testfilepath | Should Be $true
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to be called on a regular file without error using the Path switch" {
|
|
|
|
|
{ Remove-Item -Path $testfilepath } | Should Not Throw
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testfilepath | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to be called on a file without the Path switch" {
|
|
|
|
|
{ Remove-Item $testfilepath } | Should Not Throw
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testfilepath | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to call the rm alias" {
|
|
|
|
|
{ rm $testfilepath } | Should Not Throw
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testfilepath | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to call the del alias" {
|
|
|
|
|
{ del $testfilepath } | Should Not Throw
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testfilepath | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to call the erase alias" {
|
|
|
|
|
{ erase $testfilepath } | Should Not Throw
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testfilepath | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to call the ri alias" {
|
|
|
|
|
{ ri $testfilepath } | Should Not Throw
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testfilepath | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should not be able to remove a read-only document without using the force switch" {
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# Set to read only
|
|
|
|
|
Set-ItemProperty -Path $testfilepath -Name IsReadOnly -Value $true
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# attempt to remove the file
|
2015-08-26 22:55:44 +00:00
|
|
|
|
{ Remove-Item $testfilepath -ErrorAction SilentlyContinue } | Should Not Throw
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# validate
|
|
|
|
|
Test-Path $testfilepath | Should Be $true
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
2015-08-26 22:13:12 +00:00
|
|
|
|
# remove using the -force switch on the readonly object
|
2015-08-21 22:57:34 +00:00
|
|
|
|
Remove-Item $testfilepath -Force
|
2015-08-21 22:51:27 +00:00
|
|
|
|
|
2015-08-26 22:13:12 +00:00
|
|
|
|
# Validate
|
2015-08-21 22:57:34 +00:00
|
|
|
|
Test-Path $testfilepath | Should Be $false
|
|
|
|
|
}
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
|
|
|
|
It "Should be able to remove all files matching a regular expression with the include switch" {
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# Create multiple files with specific string
|
|
|
|
|
New-Item -Name file1.txt -Path $testpath -ItemType "file" -Value "lorem ipsum"
|
|
|
|
|
New-Item -Name file2.txt -Path $testpath -ItemType "file" -Value "lorem ipsum"
|
|
|
|
|
New-Item -Name file3.txt -Path $testpath -ItemType "file" -Value "lorem ipsum"
|
|
|
|
|
# Create a single file that does not match that string - already done in BeforeEach
|
|
|
|
|
|
|
|
|
|
# Delete the specific string
|
|
|
|
|
Remove-Item /tmp/* -Include file*.txt
|
|
|
|
|
# validate that the string under test was deleted, and the nonmatching strings still exist
|
|
|
|
|
Test-path /tmp/file1.txt | Should Be $false
|
|
|
|
|
Test-path /tmp/file2.txt | Should Be $false
|
|
|
|
|
Test-path /tmp/file3.txt | Should Be $false
|
2015-08-26 22:13:12 +00:00
|
|
|
|
Test-Path $testfilepath | Should Be $true
|
2015-08-21 22:57:34 +00:00
|
|
|
|
|
|
|
|
|
# Delete the non-matching strings
|
|
|
|
|
Remove-Item $testfilepath
|
2015-08-26 22:13:12 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testfilepath | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to not remove any files matching a regular expression with the exclude switch" {
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# Create multiple files with specific string
|
|
|
|
|
New-Item -Name file1.wav -Path $testpath -ItemType "file" -Value "lorem ipsum"
|
|
|
|
|
New-Item -Name file2.wav -Path $testpath -ItemType "file" -Value "lorem ipsum"
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# Create a single file that does not match that string
|
|
|
|
|
New-Item -Name file1.txt -Path $testpath -ItemType "file" -Value "lorem ipsum"
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# Delete the specific string
|
|
|
|
|
Remove-Item /tmp/file* -Exclude *.wav -Include *.txt
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# validate that the string under test was deleted, and the nonmatching strings still exist
|
|
|
|
|
Test-Path /tmp/file1.wav | Should Be $true
|
|
|
|
|
Test-Path /tmp/file2.wav | Should Be $true
|
|
|
|
|
Test-Path /tmp/file1.txt | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
2015-08-21 22:57:34 +00:00
|
|
|
|
# Delete the non-matching strings
|
|
|
|
|
Remove-Item /tmp/file1.wav
|
|
|
|
|
Remove-Item /tmp/file2.wav
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
2015-08-21 22:57:34 +00:00
|
|
|
|
Test-Path /tmp/file1.wav | Should Be $false
|
|
|
|
|
Test-Path /tmp/file2.wav | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Context "Directory Removal Tests" {
|
|
|
|
|
$testdirectory = "/tmp/testdir"
|
|
|
|
|
$testsubdirectory = $testdirectory + "/subd"
|
2015-08-26 22:13:12 +00:00
|
|
|
|
BeforeEach {
|
|
|
|
|
New-Item -Name "testdir" -Path "/tmp/" -ItemType "directory" -Force
|
2015-08-20 18:49:01 +00:00
|
|
|
|
|
2015-08-26 22:13:12 +00:00
|
|
|
|
Test-Path $testdirectory | Should Be $true
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to remove a directory" {
|
|
|
|
|
{ Remove-Item $testdirectory } | Should Not Throw
|
2015-08-21 22:57:34 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testdirectory | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
It "Should be able to recursively delete subfolders" {
|
|
|
|
|
New-Item -Name "subd" -Path $testdirectory -ItemType "directory"
|
|
|
|
|
New-Item -Name $testfile -Path $testsubdirectory -ItemType "file" -Value "lorem ipsum"
|
|
|
|
|
|
|
|
|
|
$complexDirectory = $testsubdirectory + "/" + $testfile
|
|
|
|
|
test-path $complexDirectory | Should Be $true
|
|
|
|
|
|
|
|
|
|
{ Remove-Item $testdirectory -Recurse} | Should Not Throw
|
2015-08-21 22:57:34 +00:00
|
|
|
|
|
|
|
|
|
Test-Path $testdirectory | Should Be $false
|
2015-08-20 18:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-08-21 22:57:34 +00:00
|
|
|
|
}
|