/** * Abiquo community edition * cloud management application for hybrid clouds * Copyright (C) 2008-2010 - Abiquo Holdings S.L. * * This application is free software; you can redistribute it and/or * modify it under the terms of the GNU LESSER GENERAL PUBLIC * LICENSE as published by the Free Software Foundation under * version 3 of the License * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * LESSER GENERAL PUBLIC LICENSE v.3 for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ package com.abiquo.api.resources.appslibrary; import static com.abiquo.api.common.Assert.assertError; import static com.abiquo.api.common.Assert.assertLinkExist; import static com.abiquo.api.common.UriTestResolver.resolveCategoryURI; import static org.testng.Assert.assertEquals; import java.util.ArrayList; import java.util.List; import javax.ws.rs.core.Response.Status; import org.apache.wink.client.ClientResponse; import org.apache.wink.client.ClientWebException; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import com.abiquo.api.exceptions.APIError; import com.abiquo.api.resources.AbstractJpaGeneratorIT; import com.abiquo.server.core.appslibrary.Category; import com.abiquo.server.core.appslibrary.CategoryDto; import com.abiquo.server.core.enterprise.Enterprise; import com.abiquo.server.core.enterprise.Privilege; import com.abiquo.server.core.enterprise.Role; import com.abiquo.server.core.enterprise.User; public class CategoryResourceIT extends AbstractJpaGeneratorIT { protected Category category; private Enterprise enterprise; private static final String SYSADMIN = "sysadmin"; @Override @BeforeMethod public void setup() { category = categoryGenerator.createUniqueInstance(); enterprise = enterpriseGenerator.createUniqueInstance(); Role role = roleGenerator.createInstanceSysAdmin(); User user = userGenerator.createInstance(enterprise, role, SYSADMIN, SYSADMIN); List<Object> entitiesToSetup = new ArrayList<Object>(); entitiesToSetup.add(enterprise); for (Privilege p : role.getPrivileges()) { entitiesToSetup.add(p); } entitiesToSetup.add(role); entitiesToSetup.add(user); entitiesToSetup.add(category); setup(entitiesToSetup.toArray()); } @Test public void getCategory() throws Exception { String categoryURI = resolveCategoryURI(category.getId()); ClientResponse response = get(categoryURI, CategoryDto.MEDIA_TYPE); assertEquals(response.getStatusCode(), Status.OK.getStatusCode()); CategoryDto catDto = response.getEntity(CategoryDto.class); assertEquals(catDto.getName(), category.getName()); assertEquals(catDto.isDefaultCategory(), category.isDefaultCategory()); assertEquals(catDto.isErasable(), category.isErasable()); assertLinkExist(catDto, resolveCategoryURI(category.getId()), "edit"); } @Test public void getCategoryRaises404WhenNotFound() throws ClientWebException { ClientResponse response = get(resolveCategoryURI(12345), CategoryDto.MEDIA_TYPE); assertError(response, Status.NOT_FOUND.getStatusCode(), APIError.NON_EXISTENT_CATEGORY); } @Test public void modifyCategory() throws Exception { Category cat = categoryGenerator.createUniqueInstance(); setup(cat); String categoryURI = resolveCategoryURI(cat.getId()); ClientResponse response = get(categoryURI, CategoryDto.MEDIA_TYPE); CategoryDto dto = response.getEntity(CategoryDto.class); dto.setName("Name_modified"); response = put(categoryURI, dto); assertEquals(response.getStatusCode(), 200); CategoryDto modifiedDto = response.getEntity(CategoryDto.class); assertEquals(modifiedDto.getName(), "Name_modified"); } @Test public void modifyCategoryRaises404WhenNotFound() throws Exception { Category cat = categoryGenerator.createUniqueInstance(); setup(cat); String categoryURI = resolveCategoryURI(cat.getId()); ClientResponse response = get(categoryURI, CategoryDto.MEDIA_TYPE); CategoryDto dto = response.getEntity(CategoryDto.class); dto.setName("Name_modified"); response = put(resolveCategoryURI(cat.getId() + 10), dto); assertError(response, 404, APIError.NON_EXISTENT_CATEGORY); } @Test public void modifyCategoryRaises409WhenDuplicatedName() throws Exception { Category cat = categoryGenerator.createUniqueInstance(); setup(cat); String categoryURI = resolveCategoryURI(cat.getId()); ClientResponse response = get(categoryURI, CategoryDto.MEDIA_TYPE); CategoryDto dto = response.getEntity(CategoryDto.class); dto.setName(category.getName()); // Duplicated name response = put(categoryURI, dto); assertError(response, 409, APIError.CATEGORY_DUPLICATED_NAME); } @Test public void deleteCategory() throws Exception { String categoryURL = resolveCategoryURI(category.getId()); ClientResponse response = delete(categoryURL, SYSADMIN, SYSADMIN); assertEquals(response.getStatusCode(), 204); response = get(categoryURL, CategoryDto.MEDIA_TYPE); assertError(response, 404, APIError.NON_EXISTENT_CATEGORY); } @Test public void deleteCategoryRaises404WhenNotFound() throws Exception { String categoryURL = resolveCategoryURI(category.getId() + 10); ClientResponse response = delete(categoryURL); assertError(response, 404, APIError.NON_EXISTENT_CATEGORY); } @Test public void deleteCategoryRaises409WhenNotErasable() throws Exception { Category cat = categoryGenerator.createUniqueInstance(); cat.setErasable(false); setup(cat); String categoryURL = resolveCategoryURI(cat.getId()); ClientResponse response = delete(categoryURL); assertError(response, 409, APIError.CATEGORY_NOT_ERASABLE); } }