- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 37 for fails (0.02 sec)
-
DictCrudTestBase.java
the License. L15: */ L16:package org.codelibs.fess.it.admin.dict; L17: L18:import static org.junit.jupiter.api.Assertions.assertEquals; L19:import static org.junit.jupiter.api.Assertions.assertTrue; L20:import static org.junit.jupiter.api.Assertions.fail; L21: L22:import java.util.ArrayList; L23:import java.util.HashMap; L24:import java.util.List; L25:import java.util.Map; L26: L27:import org.codelibs.fess.it.CrudTestBase; L28:import org.junit.jupiter.api.BeforeEach; L29: L30:import io.restassured...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.3K bytes -
GeneralTests.java
getItemEndpointSuffix() { L63: return ITEM_ENDPOINT_SUFFIX; L64: } L65: L66: @Override L67: protected Map<String, Object> createTestParam(int id) { L68: fail(); // Unreachable L69: return null; L70: } L71: L72: @Override L73: protected Map<String, Object> getUpdateMap() { L74: fail(); // Unreachable L75: return null; L76: } L77: L78: @Override L79: protected void testRead() { L80: final Map<String, Object> searchBody = new HashMap<>();...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.6K bytes -
TermQueryCommandTest.java
imestamp\":{\"order\":\"asc\"}}", "sort:timestamp.asc"); L117: assertQueryBuilder("{\"timestamp\":{\"order\":\"desc\"}}", "sort:timestamp.desc"); L118: L119: try { L120: assertQueryBuilder("", "sort:xxx"); L121: fail(); L122: } catch (InvalidQueryException e) { L123: // nothing L124: } L125: } L126: L127: public void test_convertTermQuery_dismax() throws Exception { L128: setQueryType("dismax"); L129: assertQueryBui...github.com/codelibs/fess/src/test/java/org/code...Thu Jul 11 08:26:36 UTC 2024 9.2K bytes -
RankFusionProcessorTest.java
list.getPageSize()); L55: assertEquals(0, list.getStart()); L56: assertEquals("0", list.get(0).get(ID_FIELD)); L57: assertEquals("9", list.get(9).get(ID_FIELD)); L58: } else { L59: fail(); L60: } L61: L62: if (rankFusionProcessor.search(query, new TestSearchRequestParams(10, pageSize, 0), L63: OptionalThing.empty()) instanceof QueryResponseList list) { L64: assertEquals(pageSize,...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 25.6K bytes -
ScriptExecutorJob.java
.toString()); L111: } L112: jobLog.setJobStatus(Constants.OK); L113: } catch (final Throwable t) { L114: logger.warn("Failed to execute {}: {}", id, script, t); L115: jobLog.setJobStatus(Constants.FAIL); L116: jobLog.setScriptResult(systemHelper.abbreviateLongText(t.getLocalizedMessage())); L117: } finally { L118: if (task != null) { L119: try { L120: task.stop(); L121: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.3K bytes -
JobLogTests.java
getItemEndpointSuffix() { L62: return ITEM_ENDPOINT_SUFFIX; L63: } L64: L65: @Override L66: protected Map<String, Object> createTestParam(int id) { L67: fail(); // Unreachable L68: return null; L69: } L70: L71: @Override L72: protected Map<String, Object> getUpdateMap() { L73: fail(); // Unreachable L74: return null; L75: } L76: L77: @Override L78: protected void testRead() { L79: final Map<String, Object> searchBody = new HashMap<>();...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.5K bytes -
StopwordsTests.java
L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.it.admin.dict; L17: L18:import static org.junit.jupiter.api.Assertions.fail; L19: L20:import java.util.HashMap; L21:import java.util.Map; L22: L23:import org.junit.jupiter.api.Tag; L24:import org.junit.jupiter.api.Test; L25: L26:@Tag("it") L27:public class StopwordsTests extends DictCrudTestBase { L28: L29: private static...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
SystemInfoTests.java
getItemEndpointSuffix() { L63: return ITEM_ENDPOINT_SUFFIX; L64: } L65: L66: @Override L67: protected Map<String, Object> createTestParam(int id) { L68: fail(); // Unreachable L69: return null; L70: } L71: L72: @Override L73: protected Map<String, Object> getUpdateMap() { L74: fail(); // Unreachable L75: return null; L76: } L77: L78: @Override L79: protected void testRead() { L80: final Map<String, Object> searchBody = new HashMap<>();...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.8K bytes -
ProtwordsTests.java
L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.it.admin.dict; L17: L18:import static org.junit.jupiter.api.Assertions.fail; L19: L20:import java.util.HashMap; L21:import java.util.Map; L22: L23:import org.junit.jupiter.api.Tag; L24:import org.junit.jupiter.api.Test; L25: L26:@Tag("it") L27:public class ProtwordsTests extends DictCrudTestBase { L28: L29: private static...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
FessXpathTransformerTest.java
Data("X-Robots-Tag", "noindex,nofollow"); L322: L323: try { L324: transformer.processXRobotsTag(responseData, new ResultData()); L325: fail(); L326: } catch (ChildUrlsException e) { L327: assertTrue(e.getChildUrlList().isEmpty()); L328: } catch (Exception e) { L329: fail(); L330: } L331: } L332: L333: public void test_processXRobotsTag_noindex() throws Exception { L334: final String data = "<meta name=\"robots\"...github.com/codelibs/fess/src/test/java/org/code...Thu Oct 24 13:01:38 UTC 2024 41.3K bytes