webidor/src/test/java/cz/xelfi/quoridor/webidor/QuoridorTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 12 Jul 2009 13:59:07 +0200
changeset 35 2e85dd878f04
child 37 782d925cb5a1
permissions -rw-r--r--
Converting the webidor into Jersey based REST server
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor.webidor;
    28 
    29 import com.sun.jersey.api.client.GenericType;
    30 import com.sun.jersey.api.client.UniformInterfaceException;
    31 import com.sun.jersey.core.header.MediaTypes;
    32 import com.sun.jersey.test.framework.JerseyTest;
    33 import java.util.List;
    34 import org.junit.Test;
    35 import static org.junit.Assert.*;
    36 
    37 /**
    38  *
    39  * @author Jaroslav Tulach <jtulach@netbeans.org>
    40  */
    41 public class QuoridorTest extends JerseyTest {
    42 
    43     public QuoridorTest() throws Exception {
    44         super("cz.xelfi.quoridor.webidor.resources");
    45     }
    46 
    47     /**
    48      * Test if a WADL document is available at the relative path
    49      * "application.wadl".
    50      */
    51     @Test public void testApplicationWadl() {
    52         String serviceWadl = webResource.path("application.wadl").
    53                 accept(MediaTypes.WADL).get(String.class);
    54         assertTrue(serviceWadl.length() > 0);
    55     }
    56 
    57     @Test public void testCreateAGame() {
    58         Game s = webResource.path("games").queryParam("white", "Jarda")
    59                 .queryParam("black", "Jirka").post(Game.class);
    60 
    61         String msg = webResource.path("games").get(String.class);
    62         //List<Game> games =  webResource.path("games").get(new GenericType<List<Game>>() {});
    63 
    64         GenericType<List<Game>> gType = new GenericType<List<Game>>() {};
    65 
    66         List<Game> games = webResource.path("games").accept("application/json").get(gType);
    67         assertEquals("One game", 1, games.size());
    68         assertEquals("Same white", "Jarda", games.get(0).getWhite());
    69         assertEquals("Same black", "Jirka", games.get(0).getBlack());
    70 
    71         Game s1 = webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(Game.class);
    72         try {
    73             Game s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(Game.class);
    74             fail("Not Jarda's turn, previous call shall fail");
    75         } catch (UniformInterfaceException ex) {
    76             // OK
    77         }
    78         try {
    79             Game s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "NONSENCE").put(Game.class);
    80             fail("Invalid move");
    81         } catch (UniformInterfaceException ex) {
    82             // OK
    83         }
    84         Game s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "S").put(Game.class);
    85         assertNotNull("Successful move", s2);
    86     }
    87 
    88 }