blob: 3a09cc33fdafac85d13f05dc2442306c14af1dae [file] [log] [blame]
/**
* 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.camel.component.solr;
import org.apache.solr.client.solrj.beans.Field;
import org.junit.Ignore;
import org.junit.Test;
@Ignore("Need refactoring in SolrComponentTestSupport, with new schema and solr-config from solr 5.2.1 and new Cloud Solr cluster instantiation")
public class SolrAddBeanTest extends SolrComponentTestSupport {
public SolrAddBeanTest(SolrFixtures.TestServerType serverToTest) {
super(serverToTest);
}
@Test
public void testAddBean() throws Exception {
//add bean
Item item = new Item();
item.id = TEST_ID;
item.categories = new String[] {"aaa", "bbb", "ccc"};
template.sendBodyAndHeader("direct:start", item, SolrConstants.OPERATION, SolrConstants.OPERATION_ADD_BEAN);
template.sendBodyAndHeader("direct:start", null, SolrConstants.OPERATION, SolrConstants.OPERATION_COMMIT);
//verify
assertEquals("wrong number of entries found", 1, executeSolrQuery("id:" + TEST_ID).getResults().getNumFound());
}
public class Item {
@Field
String id;
@Field("cat")
String[] categories;
}
}