webidor/src/test/java/cz/xelfi/quoridor/webidor/FinishedGameTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 18 Oct 2009 21:33:27 +0200
changeset 128 eba04a2569d0
parent 124 90371f3eb106
child 140 04f9d559b8a1
permissions -rw-r--r--
Can list just games with certain status
     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.test.framework.JerseyTest;
    31 import java.io.File;
    32 import java.io.FileOutputStream;
    33 import java.io.IOException;
    34 import java.util.List;
    35 import javax.ws.rs.core.MediaType;
    36 import org.junit.Test;
    37 import static org.junit.Assert.*;
    38 
    39 /**
    40  *
    41  * @author Jaroslav Tulach <jtulach@netbeans.org>
    42  */
    43 public class FinishedGameTest extends JerseyTest {
    44     private File dir;
    45 
    46     public FinishedGameTest() throws Exception {
    47         super("cz.xelfi.quoridor.webidor.resources");
    48     }
    49 
    50     @Override
    51     public void setUp() throws Exception {
    52         dir = File.createTempFile("quoridor", ".dir");
    53         dir.delete();
    54         System.setProperty("quoridor.dir", dir.getPath());
    55         dir.mkdirs();
    56         File passwd = new File(dir, "passwd");
    57         FileOutputStream os = new FileOutputStream(passwd);
    58         os.write("Jarda=heslo\nJirka=pesko\n".getBytes("UTF-8"));
    59         os.close();
    60         super.setUp();
    61     }
    62 
    63     @Override
    64     public void tearDown() throws Exception {
    65         super.tearDown();
    66         deleteRec(dir);
    67     }
    68 
    69     static void deleteRec(File dir) throws IOException {
    70         if (dir == null) {
    71             return;
    72         }
    73         File[] arr = dir.listFiles();
    74         if (arr != null) {
    75             for (File f : arr) {
    76                 deleteRec(f);
    77             }
    78         }
    79         dir.delete();
    80     }
    81     @Test public void testNotLoggedIn() {
    82         String status  = webResource.path("login").queryParam("id", "not-logged-in").
    83                 accept(MediaType.TEXT_PLAIN).get(String.class);
    84         assertEquals("Nobody is logged in", "", status);
    85     }
    86 
    87 
    88     @Test public void testCreateAGame() throws Exception {
    89         String logJarda = webResource.path("login").
    90             queryParam("name", "Jarda").
    91             queryParam("password", "heslo").
    92             accept(MediaType.TEXT_PLAIN).
    93             put(String.class);
    94         String logJirka = webResource.path("login").
    95             queryParam("name", "Jirka").
    96             queryParam("password", "pesko").
    97             accept(MediaType.TEXT_PLAIN).
    98             put(String.class);
    99         assertNotNull("Logged in ok", logJarda);
   100         GameId s = webResource.path("games").queryParam("white", "Jarda")
   101                 .queryParam("loginID", logJarda)
   102                 .queryParam("black", "Jirka").post(GameId.class);
   103 
   104         for (int i = 0; i < 3; i++) {
   105             webResource.path("games/" + s.getId())
   106                 .queryParam("loginID", logJarda)
   107                 .queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   108             webResource.path("games/" + s.getId())
   109                 .queryParam("loginID", logJirka)
   110                 .queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
   111         }
   112 
   113         webResource.path("games/" + s.getId())
   114             .queryParam("loginID", logJarda)
   115             .queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   116         webResource.path("games/" + s.getId())
   117             .queryParam("loginID", logJirka)
   118             .queryParam("player", "Jirka").queryParam("move", "SS").put(GameId.class);
   119 
   120         
   121         GenericType<List<GameId>> gType = new GenericType<List<GameId>>() {};
   122         List<GameId> nothing = webResource.path("games/").queryParam("status", "blackWon").accept(MediaType.TEXT_XML).get(gType);
   123         assertTrue("Nothing has been finished yet: " + nothing, nothing.isEmpty());
   124 
   125         for (int i = 0; i < 3; i++) {
   126             webResource.path("games/" + s.getId())
   127                 .queryParam("loginID", logJarda)
   128                 .queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   129             webResource.path("games/" + s.getId())
   130                 .queryParam("loginID", logJirka)
   131                 .queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
   132         }
   133 
   134 
   135         Game end = webResource.path("games/" + s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
   136         assertEquals("BlackWins", GameStatus.blackWon, end.getId().getStatus());
   137 
   138         List<GameId> something = webResource.path("games/").queryParam("status", "blackWon").accept(MediaType.TEXT_XML).get(gType);
   139 
   140         assertEquals("One game finished: " + something, 1, something.size());
   141         assertEquals("Id is OK", end.getId().getId(), something.get(0).getId());
   142     }
   143 
   144     @Test public void testResignAGame() throws Exception {
   145         String logJarda = webResource.path("login").
   146             queryParam("name", "Jarda").
   147             queryParam("password", "heslo").
   148             accept(MediaType.TEXT_PLAIN).
   149             put(String.class);
   150         GameId s = webResource.path("games").queryParam("white", "Jarda")
   151                 .queryParam("loginID", logJarda)
   152                 .queryParam("black", "Jirka").post(GameId.class);
   153 
   154         webResource.path("games/" + s.getId()).
   155             queryParam("loginID", logJarda).
   156             queryParam("player", "Jarda").
   157             queryParam("move", "RESIGN").put(GameId.class);
   158         Game end = webResource.path("games/" + s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
   159         assertEquals("BlackWins", GameStatus.blackWon, end.getId().getStatus());
   160     }
   161 
   162 }