/* * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved. * * 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 com.hazelcast.query.impl.extractor.specification; import com.hazelcast.config.Config; import com.hazelcast.config.InMemoryFormat; import com.hazelcast.config.MapAttributeConfig; import com.hazelcast.config.MapConfig; import com.hazelcast.query.Predicates; import com.hazelcast.query.QueryException; import com.hazelcast.query.extractor.ValueCallback; import com.hazelcast.query.extractor.ValueCollector; import com.hazelcast.query.extractor.ValueExtractor; import com.hazelcast.query.extractor.ValueReader; import com.hazelcast.query.impl.extractor.AbstractExtractionTest; import com.hazelcast.test.annotation.ParallelTest; import com.hazelcast.test.annotation.QuickTest; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import java.util.Collection; import java.util.UUID; import static com.hazelcast.config.InMemoryFormat.OBJECT; import static com.hazelcast.query.impl.extractor.AbstractExtractionSpecification.Index.NO_INDEX; import static com.hazelcast.query.impl.extractor.AbstractExtractionSpecification.Multivalue.LIST; import static com.hazelcast.query.impl.extractor.AbstractExtractionSpecification.Multivalue.PORTABLE; import static com.hazelcast.query.impl.extractor.specification.ComplexDataStructure.Person; import static com.hazelcast.query.impl.extractor.specification.ComplexDataStructure.finger; import static com.hazelcast.query.impl.extractor.specification.ComplexDataStructure.limb; import static com.hazelcast.query.impl.extractor.specification.ComplexDataStructure.person; import static com.hazelcast.query.impl.extractor.specification.ComplexDataStructure.tattoos; import static java.util.Arrays.asList; /** * Specification test that verifies the behavior of corner-cases extraction with extractor and arguments. * <p/> * Extraction mechanism: EXTRACTOR-BASED EXTRACTION * <p/> * This test is parametrised on two axes (see the parametrisationData() method): * - in memory format * - indexing * - extraction in collections and arrays */ @RunWith(Parameterized.class) @Category({QuickTest.class, ParallelTest.class}) public class ExtractionWithExtractorsSpecTest extends AbstractExtractionTest { private static final Person BOND = person("Bond", limb("left-hand", tattoos(), finger("thumb"), finger(null)), limb("right-hand", tattoos("knife"), finger("middle"), finger("index")) ); private static final Person KRUEGER = person("Krueger", limb("linke-hand", tattoos("bratwurst"), finger("Zeigefinger"), finger("Mittelfinger")), limb("rechte-hand", tattoos(), finger("Ringfinger"), finger("Daumen")) ); private static final Person HUNT_NULL_LIMB = person("Hunt"); public ExtractionWithExtractorsSpecTest(InMemoryFormat inMemoryFormat, Index index, Multivalue multivalue) { super(inMemoryFormat, index, multivalue); } @Override protected void doWithMap() { // init fully populated object to handle nulls properly if (mv == PORTABLE) { String key = UUID.randomUUID().toString(); map.put(key, KRUEGER.getPortable()); map.remove(key); } } @Test public void extractorWithParam_bondCase() { execute(Input.of(BOND, KRUEGER), Query.of(Predicates.equal("tattoosCount[1]", 1), mv), Expected.of(BOND)); } @Test public void extractorWithParam_kruegerCase() { execute(Input.of(BOND, KRUEGER), Query.of(Predicates.equal("tattoosCount[0]", 1), mv), Expected.of(KRUEGER)); } @Test public void extractorWithParam_nullCollection() { execute(Input.of(HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount[0]", 1), mv), Expected.of(QueryException.class, IllegalArgumentException.class)); } @Test public void extractorWithParam_indexOutOfBound() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount[2]", 1), mv), Expected.of(IndexOutOfBoundsException.class, QueryException.class)); } @Test public void extractorWithParam_negativeInput() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount[-1]", 1), mv), Expected.of(ArrayIndexOutOfBoundsException.class, QueryException.class)); } @Test public void extractorWithParam_wrongInput_noClosingWithArg() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount[0", 1), mv), Expected.of(IllegalArgumentException.class)); } @Test public void extractorWithParam_wrongInput_noOpeningWithArg() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount0]", 1), mv), Expected.of(IllegalArgumentException.class)); } @Test public void extractorWithParam_wrongInput_noClosing() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount[", 1), mv), Expected.of(IllegalArgumentException.class)); } @Test public void extractorWithParam_wrongInput_noOpening() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount]", 1), mv), Expected.of(IllegalArgumentException.class)); } @Test public void extractorWithParam_wrongInput_noArgumentWithBrackets() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount[]", 1), mv), Expected.of(QueryException.class)); } @Test public void extractorWithParam_wrongInput_noArgumentNoBrackets() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount", 1), mv), Expected.of(QueryException.class)); } @Test public void extractorWithParam_wrongInput_squareBracketsInInput() { execute(Input.of(BOND, KRUEGER, HUNT_NULL_LIMB), Query.of(Predicates.equal("tattoosCount[1183[2]3]", 1), mv), Expected.of(QueryException.class)); } protected AbstractExtractionTest.Configurator getInstanceConfigurator() { return new AbstractExtractionTest.Configurator() { @Override public void doWithConfig(Config config, AbstractExtractionTest.Multivalue mv) { MapConfig mapConfig = config.getMapConfig("map"); MapAttributeConfig tattoosCount = new AbstractExtractionTest.TestMapAttributeIndexConfig(); tattoosCount.setName("tattoosCount"); tattoosCount.setExtractor("com.hazelcast.query.impl.extractor.specification.ExtractionWithExtractorsSpecTest$LimbTattoosCountExtractor"); mapConfig.addMapAttributeConfig(tattoosCount); config.getSerializationConfig().addPortableFactory(ComplexDataStructure.PersonPortableFactory.ID, new ComplexDataStructure.PersonPortableFactory()); } }; } @SuppressWarnings("unchecked") public static class LimbTattoosCountExtractor extends ValueExtractor { @Override public void extract(Object target, Object arguments, final ValueCollector collector) { Integer parsedId = Integer.parseInt((String) arguments); if (target instanceof Person) { Integer size = ((Person) target).limbs_list.get(parsedId).tattoos_list.size(); collector.addObject(size); } else { ValueReader reader = (ValueReader) target; reader.read("limbs_portable[" + parsedId + "].tattoos_portable", new ValueCallback() { @Override public void onResult(Object value) { collector.addObject(((String[]) value).length); } }); } } } @Parameterized.Parameters(name = "{index}: {0}, {1}, {2}") public static Collection<Object[]> parametrisationData() { return axes( asList(OBJECT), asList(NO_INDEX), asList(PORTABLE, LIST) ); } }