freemarkerdor/src/test/java/cz/xelfi/quoridor/freemarkerdor/UITest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 07 Sep 2009 17:43:43 +0200
changeset 68 33cf89760fab
parent 62 5d36990642b7
child 72 5f081edc8502
permissions -rw-r--r--
Pluggable argument with reference to port
     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.freemarkerdor;
    28 
    29 import com.sun.jersey.api.client.Client;
    30 import com.sun.jersey.api.client.WebResource;
    31 import com.sun.jersey.core.header.MediaTypes;
    32 import java.io.File;
    33 import java.io.IOException;
    34 import java.net.URI;
    35 import java.util.Locale;
    36 import java.util.concurrent.Callable;
    37 import javax.ws.rs.core.Cookie;
    38 import org.junit.After;
    39 import org.junit.Before;
    40 import org.junit.BeforeClass;
    41 import org.junit.Test;
    42 import static org.junit.Assert.*;
    43 
    44 /**
    45  *
    46  * @author Jaroslav Tulach <jtulach@netbeans.org>
    47  */
    48 public class UITest extends Object {
    49     private File dir;
    50     private Callable<Void> stop;
    51     private WebResource webResource;
    52 
    53     public UITest() throws Exception {
    54     }
    55 
    56     @BeforeClass
    57     public static void localeEnglish() {
    58         Locale.setDefault(Locale.ENGLISH);
    59     }
    60 
    61     @Before
    62     public void setUp() throws Exception {
    63         dir = File.createTempFile("quoridor", ".dir");
    64         dir.delete();
    65         System.setProperty("quoridor.dir", dir.getPath());
    66         stop = UI.startServers(9991);
    67 
    68         Client client = new Client();
    69         webResource = client.resource(new URI("http://localhost:9991/"));
    70     }
    71 
    72     @After
    73     public void tearDown() throws Exception {
    74         deleteRec(dir);
    75         if (stop != null) {
    76             stop.call();
    77         }
    78     }
    79 
    80     static void deleteRec(File dir) throws IOException {
    81         if (dir == null) {
    82             return;
    83         }
    84         File[] arr = dir.listFiles();
    85         if (arr != null) {
    86             for (File f : arr) {
    87                 deleteRec(f);
    88             }
    89         }
    90         dir.delete();
    91     }
    92 
    93     /**
    94      * Test if a WADL document is available at the relative path
    95      * "application.wadl".
    96      */
    97     @Test public void testApplicationWadl() {
    98         String serviceWadl = webResource.path("application.wadl").
    99                 accept(MediaTypes.WADL).get(String.class);
   100         assertTrue(serviceWadl.length() > 0);
   101     }
   102 
   103     @Test public void testGetIndexPage() throws Exception {
   104         String res = webResource.accept("text/html").get(String.class);
   105         if (res.indexOf("Quoridor") == -1) {
   106             fail("Wrong index.html:\n" + res);
   107         }
   108         if (res.indexOf("Login") == -1) {
   109             fail("Wrong index.html:\n" + res);
   110         }
   111         if (res.indexOf("action=\"login\"") == -1) {
   112             fail("Wrong index.html:\n" + res);
   113         }
   114         if (res.toLowerCase().indexOf("error") != -1) {
   115             fail("There was an error:\n" + res);
   116         }
   117         res = webResource.cookie(Cookie.valueOf("login=jarda")).accept("text/html").get(String.class);
   118         if (res.indexOf("action=\"games/create\"") == -1) {
   119             fail(res);
   120         }
   121     }
   122 
   123 }