blob: 387b21f0eaa37251d86954d44b26362cce4b181e [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.apache.wiki.providers;
import org.apache.wiki.WikiPage;
import org.apache.wiki.api.search.QueryItem;
import org.apache.wiki.api.search.SearchResult;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class SearchAdapterTest {
@Test
public void testOldQueryItemfrom() {
final QueryItem qi = new QueryItem();
qi.type = 1;
qi.word = "word";
final org.apache.wiki.search.QueryItem old = SearchAdapter.oldQueryItemfrom( qi );
Assertions.assertEquals( qi.type, old.type );
Assertions.assertEquals( qi.word, old.word );
}
@Test
public void testNewSearchResultFrom() {
final org.apache.wiki.search.SearchResult old = new org.apache.wiki.search.SearchResult() {
@Override
public WikiPage getPage() {
return null;
}
@Override
public int getScore() {
return 0;
}
@Override
public String[] getContexts() {
return new String[ 0 ];
}
};
final SearchResult sr = SearchAdapter.newSearchResultFrom( old );
Assertions.assertEquals( old.getPage(), sr.getPage() );
Assertions.assertEquals( old.getScore(), sr.getScore() );
Assertions.assertArrayEquals( old.getContexts(), sr.getContexts() );
}
}