Search in sources :

Example 6 with TaxCategoryService

use of com.commercetools.sync.services.TaxCategoryService in project commercetools-sync-java by commercetools.

the class TaxCategorySyncTest method sync_WithDuplicatedCountryCode_ShouldNotBuildActionAndTriggerErrorCallback.

@Test
void sync_WithDuplicatedCountryCode_ShouldNotBuildActionAndTriggerErrorCallback() {
    final String name = "DuplicatedName";
    final TaxCategoryDraft draft = TaxCategoryDraftBuilder.of(name, asList(// replace
    TaxRateDraftBuilder.of(name, 2.0, false, CountryCode.FR).build(), TaxRateDraftBuilder.of(name, 2.0, false, CountryCode.FR).build()), "desc").key("someKey").build();
    final AtomicReference<String> callback = new AtomicReference<>(null);
    final TaxCategorySyncOptions syncOptions = TaxCategorySyncOptionsBuilder.of(mock(SphereClient.class)).errorCallback((exception, taxDraft, entry, actions) -> callback.set(exception.getMessage())).build();
    final TaxCategorySync sync = new TaxCategorySync(syncOptions, taxCategoryService);
    final TaxCategory taxCategory = mock(TaxCategory.class);
    when(taxCategory.getId()).thenReturn("id");
    when(taxCategory.getKey()).thenReturn("someKey");
    when(taxCategoryService.fetchMatchingTaxCategoriesByKeys(any())).thenReturn(completedFuture(new HashSet<>(singletonList(taxCategory))));
    when(taxCategoryService.updateTaxCategory(any(), any())).thenReturn(completedFuture(taxCategory));
    final TaxCategorySyncStatistics result = sync.sync(singletonList(draft)).toCompletableFuture().join();
    assertAll(() -> assertThat(result.getProcessed().get()).isEqualTo(1), () -> assertThat(result.getUpdated().get()).isEqualTo(0), () -> assertThat(result.getFailed().get()).isEqualTo(1), () -> assertThat(callback.get()).contains(format("Tax rate drafts have duplicated country codes. Duplicated " + "tax rate country code: '%s'. Tax rate country codes and states are " + "expected to be unique inside their tax category.", CountryCode.FR)));
}
Also used : ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Optional.empty(java.util.Optional.empty) TaxCategorySyncStatistics(com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics) TaxCategoryDraft(io.sphere.sdk.taxcategories.TaxCategoryDraft) CompletableFuture.completedFuture(java.util.concurrent.CompletableFuture.completedFuture) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) AtomicReference(java.util.concurrent.atomic.AtomicReference) Collections.singletonList(java.util.Collections.singletonList) ArrayList(java.util.ArrayList) HashSet(java.util.HashSet) Mockito.verifyNoMoreInteractions(org.mockito.Mockito.verifyNoMoreInteractions) Arrays.asList(java.util.Arrays.asList) Assertions.as(org.assertj.core.api.Assertions.as) CompletableFuture.supplyAsync(java.util.concurrent.CompletableFuture.supplyAsync) SphereClient(io.sphere.sdk.client.SphereClient) SphereException(io.sphere.sdk.models.SphereException) TaxCategoryService(com.commercetools.sync.services.TaxCategoryService) Assertions.assertAll(org.junit.jupiter.api.Assertions.assertAll) TaxCategoryDraftBuilder(io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder) CountryCode(com.neovisionaries.i18n.CountryCode) Collections.emptySet(java.util.Collections.emptySet) Collections.emptyList(java.util.Collections.emptyList) Mockito.times(org.mockito.Mockito.times) Mockito.when(org.mockito.Mockito.when) String.format(java.lang.String.format) Mockito.verify(org.mockito.Mockito.verify) Test(org.junit.jupiter.api.Test) List(java.util.List) AfterEach(org.junit.jupiter.api.AfterEach) TaxRateDraftBuilder(io.sphere.sdk.taxcategories.TaxRateDraftBuilder) ConcurrentModificationException(io.sphere.sdk.client.ConcurrentModificationException) Optional(java.util.Optional) STRING(org.assertj.core.api.InstanceOfAssertFactories.STRING) Mockito.reset(org.mockito.Mockito.reset) Mockito.mock(org.mockito.Mockito.mock) TaxCategory(io.sphere.sdk.taxcategories.TaxCategory) TaxCategoryDraft(io.sphere.sdk.taxcategories.TaxCategoryDraft) TaxCategory(io.sphere.sdk.taxcategories.TaxCategory) TaxCategorySyncStatistics(com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics) SphereClient(io.sphere.sdk.client.SphereClient) AtomicReference(java.util.concurrent.atomic.AtomicReference) HashSet(java.util.HashSet) Test(org.junit.jupiter.api.Test)

Example 7 with TaxCategoryService

use of com.commercetools.sync.services.TaxCategoryService in project commercetools-sync-java by commercetools.

the class TaxCategorySyncTest method sync_WithErrorUpdating_ShouldApplyErrorCallbackAndIncrementFailed.

@Test
void sync_WithErrorUpdating_ShouldApplyErrorCallbackAndIncrementFailed() {
    final List<String> errors = new ArrayList<>();
    final TaxCategorySyncOptions options = TaxCategorySyncOptionsBuilder.of(mock(SphereClient.class)).errorCallback((exception, draft, entry, actions) -> errors.add(exception.getMessage())).build();
    final TaxCategorySync sync = new TaxCategorySync(options, taxCategoryService);
    final TaxCategoryDraft draft = TaxCategoryDraftBuilder.of("someName", emptyList(), "changed").key("someKey").build();
    final TaxCategory taxCategory = mock(TaxCategory.class);
    when(taxCategory.getKey()).thenReturn("someKey");
    when(taxCategoryService.fetchMatchingTaxCategoriesByKeys(any())).thenReturn(completedFuture(new HashSet<>(singletonList(taxCategory))));
    when(taxCategoryService.updateTaxCategory(any(), any())).thenReturn(supplyAsync(() -> {
        throw new SphereException();
    }));
    final TaxCategorySyncStatistics result = sync.sync(singletonList(draft)).toCompletableFuture().join();
    assertAll(() -> assertThat(result.getProcessed().get()).isEqualTo(1), () -> assertThat(result.getUpdated().get()).isEqualTo(0), () -> assertThat(result.getFailed().get()).isEqualTo(1), () -> assertThat(errors).hasSize(1));
    verify(taxCategoryService, times(1)).fetchMatchingTaxCategoriesByKeys(any());
    verify(taxCategoryService, times(1)).updateTaxCategory(any(), any());
    verifyNoMoreInteractions(taxCategoryService);
}
Also used : ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Optional.empty(java.util.Optional.empty) TaxCategorySyncStatistics(com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics) TaxCategoryDraft(io.sphere.sdk.taxcategories.TaxCategoryDraft) CompletableFuture.completedFuture(java.util.concurrent.CompletableFuture.completedFuture) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) AtomicReference(java.util.concurrent.atomic.AtomicReference) Collections.singletonList(java.util.Collections.singletonList) ArrayList(java.util.ArrayList) HashSet(java.util.HashSet) Mockito.verifyNoMoreInteractions(org.mockito.Mockito.verifyNoMoreInteractions) Arrays.asList(java.util.Arrays.asList) Assertions.as(org.assertj.core.api.Assertions.as) CompletableFuture.supplyAsync(java.util.concurrent.CompletableFuture.supplyAsync) SphereClient(io.sphere.sdk.client.SphereClient) SphereException(io.sphere.sdk.models.SphereException) TaxCategoryService(com.commercetools.sync.services.TaxCategoryService) Assertions.assertAll(org.junit.jupiter.api.Assertions.assertAll) TaxCategoryDraftBuilder(io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder) CountryCode(com.neovisionaries.i18n.CountryCode) Collections.emptySet(java.util.Collections.emptySet) Collections.emptyList(java.util.Collections.emptyList) Mockito.times(org.mockito.Mockito.times) Mockito.when(org.mockito.Mockito.when) String.format(java.lang.String.format) Mockito.verify(org.mockito.Mockito.verify) Test(org.junit.jupiter.api.Test) List(java.util.List) AfterEach(org.junit.jupiter.api.AfterEach) TaxRateDraftBuilder(io.sphere.sdk.taxcategories.TaxRateDraftBuilder) ConcurrentModificationException(io.sphere.sdk.client.ConcurrentModificationException) Optional(java.util.Optional) STRING(org.assertj.core.api.InstanceOfAssertFactories.STRING) Mockito.reset(org.mockito.Mockito.reset) Mockito.mock(org.mockito.Mockito.mock) TaxCategory(io.sphere.sdk.taxcategories.TaxCategory) TaxCategoryDraft(io.sphere.sdk.taxcategories.TaxCategoryDraft) TaxCategory(io.sphere.sdk.taxcategories.TaxCategory) TaxCategorySyncStatistics(com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics) SphereClient(io.sphere.sdk.client.SphereClient) ArrayList(java.util.ArrayList) SphereException(io.sphere.sdk.models.SphereException) HashSet(java.util.HashSet) Test(org.junit.jupiter.api.Test)

Example 8 with TaxCategoryService

use of com.commercetools.sync.services.TaxCategoryService in project commercetools-sync-java by commercetools.

the class TaxCategorySyncTest method sync_WithErrorUpdatingAndTryingToRecoverWithFetchException_ShouldApplyErrorCallbackAndIncrementFailed.

@Test
void sync_WithErrorUpdatingAndTryingToRecoverWithFetchException_ShouldApplyErrorCallbackAndIncrementFailed() {
    final List<String> errors = new ArrayList<>();
    final TaxCategorySyncOptions options = TaxCategorySyncOptionsBuilder.of(mock(SphereClient.class)).errorCallback((exception, draft, entry, actions) -> errors.add(exception.getMessage())).build();
    final TaxCategorySync sync = new TaxCategorySync(options, taxCategoryService);
    final TaxCategoryDraft draft = TaxCategoryDraftBuilder.of("someName", emptyList(), "changed").key("someKey").build();
    final TaxCategory taxCategory = mock(TaxCategory.class);
    when(taxCategory.getKey()).thenReturn("someKey");
    when(taxCategoryService.fetchMatchingTaxCategoriesByKeys(any())).thenReturn(completedFuture(new HashSet<>(singletonList(taxCategory))));
    when(taxCategoryService.updateTaxCategory(any(), any())).thenReturn(supplyAsync(() -> {
        throw new io.sphere.sdk.client.ConcurrentModificationException();
    }));
    when(taxCategoryService.fetchTaxCategory(any())).thenReturn(supplyAsync(() -> {
        throw new SphereException();
    }));
    final TaxCategorySyncStatistics result = sync.sync(singletonList(draft)).toCompletableFuture().join();
    assertAll(() -> assertThat(result.getProcessed().get()).isEqualTo(1), () -> assertThat(result.getUpdated().get()).isEqualTo(0), () -> assertThat(result.getFailed().get()).isEqualTo(1), () -> assertThat(errors).hasSize(1), () -> assertThat(errors).singleElement(as(STRING)).contains("Failed to fetch from CTP while retrying after concurrency modification."));
    verify(taxCategoryService, times(1)).fetchMatchingTaxCategoriesByKeys(any());
    verify(taxCategoryService, times(1)).updateTaxCategory(any(), any());
    verify(taxCategoryService, times(1)).fetchTaxCategory(any());
    verifyNoMoreInteractions(taxCategoryService);
}
Also used : ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Optional.empty(java.util.Optional.empty) TaxCategorySyncStatistics(com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics) TaxCategoryDraft(io.sphere.sdk.taxcategories.TaxCategoryDraft) CompletableFuture.completedFuture(java.util.concurrent.CompletableFuture.completedFuture) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) AtomicReference(java.util.concurrent.atomic.AtomicReference) Collections.singletonList(java.util.Collections.singletonList) ArrayList(java.util.ArrayList) HashSet(java.util.HashSet) Mockito.verifyNoMoreInteractions(org.mockito.Mockito.verifyNoMoreInteractions) Arrays.asList(java.util.Arrays.asList) Assertions.as(org.assertj.core.api.Assertions.as) CompletableFuture.supplyAsync(java.util.concurrent.CompletableFuture.supplyAsync) SphereClient(io.sphere.sdk.client.SphereClient) SphereException(io.sphere.sdk.models.SphereException) TaxCategoryService(com.commercetools.sync.services.TaxCategoryService) Assertions.assertAll(org.junit.jupiter.api.Assertions.assertAll) TaxCategoryDraftBuilder(io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder) CountryCode(com.neovisionaries.i18n.CountryCode) Collections.emptySet(java.util.Collections.emptySet) Collections.emptyList(java.util.Collections.emptyList) Mockito.times(org.mockito.Mockito.times) Mockito.when(org.mockito.Mockito.when) String.format(java.lang.String.format) Mockito.verify(org.mockito.Mockito.verify) Test(org.junit.jupiter.api.Test) List(java.util.List) AfterEach(org.junit.jupiter.api.AfterEach) TaxRateDraftBuilder(io.sphere.sdk.taxcategories.TaxRateDraftBuilder) ConcurrentModificationException(io.sphere.sdk.client.ConcurrentModificationException) Optional(java.util.Optional) STRING(org.assertj.core.api.InstanceOfAssertFactories.STRING) Mockito.reset(org.mockito.Mockito.reset) Mockito.mock(org.mockito.Mockito.mock) TaxCategory(io.sphere.sdk.taxcategories.TaxCategory) TaxCategory(io.sphere.sdk.taxcategories.TaxCategory) TaxCategorySyncStatistics(com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics) ArrayList(java.util.ArrayList) SphereException(io.sphere.sdk.models.SphereException) TaxCategoryDraft(io.sphere.sdk.taxcategories.TaxCategoryDraft) SphereClient(io.sphere.sdk.client.SphereClient) ConcurrentModificationException(io.sphere.sdk.client.ConcurrentModificationException) HashSet(java.util.HashSet) Test(org.junit.jupiter.api.Test)

Example 9 with TaxCategoryService

use of com.commercetools.sync.services.TaxCategoryService in project commercetools-sync-java by commercetools.

the class TaxCategorySyncTest method sync_WithFilteredActions_ShouldApplyBeforeUpdateCallbackAndNotIncrementUpdated.

@Test
void sync_WithFilteredActions_ShouldApplyBeforeUpdateCallbackAndNotIncrementUpdated() {
    final AtomicBoolean callbackApplied = new AtomicBoolean(false);
    final TaxCategorySyncOptions options = TaxCategorySyncOptionsBuilder.of(mock(SphereClient.class)).beforeUpdateCallback((actions, draft, old) -> {
        callbackApplied.set(true);
        return emptyList();
    }).build();
    final TaxCategorySync sync = new TaxCategorySync(options, taxCategoryService);
    final TaxCategoryDraft draft = TaxCategoryDraftBuilder.of("someName", emptyList(), "changed").key("someKey").build();
    final TaxCategory taxCategory = mock(TaxCategory.class);
    when(taxCategory.getId()).thenReturn("id");
    when(taxCategory.getKey()).thenReturn("someKey");
    when(taxCategoryService.fetchMatchingTaxCategoriesByKeys(any())).thenReturn(completedFuture(new HashSet<>(singletonList(taxCategory))));
    final TaxCategorySyncStatistics result = sync.sync(singletonList(draft)).toCompletableFuture().join();
    assertAll(() -> assertThat(result.getProcessed().get()).isEqualTo(1), () -> assertThat(result.getUpdated().get()).isEqualTo(0), () -> assertThat(result.getFailed().get()).isEqualTo(0), () -> assertThat(callbackApplied.get()).isTrue());
    verify(taxCategoryService, times(1)).fetchMatchingTaxCategoriesByKeys(any());
    verifyNoMoreInteractions(taxCategoryService);
}
Also used : ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Optional.empty(java.util.Optional.empty) TaxCategorySyncStatistics(com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics) TaxCategoryDraft(io.sphere.sdk.taxcategories.TaxCategoryDraft) CompletableFuture.completedFuture(java.util.concurrent.CompletableFuture.completedFuture) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) AtomicReference(java.util.concurrent.atomic.AtomicReference) Collections.singletonList(java.util.Collections.singletonList) ArrayList(java.util.ArrayList) HashSet(java.util.HashSet) Mockito.verifyNoMoreInteractions(org.mockito.Mockito.verifyNoMoreInteractions) Arrays.asList(java.util.Arrays.asList) Assertions.as(org.assertj.core.api.Assertions.as) CompletableFuture.supplyAsync(java.util.concurrent.CompletableFuture.supplyAsync) SphereClient(io.sphere.sdk.client.SphereClient) SphereException(io.sphere.sdk.models.SphereException) TaxCategoryService(com.commercetools.sync.services.TaxCategoryService) Assertions.assertAll(org.junit.jupiter.api.Assertions.assertAll) TaxCategoryDraftBuilder(io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder) CountryCode(com.neovisionaries.i18n.CountryCode) Collections.emptySet(java.util.Collections.emptySet) Collections.emptyList(java.util.Collections.emptyList) Mockito.times(org.mockito.Mockito.times) Mockito.when(org.mockito.Mockito.when) String.format(java.lang.String.format) Mockito.verify(org.mockito.Mockito.verify) Test(org.junit.jupiter.api.Test) List(java.util.List) AfterEach(org.junit.jupiter.api.AfterEach) TaxRateDraftBuilder(io.sphere.sdk.taxcategories.TaxRateDraftBuilder) ConcurrentModificationException(io.sphere.sdk.client.ConcurrentModificationException) Optional(java.util.Optional) STRING(org.assertj.core.api.InstanceOfAssertFactories.STRING) Mockito.reset(org.mockito.Mockito.reset) Mockito.mock(org.mockito.Mockito.mock) TaxCategory(io.sphere.sdk.taxcategories.TaxCategory) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) TaxCategoryDraft(io.sphere.sdk.taxcategories.TaxCategoryDraft) TaxCategory(io.sphere.sdk.taxcategories.TaxCategory) TaxCategorySyncStatistics(com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics) SphereClient(io.sphere.sdk.client.SphereClient) HashSet(java.util.HashSet) Test(org.junit.jupiter.api.Test)

Example 10 with TaxCategoryService

use of com.commercetools.sync.services.TaxCategoryService in project commercetools-sync-java by commercetools.

the class ProductSyncMockUtils method getMockTaxCategoryService.

/**
 * Creates a mock {@link TaxCategoryService} that returns a completed {@link CompletableFuture}
 * containing an {@link Optional} containing the id of the supplied value whenever the following
 * method is called on the service:
 *
 * <ul>
 *   <li>{@link TaxCategoryService#fetchCachedTaxCategoryId(String)}
 * </ul>
 *
 * @return the created mock of the {@link TaxCategoryService}.
 */
public static TaxCategoryService getMockTaxCategoryService(@Nonnull final String id) {
    final TaxCategoryService taxCategoryService = mock(TaxCategoryService.class);
    when(taxCategoryService.fetchCachedTaxCategoryId(anyString())).thenReturn(CompletableFuture.completedFuture(Optional.of(id)));
    return taxCategoryService;
}
Also used : TaxCategoryService(com.commercetools.sync.services.TaxCategoryService)

Aggregations

TaxCategoryService (com.commercetools.sync.services.TaxCategoryService)17 SphereClient (io.sphere.sdk.client.SphereClient)16 TaxCategory (io.sphere.sdk.taxcategories.TaxCategory)16 TaxCategoryDraft (io.sphere.sdk.taxcategories.TaxCategoryDraft)16 TaxCategoryDraftBuilder (io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder)16 ArrayList (java.util.ArrayList)16 Collections.singletonList (java.util.Collections.singletonList)16 HashSet (java.util.HashSet)16 List (java.util.List)16 Optional (java.util.Optional)16 Assertions.as (org.assertj.core.api.Assertions.as)16 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)16 STRING (org.assertj.core.api.InstanceOfAssertFactories.STRING)16 Test (org.junit.jupiter.api.Test)16 ArgumentMatchers.any (org.mockito.ArgumentMatchers.any)16 Mockito.times (org.mockito.Mockito.times)16 Mockito.verify (org.mockito.Mockito.verify)16 Mockito.when (org.mockito.Mockito.when)16 TaxCategorySyncStatistics (com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics)11 CountryCode (com.neovisionaries.i18n.CountryCode)11