Beispiel #1
0
 @Test(expected = AuthorizationException.class)
 public void delete_no_permissions() {
   // given
   when(subject.isPermitted(any(OptionPermission.class))).thenReturn(false);
   when(defaultHierarchy.rankName(1)).thenReturn("specific");
   OptionCacheKey cacheKey = new OptionCacheKey(defaultHierarchy, SPECIFIC_RANK, 1, optionKey2);
   when(optionCache.delete(cacheKey)).thenAnswer(answerOf(3));
   // when
   Object actual = option.delete(1, optionKey2);
   // then
 }
Beispiel #2
0
 @Test
 public void get_lowest() {
   // given
   when(defaultHierarchy.lowestRankName()).thenReturn("low");
   OptionCacheKey cacheKey = new OptionCacheKey(defaultHierarchy, LOWEST_RANK, optionKey2);
   when(optionCache.get(Optional.of(5), cacheKey)).thenAnswer(answerOf(20));
   // when
   Integer actual = option.getLowestRanked(optionKey2);
   // then
   assertThat(actual).isEqualTo(20);
 }
Beispiel #3
0
 @Test
 public void get_none_found() {
   // given
   when(defaultHierarchy.highestRankName()).thenReturn("high");
   OptionCacheKey cacheKey = new OptionCacheKey(defaultHierarchy, HIGHEST_RANK, optionKey2);
   when(optionCache.get(Optional.of(5), cacheKey)).thenReturn(Optional.empty());
   // when
   Integer actual = option.get(optionKey2);
   // then
   assertThat(actual).isEqualTo(5);
 }
Beispiel #4
0
 @Test
 public void delete() {
   // given
   when(subject.isPermitted(any(OptionPermission.class))).thenReturn(true);
   when(defaultHierarchy.rankName(1)).thenReturn("specific");
   OptionCacheKey cacheKey = new OptionCacheKey(defaultHierarchy, SPECIFIC_RANK, 1, optionKey2);
   when(optionCache.delete(cacheKey)).thenAnswer(answerOf(3));
   // when
   Object actual = option.delete(1, optionKey2);
   // then
   assertThat(actual).isEqualTo(Optional.of(3));
   verify(optionCache).delete(cacheKey);
 }