webidor/src/test/java/cz/xelfi/quoridor/webidor/FinishedGameTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 13 Sep 2009 16:48:54 +0200
changeset 82 9ac7acee7d9f
parent 77 d574ac6e44cc
child 83 8dd8b041a3e1
permissions -rw-r--r--
Providing REST like authentication
     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 
    80     @Test public void testCreateAGame() throws Exception {
    81         webResource = webResource.path("api");
    82         String logJarda = webResource.path("login").
    83             queryParam("name", "Jarda").
    84             queryParam("password", "heslo").
    85             accept(MediaType.TEXT_PLAIN).
    86             put(String.class);
    87         String logJirka = webResource.path("login").
    88             queryParam("name", "Jirka").
    89             queryParam("password", "pesko").
    90             accept(MediaType.TEXT_PLAIN).
    91             put(String.class);
    92         assertNotNull("Logged in ok", logJarda);
    93         GameId s = webResource.path("games").queryParam("white", "Jarda")
    94                 .queryParam("loginID", logJarda)
    95                 .queryParam("black", "Jirka").post(GameId.class);
    96 
    97         for (int i = 0; i < 3; i++) {
    98             webResource.path("games/" + s.getId())
    99                 .queryParam("loginID", logJarda)
   100                 .queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   101             webResource.path("games/" + s.getId())
   102                 .queryParam("loginID", logJirka)
   103                 .queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
   104         }
   105 
   106         webResource.path("games/" + s.getId())
   107             .queryParam("loginID", logJarda)
   108             .queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   109         webResource.path("games/" + s.getId())
   110             .queryParam("loginID", logJirka)
   111             .queryParam("player", "Jirka").queryParam("move", "SS").put(GameId.class);
   112 
   113         for (int i = 0; i < 3; i++) {
   114             webResource.path("games/" + s.getId())
   115                 .queryParam("loginID", logJarda)
   116                 .queryParam("player", "Jarda").queryParam("move", "N").put(GameId.class);
   117             webResource.path("games/" + s.getId())
   118                 .queryParam("loginID", logJirka)
   119                 .queryParam("player", "Jirka").queryParam("move", "S").put(GameId.class);
   120         }
   121 
   122         Game end = webResource.path("games/" + s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
   123         assertEquals("BlackWins", GameStatus.blackWon, end.getId().getStatus());
   124     }
   125 
   126     @Test public void testResignAGame() throws Exception {
   127         webResource = webResource.path("api");
   128         String logJarda = webResource.path("login").
   129             queryParam("name", "Jarda").
   130             queryParam("password", "heslo").
   131             accept(MediaType.TEXT_PLAIN).
   132             put(String.class);
   133         GameId s = webResource.path("games").queryParam("white", "Jarda")
   134                 .queryParam("loginID", logJarda)
   135                 .queryParam("black", "Jirka").post(GameId.class);
   136 
   137         webResource.path("games/" + s.getId()).
   138             queryParam("loginID", logJarda).
   139             queryParam("player", "Jarda").
   140             queryParam("move", "RESIGN").put(GameId.class);
   141         Game end = webResource.path("games/" + s.getId()).accept(MediaType.TEXT_XML).get(Game.class);
   142         assertEquals("BlackWins", GameStatus.blackWon, end.getId().getStatus());
   143     }
   144 
   145 }