mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged RETURN-OF-THE-API (5.2.0) to 5.2.N (5.2.1)
128662 jvonka: V1 REST API test improvements - allow tests to be run individually (as well as within a suite) REPO-896 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@129183 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -129,7 +129,7 @@ public abstract class AbstractBaseApiTest extends EnterpriseTestApi
|
|||||||
|
|
||||||
protected final String RUNID = System.currentTimeMillis()+"";
|
protected final String RUNID = System.currentTimeMillis()+"";
|
||||||
|
|
||||||
|
@Override
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception
|
public void setup() throws Exception
|
||||||
{
|
{
|
||||||
|
@@ -25,8 +25,17 @@
|
|||||||
*/
|
*/
|
||||||
package org.alfresco.rest.api.tests;
|
package org.alfresco.rest.api.tests;
|
||||||
|
|
||||||
|
import org.junit.Before;
|
||||||
|
|
||||||
public class EnterpriseTestApi extends AbstractTestApi
|
public class EnterpriseTestApi extends AbstractTestApi
|
||||||
{
|
{
|
||||||
|
@Before
|
||||||
|
public void setup() throws Exception
|
||||||
|
{
|
||||||
|
// force creation of some test data (if not specifically overridden)
|
||||||
|
getTestFixture().getRandomNetwork();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected TestFixture getTestFixture() throws Exception
|
protected TestFixture getTestFixture() throws Exception
|
||||||
{
|
{
|
||||||
|
@@ -81,6 +81,8 @@ public class TestActivities extends EnterpriseTestApi
|
|||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception
|
public void setup() throws Exception
|
||||||
{
|
{
|
||||||
|
// note: we don't call super.setup() since we create our own test data here !
|
||||||
|
|
||||||
this.network1 = repoService.createNetworkWithAlias("activitiesNetwork1", true);
|
this.network1 = repoService.createNetworkWithAlias("activitiesNetwork1", true);
|
||||||
this.network2 = repoService.createNetworkWithAlias("activitiesNetwork2", true);
|
this.network2 = repoService.createNetworkWithAlias("activitiesNetwork2", true);
|
||||||
this.defaultNetwork = repoService.createNetwork(TenantService.DEFAULT_DOMAIN, true);
|
this.defaultNetwork = repoService.createNetwork(TenantService.DEFAULT_DOMAIN, true);
|
||||||
|
@@ -126,6 +126,171 @@ public class TestFavourites extends EnterpriseTestApi
|
|||||||
private Favourites favouritesProxy;
|
private Favourites favouritesProxy;
|
||||||
private SiteMembershipRequests siteMembershipRequestsProxy;
|
private SiteMembershipRequests siteMembershipRequestsProxy;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Before
|
||||||
|
public void setup() throws Exception
|
||||||
|
{
|
||||||
|
// init networks
|
||||||
|
super.setup();
|
||||||
|
|
||||||
|
final Iterator<TestNetwork> networksIt = getTestFixture().networksIterator();
|
||||||
|
|
||||||
|
// Workaround for domain name mismatch in lucene indexing that occurs when this test runs.
|
||||||
|
repoService.disableInTxnIndexing();
|
||||||
|
|
||||||
|
transactionHelper.doInTransaction(new RetryingTransactionHelper.RetryingTransactionCallback<Void>()
|
||||||
|
{
|
||||||
|
@SuppressWarnings("synthetic-access")
|
||||||
|
public Void execute() throws Throwable
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
AuthenticationUtil.pushAuthentication();
|
||||||
|
AuthenticationUtil.setFullyAuthenticatedUser(AuthenticationUtil.getAdminUserName());
|
||||||
|
|
||||||
|
// create some users
|
||||||
|
TestFavourites.this.network1 = networksIt.next();
|
||||||
|
|
||||||
|
String name = GUID.generate();
|
||||||
|
PersonInfo personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
||||||
|
TestFavourites.this.person10 = network1.createUser(personInfo);
|
||||||
|
assertNotNull(TestFavourites.this.person10);
|
||||||
|
TestFavourites.this.person10Id = TestFavourites.this.person10.getId();
|
||||||
|
name = GUID.generate();
|
||||||
|
personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
||||||
|
TestFavourites.this.person11 = network1.createUser(personInfo);
|
||||||
|
assertNotNull(TestFavourites.this.person11);
|
||||||
|
TestFavourites.this.person11Id = TestFavourites.this.person11.getId();
|
||||||
|
name = GUID.generate();
|
||||||
|
personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
||||||
|
TestFavourites.this.person12 = network1.createUser(personInfo);
|
||||||
|
assertNotNull(TestFavourites.this.person12);
|
||||||
|
TestFavourites.this.person12Id = TestFavourites.this.person12.getId();
|
||||||
|
name = GUID.generate();
|
||||||
|
personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
||||||
|
TestFavourites.this.person14 = network1.createUser(personInfo);
|
||||||
|
assertNotNull(TestFavourites.this.person14);
|
||||||
|
TestFavourites.this.person14Id = TestFavourites.this.person14.getId();
|
||||||
|
|
||||||
|
TestFavourites.this.network2 = networksIt.next();
|
||||||
|
name = GUID.generate();
|
||||||
|
personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
||||||
|
TestFavourites.this.person21 = network2.createUser(personInfo);
|
||||||
|
assertNotNull(TestFavourites.this.person21);
|
||||||
|
TestFavourites.this.person21Id = TestFavourites.this.person21.getId();
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
AuthenticationUtil.popAuthentication();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, false, true);
|
||||||
|
|
||||||
|
// Create some favourite targets, sites, files and folders
|
||||||
|
TenantUtil.runAsUserTenant(new TenantRunAsWork<Void>()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public Void doWork() throws Exception
|
||||||
|
{
|
||||||
|
String siteName = "site" + GUID.generate();
|
||||||
|
SiteInformation siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
||||||
|
TestSite site = network1.createSite(siteInfo);
|
||||||
|
person1PublicSites.add(site);
|
||||||
|
|
||||||
|
NodeRef nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc1", "Test Doc1 Title", "Test Doc1 Description", "Test Content");
|
||||||
|
person1PublicDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder1", "Test Folder1 Title", "Test Folder1 Description");
|
||||||
|
person1PublicFolders.add(nodeRef);
|
||||||
|
nodeRef = repoService.createDocument(nodeRef, "Test Doc2", "Test Doc2 Title", "Test Doc2 Description", "Test Content");
|
||||||
|
person1PublicDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder2", "Test Folder2 Title", "Test Folder2 Description");
|
||||||
|
person1PublicFolders.add(nodeRef);
|
||||||
|
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc3", "Test Doc3 Title", "Test Doc3 Description", "Test Content");
|
||||||
|
person1PublicDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder3", "Test Folder3 Title", "Test Folder3 Description");
|
||||||
|
person1PublicFolders.add(nodeRef);
|
||||||
|
|
||||||
|
siteName = "site" + GUID.generate();
|
||||||
|
siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
||||||
|
site = network1.createSite(siteInfo);
|
||||||
|
person1PublicSites.add(site);
|
||||||
|
|
||||||
|
siteName = "site" + GUID.generate();
|
||||||
|
siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PRIVATE);
|
||||||
|
site = network1.createSite(siteInfo);
|
||||||
|
person1PrivateSites.add(site);
|
||||||
|
|
||||||
|
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc1", "Test Doc1 Title", "Test Doc1 Description", "Test Content");
|
||||||
|
person1PrivateDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder1", "Test Folder1 Title", "Test Folder1 Description");
|
||||||
|
person1PrivateFolders.add(nodeRef);
|
||||||
|
nodeRef = repoService.createDocument(nodeRef, "Test Doc2", "Test Doc2 Title", "Test Doc2 Description", "Test Content");
|
||||||
|
person1PrivateDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder2", "Test Folder2 Title", "Test Folder2 Description");
|
||||||
|
person1PrivateFolders.add(nodeRef);
|
||||||
|
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc3", "Test Doc3 Title", "Test Doc3 Description", "Test Content");
|
||||||
|
person1PrivateDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder3", "Test Folder3 Title", "Test Folder3 Description");
|
||||||
|
person1PrivateFolders.add(nodeRef);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}, person11Id, network1.getId());
|
||||||
|
|
||||||
|
TenantUtil.runAsUserTenant(new TenantRunAsWork<Void>()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public Void doWork() throws Exception
|
||||||
|
{
|
||||||
|
String siteName = "site" + System.currentTimeMillis();
|
||||||
|
SiteInformation siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
||||||
|
TestSite site = network1.createSite(siteInfo);
|
||||||
|
person1PublicSites.add(site);
|
||||||
|
|
||||||
|
NodeRef nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc1", "Test Content");
|
||||||
|
personDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder1");
|
||||||
|
personFolders.add(nodeRef);
|
||||||
|
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc2", "Test Content");
|
||||||
|
personDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder2");
|
||||||
|
personFolders.add(nodeRef);
|
||||||
|
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc3", "Test Content");
|
||||||
|
personDocs.add(nodeRef);
|
||||||
|
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder3");
|
||||||
|
personFolders.add(nodeRef);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}, person10Id, network1.getId());
|
||||||
|
|
||||||
|
TenantUtil.runAsUserTenant(new TenantRunAsWork<Void>()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public Void doWork() throws Exception
|
||||||
|
{
|
||||||
|
String siteName = "site" + GUID.generate();
|
||||||
|
SiteInformation siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
||||||
|
TestSite site = network1.createSite(siteInfo);
|
||||||
|
personSites.add(site);
|
||||||
|
|
||||||
|
site.inviteToSite(person11Id, SiteRole.SiteCollaborator);
|
||||||
|
|
||||||
|
siteName = "site" + GUID.generate();
|
||||||
|
siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
||||||
|
site = network1.createSite(siteInfo);
|
||||||
|
personSites.add(site);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}, person10Id, network1.getId());
|
||||||
|
|
||||||
|
this.favouritesProxy = publicApiClient.favourites();
|
||||||
|
this.siteMembershipRequestsProxy = publicApiClient.siteMembershipRequests();
|
||||||
|
}
|
||||||
|
|
||||||
private void sort(List<Favourite> favourites, final List<Pair<FavouritesService.SortFields, Boolean>> sortProps)
|
private void sort(List<Favourite> favourites, final List<Pair<FavouritesService.SortFields, Boolean>> sortProps)
|
||||||
{
|
{
|
||||||
Comparator<Favourite> comparator = new Comparator<Favourite>()
|
Comparator<Favourite> comparator = new Comparator<Favourite>()
|
||||||
@@ -236,167 +401,6 @@ public class TestFavourites extends EnterpriseTestApi
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
|
||||||
public void setup() throws Exception
|
|
||||||
{
|
|
||||||
final Iterator<TestNetwork> networksIt = getTestFixture().networksIterator();
|
|
||||||
|
|
||||||
// Workaround for domain name mismatch in lucene indexing that occurs when this test runs.
|
|
||||||
repoService.disableInTxnIndexing();
|
|
||||||
|
|
||||||
transactionHelper.doInTransaction(new RetryingTransactionHelper.RetryingTransactionCallback<Void>()
|
|
||||||
{
|
|
||||||
@SuppressWarnings("synthetic-access")
|
|
||||||
public Void execute() throws Throwable
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
AuthenticationUtil.pushAuthentication();
|
|
||||||
AuthenticationUtil.setFullyAuthenticatedUser(AuthenticationUtil.getAdminUserName());
|
|
||||||
|
|
||||||
// create some users
|
|
||||||
TestFavourites.this.network1 = networksIt.next();
|
|
||||||
|
|
||||||
String name = GUID.generate();
|
|
||||||
PersonInfo personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
|
||||||
TestFavourites.this.person10 = network1.createUser(personInfo);
|
|
||||||
assertNotNull(TestFavourites.this.person10);
|
|
||||||
TestFavourites.this.person10Id = TestFavourites.this.person10.getId();
|
|
||||||
name = GUID.generate();
|
|
||||||
personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
|
||||||
TestFavourites.this.person11 = network1.createUser(personInfo);
|
|
||||||
assertNotNull(TestFavourites.this.person11);
|
|
||||||
TestFavourites.this.person11Id = TestFavourites.this.person11.getId();
|
|
||||||
name = GUID.generate();
|
|
||||||
personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
|
||||||
TestFavourites.this.person12 = network1.createUser(personInfo);
|
|
||||||
assertNotNull(TestFavourites.this.person12);
|
|
||||||
TestFavourites.this.person12Id = TestFavourites.this.person12.getId();
|
|
||||||
name = GUID.generate();
|
|
||||||
personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
|
||||||
TestFavourites.this.person14 = network1.createUser(personInfo);
|
|
||||||
assertNotNull(TestFavourites.this.person14);
|
|
||||||
TestFavourites.this.person14Id = TestFavourites.this.person14.getId();
|
|
||||||
|
|
||||||
TestFavourites.this.network2 = networksIt.next();
|
|
||||||
name = GUID.generate();
|
|
||||||
personInfo = new PersonInfo(name, name, name, "password", null, null, null, null, null, null, null);
|
|
||||||
TestFavourites.this.person21 = network2.createUser(personInfo);
|
|
||||||
assertNotNull(TestFavourites.this.person21);
|
|
||||||
TestFavourites.this.person21Id = TestFavourites.this.person21.getId();
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
AuthenticationUtil.popAuthentication();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, false, true);
|
|
||||||
|
|
||||||
// Create some favourite targets, sites, files and folders
|
|
||||||
TenantUtil.runAsUserTenant(new TenantRunAsWork<Void>()
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public Void doWork() throws Exception
|
|
||||||
{
|
|
||||||
String siteName = "site" + GUID.generate();
|
|
||||||
SiteInformation siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
|
||||||
TestSite site = network1.createSite(siteInfo);
|
|
||||||
person1PublicSites.add(site);
|
|
||||||
|
|
||||||
NodeRef nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc1", "Test Doc1 Title", "Test Doc1 Description", "Test Content");
|
|
||||||
person1PublicDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder1", "Test Folder1 Title", "Test Folder1 Description");
|
|
||||||
person1PublicFolders.add(nodeRef);
|
|
||||||
nodeRef = repoService.createDocument(nodeRef, "Test Doc2", "Test Doc2 Title", "Test Doc2 Description", "Test Content");
|
|
||||||
person1PublicDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder2", "Test Folder2 Title", "Test Folder2 Description");
|
|
||||||
person1PublicFolders.add(nodeRef);
|
|
||||||
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc3", "Test Doc3 Title", "Test Doc3 Description", "Test Content");
|
|
||||||
person1PublicDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder3", "Test Folder3 Title", "Test Folder3 Description");
|
|
||||||
person1PublicFolders.add(nodeRef);
|
|
||||||
|
|
||||||
siteName = "site" + GUID.generate();
|
|
||||||
siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
|
||||||
site = network1.createSite(siteInfo);
|
|
||||||
person1PublicSites.add(site);
|
|
||||||
|
|
||||||
siteName = "site" + GUID.generate();
|
|
||||||
siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PRIVATE);
|
|
||||||
site = network1.createSite(siteInfo);
|
|
||||||
person1PrivateSites.add(site);
|
|
||||||
|
|
||||||
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc1", "Test Doc1 Title", "Test Doc1 Description", "Test Content");
|
|
||||||
person1PrivateDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder1", "Test Folder1 Title", "Test Folder1 Description");
|
|
||||||
person1PrivateFolders.add(nodeRef);
|
|
||||||
nodeRef = repoService.createDocument(nodeRef, "Test Doc2", "Test Doc2 Title", "Test Doc2 Description", "Test Content");
|
|
||||||
person1PrivateDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder2", "Test Folder2 Title", "Test Folder2 Description");
|
|
||||||
person1PrivateFolders.add(nodeRef);
|
|
||||||
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc3", "Test Doc3 Title", "Test Doc3 Description", "Test Content");
|
|
||||||
person1PrivateDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder3", "Test Folder3 Title", "Test Folder3 Description");
|
|
||||||
person1PrivateFolders.add(nodeRef);
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}, person11Id, network1.getId());
|
|
||||||
|
|
||||||
TenantUtil.runAsUserTenant(new TenantRunAsWork<Void>()
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public Void doWork() throws Exception
|
|
||||||
{
|
|
||||||
String siteName = "site" + System.currentTimeMillis();
|
|
||||||
SiteInformation siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
|
||||||
TestSite site = network1.createSite(siteInfo);
|
|
||||||
person1PublicSites.add(site);
|
|
||||||
|
|
||||||
NodeRef nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc1", "Test Content");
|
|
||||||
personDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder1");
|
|
||||||
personFolders.add(nodeRef);
|
|
||||||
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc2", "Test Content");
|
|
||||||
personDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder2");
|
|
||||||
personFolders.add(nodeRef);
|
|
||||||
nodeRef = repoService.createDocument(site.getContainerNodeRef("documentLibrary"), "Test Doc3", "Test Content");
|
|
||||||
personDocs.add(nodeRef);
|
|
||||||
nodeRef = repoService.createFolder(site.getContainerNodeRef("documentLibrary"), "Test Folder3");
|
|
||||||
personFolders.add(nodeRef);
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}, person10Id, network1.getId());
|
|
||||||
|
|
||||||
TenantUtil.runAsUserTenant(new TenantRunAsWork<Void>()
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public Void doWork() throws Exception
|
|
||||||
{
|
|
||||||
String siteName = "site" + GUID.generate();
|
|
||||||
SiteInformation siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
|
||||||
TestSite site = network1.createSite(siteInfo);
|
|
||||||
personSites.add(site);
|
|
||||||
|
|
||||||
site.inviteToSite(person11Id, SiteRole.SiteCollaborator);
|
|
||||||
|
|
||||||
siteName = "site" + GUID.generate();
|
|
||||||
siteInfo = new SiteInformation(siteName, siteName, siteName, SiteVisibility.PUBLIC);
|
|
||||||
site = network1.createSite(siteInfo);
|
|
||||||
personSites.add(site);
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}, person10Id, network1.getId());
|
|
||||||
|
|
||||||
this.favouritesProxy = publicApiClient.favourites();
|
|
||||||
this.siteMembershipRequestsProxy = publicApiClient.siteMembershipRequests();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void updateFavourite(String networkId, String runAsUserId, String personId, TARGET_TYPE type) throws Exception
|
private void updateFavourite(String networkId, String runAsUserId, String personId, TARGET_TYPE type) throws Exception
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
@@ -69,6 +69,8 @@ public class TestNetworks extends EnterpriseTestApi
|
|||||||
@Before
|
@Before
|
||||||
public void setup()
|
public void setup()
|
||||||
{
|
{
|
||||||
|
// note: we don't call super.setup() since we create our own test data here !
|
||||||
|
|
||||||
// create some networks
|
// create some networks
|
||||||
for(int i = 0; i < 2; i++)
|
for(int i = 0; i < 2; i++)
|
||||||
{
|
{
|
||||||
|
@@ -92,9 +92,13 @@ public class TestNodeComments extends EnterpriseTestApi
|
|||||||
private NodeRef cmObjectNodeRef;
|
private NodeRef cmObjectNodeRef;
|
||||||
private NodeRef customTypeObject;
|
private NodeRef customTypeObject;
|
||||||
|
|
||||||
|
@Override
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception
|
public void setup() throws Exception
|
||||||
{
|
{
|
||||||
|
// init networks
|
||||||
|
super.setup();
|
||||||
|
|
||||||
Iterator<TestNetwork> accountsIt = getTestFixture().getNetworksIt();
|
Iterator<TestNetwork> accountsIt = getTestFixture().getNetworksIt();
|
||||||
this.network1 = accountsIt.next();
|
this.network1 = accountsIt.next();
|
||||||
this.network2 = accountsIt.next();
|
this.network2 = accountsIt.next();
|
||||||
|
@@ -87,65 +87,13 @@ public class TestPersonSites extends EnterpriseTestApi
|
|||||||
private String site3_title = "b_" + GUID.generate();
|
private String site3_title = "b_" + GUID.generate();
|
||||||
private SiteRole site3_role = SiteRole.SiteConsumer;
|
private SiteRole site3_role = SiteRole.SiteConsumer;
|
||||||
|
|
||||||
|
@Override
|
||||||
public void initializeSites() throws Exception
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* Create data for testing the site sorting. We create the sites as
|
|
||||||
* person31 and assign roles to person32. The list requests will be
|
|
||||||
* performed as person32.
|
|
||||||
*/
|
|
||||||
TenantUtil.runAsSystemTenant(new TenantRunAsWork<Void>()
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public Void doWork() throws Exception
|
|
||||||
{
|
|
||||||
person31 = network1.createUser();
|
|
||||||
person32 = network1.createUser();
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}, network1.getId());
|
|
||||||
|
|
||||||
this.site1 = TenantUtil.runAsUserTenant(new TenantRunAsWork<TestSite>()
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public TestSite doWork() throws Exception
|
|
||||||
{
|
|
||||||
SiteInformation siteInfo = new SiteInformation(site1_name, site1_title, site1_title, SiteVisibility.PRIVATE);
|
|
||||||
TestSite site = network1.createSite(siteInfo);
|
|
||||||
site.inviteToSite(person32.getId(), site1_role);
|
|
||||||
return site;
|
|
||||||
}
|
|
||||||
}, person31.getId(), network1.getId());
|
|
||||||
|
|
||||||
this.site2 = TenantUtil.runAsUserTenant(new TenantRunAsWork<TestSite>()
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public TestSite doWork() throws Exception
|
|
||||||
{
|
|
||||||
SiteInformation siteInfo = new SiteInformation(site2_name, site2_title, site2_title, SiteVisibility.PRIVATE);
|
|
||||||
TestSite site = network1.createSite(siteInfo);
|
|
||||||
site.inviteToSite(person32.getId(), site2_role);
|
|
||||||
return site;
|
|
||||||
}
|
|
||||||
}, person31.getId(), network1.getId());
|
|
||||||
|
|
||||||
this.site3 = TenantUtil.runAsUserTenant(new TenantRunAsWork<TestSite>()
|
|
||||||
{
|
|
||||||
@Override
|
|
||||||
public TestSite doWork() throws Exception
|
|
||||||
{
|
|
||||||
SiteInformation siteInfo = new SiteInformation(site3_name, site3_title, site3_title, SiteVisibility.PRIVATE);
|
|
||||||
TestSite site = network1.createSite(siteInfo);
|
|
||||||
site.inviteToSite(person32.getId(), site3_role);
|
|
||||||
return site;
|
|
||||||
}
|
|
||||||
}, person31.getId(), network1.getId());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception
|
public void setup() throws Exception
|
||||||
{
|
{
|
||||||
|
// init networks
|
||||||
|
super.setup();
|
||||||
|
|
||||||
Iterator<TestNetwork> networksIt = getTestFixture().getNetworksIt();
|
Iterator<TestNetwork> networksIt = getTestFixture().getNetworksIt();
|
||||||
|
|
||||||
assertTrue(networksIt.hasNext());
|
assertTrue(networksIt.hasNext());
|
||||||
@@ -224,6 +172,61 @@ public class TestPersonSites extends EnterpriseTestApi
|
|||||||
}, person12.getId(), network1.getId());
|
}, person12.getId(), network1.getId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void initializeSites() throws Exception
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Create data for testing the site sorting. We create the sites as
|
||||||
|
* person31 and assign roles to person32. The list requests will be
|
||||||
|
* performed as person32.
|
||||||
|
*/
|
||||||
|
TenantUtil.runAsSystemTenant(new TenantRunAsWork<Void>()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public Void doWork() throws Exception
|
||||||
|
{
|
||||||
|
person31 = network1.createUser();
|
||||||
|
person32 = network1.createUser();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}, network1.getId());
|
||||||
|
|
||||||
|
this.site1 = TenantUtil.runAsUserTenant(new TenantRunAsWork<TestSite>()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public TestSite doWork() throws Exception
|
||||||
|
{
|
||||||
|
SiteInformation siteInfo = new SiteInformation(site1_name, site1_title, site1_title, SiteVisibility.PRIVATE);
|
||||||
|
TestSite site = network1.createSite(siteInfo);
|
||||||
|
site.inviteToSite(person32.getId(), site1_role);
|
||||||
|
return site;
|
||||||
|
}
|
||||||
|
}, person31.getId(), network1.getId());
|
||||||
|
|
||||||
|
this.site2 = TenantUtil.runAsUserTenant(new TenantRunAsWork<TestSite>()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public TestSite doWork() throws Exception
|
||||||
|
{
|
||||||
|
SiteInformation siteInfo = new SiteInformation(site2_name, site2_title, site2_title, SiteVisibility.PRIVATE);
|
||||||
|
TestSite site = network1.createSite(siteInfo);
|
||||||
|
site.inviteToSite(person32.getId(), site2_role);
|
||||||
|
return site;
|
||||||
|
}
|
||||||
|
}, person31.getId(), network1.getId());
|
||||||
|
|
||||||
|
this.site3 = TenantUtil.runAsUserTenant(new TenantRunAsWork<TestSite>()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public TestSite doWork() throws Exception
|
||||||
|
{
|
||||||
|
SiteInformation siteInfo = new SiteInformation(site3_name, site3_title, site3_title, SiteVisibility.PRIVATE);
|
||||||
|
TestSite site = network1.createSite(siteInfo);
|
||||||
|
site.inviteToSite(person32.getId(), site3_role);
|
||||||
|
return site;
|
||||||
|
}
|
||||||
|
}, person31.getId(), network1.getId());
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testPersonSites() throws Exception
|
public void testPersonSites() throws Exception
|
||||||
{
|
{
|
||||||
|
@@ -67,6 +67,8 @@ public class TestPublicApi128 extends EnterpriseTestApi
|
|||||||
@Before
|
@Before
|
||||||
public void setup()
|
public void setup()
|
||||||
{
|
{
|
||||||
|
// note: we don't call super.setup() since we create our own test data here !
|
||||||
|
|
||||||
// mixed case network
|
// mixed case network
|
||||||
this.time = System.currentTimeMillis();
|
this.time = System.currentTimeMillis();
|
||||||
this.networkId = getNetworkId(networkPrefix, networkDomain);
|
this.networkId = getNetworkId(networkPrefix, networkDomain);
|
||||||
|
@@ -68,9 +68,13 @@ public class TestSiteContainers extends EnterpriseTestApi
|
|||||||
|
|
||||||
private TestSite site1;
|
private TestSite site1;
|
||||||
|
|
||||||
|
@Override
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception
|
public void setup() throws Exception
|
||||||
{
|
{
|
||||||
|
// init networks
|
||||||
|
super.setup();
|
||||||
|
|
||||||
Iterator<TestNetwork> networksIt = getTestFixture().getNetworksIt();
|
Iterator<TestNetwork> networksIt = getTestFixture().getNetworksIt();
|
||||||
|
|
||||||
assertTrue(networksIt.hasNext());
|
assertTrue(networksIt.hasNext());
|
||||||
|
@@ -89,9 +89,13 @@ public class TestSiteMembershipRequests extends EnterpriseTestApi
|
|||||||
|
|
||||||
private Random random = new Random(System.currentTimeMillis());
|
private Random random = new Random(System.currentTimeMillis());
|
||||||
|
|
||||||
|
@Override
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception
|
public void setup() throws Exception
|
||||||
{
|
{
|
||||||
|
// init networks
|
||||||
|
super.setup();
|
||||||
|
|
||||||
Iterator<TestNetwork> networksIt = getTestFixture().networksIterator();
|
Iterator<TestNetwork> networksIt = getTestFixture().networksIterator();
|
||||||
this.network1 = networksIt.next();
|
this.network1 = networksIt.next();
|
||||||
Iterator<String> personIt = network1.getPersonIds().iterator();
|
Iterator<String> personIt = network1.getPersonIds().iterator();
|
||||||
|
@@ -69,9 +69,14 @@ public class TestSites extends EnterpriseTestApi
|
|||||||
private Site site2;
|
private Site site2;
|
||||||
private Site site3;
|
private Site site3;
|
||||||
|
|
||||||
|
@Override
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception
|
public void
|
||||||
|
setup() throws Exception
|
||||||
{
|
{
|
||||||
|
// init networks
|
||||||
|
super.setup();
|
||||||
|
|
||||||
// Test: user is member of an account
|
// Test: user is member of an account
|
||||||
this.network1 = getTestFixture().getRandomNetwork();
|
this.network1 = getTestFixture().getRandomNetwork();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user