File tree 4 files changed +62
-4
lines changed
4 files changed +62
-4
lines changed Original file line number Diff line number Diff line change @@ -280,4 +280,31 @@ Describe 'PowerShell adapter resource tests' {
280
280
281
281
$env: TestClassResourceResultCount = $null
282
282
}
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
+ }
283
310
}
Original file line number Diff line number Diff line change @@ -70,4 +70,21 @@ Describe 'WindowsPowerShell adapter resource tests' {
70
70
$res = $r | ConvertFrom-Json
71
71
$res.results [0 ].result.actualState.result[0 ].properties.DestinationPath | Should - Be " $testFile "
72
72
}
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
+ }
73
90
}
Original file line number Diff line number Diff line change @@ -264,12 +264,19 @@ function Invoke-DscCacheRefresh {
264
264
" Checking cache for stale entries" | Write-DscTrace
265
265
266
266
foreach ($cacheEntry in $dscResourceCacheEntries ) {
267
- # "Checking cache entry '$($cacheEntry.Type) $($cacheEntry.LastWriteTimes)'" | Write-DscTrace -Operation Trace
268
267
269
268
$cacheEntry.LastWriteTimes.PSObject.Properties | ForEach-Object {
270
269
271
270
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 )))
273
280
{
274
281
" Detected stale cache entry '$ ( $_.Name ) '" | Write-DscTrace
275
282
$refreshCache = $true
Original file line number Diff line number Diff line change @@ -86,12 +86,19 @@ function Invoke-DscCacheRefresh {
86
86
" Checking cache for stale entries" | Write-DscTrace
87
87
88
88
foreach ($cacheEntry in $dscResourceCacheEntries ) {
89
- # "Checking cache entry '$($cacheEntry.Type) $($cacheEntry.LastWriteTimes)'" | Write-DscTrace -Operation Trace
90
89
91
90
$cacheEntry.LastWriteTimes.PSObject.Properties | ForEach-Object {
92
91
93
92
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 )))
95
102
{
96
103
" Detected stale cache entry '$ ( $_.Name ) '" | Write-DscTrace
97
104
$refreshCache = $true
You can’t perform that action at this time.
0 commit comments