mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 17:26:22 +01:00
Add dedicated endpoint for pending plugins
This commit is contained in:
@@ -101,16 +101,4 @@ public class AvailablePluginResource {
|
|||||||
pluginManager.install(name, restartAfterInstallation);
|
pluginManager.install(name, restartAfterInstallation);
|
||||||
return Response.ok().build();
|
return Response.ok().build();
|
||||||
}
|
}
|
||||||
|
|
||||||
@POST
|
|
||||||
@Path("/install-pending")
|
|
||||||
@StatusCodes({
|
|
||||||
@ResponseCode(code = 200, condition = "success"),
|
|
||||||
@ResponseCode(code = 500, condition = "internal server error")
|
|
||||||
})
|
|
||||||
public Response installPending() {
|
|
||||||
PluginPermissions.manage().check();
|
|
||||||
pluginManager.installPendingAndRestart();
|
|
||||||
return Response.ok().build();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,6 +54,9 @@ public class IndexDtoGenerator extends HalAppenderMapper {
|
|||||||
builder.single(link("installedPlugins", resourceLinks.installedPluginCollection().self()));
|
builder.single(link("installedPlugins", resourceLinks.installedPluginCollection().self()));
|
||||||
builder.single(link("availablePlugins", resourceLinks.availablePluginCollection().self()));
|
builder.single(link("availablePlugins", resourceLinks.availablePluginCollection().self()));
|
||||||
}
|
}
|
||||||
|
if (PluginPermissions.manage().isPermitted()) {
|
||||||
|
builder.single(link("pendingPlugins", resourceLinks.pendingPluginCollection().self()));
|
||||||
|
}
|
||||||
if (UserPermissions.list().isPermitted()) {
|
if (UserPermissions.list().isPermitted()) {
|
||||||
builder.single(link("users", resourceLinks.userCollection().self()));
|
builder.single(link("users", resourceLinks.userCollection().self()));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
package sonia.scm.api.v2.resources;
|
||||||
|
|
||||||
|
import com.webcohesion.enunciate.metadata.rs.ResponseCode;
|
||||||
|
import com.webcohesion.enunciate.metadata.rs.StatusCodes;
|
||||||
|
import de.otto.edison.hal.Embedded;
|
||||||
|
import de.otto.edison.hal.HalRepresentation;
|
||||||
|
import de.otto.edison.hal.Links;
|
||||||
|
import sonia.scm.plugin.AvailablePlugin;
|
||||||
|
import sonia.scm.plugin.PluginManager;
|
||||||
|
import sonia.scm.plugin.PluginPermissions;
|
||||||
|
import sonia.scm.web.VndMediaType;
|
||||||
|
|
||||||
|
import javax.inject.Inject;
|
||||||
|
import javax.ws.rs.GET;
|
||||||
|
import javax.ws.rs.POST;
|
||||||
|
import javax.ws.rs.Path;
|
||||||
|
import javax.ws.rs.Produces;
|
||||||
|
import javax.ws.rs.core.Response;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static de.otto.edison.hal.Link.link;
|
||||||
|
import static de.otto.edison.hal.Links.linkingTo;
|
||||||
|
import static java.util.stream.Collectors.toList;
|
||||||
|
|
||||||
|
public class PendingPluginResource {
|
||||||
|
|
||||||
|
private final PluginManager pluginManager;
|
||||||
|
private final ResourceLinks resourceLinks;
|
||||||
|
private final PluginDtoMapper mapper;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
public PendingPluginResource(PluginManager pluginManager, ResourceLinks resourceLinks, PluginDtoMapper mapper) {
|
||||||
|
this.pluginManager = pluginManager;
|
||||||
|
this.resourceLinks = resourceLinks;
|
||||||
|
this.mapper = mapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
@GET
|
||||||
|
@Path("")
|
||||||
|
@StatusCodes({
|
||||||
|
@ResponseCode(code = 200, condition = "success"),
|
||||||
|
@ResponseCode(code = 500, condition = "internal server error")
|
||||||
|
})
|
||||||
|
@Produces(VndMediaType.PLUGIN_COLLECTION)
|
||||||
|
public Response getPending() {
|
||||||
|
PluginPermissions.manage().check();
|
||||||
|
|
||||||
|
List<AvailablePlugin> pending = pluginManager
|
||||||
|
.getAvailable()
|
||||||
|
.stream()
|
||||||
|
.filter(AvailablePlugin::isPending)
|
||||||
|
.collect(toList());
|
||||||
|
|
||||||
|
Links.Builder linksBuilder = linkingTo().self(resourceLinks.pendingPluginCollection().self());
|
||||||
|
|
||||||
|
if (!pending.isEmpty()) {
|
||||||
|
linksBuilder.single(link("install", resourceLinks.pendingPluginCollection().installPending()));
|
||||||
|
}
|
||||||
|
|
||||||
|
Embedded.Builder embedded = Embedded.embeddedBuilder();
|
||||||
|
embedded.with("available", pending.stream().map(mapper::mapAvailable).collect(toList()));
|
||||||
|
|
||||||
|
return Response.ok(new HalRepresentation(linksBuilder.build(), embedded.build())).build();
|
||||||
|
}
|
||||||
|
|
||||||
|
@POST
|
||||||
|
@Path("/install")
|
||||||
|
@StatusCodes({
|
||||||
|
@ResponseCode(code = 200, condition = "success"),
|
||||||
|
@ResponseCode(code = 500, condition = "internal server error")
|
||||||
|
})
|
||||||
|
public Response installPending() {
|
||||||
|
PluginPermissions.manage().check();
|
||||||
|
pluginManager.installPendingAndRestart();
|
||||||
|
return Response.ok().build();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -53,10 +53,6 @@ public class PluginDtoCollectionMapper {
|
|||||||
Links.Builder linksBuilder = linkingTo()
|
Links.Builder linksBuilder = linkingTo()
|
||||||
.with(Links.linkingTo().self(baseUrl).build());
|
.with(Links.linkingTo().self(baseUrl).build());
|
||||||
|
|
||||||
if (PluginPermissions.manage().isPermitted() && containsPending(plugins)) {
|
|
||||||
linksBuilder.single(Link.link("installPending", resourceLinks.availablePluginCollection().installPending()));
|
|
||||||
}
|
|
||||||
|
|
||||||
return linksBuilder.build();
|
return linksBuilder.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,11 +9,13 @@ public class PluginRootResource {
|
|||||||
|
|
||||||
private Provider<InstalledPluginResource> installedPluginResourceProvider;
|
private Provider<InstalledPluginResource> installedPluginResourceProvider;
|
||||||
private Provider<AvailablePluginResource> availablePluginResourceProvider;
|
private Provider<AvailablePluginResource> availablePluginResourceProvider;
|
||||||
|
private Provider<PendingPluginResource> pendingPluginResourceProvider;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
public PluginRootResource(Provider<InstalledPluginResource> installedPluginResourceProvider, Provider<AvailablePluginResource> availablePluginResourceProvider) {
|
public PluginRootResource(Provider<InstalledPluginResource> installedPluginResourceProvider, Provider<AvailablePluginResource> availablePluginResourceProvider, Provider<PendingPluginResource> pendingPluginResourceProvider) {
|
||||||
this.installedPluginResourceProvider = installedPluginResourceProvider;
|
this.installedPluginResourceProvider = installedPluginResourceProvider;
|
||||||
this.availablePluginResourceProvider = availablePluginResourceProvider;
|
this.availablePluginResourceProvider = availablePluginResourceProvider;
|
||||||
|
this.pendingPluginResourceProvider = pendingPluginResourceProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Path("/installed")
|
@Path("/installed")
|
||||||
@@ -23,4 +25,7 @@ public class PluginRootResource {
|
|||||||
|
|
||||||
@Path("/available")
|
@Path("/available")
|
||||||
public AvailablePluginResource availablePlugins() { return availablePluginResourceProvider.get(); }
|
public AvailablePluginResource availablePlugins() { return availablePluginResourceProvider.get(); }
|
||||||
|
|
||||||
|
@Path("/pending")
|
||||||
|
public PendingPluginResource pendingPlugins() { return pendingPluginResourceProvider.get(); }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -715,12 +715,28 @@ class ResourceLinks {
|
|||||||
availablePluginCollectionLinkBuilder = new LinkBuilder(pathInfo, PluginRootResource.class, AvailablePluginResource.class);
|
availablePluginCollectionLinkBuilder = new LinkBuilder(pathInfo, PluginRootResource.class, AvailablePluginResource.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String self() {
|
||||||
|
return availablePluginCollectionLinkBuilder.method("availablePlugins").parameters().method("getAvailablePlugins").parameters().href();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public PendingPluginCollectionLinks pendingPluginCollection() {
|
||||||
|
return new PendingPluginCollectionLinks(scmPathInfoStore.get());
|
||||||
|
}
|
||||||
|
|
||||||
|
static class PendingPluginCollectionLinks {
|
||||||
|
private final LinkBuilder pendingPluginCollectionLinkBuilder;
|
||||||
|
|
||||||
|
PendingPluginCollectionLinks(ScmPathInfo pathInfo) {
|
||||||
|
pendingPluginCollectionLinkBuilder = new LinkBuilder(pathInfo, PluginRootResource.class, PendingPluginResource.class);
|
||||||
|
}
|
||||||
|
|
||||||
String installPending() {
|
String installPending() {
|
||||||
return availablePluginCollectionLinkBuilder.method("availablePlugins").parameters().method("installPending").parameters().href();
|
return pendingPluginCollectionLinkBuilder.method("pendingPlugins").parameters().method("installPending").parameters().href();
|
||||||
}
|
}
|
||||||
|
|
||||||
String self() {
|
String self() {
|
||||||
return availablePluginCollectionLinkBuilder.method("availablePlugins").parameters().method("getAvailablePlugins").parameters().href();
|
return pendingPluginCollectionLinkBuilder.method("pendingPlugins").parameters().method("getPending").parameters().href();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -48,9 +48,6 @@ class AvailablePluginResourceTest {
|
|||||||
|
|
||||||
private Dispatcher dispatcher;
|
private Dispatcher dispatcher;
|
||||||
|
|
||||||
@Mock
|
|
||||||
Provider<InstalledPluginResource> installedPluginResourceProvider;
|
|
||||||
|
|
||||||
@Mock
|
@Mock
|
||||||
Provider<AvailablePluginResource> availablePluginResourceProvider;
|
Provider<AvailablePluginResource> availablePluginResourceProvider;
|
||||||
|
|
||||||
@@ -75,7 +72,7 @@ class AvailablePluginResourceTest {
|
|||||||
@BeforeEach
|
@BeforeEach
|
||||||
void prepareEnvironment() {
|
void prepareEnvironment() {
|
||||||
dispatcher = MockDispatcherFactory.createDispatcher();
|
dispatcher = MockDispatcherFactory.createDispatcher();
|
||||||
pluginRootResource = new PluginRootResource(installedPluginResourceProvider, availablePluginResourceProvider);
|
pluginRootResource = new PluginRootResource(null, availablePluginResourceProvider, null);
|
||||||
when(availablePluginResourceProvider.get()).thenReturn(availablePluginResource);
|
when(availablePluginResourceProvider.get()).thenReturn(availablePluginResource);
|
||||||
dispatcher.getRegistry().addSingletonResource(pluginRootResource);
|
dispatcher.getRegistry().addSingletonResource(pluginRootResource);
|
||||||
}
|
}
|
||||||
@@ -165,17 +162,6 @@ class AvailablePluginResourceTest {
|
|||||||
verify(pluginManager).install("pluginName", false);
|
verify(pluginManager).install("pluginName", false);
|
||||||
assertThat(HttpServletResponse.SC_OK).isEqualTo(response.getStatus());
|
assertThat(HttpServletResponse.SC_OK).isEqualTo(response.getStatus());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
void installPendingPlugin() throws URISyntaxException {
|
|
||||||
MockHttpRequest request = MockHttpRequest.post("/v2/plugins/available/install-pending");
|
|
||||||
MockHttpResponse response = new MockHttpResponse();
|
|
||||||
|
|
||||||
dispatcher.invoke(request, response);
|
|
||||||
|
|
||||||
verify(pluginManager).installPendingAndRestart();
|
|
||||||
assertThat(HttpServletResponse.SC_OK).isEqualTo(response.getStatus());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private AvailablePlugin createAvailablePlugin() {
|
private AvailablePlugin createAvailablePlugin() {
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ class InstalledPluginResourceTest {
|
|||||||
@BeforeEach
|
@BeforeEach
|
||||||
void prepareEnvironment() {
|
void prepareEnvironment() {
|
||||||
dispatcher = MockDispatcherFactory.createDispatcher();
|
dispatcher = MockDispatcherFactory.createDispatcher();
|
||||||
pluginRootResource = new PluginRootResource(installedPluginResourceProvider, availablePluginResourceProvider);
|
pluginRootResource = new PluginRootResource(installedPluginResourceProvider, null, null);
|
||||||
when(installedPluginResourceProvider.get()).thenReturn(installedPluginResource);
|
when(installedPluginResourceProvider.get()).thenReturn(installedPluginResource);
|
||||||
dispatcher.getRegistry().addSingletonResource(pluginRootResource);
|
dispatcher.getRegistry().addSingletonResource(pluginRootResource);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,192 @@
|
|||||||
|
package sonia.scm.api.v2.resources;
|
||||||
|
|
||||||
|
import com.google.inject.util.Providers;
|
||||||
|
import org.apache.shiro.ShiroException;
|
||||||
|
import org.apache.shiro.subject.Subject;
|
||||||
|
import org.apache.shiro.util.ThreadContext;
|
||||||
|
import org.jboss.resteasy.core.Dispatcher;
|
||||||
|
import org.jboss.resteasy.mock.MockDispatcherFactory;
|
||||||
|
import org.jboss.resteasy.mock.MockHttpRequest;
|
||||||
|
import org.jboss.resteasy.mock.MockHttpResponse;
|
||||||
|
import org.junit.jupiter.api.AfterEach;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Nested;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.extension.ExtendWith;
|
||||||
|
import org.mockito.InjectMocks;
|
||||||
|
import org.mockito.Mock;
|
||||||
|
import org.mockito.junit.jupiter.MockitoExtension;
|
||||||
|
import sonia.scm.plugin.AvailablePlugin;
|
||||||
|
import sonia.scm.plugin.AvailablePluginDescriptor;
|
||||||
|
import sonia.scm.plugin.PluginCondition;
|
||||||
|
import sonia.scm.plugin.PluginInformation;
|
||||||
|
import sonia.scm.plugin.PluginManager;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import javax.ws.rs.core.Response;
|
||||||
|
import javax.ws.rs.ext.ExceptionMapper;
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
|
import java.net.URISyntaxException;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
|
import static java.net.URI.create;
|
||||||
|
import static java.util.Collections.singletonList;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.mockito.ArgumentMatchers.any;
|
||||||
|
import static org.mockito.Mockito.doNothing;
|
||||||
|
import static org.mockito.Mockito.doThrow;
|
||||||
|
import static org.mockito.Mockito.lenient;
|
||||||
|
import static org.mockito.Mockito.mock;
|
||||||
|
import static org.mockito.Mockito.never;
|
||||||
|
import static org.mockito.Mockito.verify;
|
||||||
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
|
@ExtendWith(MockitoExtension.class)
|
||||||
|
class PendingPluginResourceTest {
|
||||||
|
|
||||||
|
Dispatcher dispatcher = MockDispatcherFactory.createDispatcher();
|
||||||
|
|
||||||
|
ResourceLinks resourceLinks = ResourceLinksMock.createMock(create("/"));
|
||||||
|
|
||||||
|
@Mock
|
||||||
|
PluginManager pluginManager;
|
||||||
|
@Mock
|
||||||
|
PluginDtoMapper mapper;
|
||||||
|
|
||||||
|
@Mock
|
||||||
|
Subject subject;
|
||||||
|
|
||||||
|
@InjectMocks
|
||||||
|
PendingPluginResource pendingPluginResource;
|
||||||
|
|
||||||
|
MockHttpResponse response = new MockHttpResponse();
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void prepareEnvironment() {
|
||||||
|
dispatcher = MockDispatcherFactory.createDispatcher();
|
||||||
|
dispatcher.getProviderFactory().register(new PermissionExceptionMapper());
|
||||||
|
PluginRootResource pluginRootResource = new PluginRootResource(null, null, Providers.of(pendingPluginResource));
|
||||||
|
dispatcher.getRegistry().addSingletonResource(pluginRootResource);
|
||||||
|
}
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void mockMapper() {
|
||||||
|
lenient().when(mapper.mapAvailable(any())).thenAnswer(invocation -> {
|
||||||
|
PluginDto dto = new PluginDto();
|
||||||
|
dto.setName(((AvailablePlugin)invocation.getArgument(0)).getDescriptor().getInformation().getName());
|
||||||
|
return dto;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nested
|
||||||
|
class withAuthorization {
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void bindSubject() {
|
||||||
|
ThreadContext.bind(subject);
|
||||||
|
doNothing().when(subject).checkPermission("plugin:manage");
|
||||||
|
}
|
||||||
|
|
||||||
|
@AfterEach
|
||||||
|
void unbindSubject() {
|
||||||
|
ThreadContext.unbindSubject();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldGetEmptyPluginListsWithoutInstallLinkWhenNoPendingPluginsPresent() throws URISyntaxException, UnsupportedEncodingException {
|
||||||
|
AvailablePlugin availablePlugin = createAvailablePlugin("not-available-plugin");
|
||||||
|
when(availablePlugin.isPending()).thenReturn(false);
|
||||||
|
when(pluginManager.getAvailable()).thenReturn(singletonList(availablePlugin));
|
||||||
|
|
||||||
|
MockHttpRequest request = MockHttpRequest.get("/v2/plugins/pending");
|
||||||
|
dispatcher.invoke(request, response);
|
||||||
|
|
||||||
|
assertThat(response.getStatus()).isEqualTo(HttpServletResponse.SC_OK);
|
||||||
|
assertThat(response.getContentAsString()).contains("\"_links\":{\"self\":{\"href\":\"/v2/plugins/pending\"}}");
|
||||||
|
assertThat(response.getContentAsString()).doesNotContain("not-available-plugin");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldGetPendingAvailablePluginListsWithInstallLink() throws URISyntaxException, UnsupportedEncodingException {
|
||||||
|
AvailablePlugin availablePlugin = createAvailablePlugin("available-plugin");
|
||||||
|
when(availablePlugin.isPending()).thenReturn(true);
|
||||||
|
when(pluginManager.getAvailable()).thenReturn(singletonList(availablePlugin));
|
||||||
|
|
||||||
|
MockHttpRequest request = MockHttpRequest.get("/v2/plugins/pending");
|
||||||
|
dispatcher.invoke(request, response);
|
||||||
|
|
||||||
|
assertThat(response.getStatus()).isEqualTo(HttpServletResponse.SC_OK);
|
||||||
|
assertThat(response.getContentAsString()).contains("\"_embedded\":{\"available\":[{\"name\":\"available-plugin\"");
|
||||||
|
assertThat(response.getContentAsString()).contains("\"install\":{\"href\":\"/v2/plugins/pending/install\"}");
|
||||||
|
System.out.println(response.getContentAsString());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldInstallPendingPlugins() throws URISyntaxException {
|
||||||
|
MockHttpRequest request = MockHttpRequest.post("/v2/plugins/pending/install");
|
||||||
|
|
||||||
|
dispatcher.invoke(request, response);
|
||||||
|
|
||||||
|
assertThat(response.getStatus()).isEqualTo(HttpServletResponse.SC_OK);
|
||||||
|
verify(pluginManager).installPendingAndRestart();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nested
|
||||||
|
class WithoutAuthorization {
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void bindSubject() {
|
||||||
|
ThreadContext.bind(subject);
|
||||||
|
doThrow(new ShiroException()).when(subject).checkPermission("plugin:manage");
|
||||||
|
}
|
||||||
|
|
||||||
|
@AfterEach
|
||||||
|
void unbindSubject() {
|
||||||
|
ThreadContext.unbindSubject();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldNotListPendingPlugins() throws URISyntaxException {
|
||||||
|
MockHttpRequest request = MockHttpRequest.get("/v2/plugins/pending");
|
||||||
|
|
||||||
|
dispatcher.invoke(request, response);
|
||||||
|
|
||||||
|
assertThat(response.getStatus()).isEqualTo(HttpServletResponse.SC_UNAUTHORIZED);
|
||||||
|
verify(pluginManager, never()).installPendingAndRestart();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldNotInstallPendingPlugins() throws URISyntaxException {
|
||||||
|
MockHttpRequest request = MockHttpRequest.post("/v2/plugins/pending/install");
|
||||||
|
|
||||||
|
dispatcher.invoke(request, response);
|
||||||
|
|
||||||
|
assertThat(response.getStatus()).isEqualTo(HttpServletResponse.SC_UNAUTHORIZED);
|
||||||
|
verify(pluginManager, never()).installPendingAndRestart();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static class PermissionExceptionMapper implements ExceptionMapper<ShiroException> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Response toResponse(ShiroException exception) {
|
||||||
|
return Response.status(401).entity(exception.getMessage()).build();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private AvailablePlugin createAvailablePlugin(String name) {
|
||||||
|
PluginInformation pluginInformation = new PluginInformation();
|
||||||
|
pluginInformation.setName(name);
|
||||||
|
return createAvailablePlugin(pluginInformation);
|
||||||
|
}
|
||||||
|
|
||||||
|
private AvailablePlugin createAvailablePlugin(PluginInformation pluginInformation) {
|
||||||
|
AvailablePluginDescriptor descriptor = new AvailablePluginDescriptor(
|
||||||
|
pluginInformation, new PluginCondition(), Collections.emptySet(), "https://download.hitchhiker.com", null
|
||||||
|
);
|
||||||
|
AvailablePlugin availablePlugin = mock(AvailablePlugin.class);
|
||||||
|
lenient().when(availablePlugin.getDescriptor()).thenReturn(descriptor);
|
||||||
|
return availablePlugin;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -38,6 +38,7 @@ public class ResourceLinksMock {
|
|||||||
when(resourceLinks.repositoryTypeCollection()).thenReturn(new ResourceLinks.RepositoryTypeCollectionLinks(uriInfo));
|
when(resourceLinks.repositoryTypeCollection()).thenReturn(new ResourceLinks.RepositoryTypeCollectionLinks(uriInfo));
|
||||||
when(resourceLinks.installedPluginCollection()).thenReturn(new ResourceLinks.InstalledPluginCollectionLinks(uriInfo));
|
when(resourceLinks.installedPluginCollection()).thenReturn(new ResourceLinks.InstalledPluginCollectionLinks(uriInfo));
|
||||||
when(resourceLinks.availablePluginCollection()).thenReturn(new ResourceLinks.AvailablePluginCollectionLinks(uriInfo));
|
when(resourceLinks.availablePluginCollection()).thenReturn(new ResourceLinks.AvailablePluginCollectionLinks(uriInfo));
|
||||||
|
when(resourceLinks.pendingPluginCollection()).thenReturn(new ResourceLinks.PendingPluginCollectionLinks(uriInfo));
|
||||||
when(resourceLinks.installedPlugin()).thenReturn(new ResourceLinks.InstalledPluginLinks(uriInfo));
|
when(resourceLinks.installedPlugin()).thenReturn(new ResourceLinks.InstalledPluginLinks(uriInfo));
|
||||||
when(resourceLinks.availablePlugin()).thenReturn(new ResourceLinks.AvailablePluginLinks(uriInfo));
|
when(resourceLinks.availablePlugin()).thenReturn(new ResourceLinks.AvailablePluginLinks(uriInfo));
|
||||||
when(resourceLinks.uiPluginCollection()).thenReturn(new ResourceLinks.UIPluginCollectionLinks(uriInfo));
|
when(resourceLinks.uiPluginCollection()).thenReturn(new ResourceLinks.UIPluginCollectionLinks(uriInfo));
|
||||||
|
|||||||
Reference in New Issue
Block a user