*/
+import org.apache.archiva.rest.api.model.ManagedRepository;
import org.apache.archiva.rest.api.services.ManagedRepositoriesService;
import org.apache.archiva.rest.api.services.PingService;
import org.apache.archiva.rest.api.services.RemoteRepositoriesService;
import org.apache.archiva.rest.api.services.RepositoriesService;
+import org.apache.archiva.rest.api.services.RepositoryGroupService;
import org.apache.cxf.jaxrs.client.JAXRSClientFactory;
+import org.apache.maven.archiva.common.utils.FileUtil;
import org.codehaus.redback.rest.services.AbstractRestServicesTest;
+import java.io.File;
+
/**
* @author Olivier Lamy
*/
}
+
+ protected RepositoryGroupService getRepositoryGroupService()
+ {
+ return JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
+ RepositoryGroupService.class );
+ }
+
+ protected ManagedRepository getTestManagedRepository()
+ {
+ String location = new File( FileUtil.getBasedir(), "target/test-repo" ).getAbsolutePath();
+ return new ManagedRepository( "TEST", "test", location, "default", true, true, false, false, "2 * * * * ?" );
+ }
}
--- /dev/null
+package org.apache.archiva.rest.services;
+/*
+ * 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.
+ */
+
+import org.apache.archiva.rest.api.model.ManagedRepository;
+import org.apache.archiva.rest.api.model.RepositoryGroup;
+import org.apache.archiva.rest.api.services.ManagedRepositoriesService;
+import org.apache.archiva.rest.api.services.RepositoryGroupService;
+import org.apache.cxf.jaxrs.client.WebClient;
+import org.junit.Test;
+
+import java.util.Arrays;
+
+/**
+ * @author Olivier Lamy
+ */
+public class RepositoryGroupServiceTest
+ extends AbstractArchivaRestTest
+{
+ @Test
+ public void addAndDelete()
+ throws Exception
+ {
+ RepositoryGroupService service = getRepositoryGroupService();
+ WebClient.client( service ).header( "Authorization", authorizationHeader );
+ WebClient.getConfig( service ).getHttpConduit().getClient().setReceiveTimeout( 300000 );
+
+ assertTrue( service.getRepositoriesGroups().isEmpty() );
+
+ ManagedRepositoriesService managedRepositoriesService = getManagedRepositoriesService();
+ WebClient.client( managedRepositoriesService ).header( "Authorization", authorizationHeader );
+ WebClient.getConfig( service ).getHttpConduit().getClient().setReceiveTimeout( 300000 );
+
+ ManagedRepository managedRepository = getTestManagedRepository();
+
+ managedRepositoriesService.addManagedRepository( managedRepository );
+
+ RepositoryGroup repositoryGroup = new RepositoryGroup( "one", Arrays.asList( managedRepository.getId() ) );
+
+ service.addRepositoryGroup( repositoryGroup );
+ assertFalse( service.getRepositoriesGroups().isEmpty() );
+ assertEquals( 1, service.getRepositoriesGroups().size() );
+
+ service.deleteRepositoryGroup( "one" );
+
+ assertTrue( service.getRepositoriesGroups().isEmpty() );
+ assertEquals( 0, service.getRepositoriesGroups().size() );
+ }
+}