Merge pull request #1706 from igarash1/master

some unit tests for util
This commit is contained in:
Shinsuke Sugaya 2018-06-14 04:57:21 +09:00 committed by GitHub
commit abd11117dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 150 additions and 0 deletions

View file

@ -0,0 +1,36 @@
/*
* Copyright 2012-2018 CodeLibs Project and the Others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.codelibs.fess.util;
import org.codelibs.fess.unit.UnitFessTestCase;
public class DocListTest extends UnitFessTestCase {
public void test_DocList() {
DocList docList = new DocList();
assertEquals(0, docList.getContentSize());
assertEquals(0, docList.getProcessingTime());
docList.addContentSize(1000);
docList.addProcessingTime(999);
assertEquals(1000, docList.getContentSize());
assertEquals(999, docList.getProcessingTime());
docList.clear();
assertEquals(0, docList.getContentSize());
assertEquals(0, docList.getProcessingTime());
}
}

View file

@ -0,0 +1,48 @@
/*
* Copyright 2012-2018 CodeLibs Project and the Others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.codelibs.fess.util;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.Iterator;
import org.codelibs.fess.unit.UnitFessTestCase;
public class DocMapTest extends UnitFessTestCase {
public void test_DocList() {
Map<String, Object> value = new LinkedHashMap<>();
DocMap docMap = new DocMap(value);
assertTrue(docMap.isEmpty());
value.clear();
List<String> keys = Arrays.asList("test_2", "test_0", "lang", "test_1");
value.put(keys.get(0), true);
value.put(keys.get(1), 1000);
value.put(keys.get(2), "ja");
value.put(keys.get(3), "str");
docMap = new DocMap(value);
assertFalse(docMap.isEmpty());
Set<Map.Entry<String, Object>> actual = docMap.entrySet();
assertTrue(actual.size() == keys.size());
docMap.clear();
assertTrue(docMap.isEmpty());
}
}

View file

@ -0,0 +1,66 @@
/*
* Copyright 2012-2018 CodeLibs Project and the Others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.codelibs.fess.util;
import java.util.List;
import java.util.Arrays;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import org.codelibs.fess.unit.UnitFessTestCase;
public class KuromojiCSVUtilTest extends UnitFessTestCase {
public void test_parse() {
String value;
List<String> expected;
List<String> actual;
value = "フェス";
expected = Arrays.asList("フェス");
actual = Arrays.asList(KuromojiCSVUtil.parse(value));
assertThat(actual, is(expected));
value = "フェス,Fess";
expected = Arrays.asList("フェス", "Fess");
actual = Arrays.asList(KuromojiCSVUtil.parse(value));
assertThat(actual, is(expected));
value = "Fess,フェス";
expected = Arrays.asList("Fess", "フェス");
actual = Arrays.asList(KuromojiCSVUtil.parse(value));
assertThat(actual, is(expected));
value = "\"Fess,FESS\"";
expected = Arrays.asList("\"Fess,FESS\"");
actual = Arrays.asList(KuromojiCSVUtil.parse(value));
assertThat(actual, is(expected));
value = " ";
expected = Arrays.asList(" ");
actual = Arrays.asList(KuromojiCSVUtil.parse(value));
assertThat(actual, is(expected));
value = "";
expected = Arrays.asList("");
actual = Arrays.asList(KuromojiCSVUtil.parse(value));
assertThat(actual, is(expected));
value = "\"Fess\"Fess\"";
expected = Arrays.asList();
actual = Arrays.asList(KuromojiCSVUtil.parse(value));
assertThat(actual, is(expected));
}
}