webidor/src/test/java/cz/xelfi/quoridor/webidor/QuoridorTest.java
changeset 35 2e85dd878f04
child 37 782d925cb5a1
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/webidor/src/test/java/cz/xelfi/quoridor/webidor/QuoridorTest.java	Sun Jul 12 13:59:07 2009 +0200
     1.3 @@ -0,0 +1,88 @@
     1.4 +/*
     1.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     1.6 + *
     1.7 + * The contents of this file are subject to the terms of either the GNU
     1.8 + * General Public License Version 2 only ("GPL") or the Common
     1.9 + * Development and Distribution License("CDDL") (collectively, the
    1.10 + * "License"). You may not use this file except in compliance with the
    1.11 + * License. You can obtain a copy of the License at
    1.12 + * http://www.netbeans.org/cddl-gplv2.html
    1.13 + * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    1.14 + * specific language governing permissions and limitations under the
    1.15 + * License.  When distributing the software, include this License Header
    1.16 + * Notice in each file and include the License file at
    1.17 + * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    1.18 + * particular file as subject to the "Classpath" exception as provided
    1.19 + * by Sun in the GPL Version 2 section of the License file that
    1.20 + * accompanied this code. If applicable, add the following below the
    1.21 + * License Header, with the fields enclosed by brackets [] replaced by
    1.22 + * your own identifying information:
    1.23 + * "Portions Copyrighted [year] [name of copyright owner]"
    1.24 + *
    1.25 + * Contributor(s):
    1.26 + *
    1.27 + * Portions Copyrighted 2009 Jaroslav Tulach
    1.28 + */
    1.29 +
    1.30 +package cz.xelfi.quoridor.webidor;
    1.31 +
    1.32 +import com.sun.jersey.api.client.GenericType;
    1.33 +import com.sun.jersey.api.client.UniformInterfaceException;
    1.34 +import com.sun.jersey.core.header.MediaTypes;
    1.35 +import com.sun.jersey.test.framework.JerseyTest;
    1.36 +import java.util.List;
    1.37 +import org.junit.Test;
    1.38 +import static org.junit.Assert.*;
    1.39 +
    1.40 +/**
    1.41 + *
    1.42 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.43 + */
    1.44 +public class QuoridorTest extends JerseyTest {
    1.45 +
    1.46 +    public QuoridorTest() throws Exception {
    1.47 +        super("cz.xelfi.quoridor.webidor.resources");
    1.48 +    }
    1.49 +
    1.50 +    /**
    1.51 +     * Test if a WADL document is available at the relative path
    1.52 +     * "application.wadl".
    1.53 +     */
    1.54 +    @Test public void testApplicationWadl() {
    1.55 +        String serviceWadl = webResource.path("application.wadl").
    1.56 +                accept(MediaTypes.WADL).get(String.class);
    1.57 +        assertTrue(serviceWadl.length() > 0);
    1.58 +    }
    1.59 +
    1.60 +    @Test public void testCreateAGame() {
    1.61 +        Game s = webResource.path("games").queryParam("white", "Jarda")
    1.62 +                .queryParam("black", "Jirka").post(Game.class);
    1.63 +
    1.64 +        String msg = webResource.path("games").get(String.class);
    1.65 +        //List<Game> games =  webResource.path("games").get(new GenericType<List<Game>>() {});
    1.66 +
    1.67 +        GenericType<List<Game>> gType = new GenericType<List<Game>>() {};
    1.68 +
    1.69 +        List<Game> games = webResource.path("games").accept("application/json").get(gType);
    1.70 +        assertEquals("One game", 1, games.size());
    1.71 +        assertEquals("Same white", "Jarda", games.get(0).getWhite());
    1.72 +        assertEquals("Same black", "Jirka", games.get(0).getBlack());
    1.73 +
    1.74 +        Game s1 = webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(Game.class);
    1.75 +        try {
    1.76 +            Game s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(Game.class);
    1.77 +            fail("Not Jarda's turn, previous call shall fail");
    1.78 +        } catch (UniformInterfaceException ex) {
    1.79 +            // OK
    1.80 +        }
    1.81 +        try {
    1.82 +            Game s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "NONSENCE").put(Game.class);
    1.83 +            fail("Invalid move");
    1.84 +        } catch (UniformInterfaceException ex) {
    1.85 +            // OK
    1.86 +        }
    1.87 +        Game s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "S").put(Game.class);
    1.88 +        assertNotNull("Successful move", s2);
    1.89 +    }
    1.90 +
    1.91 +}