Files
SCM-Manager/scm-webapp/src/test/java/sonia/scm/admin/ReleaseVersionCheckerTest.java

100 lines
3.8 KiB
Java
Raw Normal View History

2020-09-21 17:04:30 +02: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.
*/
package sonia.scm.admin;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.junit.jupiter.MockitoExtension;
import sonia.scm.SCMContextProvider;
import sonia.scm.cache.Cache;
import sonia.scm.cache.CacheManager;
import sonia.scm.cache.MapCacheManager;
import sonia.scm.config.ScmConfiguration;
2020-09-21 17:04:30 +02:00
import java.io.IOException;
import java.util.Optional;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
@ExtendWith(MockitoExtension.class)
2020-09-21 17:04:30 +02:00
class ReleaseVersionCheckerTest {
private ReleaseFeedParser feedReader;
private ScmConfiguration scmConfiguration;
private SCMContextProvider contextProvider;
private ReleaseVersionChecker checker;
@BeforeEach
void setup() {
feedReader = mock(ReleaseFeedParser.class);
scmConfiguration = mock(ScmConfiguration.class);
contextProvider = mock(SCMContextProvider.class);
CacheManager cacheManager = new MapCacheManager();
checker = new ReleaseVersionChecker(feedReader, scmConfiguration, contextProvider, cacheManager);
}
@Test
2020-09-24 10:26:07 +02:00
void shouldReturnEmptyOptional() {
when(scmConfiguration.getReleaseFeedUrl()).thenReturn("releaseFeed");
when(feedReader.findLatestRelease("releaseFeed")).thenReturn(Optional.empty());
2020-09-24 10:26:07 +02:00
Optional<UpdateInfo> updateInfo = checker.checkForNewerVersion();
2020-09-24 10:26:07 +02:00
assertThat(updateInfo).isNotPresent();
}
@Test
2020-09-24 10:26:07 +02:00
void shouldReturnUpdateInfoFromCache() {
UpdateInfo cachedUpdateInfo = new UpdateInfo("1.42.9", "download-link");
Cache<String, Optional<UpdateInfo>> cache = new MapCacheManager().getCache("sonia.cache.updateInfo");
cache.put("latestRelease", Optional.of(cachedUpdateInfo));
checker.setCache(cache);
2020-09-24 10:26:07 +02:00
Optional<UpdateInfo> updateInfo = checker.checkForNewerVersion();
2020-09-24 10:26:07 +02:00
assertThat(updateInfo).isPresent();
assertThat(updateInfo.get().getLatestVersion()).isEqualTo("1.42.9");
assertThat(updateInfo.get().getLink()).isEqualTo("download-link");
}
@Test
2020-09-24 10:26:07 +02:00
void shouldReturnUpdateInfo() {
UpdateInfo updateInfo = new UpdateInfo("2.5.0", "download-link");
when(scmConfiguration.getReleaseFeedUrl()).thenReturn("releaseFeed");
2020-09-24 10:26:07 +02:00
when(feedReader.findLatestRelease("releaseFeed")).thenReturn(Optional.of(updateInfo));
when(contextProvider.getVersion()).thenReturn("1.9.0");
2020-09-24 10:26:07 +02:00
Optional<UpdateInfo> latestRelease = checker.checkForNewerVersion();
assertThat(latestRelease).isPresent();
2020-09-24 10:26:07 +02:00
assertThat(latestRelease.get().getLatestVersion()).isEqualTo("2.5.0");
assertThat(latestRelease.get().getLink()).isEqualTo("download-link");
}
2020-09-21 17:04:30 +02:00
}