use of com.epam.pipeline.entity.contextual.ContextualPreferenceExternalResource in project cloud-pipeline by epam.
the class DefaultContextualPreferenceReducerTest method reduceShouldReturnReducedPreferenceIfThereIsReducerForTheGivenPreference.
@Test
public void reduceShouldReturnReducedPreferenceIfThereIsReducerForTheGivenPreference() {
final ContextualPreferenceExternalResource resource = new ContextualPreferenceExternalResource(LEVEL, RESOURCE_ID);
final ContextualPreference preference1 = new ContextualPreference(PREFERENCE_1, VALUE_1, resource);
final ContextualPreference preference2 = new ContextualPreference(PREFERENCE_1, VALUE_2, resource);
final ContextualPreference expectedPreference = new ContextualPreference(PREFERENCE_1, MERGED_VALUE, resource);
final List<ContextualPreference> preferences = Arrays.asList(preference1, preference2);
when(innerReducer.reduce(eq(preferences))).thenReturn(Optional.of(expectedPreference));
final Optional<ContextualPreference> reducedPreference = reducer.reduce(preferences);
assertTrue(reducedPreference.isPresent());
assertThat(reducedPreference.get(), is(expectedPreference));
verify(innerReducer).reduce(eq(preferences));
}
use of com.epam.pipeline.entity.contextual.ContextualPreferenceExternalResource in project cloud-pipeline by epam.
the class DefaultContextualPreferenceReducerTest method reduceShouldReturnEmptyOptionalIfThereArePreferencesWithDifferentLevels.
@Test
public void reduceShouldReturnEmptyOptionalIfThereArePreferencesWithDifferentLevels() {
final ContextualPreferenceExternalResource resource = new ContextualPreferenceExternalResource(LEVEL, RESOURCE_ID);
final ContextualPreferenceExternalResource anotherResource = new ContextualPreferenceExternalResource(ANOTHER_LEVEL, RESOURCE_ID);
final ContextualPreference preference1 = new ContextualPreference(PREFERENCE_1, VALUE_1, resource);
final ContextualPreference preference2 = new ContextualPreference(PREFERENCE_1, VALUE_2, anotherResource);
final List<ContextualPreference> preferences = Arrays.asList(preference1, preference2);
final Optional<ContextualPreference> reducedPreference = reducer.reduce(preferences);
assertFalse(reducedPreference.isPresent());
}
use of com.epam.pipeline.entity.contextual.ContextualPreferenceExternalResource in project cloud-pipeline by epam.
the class SystemPreferenceHandlerTest method searchShouldDelegateExecutionToTheNextHandlerIfPreferenceDoesNotExist.
@Test
public void searchShouldDelegateExecutionToTheNextHandlerIfPreferenceDoesNotExist() {
final ContextualPreference preference = new ContextualPreference(NAME, VALUE, resource);
final List<ContextualPreferenceExternalResource> resources = Collections.emptyList();
when(preferenceManager.load(eq(NAME))).thenReturn(Optional.empty());
when(nextHandler.search(eq(SINGLE_NAME), eq(resources))).thenReturn(Optional.of(preference));
final Optional<ContextualPreference> searchedPreference = handler().search(SINGLE_NAME, resources);
assertTrue(searchedPreference.isPresent());
assertThat(searchedPreference.get(), is(preference));
verify(preferenceManager).load(eq(NAME));
verify(nextHandler).search(eq(SINGLE_NAME), eq(resources));
}
use of com.epam.pipeline.entity.contextual.ContextualPreferenceExternalResource in project cloud-pipeline by epam.
the class ArrayContextualPreferenceReducerTest method reduceShouldReturnPreferenceWithMergedValue.
@Test
public void reduceShouldReturnPreferenceWithMergedValue() {
final ContextualPreferenceExternalResource resource = new ContextualPreferenceExternalResource(LEVEL, RESOURCE_ID);
final ContextualPreference preference1 = new ContextualPreference(NAME, VALUE_1, resource);
final ContextualPreference preference2 = new ContextualPreference(NAME, VALUE_2, resource);
final List<ContextualPreference> preferences = Arrays.asList(preference1, preference2);
final Optional<ContextualPreference> reducedPreference = reducer.reduce(preferences);
assertTrue(reducedPreference.isPresent());
assertThat(reducedPreference.get().getValue(), is(MERGED_VALUE));
}
use of com.epam.pipeline.entity.contextual.ContextualPreferenceExternalResource in project cloud-pipeline by epam.
the class ArrayContextualPreferenceReducerTest method reduceShouldReturnPreferenceWithoutCreatedDateAndResource.
@Test
public void reduceShouldReturnPreferenceWithoutCreatedDateAndResource() {
final ContextualPreferenceExternalResource resource = new ContextualPreferenceExternalResource(LEVEL, RESOURCE_ID);
final ContextualPreference preference1 = new ContextualPreference(NAME, VALUE_1, resource);
final ContextualPreference preference2 = new ContextualPreference(NAME, VALUE_2, resource);
final List<ContextualPreference> preferences = Arrays.asList(preference1, preference2);
final Optional<ContextualPreference> reducedPreference = reducer.reduce(preferences);
assertTrue(reducedPreference.isPresent());
assertThat(reducedPreference.get().getCreatedDate(), is(nullValue()));
assertThat(reducedPreference.get().getResource(), is(nullValue()));
}
Aggregations