-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for patterned model mapping (#2653)
* Add a test that shows the effect of expanding a query with a patterned forward mapping. * Created by request as part of datawave-metadata-utils/pull/39.
- Loading branch information
Showing
3 changed files
with
200 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
197 changes: 197 additions & 0 deletions
197
warehouse/query-core/src/test/java/datawave/query/transformer/QueryModelExpansionTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,197 @@ | ||
package datawave.query.transformer; | ||
|
||
import java.text.DateFormat; | ||
import java.text.ParseException; | ||
import java.text.SimpleDateFormat; | ||
import java.util.Collections; | ||
import java.util.Date; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.Set; | ||
import java.util.TimeZone; | ||
import java.util.UUID; | ||
|
||
import javax.inject.Inject; | ||
|
||
import org.apache.accumulo.core.client.AccumuloClient; | ||
import org.apache.accumulo.core.security.Authorizations; | ||
import org.apache.commons.jexl3.parser.ASTJexlScript; | ||
import org.apache.log4j.Logger; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.arquillian.junit.Arquillian; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.asset.StringAsset; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.After; | ||
import org.junit.AfterClass; | ||
import org.junit.Before; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.rules.TemporaryFolder; | ||
import org.junit.runner.RunWith; | ||
|
||
import datawave.configuration.spring.SpringBean; | ||
import datawave.core.query.configuration.GenericQueryConfiguration; | ||
import datawave.helpers.PrintUtility; | ||
import datawave.ingest.data.TypeRegistry; | ||
import datawave.microservice.query.QueryImpl; | ||
import datawave.query.QueryParameters; | ||
import datawave.query.QueryTestTableHelper; | ||
import datawave.query.RebuildingScannerTestHelper; | ||
import datawave.query.function.deserializer.KryoDocumentDeserializer; | ||
import datawave.query.jexl.JexlASTHelper; | ||
import datawave.query.tables.ShardQueryLogic; | ||
import datawave.query.tables.edge.DefaultEdgeEventQueryLogic; | ||
import datawave.query.util.VisibilityWiseGuysIngestWithModel; | ||
import datawave.test.JexlNodeAssert; | ||
import datawave.util.TableName; | ||
import datawave.webservice.edgedictionary.RemoteEdgeDictionary; | ||
|
||
/** | ||
* Tests the expansion of queries from the query model. | ||
*/ | ||
public abstract class QueryModelExpansionTests { | ||
|
||
@RunWith(Arquillian.class) | ||
public static class ShardRange extends QueryModelExpansionTests { | ||
|
||
@Override | ||
protected VisibilityWiseGuysIngestWithModel.WhatKindaRange getRange() { | ||
return VisibilityWiseGuysIngestWithModel.WhatKindaRange.SHARD; | ||
} | ||
} | ||
|
||
@RunWith(Arquillian.class) | ||
public static class DocumentRange extends QueryModelExpansionTests { | ||
|
||
@Override | ||
protected VisibilityWiseGuysIngestWithModel.WhatKindaRange getRange() { | ||
return VisibilityWiseGuysIngestWithModel.WhatKindaRange.DOCUMENT; | ||
} | ||
} | ||
|
||
@Rule | ||
public TemporaryFolder temporaryFolder = new TemporaryFolder(); | ||
|
||
private static final Logger log = Logger.getLogger(QueryModelExpansionTests.class); | ||
private static final Authorizations auths = new Authorizations("ALL", "E", "I"); | ||
|
||
@Inject | ||
@SpringBean(name = "EventQuery") | ||
protected ShardQueryLogic logic; | ||
protected Set<Authorizations> authSet = Collections.singleton(auths); | ||
protected KryoDocumentDeserializer deserializer; | ||
|
||
private final DateFormat format = new SimpleDateFormat("yyyyMMdd"); | ||
private final Map<String,String> queryParameters = new HashMap<>(); | ||
private Date startDate; | ||
private Date endDate; | ||
private String query; | ||
private String expectedPlan; | ||
|
||
@Deployment | ||
public static JavaArchive createDeployment() { | ||
return ShrinkWrap.create(JavaArchive.class) | ||
.addPackages(true, "org.apache.deltaspike", "io.astefanutti.metrics.cdi", "datawave.query", "org.jboss.logging", | ||
"datawave.webservice.query.result.event") | ||
.deleteClass(DefaultEdgeEventQueryLogic.class).deleteClass(RemoteEdgeDictionary.class) | ||
.deleteClass(datawave.query.metrics.QueryMetricQueryLogic.class) | ||
.addAsManifestResource(new StringAsset( | ||
"<alternatives>" + "<stereotype>datawave.query.tables.edge.MockAlternative</stereotype>" + "</alternatives>"), | ||
"beans.xml"); | ||
} | ||
|
||
@AfterClass | ||
public static void teardown() { | ||
TypeRegistry.reset(); | ||
} | ||
|
||
@Before | ||
public void setup() throws ParseException { | ||
TimeZone.setDefault(TimeZone.getTimeZone("GMT")); | ||
|
||
this.logic.setFullTableScanEnabled(true); | ||
this.logic.setMaxEvaluationPipelines(1); | ||
this.logic.setQueryExecutionForPageTimeout(300000000000000L); | ||
this.deserializer = new KryoDocumentDeserializer(); | ||
this.startDate = format.parse("20091231"); | ||
this.endDate = format.parse("20150101"); | ||
} | ||
|
||
@After | ||
public void tearDown() { | ||
queryParameters.clear(); | ||
} | ||
|
||
protected abstract VisibilityWiseGuysIngestWithModel.WhatKindaRange getRange(); | ||
|
||
private void runTestQuery() throws Exception { | ||
log.debug("test plan against expected plan"); | ||
|
||
QueryImpl settings = new QueryImpl(); | ||
settings.setBeginDate(this.startDate); | ||
settings.setEndDate(this.endDate); | ||
settings.setPagesize(Integer.MAX_VALUE); | ||
settings.setQueryAuthorizations(auths.serialize()); | ||
settings.setQuery(this.query); | ||
settings.setParameters(this.queryParameters); | ||
settings.setId(UUID.randomUUID()); | ||
|
||
log.debug("query: " + settings.getQuery()); | ||
log.debug("logic: " + settings.getQueryLogicName()); | ||
|
||
AccumuloClient client = createClient(); | ||
GenericQueryConfiguration config = logic.initialize(client, settings, authSet); | ||
logic.setupQuery(config); | ||
|
||
String plan = logic.getPlan(client, settings, authSet, true, true); | ||
|
||
// order of terms in planned script is arbitrary, fall back to comparing the jexl trees | ||
ASTJexlScript plannedScript = JexlASTHelper.parseJexlQuery(plan); | ||
ASTJexlScript expectedScript = JexlASTHelper.parseJexlQuery(this.expectedPlan); | ||
JexlNodeAssert.assertThat(plannedScript).isEqualTo(expectedScript); | ||
} | ||
|
||
private AccumuloClient createClient() throws Exception { | ||
AccumuloClient client = new QueryTestTableHelper(getClass().getName(), log, RebuildingScannerTestHelper.TEARDOWN.NEVER, | ||
RebuildingScannerTestHelper.INTERRUPT.NEVER).client; | ||
VisibilityWiseGuysIngestWithModel.writeItAll(client, getRange()); | ||
PrintUtility.printTable(client, auths, TableName.SHARD); | ||
PrintUtility.printTable(client, auths, TableName.SHARD_INDEX); | ||
PrintUtility.printTable(client, auths, QueryTestTableHelper.MODEL_TABLE_NAME); | ||
return client; | ||
} | ||
|
||
private void givenQueryParameter(String key, String value) { | ||
this.queryParameters.put(key, value); | ||
} | ||
|
||
private void givenQuery(String query) { | ||
this.query = query; | ||
} | ||
|
||
private void givenExpectedPlan(String expectedPlan) { | ||
this.expectedPlan = expectedPlan; | ||
} | ||
|
||
/** | ||
* Verify that expansion occurs for a standard forward mapping. | ||
*/ | ||
@Test | ||
public void testBasicExpansion() { | ||
givenQuery("COLOR == 'blue'"); | ||
givenQuery("COLOR == 'blue' || HUE == 'blue'"); | ||
} | ||
|
||
/** | ||
* Verifies that a patterned model mapping expands the query. | ||
*/ | ||
@Test | ||
public void testPatternedModelExpansion() throws Exception { | ||
givenQuery("NAM == 'amy'"); | ||
givenExpectedPlan("NAME == 'amy' || NOME == 'amy'"); | ||
|
||
runTestQuery(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters