2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-08-20 12:29:59 +02:00
|
|
|
package sonia.scm.plugin;
|
|
|
|
|
|
|
|
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
|
import org.junit.jupiter.api.extension.ExtendWith;
|
|
|
|
|
import org.mockito.Mock;
|
|
|
|
|
import org.mockito.junit.jupiter.MockitoExtension;
|
|
|
|
|
import sonia.scm.SCMContextProvider;
|
|
|
|
|
import sonia.scm.cache.CacheManager;
|
|
|
|
|
import sonia.scm.cache.MapCacheManager;
|
|
|
|
|
import sonia.scm.config.ScmConfiguration;
|
|
|
|
|
|
|
|
|
|
import java.util.Collections;
|
|
|
|
|
import java.util.HashSet;
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
import static org.mockito.ArgumentMatchers.anyString;
|
2021-12-13 15:15:57 +01:00
|
|
|
import static org.mockito.Mockito.verify;
|
2019-08-20 12:29:59 +02:00
|
|
|
import static org.mockito.Mockito.when;
|
|
|
|
|
|
|
|
|
|
@ExtendWith(MockitoExtension.class)
|
|
|
|
|
class PluginCenterTest {
|
|
|
|
|
|
|
|
|
|
private static final String PLUGIN_URL_BASE = "https://plugins.hitchhiker.com/";
|
|
|
|
|
private static final String PLUGIN_URL = PLUGIN_URL_BASE + "{version}";
|
|
|
|
|
|
|
|
|
|
@Mock
|
|
|
|
|
private PluginCenterLoader loader;
|
|
|
|
|
|
|
|
|
|
@Mock
|
|
|
|
|
private SCMContextProvider contextProvider;
|
|
|
|
|
|
|
|
|
|
private ScmConfiguration configuration;
|
|
|
|
|
|
|
|
|
|
private CacheManager cacheManager;
|
|
|
|
|
|
|
|
|
|
private PluginCenter pluginCenter;
|
|
|
|
|
|
|
|
|
|
@BeforeEach
|
|
|
|
|
void setUpPluginCenter() {
|
|
|
|
|
when(contextProvider.getVersion()).thenReturn("2.0.0");
|
|
|
|
|
|
|
|
|
|
cacheManager = new MapCacheManager();
|
|
|
|
|
|
|
|
|
|
configuration = new ScmConfiguration();
|
|
|
|
|
configuration.setPluginUrl(PLUGIN_URL);
|
|
|
|
|
|
|
|
|
|
pluginCenter = new PluginCenter(contextProvider, cacheManager, configuration, loader);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void shouldFetchPlugins() {
|
|
|
|
|
Set<AvailablePlugin> plugins = new HashSet<>();
|
2022-05-31 15:14:52 +02:00
|
|
|
Set<PluginSet> pluginSets = new HashSet<>();
|
2019-08-20 12:29:59 +02:00
|
|
|
|
2022-05-31 15:14:52 +02:00
|
|
|
PluginCenterResult pluginCenterResult = new PluginCenterResult(plugins, pluginSets);
|
|
|
|
|
when(loader.load(PLUGIN_URL_BASE + "2.0.0")).thenReturn(pluginCenterResult);
|
|
|
|
|
|
|
|
|
|
assertThat(pluginCenter.getAvailablePlugins()).isSameAs(plugins);
|
|
|
|
|
assertThat(pluginCenter.getAvailablePluginSets()).isSameAs(pluginSets);
|
2019-08-20 12:29:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
2021-12-13 15:15:57 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
2019-08-20 12:29:59 +02:00
|
|
|
void shouldCache() {
|
2022-05-31 15:14:52 +02:00
|
|
|
Set<AvailablePlugin> plugins = new HashSet<>();
|
|
|
|
|
Set<PluginSet> pluginSets = new HashSet<>();
|
|
|
|
|
|
|
|
|
|
PluginCenterResult first = new PluginCenterResult(plugins, pluginSets);
|
|
|
|
|
when(loader.load(anyString())).thenReturn(first, new PluginCenterResult(Collections.emptySet(), Collections.emptySet()));
|
2019-08-20 12:29:59 +02:00
|
|
|
|
2022-05-31 15:14:52 +02:00
|
|
|
assertThat(pluginCenter.getAvailablePlugins()).isSameAs(plugins);
|
|
|
|
|
assertThat(pluginCenter.getAvailablePlugins()).isSameAs(plugins);
|
|
|
|
|
assertThat(pluginCenter.getAvailablePluginSets()).isSameAs(pluginSets);
|
2019-08-20 12:29:59 +02:00
|
|
|
}
|
|
|
|
|
|
2021-12-13 15:15:57 +01:00
|
|
|
@Test
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
void shouldClearCache() {
|
2022-05-31 15:14:52 +02:00
|
|
|
Set<AvailablePlugin> plugins = new HashSet<>();
|
|
|
|
|
Set<PluginSet> pluginSets = new HashSet<>();
|
|
|
|
|
|
|
|
|
|
PluginCenterResult first = new PluginCenterResult(plugins, pluginSets);
|
|
|
|
|
when(loader.load(anyString())).thenReturn(first, new PluginCenterResult(Collections.emptySet(), Collections.emptySet()));
|
2021-12-13 15:15:57 +01:00
|
|
|
|
2022-05-31 15:14:52 +02:00
|
|
|
assertThat(pluginCenter.getAvailablePlugins()).isSameAs(plugins);
|
|
|
|
|
assertThat(pluginCenter.getAvailablePluginSets()).isSameAs(pluginSets);
|
2021-12-13 15:15:57 +01:00
|
|
|
pluginCenter.handle(new PluginCenterLoginEvent(null));
|
2022-05-31 15:14:52 +02:00
|
|
|
assertThat(pluginCenter.getAvailablePlugins()).isNotSameAs(plugins);
|
|
|
|
|
assertThat(pluginCenter.getAvailablePluginSets()).isNotSameAs(pluginSets);
|
2021-12-13 15:15:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void shouldLoadOnRefresh() {
|
|
|
|
|
Set<AvailablePlugin> plugins = new HashSet<>();
|
2022-05-31 15:14:52 +02:00
|
|
|
Set<PluginSet> pluginSets = new HashSet<>();
|
|
|
|
|
|
|
|
|
|
PluginCenterResult pluginCenterResult = new PluginCenterResult(plugins, pluginSets);
|
|
|
|
|
when(loader.load(PLUGIN_URL_BASE + "2.0.0")).thenReturn(pluginCenterResult);
|
2021-12-13 15:15:57 +01:00
|
|
|
|
|
|
|
|
pluginCenter.refresh();
|
|
|
|
|
|
|
|
|
|
verify(loader).load(PLUGIN_URL_BASE + "2.0.0");
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-20 12:29:59 +02:00
|
|
|
}
|