[LIB-9] Separate chesshog-hedgefish module
[chesshog.git] / src / test / java / org / hedgecode / chess / wiki / WikiBuilderTest.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.wiki;
18
19 import java.util.LinkedList;
20 import java.util.List;
21
22 import org.apache.commons.configuration.HierarchicalConfiguration;
23 import org.apache.commons.configuration.XMLConfiguration;
24
25 import org.junit.Test;
26 import org.junit.runner.RunWith;
27 import org.junit.runners.JUnit4;
28
29 import org.hedgecode.chess.AbstractPositionTest;
30 import org.hedgecode.chess.position.Builder;
31 import org.hedgecode.chess.position.Position;
32
33 /**
34  * Tests for {@link WikiBuilder}.
35  *
36  * @author Dmitry Samoshin aka gotty
37  */
38 @RunWith(JUnit4.class)
39 public class WikiBuilderTest extends AbstractPositionTest implements WikiPositionTest {
40
41     private static final String LINE_REGEX = "\\r?\\n";
42
43     @Test
44     public void testBuild() throws Exception {
45         Builder wikiBuilder = WikiBuilder.getInstance();
46         for (HierarchicalConfiguration testConfig : getXMLConfig().configurationsAt(TESTS)) {
47             setPositionName(
48                     String.format(
49                             MSG_WIKI_POSITION, testConfig.getString(NAME)
50                     )
51             );
52             String wiki = testConfig.getString(WIKI_TAG);
53             Position position = assignPosition(
54                     testConfig.configurationAt(POSITION)
55             );
56             boolean withTemplate = false;
57             if (testConfig.containsKey(WIKI_TEMPLATE)) {
58                 withTemplate = testConfig.getBoolean(WIKI_TEMPLATE);
59             }
60             Wiki.setTemplate(withTemplate);
61             assertStringEquals(
62                     wiki,
63                     wikiBuilder.build(position)
64             );
65         }
66     }
67
68     @Override
69     protected void assertStringEquals(String expected, String actual) {
70         assertNotNull(expected);
71         assertNotNull(actual);
72         String[] expectedLines = expected.split(LINE_REGEX);
73         String[] actualLines = actual.split(LINE_REGEX);
74         assertEquals(
75                 expectedLines.length,
76                 actualLines.length
77         );
78         for (int i = 0; i < expectedLines.length; ++i) {
79             super.assertStringEquals(
80                     expectedLines[i].trim(),
81                     actualLines[i].trim()
82             );
83         }
84     }
85
86     @Override
87     public List<XMLConfiguration> getXMLPositions() throws Exception {
88         List<XMLConfiguration> xmlPositions = new LinkedList<>();
89         for (HierarchicalConfiguration testConfig : getXMLConfig().configurationsAt(TESTS)) {
90             xmlPositions.add(
91                     new XMLConfiguration(
92                             testConfig.configurationAt(POSITION)
93                     )
94             );
95         }
96         return xmlPositions;
97     }
98
99 }