webidor/src/test/java/cz/xelfi/quoridor/webidor/GamesTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 08 Nov 2009 10:21:46 +0100
changeset 149 a441b02a638a
parent 117 c1057591a344
child 162 c1bfbe98152b
permissions -rw-r--r--
Changing the port value for each test
     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 cz.xelfi.quoridor.webidor.resources.Games;
    30 import cz.xelfi.quoridor.webidor.resources.Quoridor;
    31 import java.io.File;
    32 import java.io.FileOutputStream;
    33 import java.io.IOException;
    34 import java.util.ResourceBundle;
    35 import org.junit.After;
    36 import org.junit.Before;
    37 import org.junit.Test;
    38 import static org.junit.Assert.*;
    39 
    40 /**
    41  *
    42  * @author Jaroslav Tulach <jtulach@netbeans.org>
    43  */
    44 public class GamesTest extends Object {
    45     static {
    46         System.setProperty("JERSEY_HTTP_PORT", "33436");
    47     }
    48     private File dir;
    49 
    50     @Before
    51     public void setUp() throws Exception {
    52         dir = File.createTempFile("quoridor", ".dir");
    53         dir.delete();
    54         System.setProperty("quoridor.dir", dir.getPath());
    55     }
    56 
    57     @After
    58     public void tearDown() throws Exception {
    59         deleteRec(dir);
    60     }
    61 
    62     static void deleteRec(File dir) throws IOException {
    63         if (dir == null) {
    64             return;
    65         }
    66         File[] arr = dir.listFiles();
    67         if (arr != null) {
    68             for (File f : arr) {
    69                 deleteRec(f);
    70             }
    71         }
    72         dir.delete();
    73     }
    74 
    75     @Test public void testCreateAGame() throws Exception {
    76         File f = new File(dir, "x");
    77         f.getParentFile().mkdirs();
    78         FileOutputStream os = new FileOutputStream(f);
    79         os.write("# white: W\n# black: B\n# status: IN_PROGRESS\nN S\n\n".getBytes("UTF-8"));
    80         os.close();
    81 
    82         Thread.sleep(1000);
    83         
    84         long middle = f.lastModified();
    85 
    86         Thread.sleep(1000);
    87 
    88         Games games = new Games(dir, new Quoridor());
    89         Game g = games.getBoardInfo("x", -1);
    90         assertNotNull("Game found", g);
    91         assertNotNull("Board found", g.getBoard());
    92         assertEquals("List of moves has two", 2, g.getMoves().size());
    93 
    94         assertEquals("Last move is last touch of the file", middle, g.getId().getModified());
    95     }
    96 
    97     @Test public void testLoadGameWithComments() throws Exception {
    98         File f = new File(dir, "x");
    99         f.getParentFile().mkdirs();
   100         FileOutputStream os = new FileOutputStream(f);
   101         os.write("# white: W\n# black: B\n# status: IN_PROGRESS\nN #good move\n... S # ok move\n\n".getBytes("UTF-8"));
   102         os.close();
   103 
   104         Thread.sleep(1000);
   105 
   106         long middle = f.lastModified();
   107 
   108         Thread.sleep(1000);
   109 
   110         Games games = new Games(dir, new Quoridor());
   111         Game g = games.getBoardInfo("x", -1);
   112         assertNotNull("Game found", g);
   113         assertNotNull("Board found", g.getBoard());
   114         assertEquals("List of moves has two", 2, g.getMoves().size());
   115 
   116         assertEquals("Last move is last touch of the file", middle, g.getId().getModified());
   117     }
   118 
   119     @Test public void testLoadGameWithInternationalComments() throws Exception {
   120         File f = new File(dir, "x");
   121         f.getParentFile().mkdirs();
   122         FileOutputStream os = new FileOutputStream(f);
   123         ResourceBundle b = ResourceBundle.getBundle("cz/xelfi/quoridor/webidor/TestBundle");
   124         String comment = b.getString("COMMENT");
   125         os.write(("# white: W\n# black: B\n# status: IN_PROGRESS\nN\n#" +
   126                 comment + "\n... S # ok move\n\n").getBytes("UTF-8"));
   127         os.close();
   128 
   129         Thread.sleep(1000);
   130 
   131         long middle = f.lastModified();
   132 
   133         Thread.sleep(1000);
   134 
   135         Games games = new Games(dir, new Quoridor());
   136         Game g = games.getBoardInfo("x", -1);
   137         assertNotNull("Game found", g);
   138         assertNotNull("Board found", g.getBoard());
   139         assertEquals("List of moves has two", 2, g.getMoves().size());
   140         String commentRead = g.getMoves().get(0).getComments().get(0).getComment();
   141         assertEquals(comment, commentRead);
   142 
   143         assertEquals("Last move is last touch of the file", middle, g.getId().getModified());
   144     }
   145 
   146 }