Apps 937 Run AGS community tests (#407) [skip tests]

* APPS-937 execute AGS tests [skip tests]

* APPS-937 Added missing file [ags][ags on MySQL][skip db][no downstream]

* APPS-937 tests postgres 13.1 [ags][skip db][no downstream]

* APPS-937 code review comments [skip tests]

(cherry picked from commit 66eda8dccc)
This commit is contained in:
alandavis
2021-05-05 21:07:01 +01:00
parent 67b04d4a4b
commit 2655a8cc3b
8 changed files with 126 additions and 42 deletions

View File

@@ -12,8 +12,6 @@
<properties>
<maven.javadoc.skip>false</maven.javadoc.skip>
<ags.share>alfresco-governance-services-community-share</ags.share>
<ags.repo>alfresco-governance-services-community-repo</ags.repo>
<fluent.json.version>2.0.0</fluent.json.version>
<jackson.databind.version>2.7.9.1</jackson.databind.version>
</properties>

View File

@@ -81,7 +81,7 @@ public class RMSiteAPI extends RMModelRequest
/**
* Create the RM site
*
* @param rmSite The properties of the rm site to be created
* @param rmSiteModel The properties of the rm site to be created
* @return The {@link RMSite} with the given properties
* @throws RuntimeException for the following cases:
* <ul>
@@ -124,7 +124,7 @@ public class RMSiteAPI extends RMModelRequest
/**
* Update RM site
*
* @param rmSiteProperties The properties to be updated
* @param rmSiteModel The properties to be updated
* @return The updated {@link RMSite}
* @throws RuntimeException for the following cases:
* <ul>
@@ -161,6 +161,6 @@ public class RMSiteAPI extends RMModelRequest
public boolean existsRMSite()
{
getSite();
return getRmRestWrapper().getStatusCode().equals(OK.toString());
return getRmRestWrapper().getStatusCode().equals(String.valueOf(OK.value()));
}
}