Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
Indexer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
System
Indexer
Commits
0a95bc39
Commit
0a95bc39
authored
9 months ago
by
Deepa Kumari
Browse files
Options
Downloads
Patches
Plain Diff
review remarks
parent
e212a737
No related branches found
No related tags found
1 merge request
!777
Increase azure code coverage
Pipeline
#272670
failed
8 months ago
Stage: review
Stage: build
Stage: coverage
Stage: containerize
Stage: scan
Stage: deploy
Stage: integration
Stage: publish
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
provider/indexer-azure/src/test/java/org/opengroup/osdu/indexer/azure/di/RedisConfigTest.java
+0
-5
0 additions, 5 deletions
.../org/opengroup/osdu/indexer/azure/di/RedisConfigTest.java
with
0 additions
and
5 deletions
provider/indexer-azure/src/test/java/org/opengroup/osdu/indexer/azure/di/RedisConfigTest.java
+
0
−
5
View file @
0a95bc39
...
...
@@ -93,19 +93,14 @@ public class RedisConfigTest {
@Test
public
void
shouldReturnRedisPasswordFromKeyvault_when_redisHostIsCalled
()
{
try
(
MockedStatic
<
KeyVaultFacade
>
keyVaultFacadeMockedStatic
=
mockStatic
(
KeyVaultFacade
.
class
))
{
// Mock the SecretClient
SecretClient
mockedSecretClient
=
mock
(
SecretClient
.
class
);
// Set up the static method call with arguments
keyVaultFacadeMockedStatic
.
when
(()
->
KeyVaultFacade
.
getSecretWithValidation
(
mockedSecretClient
,
"redis-password"
))
.
thenReturn
(
"password"
);
String
result
=
sut
.
redisPassword
(
mockedSecretClient
);
// Verify the result
assertEquals
(
"password"
,
result
);
//check that keyvault facade was called with our secret client for redis-hostname
keyVaultFacadeMockedStatic
.
verify
(()->
KeyVaultFacade
.
getSecretWithValidation
(
mockedSecretClient
,
"redis-password"
));
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment