Test to verify behaviour of getCode and valueOf statistics-and-elo
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Jan 2010 23:08:06 +0100
branchstatistics-and-elo
changeset 181e3fb438103e0
parent 180 c92831d4812c
child 182 8004f8165677
Test to verify behaviour of getCode and valueOf
quoridor/src/test/java/cz/xelfi/quoridor/SerializeCodeTest.java
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/quoridor/src/test/java/cz/xelfi/quoridor/SerializeCodeTest.java	Thu Jan 07 23:08:06 2010 +0100
     1.3 @@ -0,0 +1,73 @@
     1.4 +/*
     1.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     1.6 + *
     1.7 + * The contents of this file are subject to the terms of either the GNU
     1.8 + * General Public License Version 2 only ("GPL") or the Common
     1.9 + * Development and Distribution License("CDDL") (collectively, the
    1.10 + * "License"). You may not use this file except in compliance with the
    1.11 + * License. You can obtain a copy of the License at
    1.12 + * http://www.netbeans.org/cddl-gplv2.html
    1.13 + * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    1.14 + * specific language governing permissions and limitations under the
    1.15 + * License.  When distributing the software, include this License Header
    1.16 + * Notice in each file and include the License file at
    1.17 + * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    1.18 + * particular file as subject to the "Classpath" exception as provided
    1.19 + * by Sun in the GPL Version 2 section of the License file that
    1.20 + * accompanied this code. If applicable, add the following below the
    1.21 + * License Header, with the fields enclosed by brackets [] replaced by
    1.22 + * your own identifying information:
    1.23 + * "Portions Copyrighted [year] [name of copyright owner]"
    1.24 + *
    1.25 + * Contributor(s):
    1.26 + *
    1.27 + * Portions Copyrighted 2009 Jaroslav Tulach
    1.28 + */
    1.29 +package cz.xelfi.quoridor;
    1.30 +
    1.31 +import cz.xelfi.quoridor.Player.Direction;
    1.32 +import java.io.IOException;
    1.33 +
    1.34 +/** Basic tests in simple configuration.
    1.35 + *
    1.36 + * @author Jaroslav Tulach
    1.37 + */
    1.38 +public class SerializeCodeTest extends BoardCase {
    1.39 +    public SerializeCodeTest (String testName) {
    1.40 +        super (testName);
    1.41 +    }
    1.42 +
    1.43 +    @Override
    1.44 +    protected Board move(Board b, int player, Direction... where) throws IllegalPositionException {
    1.45 +        try {
    1.46 +            Board read = reread(b);
    1.47 +            return read.move(read.getPlayers().get(player), where);
    1.48 +        } catch (IOException ex) {
    1.49 +            throw new IllegalStateException(ex);
    1.50 +        }
    1.51 +    }
    1.52 +    protected Board fence(Board b, int player, char x, int y, Fence.Orientation orie)
    1.53 +    throws IllegalPositionException {
    1.54 +        try {
    1.55 +            Board read = reread(b);
    1.56 +            return read.fence(read.getPlayers().get(player), x, y, orie);
    1.57 +        } catch (IOException ex) {
    1.58 +            throw new IllegalStateException(ex);
    1.59 +        }
    1.60 +    }
    1.61 +
    1.62 +    @Override
    1.63 +    protected Board apply(Board b, Move move) throws IllegalPositionException {
    1.64 +        try {
    1.65 +            Board read = reread(b);
    1.66 +            return read.apply(move);
    1.67 +        } catch (IOException ex) {
    1.68 +            throw new IllegalStateException(ex);
    1.69 +        }
    1.70 +    }
    1.71 +
    1.72 +    private Board reread(Board b) throws IOException, IllegalPositionException {
    1.73 +        return Board.valueOf(b.getCode());
    1.74 +    }
    1.75 +
    1.76 +}