/** * 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.solr.handler.dataimport; import junit.framework.Assert; import org.junit.Test; import org.w3c.dom.Document; import javax.xml.parsers.DocumentBuilderFactory; import java.io.ByteArrayInputStream; import java.util.ArrayList; import java.util.List; /** * <p> * Test for DataConfig * </p> * * @version $Id: TestDataConfig.java 963873 2010-07-13 21:45:31Z rmuir $ * @since solr 1.3 */ public class TestDataConfig extends AbstractDataImportHandlerTestCase { @Override public void setUp() throws Exception { super.setUp(); } @Override public void tearDown() throws Exception { super.tearDown(); } @Override public String getSchemaFile() { return "dataimport-schema.xml"; } @Override public String getSolrConfigFile() { return "dataimport-nodatasource-solrconfig.xml"; } @Test @SuppressWarnings("unchecked") public void testDataConfigWithDataSource() throws Exception { List rows = new ArrayList(); rows.add(createMap("id", "1", "desc", "one")); MockDataSource.setIterator("select * from x", rows.iterator()); super.runFullImport(loadDataConfig("data-config-with-datasource.xml")); assertQ(req("id:1"), "//*[@numFound='1']"); } @Test public void basic() throws Exception { javax.xml.parsers.DocumentBuilder builder = DocumentBuilderFactory .newInstance().newDocumentBuilder(); Document doc = builder.parse(new ByteArrayInputStream(xml.getBytes())); DataConfig dc = new DataConfig(); dc.readFromXml(doc.getDocumentElement()); Assert.assertEquals("atrimlisting", dc.document.entities.get(0).name); } private static final String xml = "<dataConfig>\n" + "\t<document name=\"autos\" >\n" + "\t\t<entity name=\"atrimlisting\" pk=\"acode\"\n" + "\t\t\tquery=\"select acode,make,model,year,msrp,category,image,izmo_image_url,price_range_low,price_range_high,invoice_range_low,invoice_range_high from atrimlisting\"\n" + "\t\t\tdeltaQuery=\"select acode from atrimlisting where last_modified > '${indexer.last_index_time}'\">\n" + "\t\t</entity>\n" + "\t</document>\n" + "</dataConfig>"; }