我是杂交商业的初学者。我需要使用同步产品目录进行集成测试,但我在同步时遇到问题。我在测试中添加了新产品属性 - “classification
”和此属性的设置值。然后,performCronJob
方法从syncJob
产品目录到Staged
产品目录Online
。现在,当从Online
目录中获取产品时,它没有“classification
”属性的值,并且出现AssertionError
。请告诉我,为什么会这样。这是我的考验。
@RunWith(HybrisJUnit4ClassRunner.class)
@RunListeners(
{ TransactionRunListener.class, ItemCreationListener.class, LogRunListener.class, PlatformRunListener.class })
@Transactional
public class ProductMyIntegrationTest extends ServicelayerTransactionalTest
{
@Resource
private TypeService typeService;
@Resource
private ModelService modelService;
@Resource
private CatalogVersionService catalogVersionService;
@Resource
private ProductService productService;
@Resource
private CronJobService cronJobService;
public ProductService getProductService()
{
return productService;
}
public CatalogVersionService getCatalogVersionService()
{
return catalogVersionService;
}
public TypeService getTypeService()
{
return typeService;
}
public ModelService getModelService()
{
return modelService;
}
@Test
public void testProductSyncBehavior()
{
final CatalogVersionModel catalogStagedVersionModel = getCatalogVersionService().getCatalogVersion("hybrisProductCatalog",
"Staged");
final CatalogVersionModel catalogOnlineVersionModel = getCatalogVersionService().getCatalogVersion("hybrisProductCatalog",
"Online");
final Collection<CatalogVersionModel> coll = new ArrayList<>();
coll.add(catalogOnlineVersionModel);
coll.add(catalogStagedVersionModel);
catalogVersionService.setSessionCatalogVersions(coll);
final ProductModel product = productService.getProduct(catalogStagedVersionModel, "0100");
product.setClassification("RRRRRRR");
getModelService().save(product);
cronJobService.performCronJob((CatalogVersionSyncCronJobModel) modelService.get(PK.fromLong(8796453503477L)), true);
final ProductModel prodOnline = modelService.get(productService.getProduct(catalogOnlineVersionModel, "0100").getPk());
final ProductModel prodStaged = modelService.get(productService.getProduct(catalogStagedVersionModel, "0100").getPk());
Assert.assertNotNull(prodOnline.getClassification());
}
}
AssertionError:
java.lang.AssertionError
at org.junit.Assert.fail(Assert.java:86)
at org.junit.Assert.assertTrue(Assert.java:41)
at org.junit.Assert.assertNotNull(Assert.java:712)
at org.junit.Assert.assertNotNull(Assert.java:722)
at de.hybris.merchandise.core.product.classification.ProductMyIntegrationTest.testProductSyncBehavior(ProductMyIntegrationTest.java:91)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)...
非常感谢。
答案 0 :(得分:0)
我决定了我的问题。我只是在没有事务和同步的情况下扩展ServicelayerTest
。但我不明白为什么Transactional
无效。
答案 1 :(得分:0)
使用 @Transactional 意味着在测试初始化期间(在 @Before 执行之前)启动事务并在测试后回滚(在@After之后因此,您实际使用服务层保存的所有数据都不会提交到数据库,这就是您无法看到新属性更改的原因。
这似乎是不可预测的,因为在测试属性之前,您无法确定同步cronjob是否有足够的时间来同步产品。