forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(repo-server): excess git requests, resolveReferencedSources and r…
…unManifestGenAsync not using cache (Issue argoproj#14725) (argoproj#16410) * fix(repo-server): excess git requests part 1, resolveReferencedSources and runManifestGenAsync Signed-off-by: nromriell <[email protected]> * fix: remove unnecessary settings instantiation Signed-off-by: nromriell <[email protected]> --------- Signed-off-by: nromriell <[email protected]>
- Loading branch information
Showing
4 changed files
with
488 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
package mocks | ||
|
||
import ( | ||
"testing" | ||
"time" | ||
|
||
"github.com/alicebob/miniredis/v2" | ||
cacheutil "github.com/argoproj/argo-cd/v2/util/cache" | ||
cacheutilmocks "github.com/argoproj/argo-cd/v2/util/cache/mocks" | ||
"github.com/redis/go-redis/v9" | ||
"github.com/stretchr/testify/mock" | ||
) | ||
|
||
type MockCacheType int | ||
|
||
const ( | ||
MockCacheTypeRedis MockCacheType = iota | ||
MockCacheTypeInMem | ||
) | ||
|
||
type MockRepoCache struct { | ||
mock.Mock | ||
RedisClient *cacheutilmocks.MockCacheClient | ||
StopRedisCallback func() | ||
} | ||
|
||
type MockCacheOptions struct { | ||
RepoCacheExpiration time.Duration | ||
RevisionCacheExpiration time.Duration | ||
ReadDelay time.Duration | ||
WriteDelay time.Duration | ||
} | ||
|
||
type CacheCallCounts struct { | ||
ExternalSets int | ||
ExternalGets int | ||
ExternalDeletes int | ||
} | ||
|
||
// Checks that the cache was called the expected number of times | ||
func (mockCache *MockRepoCache) AssertCacheCalledTimes(t *testing.T, calls *CacheCallCounts) { | ||
mockCache.RedisClient.AssertNumberOfCalls(t, "Get", calls.ExternalGets) | ||
mockCache.RedisClient.AssertNumberOfCalls(t, "Set", calls.ExternalSets) | ||
mockCache.RedisClient.AssertNumberOfCalls(t, "Delete", calls.ExternalDeletes) | ||
} | ||
|
||
func (mockCache *MockRepoCache) ConfigureDefaultCallbacks() { | ||
mockCache.RedisClient.On("Get", mock.Anything, mock.Anything).Return(nil) | ||
mockCache.RedisClient.On("Set", mock.Anything).Return(nil) | ||
mockCache.RedisClient.On("Delete", mock.Anything).Return(nil) | ||
} | ||
|
||
func NewInMemoryRedis() (*redis.Client, func()) { | ||
cacheutil.NewInMemoryCache(5 * time.Second) | ||
mr, err := miniredis.Run() | ||
if err != nil { | ||
panic(err) | ||
} | ||
return redis.NewClient(&redis.Options{Addr: mr.Addr()}), mr.Close | ||
} | ||
|
||
func NewMockRepoCache(cacheOpts *MockCacheOptions) *MockRepoCache { | ||
redisClient, stopRedis := NewInMemoryRedis() | ||
redisCacheClient := &cacheutilmocks.MockCacheClient{ | ||
ReadDelay: cacheOpts.ReadDelay, | ||
WriteDelay: cacheOpts.WriteDelay, | ||
BaseCache: cacheutil.NewRedisCache(redisClient, cacheOpts.RepoCacheExpiration, cacheutil.RedisCompressionNone)} | ||
newMockCache := &MockRepoCache{RedisClient: redisCacheClient, StopRedisCallback: stopRedis} | ||
newMockCache.ConfigureDefaultCallbacks() | ||
return newMockCache | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.