Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Legal
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
Security and Compliance
Legal
Commits
ba8d28e5
Commit
ba8d28e5
authored
1 year ago
by
Mark Chance
Browse files
Options
Downloads
Patches
Plain Diff
unnecessary is apparently fatal
parent
d507eb6f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!620
Update version of default branch to 0.27.0-SNAPSHOT
,
!535
Extend cron to catch about to expire legal tags
Pipeline
#248985
failed
1 year ago
Stage: review
Stage: build
Stage: coverage
Stage: containerize
Stage: scan
Stage: deploy
Stage: integration
Changes
1
Pipelines
7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
provider/legal-azure/src/test/java/org/opengroup/osdu/legal/azure/AboutToExpireLegalTagPublisherImplTest.java
+0
-37
0 additions, 37 deletions
...u/legal/azure/AboutToExpireLegalTagPublisherImplTest.java
with
0 additions
and
37 deletions
provider/legal-azure/src/test/java/org/opengroup/osdu/legal/azure/AboutToExpireLegalTagPublisherImplTest.java
+
0
−
37
View file @
ba8d28e5
...
...
@@ -14,61 +14,24 @@
package
org.opengroup.osdu.legal.azure
;
import
com.google.gson.Gson
;
import
com.google.gson.JsonObject
;
import
com.microsoft.azure.servicebus.Message
;
import
com.microsoft.azure.servicebus.MessageBody
;
import
com.microsoft.azure.servicebus.TopicClient
;
import
com.microsoft.azure.servicebus.primitives.ServiceBusException
;
import
org.junit.Before
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.mockito.ArgumentCaptor
;
import
org.mockito.InjectMocks
;
import
org.mockito.Mock
;
import
org.mockito.junit.MockitoJUnitRunner
;
import
org.opengroup.osdu.azure.servicebus.ITopicClientFactory
;
import
org.opengroup.osdu.core.common.logging.JaxRsDpsLog
;
import
org.opengroup.osdu.core.common.model.http.DpsHeaders
;
import
org.opengroup.osdu.legal.azure.jobs.AboutToExpireLegalTagPublisherImpl
;
import
org.opengroup.osdu.legal.jobs.models.AboutToExpireLegalTags
;
import
java.util.Map
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
mockito
.
ArgumentMatchers
.*;
import
static
org
.
mockito
.
Mockito
.*;
@RunWith
(
MockitoJUnitRunner
.
class
)
public
class
AboutToExpireLegalTagPublisherImplTest
{
private
static
final
String
CORRELATION_ID
=
"correlation-id"
;
private
static
final
String
USER_EMAIL
=
"user@email.com"
;
private
static
final
String
PARTITION_ID
=
"partition-id"
;
@Mock
private
JaxRsDpsLog
logger
;
@Mock
private
ITopicClientFactory
topicClientFactory
;
@Mock
private
TopicClient
topicClient
;
@Mock
private
DpsHeaders
headers
;
@InjectMocks
private
AboutToExpireLegalTagPublisherImpl
sut
;
@Before
public
void
init
()
throws
ServiceBusException
,
InterruptedException
{
doReturn
(
CORRELATION_ID
).
when
(
headers
).
getCorrelationId
();
doReturn
(
USER_EMAIL
).
when
(
headers
).
getUserEmail
();
doReturn
(
PARTITION_ID
).
when
(
headers
).
getPartitionId
();
doReturn
(
topicClient
).
when
(
topicClientFactory
).
getClient
(
eq
(
PARTITION_ID
),
any
());
}
@Test
public
void
shouldPublishToServiceBus
()
throws
Exception
{
AboutToExpireLegalTags
aboutToExpireLegalTags
=
new
AboutToExpireLegalTags
();
...
...
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