use of com.thoughtworks.go.plugin.access.elastic.v3.ElasticAgentExtensionV3 in project gocd by gocd.
the class ElasticAgentExtensionV3Test method setUp.
@Before
public void setUp() throws Exception {
initMocks(this);
requestArgumentCaptor = ArgumentCaptor.forClass(GoPluginApiRequest.class);
final List<String> goSupportedVersions = Arrays.asList("1.0", "2.0", "3.0");
when(descriptor.id()).thenReturn(PLUGIN_ID);
when(pluginManager.getPluginDescriptorFor(PLUGIN_ID)).thenReturn(descriptor);
when(pluginManager.isPluginOfType(ELASTIC_AGENT_EXTENSION, PLUGIN_ID)).thenReturn(true);
when(pluginManager.resolveExtensionVersion(PLUGIN_ID, ELASTIC_AGENT_EXTENSION, goSupportedVersions)).thenReturn("3.0");
final PluginRequestHelper pluginRequestHelper = new PluginRequestHelper(pluginManager, goSupportedVersions, ELASTIC_AGENT_EXTENSION);
extensionV3 = new ElasticAgentExtensionV3(pluginRequestHelper);
}
Aggregations