/* * Copyright (C) 2011 SeqWare * * This program 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. * * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */ package net.sourceforge.seqware.webservice.resources; import org.junit.Assert; import org.restlet.representation.Representation; /** * * @author mtaschuk */ public class SeqwareAccessionIDResourceTest extends AbstractResourceTest { public SeqwareAccessionIDResourceTest() { super("/SWA/1"); } /** * Test of put method, of class SeqwareAccessionResource. */ @Override public void testPut() { System.out.println(getRelativeURI() + " PUT"); try { Representation rep = resource.put(null); rep.write(System.out); rep.exhaust(); rep.release(); } catch (Exception e) { Assert.fail(e.getMessage()); e.printStackTrace(); } finally { resource.release(); } } @Override public void testGet() { System.out.println(getRelativeURI() + " GET"); try { Representation rep = resource.get(); rep.write(System.out); rep.exhaust(); rep.release(); } catch (Exception e) { Assert.fail(e.getMessage()); e.printStackTrace(); } finally { resource.release(); } } @Override public void testPost() { System.out.println(getRelativeURI() + " POST"); try { Representation rep = resource.post(null); rep.write(System.out); rep.exhaust(); rep.release(); Assert.fail("No Post on " + getRelativeURI()); } catch (Exception e) { System.out.println(e.getMessage()); } finally { resource.release(); } } @Override public void testDelete() { System.out.println(getRelativeURI() + " DELETE"); try { Representation rep = resource.delete(); rep.write(System.out); rep.exhaust(); rep.release(); } catch (Exception e) { Assert.fail(e.getMessage()); e.printStackTrace(); } finally { resource.release(); } } }