Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
d82e874e
Commit
d82e874e
authored
7 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-2366: making ReportingServiceTest more robust.
parent
45367a99
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
datastore_server/sourceTest/java/ch/ethz/sis/openbis/generic/dss/systemtest/api/v3/ReportingServiceTest.java
+3
-3
3 additions, 3 deletions
...s/generic/dss/systemtest/api/v3/ReportingServiceTest.java
with
3 additions
and
3 deletions
datastore_server/sourceTest/java/ch/ethz/sis/openbis/generic/dss/systemtest/api/v3/ReportingServiceTest.java
+
3
−
3
View file @
d82e874e
...
@@ -107,6 +107,9 @@ public class ReportingServiceTest extends AbstractFileTest
...
@@ -107,6 +107,9 @@ public class ReportingServiceTest extends AbstractFileTest
String
sessionToken
=
as
.
login
(
TEST_USER
,
PASSWORD
);
String
sessionToken
=
as
.
login
(
TEST_USER
,
PASSWORD
);
ReportingServiceSearchCriteria
searchCriteria
=
new
ReportingServiceSearchCriteria
();
ReportingServiceSearchCriteria
searchCriteria
=
new
ReportingServiceSearchCriteria
();
ReportingServiceFetchOptions
fetchOptions
=
new
ReportingServiceFetchOptions
();
ReportingServiceFetchOptions
fetchOptions
=
new
ReportingServiceFetchOptions
();
List
<
String
>
allDataSetTypeCodes
=
as
.
searchDataSetTypes
(
sessionToken
,
new
DataSetTypeSearchCriteria
(),
new
DataSetTypeFetchOptions
()).
getObjects
().
stream
().
map
(
t
->
t
.
getCode
()).
collect
(
Collectors
.
toList
());
Collections
.
sort
(
allDataSetTypeCodes
);
// When
// When
List
<
ReportingService
>
services
=
as
.
searchReportingServices
(
sessionToken
,
searchCriteria
,
fetchOptions
).
getObjects
();
List
<
ReportingService
>
services
=
as
.
searchReportingServices
(
sessionToken
,
searchCriteria
,
fetchOptions
).
getObjects
();
...
@@ -121,9 +124,6 @@ public class ReportingServiceTest extends AbstractFileTest
...
@@ -121,9 +124,6 @@ public class ReportingServiceTest extends AbstractFileTest
services
.
stream
().
map
(
s
->
s
.
getLabel
()).
collect
(
Collectors
.
toList
()).
toString
());
services
.
stream
().
map
(
s
->
s
.
getLabel
()).
collect
(
Collectors
.
toList
()).
toString
());
assertEquals
(
"[]"
,
services
.
get
(
0
).
getDataSetTypeCodes
().
toString
());
assertEquals
(
"[]"
,
services
.
get
(
0
).
getDataSetTypeCodes
().
toString
());
assertEquals
(
"[]"
,
services
.
get
(
3
).
getDataSetTypeCodes
().
toString
());
assertEquals
(
"[]"
,
services
.
get
(
3
).
getDataSetTypeCodes
().
toString
());
List
<
String
>
allDataSetTypeCodes
=
as
.
searchDataSetTypes
(
sessionToken
,
new
DataSetTypeSearchCriteria
(),
new
DataSetTypeFetchOptions
()).
getObjects
().
stream
().
map
(
t
->
t
.
getCode
()).
collect
(
Collectors
.
toList
());
Collections
.
sort
(
allDataSetTypeCodes
);
assertEquals
(
allDataSetTypeCodes
.
toString
(),
getSortedDataSetTypeCodes
(
services
.
get
(
1
)).
toString
());
assertEquals
(
allDataSetTypeCodes
.
toString
(),
getSortedDataSetTypeCodes
(
services
.
get
(
1
)).
toString
());
assertEquals
(
allDataSetTypeCodes
.
toString
(),
getSortedDataSetTypeCodes
(
services
.
get
(
2
)).
toString
());
assertEquals
(
allDataSetTypeCodes
.
toString
(),
getSortedDataSetTypeCodes
(
services
.
get
(
2
)).
toString
());
...
...
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