webidor/src/test/java/cz/xelfi/quoridor/webidor/QuoridorTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 30 Aug 2009 14:37:47 +0200
changeset 48 69e897fe8140
parent 46 71e4cf307c93
child 54 f041b6570ff9
permissions -rw-r--r--
Spliting Game into GameId and Game with full info about the state of the game
     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 cz.xelfi.quoridor.Board;
    34 import cz.xelfi.quoridor.Move;
    35 import cz.xelfi.quoridor.webidor.resources.Games;
    36 import java.io.File;
    37 import java.io.FileReader;
    38 import java.io.IOException;
    39 import java.util.List;
    40 import java.util.Map;
    41 import javax.ws.rs.core.MediaType;
    42 import org.junit.Test;
    43 import static org.junit.Assert.*;
    44 
    45 /**
    46  *
    47  * @author Jaroslav Tulach <jtulach@netbeans.org>
    48  */
    49 public class QuoridorTest extends JerseyTest {
    50     private File dir;
    51 
    52     public QuoridorTest() throws Exception {
    53         super("cz.xelfi.quoridor.webidor.resources");
    54     }
    55 
    56     @Override
    57     public void setUp() throws Exception {
    58         dir = File.createTempFile("quoridor", ".dir");
    59         dir.delete();
    60         System.setProperty("quoridor.dir", dir.getPath());
    61         super.setUp();
    62     }
    63 
    64     @Override
    65     public void tearDown() throws Exception {
    66         super.tearDown();
    67         deleteRec(dir);
    68     }
    69 
    70     static void deleteRec(File dir) throws IOException {
    71         if (dir == null) {
    72             return;
    73         }
    74         File[] arr = dir.listFiles();
    75         if (arr != null) {
    76             for (File f : arr) {
    77                 deleteRec(f);
    78             }
    79         }
    80         dir.delete();
    81     }
    82 
    83     /**
    84      * Test if a WADL document is available at the relative path
    85      * "application.wadl".
    86      */
    87     @Test public void testApplicationWadl() {
    88         String serviceWadl = webResource.path("application.wadl").
    89                 accept(MediaTypes.WADL).get(String.class);
    90         assertTrue(serviceWadl.length() > 0);
    91     }
    92 
    93     @Test public void testCreateAGame() throws Exception {
    94         webResource = webResource.path("api");
    95         GameId s = webResource.path("games").queryParam("white", "Jarda")
    96                 .queryParam("black", "Jirka").post(GameId.class);
    97 
    98         String msg = webResource.path("games").get(String.class);
    99         //List<Game> games =  webResource.path("games").get(new GenericType<List<Game>>() {});
   100 
   101         GenericType<List<GameId>> gType = new GenericType<List<GameId>>() {};
   102 
   103         List<GameId> games = webResource.path("games").accept("application/json").get(gType);
   104         assertEquals("One game", 1, games.size());
   105         assertEquals("Same white", "Jarda", games.get(0).getWhite());
   106         assertEquals("Same black", "Jirka", games.get(0).getBlack());
   107 
   108         GameId s1 = webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   109         try {
   110             GameId s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   111             fail("Not Jarda's turn, previous call shall fail");
   112         } catch (UniformInterfaceException ex) {
   113             // OK
   114         }
   115         try {
   116             GameId s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "NONSENCE").put(GameId.class);
   117             fail("Invalid move");
   118         } catch (UniformInterfaceException ex) {
   119             // OK
   120         }
   121         GameId s2 = webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
   122         assertNotNull("Successful move", s2);
   123 
   124         File game = new File(new File(dir, "games"), s2.getId());
   125         assertTrue("File for game exists", game.exists());
   126 
   127         char[] arr = new char[4096];
   128         FileReader gameContent = new FileReader(game);
   129         int len = gameContent.read(arr);
   130         String content = new String(arr, 0, len);
   131 
   132         if (!content.contains("# white: Jarda")) {
   133             fail(content);
   134         }
   135         if (!content.contains("# black: Jirka")) {
   136             fail(content);
   137         }
   138         if (!content.contains("N S")) {
   139             fail(content);
   140         }
   141 
   142         Games read = new Games(new File(dir, "games"));
   143         List<Game> readGames = read.getGames();
   144         assertEquals("One game read", 1, readGames.size());
   145         Board board = readGames.get(0).getBoard();
   146         assertEquals(1, board.getPlayers().get(0).getRow());
   147         assertEquals(7, board.getPlayers().get(1).getRow());
   148         assertEquals(Move.NORTH, readGames.get(0).getMoves().get(0));
   149         assertEquals(Move.SOUTH, readGames.get(0).getMoves().get(1));
   150 
   151         class GMap extends GenericType<Map<String,Object>>{}
   152         String text = webResource.path("games").path(s.getId()).accept(MediaType.TEXT_PLAIN).get(String.class);
   153         if (text.indexOf("-----") == -1) {
   154             fail("Expecting board:\n" + text);
   155         }
   156         Game readGame = webResource.path("games").path(s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
   157         assertNotNull("Game really returned", readGame);
   158         assertEquals("Same game as in text representation", readGame.getBoard(), Board.valueOf(text));
   159         assertEquals("It is same as text of our game", readGame.getBoard().toString(), text);
   160 
   161         assertEquals(Move.NORTH, readGame.getMoves().get(0));
   162         assertEquals(Move.SOUTH, readGame.getMoves().get(1));
   163     }
   164 
   165 }