]> source.dussan.org Git - archiva.git/blob
b7e630e1e8fc2c7993abb761bb0c069e802ec893
[archiva.git] /
1 package org.apache.archiva.scheduler.indexing;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.admin.model.beans.RemoteRepository;
22 import org.apache.archiva.admin.model.remote.RemoteRepositoryAdmin;
23 import org.apache.archiva.common.utils.FileUtils;
24 import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
25 import org.apache.maven.index.FlatSearchRequest;
26 import org.apache.maven.index.FlatSearchResponse;
27 import org.apache.maven.index.MAVEN;
28 import org.apache.maven.index.NexusIndexer;
29 import org.apache.maven.index.expr.StringSearchExpression;
30 import org.apache.maven.index_shaded.lucene.search.BooleanClause;
31 import org.apache.maven.index_shaded.lucene.search.BooleanQuery;
32 import org.eclipse.jetty.server.HttpConnectionFactory;
33 import org.eclipse.jetty.server.Server;
34 import org.eclipse.jetty.server.ServerConnector;
35 import org.eclipse.jetty.servlet.DefaultServlet;
36 import org.eclipse.jetty.servlet.ServletContextHandler;
37 import org.eclipse.jetty.servlet.ServletHolder;
38 import org.junit.After;
39 import org.junit.Before;
40 import org.junit.Test;
41 import org.junit.runner.RunWith;
42 import org.slf4j.Logger;
43 import org.slf4j.LoggerFactory;
44 import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
45 import org.springframework.test.context.ContextConfiguration;
46
47 import javax.inject.Inject;
48 import java.io.File;
49 import java.io.IOException;
50 import java.util.Arrays;
51 import java.util.concurrent.TimeUnit;
52
53 import static org.assertj.core.api.Assertions.assertThat;
54
55 /**
56  * @author Olivier Lamy
57  */
58 @RunWith( ArchivaSpringJUnit4ClassRunner.class )
59 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )
60 public class DownloadRemoteIndexTaskTest
61 {
62
63     private Server server;
64     private ServerConnector serverConnector;
65
66     private int port;
67
68     private Logger log = LoggerFactory.getLogger( getClass() );
69
70     @Inject
71     RemoteRepositoryAdmin remoteRepositoryAdmin;
72
73     @Inject
74     DefaultDownloadRemoteIndexScheduler downloadRemoteIndexScheduler;
75
76     @Inject
77     NexusIndexer nexusIndexer;
78
79     @Before
80     public void initialize()
81         throws Exception
82     {
83         server = new Server( );
84         serverConnector = new ServerConnector( server, new HttpConnectionFactory());
85         server.addConnector( serverConnector );
86         createContext( server, new File( "src/test/" ) );
87         this.server.start();
88         this.port = serverConnector.getLocalPort();
89         log.info( "start server on port {}", this.port );
90     }
91
92     protected void createContext( Server server, File repositoryDirectory )
93         throws IOException
94     {
95         ServletContextHandler context = new ServletContextHandler();
96         context.setResourceBase( repositoryDirectory.getAbsolutePath() );
97         context.setContextPath( "/" );
98         ServletHolder sh = new ServletHolder( DefaultServlet.class );
99         context.addServlet( sh, "/" );
100         server.setHandler( context );
101
102     }
103
104     @After
105     public void tearDown()
106         throws Exception
107     {
108         server.stop();
109     }
110
111     @Test
112     public void downloadAndMergeRemoteIndexInEmptyIndex()
113         throws Exception
114     {
115         RemoteRepository remoteRepository = getRemoteRepository();
116
117         remoteRepositoryAdmin.addRemoteRepository( remoteRepository, null );
118
119         downloadRemoteIndexScheduler.startup();
120
121         downloadRemoteIndexScheduler.scheduleDownloadRemote( "test-repo", true, true );
122
123         ( (ThreadPoolTaskScheduler) downloadRemoteIndexScheduler.getTaskScheduler() ).getScheduledExecutor().awaitTermination(
124             10, TimeUnit.SECONDS );
125
126         remoteRepositoryAdmin.deleteRemoteRepository( "test-repo", null );
127
128         // search
129         BooleanQuery iQuery = new BooleanQuery();
130         iQuery.add( nexusIndexer.constructQuery( MAVEN.GROUP_ID, new StringSearchExpression( "commons-logging" ) ),
131                     BooleanClause.Occur.SHOULD );
132
133         FlatSearchRequest rq = new FlatSearchRequest( iQuery );
134         rq.setContexts(
135             Arrays.asList( nexusIndexer.getIndexingContexts().get( "remote-" + getRemoteRepository().getId() ) ) );
136
137         FlatSearchResponse response = nexusIndexer.searchFlat( rq );
138
139         log.info( "returned hit count:{}", response.getReturnedHitsCount() );
140         assertThat( response.getReturnedHitsCount() ).isEqualTo( 8 );
141     }
142
143
144     protected RemoteRepository getRemoteRepository()
145     {
146         RemoteRepository remoteRepository = new RemoteRepository();
147         File indexDirectory =
148             new File( FileUtils.getBasedir(), "target/index/test-" + Long.toString( System.currentTimeMillis() ) );
149         indexDirectory.mkdirs();
150         indexDirectory.deleteOnExit();
151
152         remoteRepository.setName( "foo" );
153         remoteRepository.setIndexDirectory( indexDirectory.getAbsolutePath() );
154         remoteRepository.setDownloadRemoteIndex( true );
155         remoteRepository.setId( "test-repo" );
156         remoteRepository.setUrl( "http://localhost:" + port );
157         remoteRepository.setRemoteIndexUrl( "http://localhost:" + port + "/index-updates/" );
158         return remoteRepository;
159     }
160
161 }