Skip to content

Commit f047b42

Browse files
authoredSep 4, 2024··
Merge pull request #533 from anmenaga/date_fix
Fix DateTime comparison in PSAdapter cache code
2 parents 2ef6308 + 2b72deb commit f047b42

File tree

4 files changed

+62
-4
lines changed

4 files changed

+62
-4
lines changed
 

‎powershell-adapter/Tests/powershellgroup.resource.tests.ps1

+27
Original file line numberDiff line numberDiff line change
@@ -280,4 +280,31 @@ Describe 'PowerShell adapter resource tests' {
280280

281281
$env:TestClassResourceResultCount = $null
282282
}
283+
284+
It 'Verify that there are no cache rebuilds for several sequential executions' {
285+
286+
# remove cache file
287+
$cacheFilePath = if ($IsWindows) {
288+
# PS 6+ on Windows
289+
Join-Path $env:LocalAppData "dsc\PSAdapterCache.json"
290+
} else {
291+
# either WinPS or PS 6+ on Linux/Mac
292+
if ($PSVersionTable.PSVersion.Major -le 5) {
293+
Join-Path $env:LocalAppData "dsc\WindowsPSAdapterCache.json"
294+
} else {
295+
Join-Path $env:HOME ".dsc" "PSAdapterCache.json"
296+
}
297+
}
298+
Remove-Item -Force -Path $cacheFilePath -ErrorAction Ignore
299+
300+
# first execution should build the cache
301+
dsc -l trace resource list -a Microsoft.DSC/PowerShell 2> $TestDrive/tracing.txt
302+
"$TestDrive/tracing.txt" | Should -FileContentMatchExactly 'Constructing Get-DscResource cache'
303+
304+
# next executions following shortly after should Not rebuild the cache
305+
1..3 | %{
306+
dsc -l trace resource list -a Microsoft.DSC/PowerShell 2> $TestDrive/tracing.txt
307+
"$TestDrive/tracing.txt" | Should -Not -FileContentMatchExactly 'Constructing Get-DscResource cache'
308+
}
309+
}
283310
}

‎powershell-adapter/Tests/win_powershellgroup.tests.ps1

+17
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,21 @@ Describe 'WindowsPowerShell adapter resource tests' {
7070
$res = $r | ConvertFrom-Json
7171
$res.results[0].result.actualState.result[0].properties.DestinationPath | Should -Be "$testFile"
7272
}
73+
74+
It 'Verify that there are no cache rebuilds for several sequential executions' -Skip:(!$IsWindows) {
75+
76+
# remove cache file
77+
$cacheFilePath = Join-Path $env:LocalAppData "dsc\WindowsPSAdapterCache.json"
78+
Remove-Item -Force -Path $cacheFilePath -ErrorAction Ignore
79+
80+
# first execution should build the cache
81+
dsc -l trace resource list -a Microsoft.Windows/WindowsPowerShell 2> $TestDrive/tracing.txt
82+
"$TestDrive/tracing.txt" | Should -FileContentMatchExactly 'Constructing Get-DscResource cache'
83+
84+
# next executions following shortly after should Not rebuild the cache
85+
1..3 | %{
86+
dsc -l trace resource list -a Microsoft.Windows/WindowsPowerShell 2> $TestDrive/tracing.txt
87+
"$TestDrive/tracing.txt" | Should -Not -FileContentMatchExactly 'Constructing Get-DscResource cache'
88+
}
89+
}
7390
}

‎powershell-adapter/psDscAdapter/psDscAdapter.psm1

+9-2
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,19 @@ function Invoke-DscCacheRefresh {
264264
"Checking cache for stale entries" | Write-DscTrace
265265

266266
foreach ($cacheEntry in $dscResourceCacheEntries) {
267-
#"Checking cache entry '$($cacheEntry.Type) $($cacheEntry.LastWriteTimes)'" | Write-DscTrace -Operation Trace
268267

269268
$cacheEntry.LastWriteTimes.PSObject.Properties | ForEach-Object {
270269

271270
if (Test-Path $_.Name) {
272-
if (-not ((Get-Item $_.Name).LastWriteTime.Equals([DateTime]$_.Value)))
271+
$file_LastWriteTime = (Get-Item $_.Name).LastWriteTime
272+
# Truncate DateTime to seconds
273+
$file_LastWriteTime = $file_LastWriteTime.AddTicks( - ($file_LastWriteTime.Ticks % [TimeSpan]::TicksPerSecond));
274+
275+
$cache_LastWriteTime = [DateTime]$_.Value
276+
# Truncate DateTime to seconds
277+
$cache_LastWriteTime = $cache_LastWriteTime.AddTicks( - ($cache_LastWriteTime.Ticks % [TimeSpan]::TicksPerSecond));
278+
279+
if (-not ($file_LastWriteTime.Equals($cache_LastWriteTime)))
273280
{
274281
"Detected stale cache entry '$($_.Name)'" | Write-DscTrace
275282
$refreshCache = $true

‎powershell-adapter/psDscAdapter/win_psDscAdapter.psm1

+9-2
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,19 @@ function Invoke-DscCacheRefresh {
8686
"Checking cache for stale entries" | Write-DscTrace
8787

8888
foreach ($cacheEntry in $dscResourceCacheEntries) {
89-
#"Checking cache entry '$($cacheEntry.Type) $($cacheEntry.LastWriteTimes)'" | Write-DscTrace -Operation Trace
9089

9190
$cacheEntry.LastWriteTimes.PSObject.Properties | ForEach-Object {
9291

9392
if (Test-Path $_.Name) {
94-
if (-not ((Get-Item $_.Name).LastWriteTime.Equals([DateTime]$_.Value)))
93+
$file_LastWriteTime = (Get-Item $_.Name).LastWriteTimeUtc
94+
# Truncate DateTime to seconds
95+
$file_LastWriteTime = $file_LastWriteTime.AddTicks( - ($file_LastWriteTime.Ticks % [TimeSpan]::TicksPerSecond));
96+
97+
$cache_LastWriteTime = [DateTime]$_.Value
98+
# Truncate DateTime to seconds
99+
$cache_LastWriteTime = $cache_LastWriteTime.AddTicks( - ($cache_LastWriteTime.Ticks % [TimeSpan]::TicksPerSecond));
100+
101+
if (-not ($file_LastWriteTime.Equals($cache_LastWriteTime)))
95102
{
96103
"Detected stale cache entry '$($_.Name)'" | Write-DscTrace
97104
$refreshCache = $true

0 commit comments

Comments
 (0)
Please sign in to comment.