简体   繁体   中英

Why doesn't my @Transactional method rollback when testing?

I have @transactional method that seems to be working (rolling back) if run the actual service and provide inputs that would cause a run-time error. If I create a Test for that method that throws a run-time error it doesn't seem to rollback anymore. Any idea why this doesn't work while testing?

it's somthing like:

@Service
public class SampleServiceImpl implements SampleService {

    private final RepoA repoA;
    private final RepoB repoB;

    public SampleServiceImpl(RepoA repoA, RepoB repoB) {
        this.repoA = repoA,
        this.repoB = repoB
    }

    @Transactional
    @Override
    public void addItems() {
        repoA.save(new ItemA(1,'name1')); //works
        repoB.save(new ItemB(2,'name2')); //throws run-time error
    }
}
@RunWith(SpringRunner.class)
@DataJpaTest
public class Tests {

    @Autowired
    private RepoA repoA;

    @Mock
    private Repob repoBMock;

    @Test
    public void whenExceptionOccurrs_thenRollsBack() {
        var service = new SampleService(repoA, repoBMock);
        Mockito.when(repoBMock.save(any(ItemB.class))).thenThrow(new RuntimeException());
        boolean exceptionThrown = false;
        try {
            service.addItems()
        } catch (Exception e) {
            exceptionThrown = true;
        }

        Assert.assertTrue(exceptionThrown);
        Assert.assertFalse(repoA.existsByName('name1')); // this assertion fails because the the first item still exists in db
    }
}

Just add annotation Rollback and set the flag to false.

   @Test
   @Rollback(false)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM