use of io.gravitee.repository.management.model.Category in project gravitee-management-rest-api by gravitee-io.
the class CategoryService_CreateTest method shouldCreateCategory.
@Test
public void shouldCreateCategory() throws TechnicalException {
NewCategoryEntity v1 = new NewCategoryEntity();
v1.setName("v1");
when(mockCategoryRepository.create(argThat(cat -> cat.getCreatedAt() != null))).thenReturn(new Category());
when(mockEnvironmentService.findById("DEFAULT")).thenReturn(new EnvironmentEntity());
CategoryEntity category = categoryService.create(v1);
assertNotNull("result is null", category);
verify(mockAuditService, times(1)).createEnvironmentAuditLog(any(), eq(CATEGORY_CREATED), any(), isNull(), any());
verify(mockCategoryRepository, times(1)).create(argThat(arg -> arg != null && arg.getName().equals("v1")));
}
use of io.gravitee.repository.management.model.Category in project gravitee-management-rest-api by gravitee-io.
the class CategoryService_FindTest method shouldFindCategory.
@Test
public void shouldFindCategory() throws TechnicalException {
Category category = mock(Category.class);
when(category.getId()).thenReturn("category-id");
when(category.getName()).thenReturn("category-name");
when(category.getDescription()).thenReturn("category-description");
when(category.getOrder()).thenReturn(1);
when(category.isHidden()).thenReturn(true);
when(category.getUpdatedAt()).thenReturn(new Date(1234567890L));
when(category.getCreatedAt()).thenReturn(new Date(9876543210L));
when(mockCategoryRepository.findAllByEnvironment(any())).thenReturn(singleton(category));
List<CategoryEntity> list = categoryService.findAll();
assertFalse(list.isEmpty());
assertEquals("one element", 1, list.size());
assertEquals("Id", "category-id", list.get(0).getId());
assertEquals("Name", "category-name", list.get(0).getName());
assertEquals("Description", "category-description", list.get(0).getDescription());
assertEquals("Total APIs", 0, list.get(0).getTotalApis());
assertEquals("Order", 1, list.get(0).getOrder());
assertEquals("Hidden", true, list.get(0).isHidden());
assertEquals("UpdatedAt", new Date(1234567890L), list.get(0).getUpdatedAt());
assertEquals("CreatedAt", new Date(9876543210L), list.get(0).getCreatedAt());
verify(mockCategoryRepository, times(1)).findAllByEnvironment(any());
}
use of io.gravitee.repository.management.model.Category in project gravitee-management-rest-api by gravitee-io.
the class CategoryService_UpdateTest method shouldUpdateCategory_multi_mode.
@Test
public void shouldUpdateCategory_multi_mode() throws TechnicalException {
UpdateCategoryEntity mockCategory = mock(UpdateCategoryEntity.class);
when(mockCategory.getId()).thenReturn("known");
when(mockCategory.getName()).thenReturn("Known");
when(mockCategoryRepository.findById("known")).thenReturn(Optional.of(new Category()));
Category updatedCategory = mock(Category.class);
when(updatedCategory.getId()).thenReturn("category-id");
when(updatedCategory.getName()).thenReturn("category-name");
when(updatedCategory.getDescription()).thenReturn("category-description");
when(updatedCategory.getOrder()).thenReturn(1);
when(updatedCategory.isHidden()).thenReturn(true);
when(updatedCategory.getUpdatedAt()).thenReturn(new Date(1234567890L));
when(updatedCategory.getCreatedAt()).thenReturn(new Date(9876543210L));
when(mockCategoryRepository.update(argThat(cat -> cat.getUpdatedAt() != null))).thenReturn(updatedCategory);
List<CategoryEntity> list = categoryService.update(singletonList(mockCategory));
assertFalse(list.isEmpty());
assertEquals("one element", 1, list.size());
assertEquals("Id", "category-id", list.get(0).getId());
assertEquals("Name", "category-name", list.get(0).getName());
assertEquals("Description", "category-description", list.get(0).getDescription());
assertEquals("Total APIs", 0, list.get(0).getTotalApis());
assertEquals("Order", 1, list.get(0).getOrder());
assertEquals("Hidden", true, list.get(0).isHidden());
assertEquals("UpdatedAt", new Date(1234567890L), list.get(0).getUpdatedAt());
assertEquals("CreatedAt", new Date(9876543210L), list.get(0).getCreatedAt());
verify(mockCategoryRepository, times(1)).findById(any());
verify(mockCategoryRepository, times(1)).update(any());
verify(mockAuditService, times(1)).createEnvironmentAuditLog(any(), eq(CATEGORY_UPDATED), any(), any(), any());
}
Aggregations