/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2008-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.web.rest; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import org.junit.Test; import org.opennms.core.test.MockLogAppender; import org.opennms.core.xml.JaxbUtils; import org.opennms.netmgt.model.OnmsGroupList; public class GroupRestServiceTest extends AbstractSpringJerseyRestTestCase { @Override protected void afterServletStart() throws Exception { MockLogAppender.setupLogging(true, "DEBUG"); } @Test public void testGroup() throws Exception { // Testing GET Collection String xml = sendRequest(GET, "/groups", 200); assertTrue(xml.contains("Admin")); OnmsGroupList list = JaxbUtils.unmarshal(OnmsGroupList.class, xml); assertEquals(1, list.getGroups().size()); assertEquals(xml, "Admin", list.getGroups().get(0).getName()); xml = sendRequest(GET, "/groups/Admin", 200); assertTrue(xml.contains(">Admin<")); sendRequest(GET, "/groups/idontexist", 404); } @Test public void testWriteGroup() throws Exception { createGroup("test"); String xml = sendRequest(GET, "/groups/test", 200); assertTrue(xml.contains("<group><name>test</name>")); sendPut("/groups/test", "comments=MONKEYS"); xml = sendRequest(GET, "/groups/test", 200); assertTrue(xml.contains(">MONKEYS<")); } @Test public void testDeleteGroup() throws Exception { createGroup("deleteMe"); String xml = sendRequest(GET, "/groups", 200); assertTrue(xml.contains("deleteMe")); sendRequest(DELETE, "/groups/idontexist", 400); sendRequest(DELETE, "/groups/deleteMe", 200); sendRequest(GET, "/groups/deleteMe", 404); } @Test public void testUsers() throws Exception { createGroup("deleteMe"); sendRequest(PUT, "/groups/deleteMe/users/totallyUniqueUser", 200); String xml = sendRequest(GET, "/groups/deleteMe", 200); assertTrue(xml.contains("totallyUniqueUser")); sendRequest(DELETE, "/groups/deleteMe/users/totallyBogusUser", 400); sendRequest(DELETE, "/groups/deleteMe/users/totallyUniqueUser", 200); xml = sendRequest(GET, "/groups/deleteMe", 200); assertFalse(xml.contains("totallyUniqueUser")); } protected void createGroup(final String groupname) throws Exception { String group = "<group>" + "<name>" + groupname + "</name>" + "<comments>" + groupname + "</comments>" + "</group>"; sendPost("/groups", group); } }