Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
Notification
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
Notification
Commits
f2ee427c
Commit
f2ee427c
authored
1 year ago
by
Yash Dholakia
Browse files
Options
Downloads
Patches
Plain Diff
Create a seperate subscription for test partition
parent
cfe96666
No related branches found
No related tags found
1 merge request
!417
AWS sync dev to master
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testing/notification-test-aws/src/test/java/org/opengroup/osdu/notification/subscriptions/TestNotificationsEndpoint.java
+45
-6
45 additions, 6 deletions
...notification/subscriptions/TestNotificationsEndpoint.java
with
45 additions
and
6 deletions
testing/notification-test-aws/src/test/java/org/opengroup/osdu/notification/subscriptions/TestNotificationsEndpoint.java
+
45
−
6
View file @
f2ee427c
...
...
@@ -23,6 +23,8 @@ import static org.junit.Assert.assertEquals;
public
class
TestNotificationsEndpoint
extends
TestBase
{
private
String
subscriptionId_TestPartition
;
private
String
subscriptionId
;
private
ISubscriptionService
awssubscriptionService
;
private
TestUtils
testUtils
;
...
...
@@ -46,7 +48,7 @@ public class TestNotificationsEndpoint extends TestBase {
}
@Before
public
void
setup
()
throws
Exception
{
public
void
setup
()
{
this
.
testUtils
=
new
AwsTestUtils
();
}
...
...
@@ -58,6 +60,43 @@ public class TestNotificationsEndpoint extends TestBase {
this
.
testUtils
=
null
;
}
private
void
createResourceForTestParition
()
throws
Exception
{
Map
<
String
,
String
>
headers
=
new
HashMap
<>();
headers
.
put
(
DpsHeaders
.
DATA_PARTITION_ID
,
TestUtils
.
getOsduTenant
());
headers
.
put
(
DpsHeaders
.
AUTHORIZATION
,
testUtils
.
getOpsToken
());
//hardcoding user here for 200 response tests. This is just initializing the subscription creation
headers
.
put
(
"x-user-id"
,
AwsConfig
.
getAWSCognitoUser
());
DpsHeaders
dpsHeaders
=
DpsHeaders
.
createFromMap
(
headers
);
awssubscriptionService
=
awsfactory
.
create
(
dpsHeaders
);
Map
<
String
,
String
>
h
=
dpsHeaders
.
getHeaders
();
System
.
out
.
println
(
h
);
//Create a new subscription to pub/sub
Subscription
subscription
=
new
Subscription
();
subscription
.
setName
(
"Subscription-test-for-notification"
);
subscription
.
setDescription
(
"Subscription with test Partition for fetching notifications"
);
subscription
.
setTopic
(
Config
.
Instance
().
Topic
);
//This seems to be a bug. Don't need to add the string
//subscription.setPushEndpoint(Config.Instance().HMACPushUrl + "hmac-integration-test");
subscription
.
setPushEndpoint
(
Config
.
Instance
().
HMACPushUrl
);
HmacSecret
secret
=
new
HmacSecret
();
secret
.
setValue
(
Config
.
Instance
().
hmacSecretValue
);
subscription
.
setSecret
(
secret
);
try
{
Subscription
subscriptionCreated
=
awssubscriptionService
.
create
(
subscription
);
System
.
out
.
println
(
"Subscription created successfully"
);
String
notificationId
=
subscriptionCreated
.
getNotificationId
();
subscriptionId_TestPartition
=
subscriptionCreated
.
getId
();
Config
.
Instance
().
NotificationId
=
notificationId
;
}
catch
(
SubscriptionException
e
){
System
.
out
.
println
(
"Subscription exception inner response : "
+
e
.
getHttpResponse
());
throw
e
;
}
}
private
void
createResource
()
throws
Exception
{
Map
<
String
,
String
>
headers
=
new
HashMap
<>();
headers
.
put
(
DpsHeaders
.
DATA_PARTITION_ID
,
TestUtils
.
getOsduTenant
());
...
...
@@ -74,7 +113,7 @@ public class TestNotificationsEndpoint extends TestBase {
//Create a new subscription to pub/sub
Subscription
subscription
=
new
Subscription
();
subscription
.
setName
(
"Subscription-test-for-notification"
);
subscription
.
setDescription
(
"Subscription
test
for fetching notifications"
);
subscription
.
setDescription
(
"Subscription for fetching notifications"
);
subscription
.
setTopic
(
Config
.
Instance
().
Topic
);
//This seems to be a bug. Don't need to add the string
//subscription.setPushEndpoint(Config.Instance().HMACPushUrl + "hmac-integration-test");
...
...
@@ -111,7 +150,7 @@ public class TestNotificationsEndpoint extends TestBase {
public
void
testVerifyNotificationReceivedWhenDataPartitionIdIsDifferent
()
throws
Exception
{
try
{
LegalTagUtils
.
create
(
LEGAL_TAG_TEST
,
testUtils
.
getOpsToken
(),
true
);
createResource
();
createResource
ForTestParition
();
final
String
correlationId
=
UUID
.
randomUUID
().
toString
();
ClientResponse
response
=
createStorageRecordForTestPartition
(
correlationId
);
assertEquals
(
201
,
response
.
getStatus
());
...
...
@@ -125,9 +164,9 @@ public class TestNotificationsEndpoint extends TestBase {
int
exitValue
=
process
.
exitValue
();
assertEquals
(
exitValue
,
1
);
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Error while verifying notification service"
+
Arrays
.
toString
(
e
.
getStackTrace
()));
System
.
out
.
println
(
"Error while verifying notification service
. Error = "
+
e
.
getMessage
()
+
" Stack Trace =
"
+
Arrays
.
toString
(
e
.
getStackTrace
()));
}
finally
{
awssubscriptionService
.
delete
(
subscriptionId
);
awssubscriptionService
.
delete
(
subscriptionId
_TestPartition
);
}
}
...
...
@@ -149,7 +188,7 @@ public class TestNotificationsEndpoint extends TestBase {
int
exitValue
=
process
.
exitValue
();
assertEquals
(
exitValue
,
0
);
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Error while verifying notification service"
+
Arrays
.
toString
(
e
.
getStackTrace
()));
System
.
out
.
println
(
"Error while verifying notification service
. Error = "
+
e
.
getMessage
()
+
" Stack Trace =
"
+
Arrays
.
toString
(
e
.
getStackTrace
()));
}
finally
{
awssubscriptionService
.
delete
(
subscriptionId
);
}
...
...
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