REPO-2948 - S3 IA: Update AWS Quick Start and include S3 IA configuration:

- increased wait time for tests to run on AWS QS
This commit is contained in:
Andrei Forascu
2017-11-28 11:35:14 +02:00
parent 048f4bd818
commit 3212214024
2 changed files with 3 additions and 2 deletions
@@ -213,7 +213,8 @@ public class NodesContentAndVersioningTests extends RestTest
STEP("5. Retrieve version 2.0 content GET /nodes/{nodeId}/versions/{versionId}/content");
//verify the content is the same as the uploaded file and check in headers for Content-Disposition to validate the download as attachment and fileName.
Utility.sleep(500, 10000, () ->
//wait for content to be picked up on AWS QS stacks
Utility.sleep(1000, 60000, () ->
{
RestResponse versionContent = restClient.withCoreAPI().usingNode(file2).getVersionContent("2.0");
restClient.assertStatusCodeIs(HttpStatus.OK);
@@ -55,7 +55,7 @@ public class TagsDataPrep extends RestTest
folderTag = restClient.withCoreAPI().usingResource(folder).addTag(folderTagValue);
// Allow indexing to complete.
Utility.sleep(1000, 35000, () ->
Utility.sleep(1000, 60000, () ->
{
returnedCollection = restClient.withParams("maxItems=10000").withCoreAPI().getTags();
returnedCollection.assertThat().entriesListContains("tag", documentTagValue.toLowerCase())