Operation |
Details |
public testQueryParserCQLIndex():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserEmptySearchString():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserSimpleQuery():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithAsteriskAtBeginning():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithBooleanOperators():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithEscapeCharacters():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithIllegalLogicalOperators():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithLogicalOperators():void |
Sequential Tags: | annotations=@Test throws=Exception
| Notes: | TODO Single Quotes at the end or in the middle of a word are currently accepted by the parser, but shouldn't be. Parser has to be changed @Test public void testQueryParserWithClosingQuote() throws Exception { Reader sr = new StringReader("test suche\"");; QueryParser qp = new QueryParser(sr); try { String cqlQuery = qp.parse(); logger.info(cqlQuery); fail("ParseException expected"); } catch (ParseException e) { } } @Test public void testQueryParserWithMiddleQuote() throws Exception { Reader sr = new StringReader("test su\"che");; QueryParser qp = new QueryParser(sr); try { String cqlQuery = qp.parse(); logger.info(cqlQuery); fail("ParseException expected"); } catch (ParseException e) { } } | |
public testQueryParserWithOpeningQuote():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithQuestionMarkAtBeginning():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithQuotes():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithSingleAsterisk():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithSingleQuestionmark():void |
Sequential Tags: | annotations=@Test throws=Exception
| |
public testQueryParserWithSpecialCharacters():void |
Sequential Tags: | annotations=@Test throws=Exception
| |