webidor/src/test/java/cz/xelfi/quoridor/webidor/GamesTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 30 Aug 2009 16:04:27 +0200
changeset 52 45fb5f885591
child 79 89bca098e14e
permissions -rw-r--r--
Verifying that empty games can be read
     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 java.io.File;
    31 import java.io.FileOutputStream;
    32 import java.io.IOException;
    33 import org.junit.After;
    34 import org.junit.Before;
    35 import org.junit.Test;
    36 import static org.junit.Assert.*;
    37 
    38 /**
    39  *
    40  * @author Jaroslav Tulach <jtulach@netbeans.org>
    41  */
    42 public class GamesTest extends Object {
    43     private File dir;
    44 
    45     @Before
    46     public void setUp() throws Exception {
    47         dir = File.createTempFile("quoridor", ".dir");
    48         dir.delete();
    49         System.setProperty("quoridor.dir", dir.getPath());
    50     }
    51 
    52     @After
    53     public void tearDown() throws Exception {
    54         deleteRec(dir);
    55     }
    56 
    57     static void deleteRec(File dir) throws IOException {
    58         if (dir == null) {
    59             return;
    60         }
    61         File[] arr = dir.listFiles();
    62         if (arr != null) {
    63             for (File f : arr) {
    64                 deleteRec(f);
    65             }
    66         }
    67         dir.delete();
    68     }
    69 
    70     @Test public void testCreateAGame() throws Exception {
    71         File f = new File(dir, "x");
    72         f.getParentFile().mkdirs();
    73         FileOutputStream os = new FileOutputStream(f);
    74         os.write("# white: W\n# black: B\n# status: IN_PROGRESS\n\n\n".getBytes("UTF-8"));
    75         os.close();
    76 
    77         Games games = new Games(dir);
    78         Game g = games.getBoardInfo("x");
    79         assertNotNull("Game found", g);
    80         assertNotNull("Board found", g.getBoard());
    81         assertEquals("List of moves is empty", 0, g.getMoves().size());
    82     }
    83 
    84 }