webidor/src/test/java/cz/xelfi/quoridor/webidor/FinishedGameTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 10 Sep 2009 23:19:40 +0200
changeset 75 6802034b7a6f
parent 57 fa12b02023a0
child 77 d574ac6e44cc
permissions -rw-r--r--
Support for giving up 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.test.framework.JerseyTest;
    30 import java.io.File;
    31 import java.io.IOException;
    32 import javax.ws.rs.core.MediaType;
    33 import org.junit.Test;
    34 import static org.junit.Assert.*;
    35 
    36 /**
    37  *
    38  * @author Jaroslav Tulach <jtulach@netbeans.org>
    39  */
    40 public class FinishedGameTest extends JerseyTest {
    41     private File dir;
    42 
    43     public FinishedGameTest() throws Exception {
    44         super("cz.xelfi.quoridor.webidor.resources");
    45     }
    46 
    47     @Override
    48     public void setUp() throws Exception {
    49         dir = File.createTempFile("quoridor", ".dir");
    50         dir.delete();
    51         System.setProperty("quoridor.dir", dir.getPath());
    52         super.setUp();
    53     }
    54 
    55     @Override
    56     public void tearDown() throws Exception {
    57         super.tearDown();
    58         deleteRec(dir);
    59     }
    60 
    61     static void deleteRec(File dir) throws IOException {
    62         if (dir == null) {
    63             return;
    64         }
    65         File[] arr = dir.listFiles();
    66         if (arr != null) {
    67             for (File f : arr) {
    68                 deleteRec(f);
    69             }
    70         }
    71         dir.delete();
    72     }
    73 
    74     @Test public void testCreateAGame() throws Exception {
    75         webResource = webResource.path("api");
    76         GameId s = webResource.path("games").queryParam("white", "Jarda")
    77                 .queryParam("black", "Jirka").post(GameId.class);
    78 
    79         for (int i = 0; i < 3; i++) {
    80             webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
    81             webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
    82         }
    83 
    84         webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
    85         webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "SS").put(GameId.class);
    86 
    87         for (int i = 0; i < 3; i++) {
    88             webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
    89             webResource.path("games/" + s.getId()).queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
    90         }
    91 
    92         Game end = webResource.path("games/" + s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
    93         assertEquals("BlackWins", GameResult.BLACK_WON, end.getId().getResult());
    94     }
    95 
    96     @Test public void testResignAGame() throws Exception {
    97         webResource = webResource.path("api");
    98         GameId s = webResource.path("games").queryParam("white", "Jarda")
    99                 .queryParam("black", "Jirka").post(GameId.class);
   100 
   101         webResource.path("games/" + s.getId()).queryParam("player", "Jarda").queryParam("move", "RESIGN").put(GameId.class);
   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 }