use of io.lumeer.api.dto.JsonCollection in project engine by Lumeer.
the class LinkInstanceServiceIT method configureLinkInstances.
@Before
public void configureLinkInstances() {
JsonOrganization organization = new JsonOrganization();
organization.setCode(ORGANIZATION_CODE);
organization.setPermissions(new JsonPermissions());
Organization storedOrganization = organizationDao.createOrganization(organization);
projectDao.setOrganization(storedOrganization);
User user = new User(USER);
userDao.createUser(user);
JsonProject project = new JsonProject();
project.setPermissions(new JsonPermissions());
project.setCode(PROJECT_CODE);
Project storedProject = projectDao.createProject(project);
collectionDao.setProject(storedProject);
linkTypeDao.setProject(storedProject);
linkInstanceDao.setProject(storedProject);
documentDao.setProject(storedProject);
JsonPermissions collectionPermissions = new JsonPermissions();
collectionPermissions.updateUserPermissions(new JsonPermission(USER, Project.ROLES.stream().map(Role::toString).collect(Collectors.toSet())));
JsonCollection jsonCollection = new JsonCollection("col1", "col1", "icon", "color", collectionPermissions);
jsonCollection.setDocumentsCount(0);
String collection1 = collectionDao.createCollection(jsonCollection).getId();
JsonCollection jsonCollection2 = new JsonCollection("col2", "col2", "icon", "color", collectionPermissions);
jsonCollection.setDocumentsCount(0);
String collection2 = collectionDao.createCollection(jsonCollection2).getId();
LinkType linkType = new LinkType(null, NAME, Arrays.asList(collection1, collection2), ATTRIBUTES);
linkTypeId1 = linkTypeDao.createLinkType(linkType).getId();
LinkType linkType2 = new LinkType(null, NAME2, Arrays.asList(collection1, collection2), ATTRIBUTES);
linkTypeId2 = linkTypeDao.createLinkType(linkType2).getId();
documentIdsColl1.clear();
for (int i = 0; i < 3; i++) {
documentIdsColl1.add(createDocument(collection1).getId());
}
documentIdsColl2.clear();
for (int i = 0; i < 3; i++) {
documentIdsColl2.add(createDocument(collection2).getId());
}
}
use of io.lumeer.api.dto.JsonCollection in project engine by Lumeer.
the class LinkTypeServiceIT method configureLinkTypes.
@Before
public void configureLinkTypes() {
JsonOrganization organization = new JsonOrganization();
organization.setCode(ORGANIZATION_CODE);
organization.setPermissions(new JsonPermissions());
Organization storedOrganization = organizationDao.createOrganization(organization);
projectDao.setOrganization(storedOrganization);
User user = new User(USER);
userDao.createUser(user);
JsonProject project = new JsonProject();
project.setPermissions(new JsonPermissions());
project.setCode(PROJECT_CODE);
Project storedProject = projectDao.createProject(project);
collectionDao.setProject(storedProject);
linkTypeDao.setProject(storedProject);
collectionIds.clear();
for (String name : COLLECTION_NAMES) {
JsonPermissions collectionPermissions = new JsonPermissions();
collectionPermissions.updateUserPermissions(new JsonPermission(USER, Project.ROLES.stream().map(Role::toString).collect(Collectors.toSet())));
JsonCollection jsonCollection = new JsonCollection(name, name, COLLECTION_ICON, COLLECTION_COLOR, collectionPermissions);
jsonCollection.setDocumentsCount(0);
collectionIds.add(collectionDao.createCollection(jsonCollection).getId());
}
}
use of io.lumeer.api.dto.JsonCollection in project engine by Lumeer.
the class ProjectServicePermissionsIT method testCreateCollectionInProjectNoRole.
@Test
public void testCreateCollectionInProjectNoRole() {
String projectCode = "testCreateCollectionInProjectNoRole_code1";
String projectName = "estCreateCollectionInProjectNoRole";
createProject(projectCode, projectName);
projectFacade.removeUserPermission(projectCode, userEmail);
String collectionName = "CollectionName";
String collectionCode = "ColCode";
Collection collection = new JsonCollection(collectionCode, collectionName, "a", "b", null);
Response response = client.target(TARGET_URI).path(PATH_PREFIX + projectCode + "/collections").request(MediaType.APPLICATION_JSON).buildPost(Entity.json(collection)).invoke();
assertThat(response.getStatusInfo()).isEqualTo(Response.Status.UNAUTHORIZED);
}
use of io.lumeer.api.dto.JsonCollection in project engine by Lumeer.
the class ProjectServicePermissionsIT method testCreateCollectionInProjectWriteRole.
@Test
public void testCreateCollectionInProjectWriteRole() {
String projectCode = "testCreateCollectionInProjectWriteRole_code1";
String projectName = "testCreateCollectionInProjectWriteRole";
createProject(projectCode, projectName);
String collectionName = "CollectionName";
String collectionCode = "ColCode2";
Collection collection = new JsonCollection(collectionCode, collectionName, "a", "b", null);
Response response = client.target(TARGET_URI).path(PATH_PREFIX + projectCode + "/collections").request(MediaType.APPLICATION_JSON).buildPost(Entity.json(collection)).invoke();
assertThat(response.getStatusInfo()).isEqualTo(Response.Status.OK);
}
use of io.lumeer.api.dto.JsonCollection in project engine by Lumeer.
the class SearchFacadeIT method configureCollections.
@Before
public void configureCollections() {
JsonOrganization organization = new JsonOrganization();
organization.setCode(ORGANIZATION_CODE);
organization.setPermissions(new JsonPermissions());
Organization storedOrganization = organizationDao.createOrganization(organization);
projectDao.setOrganization(storedOrganization);
User user = new User(USER);
userDao.createUser(user);
JsonProject project = new JsonProject();
project.setPermissions(new JsonPermissions());
project.setCode(PROJECT_CODE);
Project storedProject = projectDao.createProject(project);
workspaceKeeper.setWorkspace(ORGANIZATION_CODE, PROJECT_CODE);
collectionDao.setProject(storedProject);
collectionDao.createCollectionsRepository(storedProject);
documentDao.setProject(storedProject);
collectionIds.clear();
for (String name : COLLECTION_CODES) {
JsonPermissions collectionPermissions = new JsonPermissions();
collectionPermissions.updateUserPermissions(new JsonPermission(USER, Project.ROLES.stream().map(Role::toString).collect(Collectors.toSet())));
JsonCollection jsonCollection = new JsonCollection(name, name, COLLECTION_ICON, COLLECTION_COLOR, collectionPermissions);
jsonCollection.setDocumentsCount(0);
String collectionId = collectionDao.createCollection(jsonCollection).getId();
collectionIds.add(collectionId);
dataDao.createDataRepository(collectionId);
}
}
Aggregations