webidor/src/test/java/cz/xelfi/quoridor/webidor/GamesTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 13 Sep 2009 16:48:54 +0200
changeset 82 9ac7acee7d9f
parent 79 89bca098e14e
child 100 8b899ed24f9f
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 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 org.junit.After;
    35 import org.junit.Before;
    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 GamesTest extends Object {
    44     private File dir;
    45 
    46     @Before
    47     public void setUp() throws Exception {
    48         dir = File.createTempFile("quoridor", ".dir");
    49         dir.delete();
    50         System.setProperty("quoridor.dir", dir.getPath());
    51     }
    52 
    53     @After
    54     public void tearDown() throws Exception {
    55         deleteRec(dir);
    56     }
    57 
    58     static void deleteRec(File dir) throws IOException {
    59         if (dir == null) {
    60             return;
    61         }
    62         File[] arr = dir.listFiles();
    63         if (arr != null) {
    64             for (File f : arr) {
    65                 deleteRec(f);
    66             }
    67         }
    68         dir.delete();
    69     }
    70 
    71     @Test public void testCreateAGame() throws Exception {
    72         File f = new File(dir, "x");
    73         f.getParentFile().mkdirs();
    74         FileOutputStream os = new FileOutputStream(f);
    75         os.write("# white: W\n# black: B\n# status: IN_PROGRESS\nN S\n\n".getBytes("UTF-8"));
    76         os.close();
    77 
    78         Thread.sleep(1000);
    79         
    80         long middle = f.lastModified();
    81 
    82         Thread.sleep(1000);
    83 
    84         Games games = new Games(dir, new Quoridor());
    85         Game g = games.getBoardInfo("x");
    86         assertNotNull("Game found", g);
    87         assertNotNull("Board found", g.getBoard());
    88         assertEquals("List of moves has two", 2, g.getMoves().size());
    89 
    90         assertEquals("Last move is last touch of the file", middle, g.getId().getModified());
    91     }
    92 
    93 }