webidor/src/test/java/cz/xelfi/quoridor/webidor/FinishedGameTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 04 Sep 2009 21:14:33 +0200
changeset 57 fa12b02023a0
child 75 6802034b7a6f
permissions -rw-r--r--
Separating games by their current state
     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 org.w3c.dom.Document;
    44 import static org.junit.Assert.*;
    45 
    46 /**
    47  *
    48  * @author Jaroslav Tulach <jtulach@netbeans.org>
    49  */
    50 public class FinishedGameTest extends JerseyTest {
    51     private File dir;
    52 
    53     public FinishedGameTest() throws Exception {
    54         super("cz.xelfi.quoridor.webidor.resources");
    55     }
    56 
    57     @Override
    58     public void setUp() throws Exception {
    59         dir = File.createTempFile("quoridor", ".dir");
    60         dir.delete();
    61         System.setProperty("quoridor.dir", dir.getPath());
    62         super.setUp();
    63     }
    64 
    65     @Override
    66     public void tearDown() throws Exception {
    67         super.tearDown();
    68         deleteRec(dir);
    69     }
    70 
    71     static void deleteRec(File dir) throws IOException {
    72         if (dir == null) {
    73             return;
    74         }
    75         File[] arr = dir.listFiles();
    76         if (arr != null) {
    77             for (File f : arr) {
    78                 deleteRec(f);
    79             }
    80         }
    81         dir.delete();
    82     }
    83 
    84     @Test public void testCreateAGame() throws Exception {
    85         webResource = webResource.path("api");
    86         GameId s = webResource.path("games").queryParam("white", "Jarda")
    87                 .queryParam("black", "Jirka").post(GameId.class);
    88 
    89         for (int i = 0; i < 3; i++) {
    90             webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
    91             webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
    92         }
    93 
    94         webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
    95         webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "SS").put(GameId.class);
    96 
    97         for (int i = 0; i < 3; i++) {
    98             webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
    99             webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
   100         }
   101 
   102         Game end = webResource.path("games/" + s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
   103         assertEquals("BlackWins", GameResult.BLACK_WON, end.getId().getResult());
   104     }
   105 
   106 }