use of com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics 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)));
}
use of com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics 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);
}
use of com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics 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);
}
use of com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics 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);
}
use of com.commercetools.sync.taxcategories.helpers.TaxCategorySyncStatistics in project commercetools-sync-java by commercetools.
the class TaxCategorySyncIT method sync_withNewTaxCategory_shouldCreateTaxCategory.
@Test
void sync_withNewTaxCategory_shouldCreateTaxCategory() {
final SubRate subRate1 = SubRate.of("subRate-1", 0.05);
final SubRate subRate2 = SubRate.of("subRate-2", 0.06);
final TaxRateDraft taxRateDraft = TaxRateDraftBuilder.of("%11 US", 0.11, false, CountryCode.US).subRates(asList(subRate1, subRate2)).build();
final TaxCategoryDraft taxCategoryDraft = TaxCategoryDraftBuilder.of("tax-category-name-new", singletonList(taxRateDraft), "tax-category-description-new").key("tax-category-key-new").build();
final TaxCategorySyncOptions taxCategorySyncOptions = TaxCategorySyncOptionsBuilder.of(CTP_TARGET_CLIENT).build();
final TaxCategorySync taxCategorySync = new TaxCategorySync(taxCategorySyncOptions);
// test
final TaxCategorySyncStatistics taxCategorySyncStatistics = taxCategorySync.sync(singletonList(taxCategoryDraft)).toCompletableFuture().join();
assertThat(taxCategorySyncStatistics).hasValues(1, 1, 0, 0);
}
Aggregations