Update pester tests
This commit is contained in:
@@ -49,7 +49,7 @@ Describe 'Invoke-GiteaFileDownload' {
|
||||
$result = Invoke-GiteaFileDownload -downloadURL 'https://gitea.example.com/raw/path/to/file.txt' -token 'abc123'
|
||||
|
||||
$result | Should -Not -BeNullOrEmpty
|
||||
$result.Success | Should -Be $true
|
||||
$result.Result | Should -Be 'Success'
|
||||
$result.Path | Should -Match 'file\.txt$'
|
||||
}
|
||||
}
|
||||
@@ -60,7 +60,7 @@ Describe 'Invoke-GiteaFileDownload' {
|
||||
-outputPath 'docs/manual/' -token 'abc123'
|
||||
|
||||
$result.Path | Should -Match 'docs[\\/]+manual[\\/]+file\.txt$'
|
||||
$result.Success | Should -Be $true
|
||||
$result.Result | Should -Be 'Success'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ Describe 'Invoke-GiteaFileDownload' {
|
||||
-outputName 'newfile.txt' -token 'abc123'
|
||||
|
||||
$result.Path | Should -Match 'newfile\.txt$'
|
||||
$result.Success | Should -Be $true
|
||||
$result.Result | Should -Be 'Success'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -80,7 +80,7 @@ Describe 'Invoke-GiteaFileDownload' {
|
||||
-outputPath 'docs/manual/' -outputName 'newfile.txt' -token 'abc123'
|
||||
|
||||
$result.Path | Should -Match 'docs[\\/]+manual[\\/]+newfile\.txt$'
|
||||
$result.Success | Should -Be $true
|
||||
$result.Result | Should -Be 'Success'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,7 +90,7 @@ Describe 'Invoke-GiteaFileDownload' {
|
||||
-PreserveRelativePath -token 'abc123'
|
||||
|
||||
$result.Path | Should -Match 'path[\\/]+to[\\/]+file\.txt$'
|
||||
$result.Success | Should -Be $true
|
||||
$result.Result | Should -Be 'Success'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -98,8 +98,7 @@ Describe 'Invoke-GiteaFileDownload' {
|
||||
It 'Should skip items with type = dir' {
|
||||
$result = Invoke-GiteaFileDownload -outputPath 'docs/' -type 'dir' -token 'abc123'
|
||||
|
||||
$result.Success | Should -Be $true
|
||||
$result.Error | Should -Match 'Skipped'
|
||||
$result.Result | Should -Be 'Skipped'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -116,8 +115,7 @@ Describe 'Invoke-GiteaFileDownload' {
|
||||
It 'Should not overwrite existing file without Force' {
|
||||
$result = Invoke-GiteaFileDownload -downloadURL 'https://gitea.example.com/raw/path/to/existingfile.txt' -token 'abc123'
|
||||
|
||||
$result.Success | Should -Be $false
|
||||
$result.Error | Should -Match 'already exists'
|
||||
$result.Result | Should -Be 'Skipped'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -145,7 +143,7 @@ Describe 'Invoke-GiteaFileDownload' {
|
||||
It 'Should capture error and mark download as failed' {
|
||||
$result = Invoke-GiteaFileDownload -downloadURL 'https://gitea.example.com/raw/path/to/badfile.txt' -token 'abc123'
|
||||
|
||||
$result.Success | Should -Be $false
|
||||
$result.Result | Should -Be 'Failure'
|
||||
$result.Error | Should -Match 'Failed to download'
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user