[LIB-9] Separate chesshog-uci module
[chesshog.git] / src / test / java / org / hedgecode / chess / uci / command / AbstractCommandTest.java
1 /*
2  * Copyright (c) 2018. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.uci.command;
18
19 import org.junit.Assert;
20 import org.junit.Test;
21 import org.junit.runner.RunWith;
22 import org.junit.runners.JUnit4;
23
24 import org.hedgecode.chess.uci.Acceptor;
25 import org.hedgecode.chess.uci.Engine;
26
27 /**
28  * Tests for {@link AbstractCommand}.
29  *
30  * @author Dmitry Samoshin aka gotty
31  */
32 @RunWith(JUnit4.class)
33 public class AbstractCommandTest extends Assert {
34
35     @Test
36     public void testParseMove() throws Exception {
37
38         String[] correctMoves = {"e2e4", "e7e5", "e1g1", "e7e8q", "0000"};
39         for (String correctMove : correctMoves) {
40             Move move = new AbstractCommand() {
41                 @Override
42                 public void exec(Engine engine, Acceptor acceptor, String params) {
43                     throw new RuntimeException("Don't supported in test class!");
44                 }
45             }.parseMove(correctMove);
46
47             assertNotNull(move);
48         }
49
50         String[] incorrectMoves = {"00e2", "e0e5", "e1j1", "a1a9", "e7e8k"};
51         for (String incorrectMove : incorrectMoves) {
52             Move move = new AbstractCommand() {
53                 @Override
54                 public void exec(Engine engine, Acceptor acceptor, String params) {
55                     throw new RuntimeException("Don't supported in test class!");
56                 }
57             }.parseMove(incorrectMove);
58
59             assertNull(move);
60         }
61     }
62
63 }