webidor/src/test/java/cz/xelfi/quoridor/webidor/FinishedGameTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 13 Sep 2009 20:07:32 +0200
changeset 83 8dd8b041a3e1
parent 82 9ac7acee7d9f
child 124 90371f3eb106
permissions -rw-r--r--
Necessary fixes to make the system work at least a bit
     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.FileOutputStream;
    32 import java.io.IOException;
    33 import javax.ws.rs.core.MediaType;
    34 import org.junit.Test;
    35 import static org.junit.Assert.*;
    36 
    37 /**
    38  *
    39  * @author Jaroslav Tulach <jtulach@netbeans.org>
    40  */
    41 public class FinishedGameTest extends JerseyTest {
    42     private File dir;
    43 
    44     public FinishedGameTest() throws Exception {
    45         super("cz.xelfi.quoridor.webidor.resources");
    46     }
    47 
    48     @Override
    49     public void setUp() throws Exception {
    50         dir = File.createTempFile("quoridor", ".dir");
    51         dir.delete();
    52         System.setProperty("quoridor.dir", dir.getPath());
    53         dir.mkdirs();
    54         File passwd = new File(dir, "passwd");
    55         FileOutputStream os = new FileOutputStream(passwd);
    56         os.write("Jarda=heslo\nJirka=pesko\n".getBytes("UTF-8"));
    57         os.close();
    58         super.setUp();
    59     }
    60 
    61     @Override
    62     public void tearDown() throws Exception {
    63         super.tearDown();
    64         deleteRec(dir);
    65     }
    66 
    67     static void deleteRec(File dir) throws IOException {
    68         if (dir == null) {
    69             return;
    70         }
    71         File[] arr = dir.listFiles();
    72         if (arr != null) {
    73             for (File f : arr) {
    74                 deleteRec(f);
    75             }
    76         }
    77         dir.delete();
    78     }
    79     @Test public void testNotLoggedIn() {
    80         webResource = webResource.path("api");
    81         String status  = webResource.path("login").queryParam("id", "not-logged-in").
    82                 accept(MediaType.TEXT_PLAIN).get(String.class);
    83         assertEquals("Nobody is logged in", "", status);
    84     }
    85 
    86 
    87     @Test public void testCreateAGame() throws Exception {
    88         webResource = webResource.path("api");
    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         for (int i = 0; i < 3; i++) {
   121             webResource.path("games/" + s.getId())
   122                 .queryParam("loginID", logJarda)
   123                 .queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   124             webResource.path("games/" + s.getId())
   125                 .queryParam("loginID", logJirka)
   126                 .queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
   127         }
   128 
   129         Game end = webResource.path("games/" + s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
   130         assertEquals("BlackWins", GameStatus.blackWon, end.getId().getStatus());
   131     }
   132 
   133     @Test public void testResignAGame() throws Exception {
   134         webResource = webResource.path("api");
   135         String logJarda = webResource.path("login").
   136             queryParam("name", "Jarda").
   137             queryParam("password", "heslo").
   138             accept(MediaType.TEXT_PLAIN).
   139             put(String.class);
   140         GameId s = webResource.path("games").queryParam("white", "Jarda")
   141                 .queryParam("loginID", logJarda)
   142                 .queryParam("black", "Jirka").post(GameId.class);
   143 
   144         webResource.path("games/" + s.getId()).
   145             queryParam("loginID", logJarda).
   146             queryParam("player", "Jarda").
   147             queryParam("move", "RESIGN").put(GameId.class);
   148         Game end = webResource.path("games/" + s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
   149         assertEquals("BlackWins", GameStatus.blackWon, end.getId().getStatus());
   150     }
   151 
   152 }