Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
6fdf8c65
Commit
6fdf8c65
authored
Mar 05, 2020
by
Piotr Gawron
Browse files
doc for downloadSource of data overlay API call
parent
3e850734
Changes
1
Hide whitespace changes
Inline
Side-by-side
web/src/test/java/lcsb/mapviewer/web/OverlayControllerIntegrationTest.java
View file @
6fdf8c65
...
...
@@ -822,10 +822,13 @@ public class OverlayControllerIntegrationTest extends ControllerIntegrationTest
MockHttpSession
session
=
createSession
(
BUILT_IN_TEST_ADMIN_LOGIN
,
BUILT_IN_TEST_ADMIN_PASSWORD
);
RequestBuilder
request
=
get
(
"/projects/"
+
TEST_PROJECT
+
"/overlays/"
+
overlay
.
getId
()
+
":downloadSource"
)
.
session
(
session
);
RequestBuilder
request
=
get
(
"/projects/{projectId}/overlays/{overlayId}:downloadSource"
,
TEST_PROJECT
,
overlay
.
getId
())
.
session
(
session
);
mockMvc
.
perform
(
request
)
.
andDo
(
document
(
"projects/project_overlays/download_source"
,
getOverlayPathParameters
()))
.
andExpect
(
status
().
is2xxSuccessful
());
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment