mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-01 14:41:46 +00:00
REPO-3587: Add solr-search-context.xml startup test (#134)
* REPO-3587: Add solr-search-context.xml startup test * REPO-3587: Add missing license header
This commit is contained in:
@@ -62,6 +62,7 @@ import org.junit.runners.Suite;
|
||||
|
||||
org.alfresco.repo.search.impl.solr.facet.SolrFacetQueriesDisplayHandlersTest.class,
|
||||
org.alfresco.repo.search.impl.solr.facet.SolrFacetServiceImplTest.class,
|
||||
org.alfresco.repo.search.SolrSearchContextTest.class,
|
||||
org.alfresco.repo.invitation.InvitationCleanupTest.class,
|
||||
org.alfresco.repo.quickshare.QuickShareServiceIntegrationTest.class,
|
||||
org.alfresco.repo.remotecredentials.RemoteCredentialsServicesTest.class,
|
||||
|
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* #%L
|
||||
* Alfresco Repository
|
||||
* %%
|
||||
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
||||
* %%
|
||||
* This file is part of the Alfresco software.
|
||||
* If the software was purchased under a paid Alfresco license, the terms of
|
||||
* the paid license agreement will prevail. Otherwise, the software is
|
||||
* provided under the following open source license terms:
|
||||
*
|
||||
* Alfresco is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Alfresco is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
||||
* #L%
|
||||
*/
|
||||
package org.alfresco.repo.search;
|
||||
|
||||
import org.alfresco.util.ApplicationContextHelper;
|
||||
import org.junit.Test;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
||||
|
||||
public class SolrSearchContextTest
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* This test just starts up the application context with the
|
||||
* solr-search-context.xml and common-search-scheduler-context.xml and the required property files
|
||||
*/
|
||||
@Test
|
||||
public void testSearchContextStartup()
|
||||
{
|
||||
ApplicationContext searchContext =
|
||||
new ClassPathXmlApplicationContext(new String[] {
|
||||
"classpath:org/alfresco/repo/search/impl/test-solr-search-context.xml",
|
||||
"alfresco/subsystems/Search/solr6/common-search-scheduler-context.xml"},
|
||||
ApplicationContextHelper.getApplicationContext());
|
||||
|
||||
}
|
||||
}
|
@@ -0,0 +1,18 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
||||
|
||||
<beans>
|
||||
|
||||
<!-- Load property files with properties needed to fill placeholder values in search context files-->
|
||||
<bean id="solr-search-context-test-properties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
||||
<property name="locations">
|
||||
<list>
|
||||
<value>classpath:alfresco/subsystems/Search/solr6/solr-search.properties</value>
|
||||
<value>classpath:alfresco/subsystems/Search/solr/common-search.properties</value>
|
||||
<value>classpath:alfresco/repository.properties</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<import resource="classpath:alfresco/subsystems/Search/solr6/solr-search-context.xml" />
|
||||
</beans>
|
Reference in New Issue
Block a user