|
5 | 5 | import com.arangodb.springframework.repository.ActorRepository;
|
6 | 6 | import com.arangodb.springframework.repository.MovieRepository;
|
7 | 7 | import com.arangodb.springframework.testdata.Movie;
|
| 8 | +import org.junit.jupiter.api.Disabled; |
8 | 9 | import org.junit.jupiter.api.Test;
|
9 | 10 | import org.springframework.beans.factory.annotation.Autowired;
|
| 11 | +import org.springframework.data.util.Streamable; |
10 | 12 | import org.springframework.test.context.ContextConfiguration;
|
11 | 13 | import org.springframework.test.context.transaction.TestTransaction;
|
12 | 14 | import org.springframework.transaction.annotation.Transactional;
|
13 | 15 |
|
| 16 | +import java.util.List; |
| 17 | + |
14 | 18 | import static org.assertj.core.api.Assertions.assertThat;
|
15 | 19 |
|
16 | 20 | @ContextConfiguration(classes = { ArangoTransactionalTestConfiguration.class })
|
17 |
| -public class ArangoTransactionManagerRepositoryTest extends AbstractArangoTest { |
| 21 | +class ArangoTransactionManagerRepositoryTest extends AbstractArangoTest { |
18 | 22 |
|
19 | 23 | public ArangoTransactionManagerRepositoryTest() {
|
20 | 24 | super(Movie.class);
|
@@ -71,4 +75,123 @@ public void shouldRollbackWithinTransaction() {
|
71 | 75 | public void shouldCreateCollectionsBeforeTransaction() {
|
72 | 76 | actorRepository.findAll();
|
73 | 77 | }
|
| 78 | + |
| 79 | + @Test |
| 80 | + @Transactional |
| 81 | + public void shouldFindSavedEntityWithinTransaction_findAllById() { |
| 82 | + Movie saved = movieRepository.save(starWars); |
| 83 | + |
| 84 | + List<Movie> list = Streamable.of(movieRepository.findAllById(List.of(saved.getId()))).toList(); |
| 85 | + |
| 86 | + assertThat(list).hasSize(1); |
| 87 | + assertThat(list.getFirst().getId()).isEqualTo(saved.getId()); |
| 88 | + } |
| 89 | + |
| 90 | + @Test |
| 91 | + @Transactional |
| 92 | + public void shouldFindSavedEntityWithinTransaction_findById() { |
| 93 | + Movie saved = movieRepository.save(starWars); |
| 94 | + |
| 95 | + Movie found = movieRepository.findById(saved.getId()).orElseThrow(); |
| 96 | + |
| 97 | + assertThat(found.getId()).isEqualTo(saved.getId()); |
| 98 | + } |
| 99 | + |
| 100 | + @Test |
| 101 | + @Transactional |
| 102 | + public void shouldFindSavedEntityWithinTransaction_existsById() { |
| 103 | + Movie saved = movieRepository.save(starWars); |
| 104 | + |
| 105 | + Boolean exists = movieRepository.existsById(saved.getId()); |
| 106 | + |
| 107 | + assertThat(exists).isTrue(); |
| 108 | + } |
| 109 | + |
| 110 | + @Test |
| 111 | + @Transactional |
| 112 | + public void shouldFindSavedEntityWithinTransaction_saveAll() { |
| 113 | + Movie saved = Streamable.of(movieRepository.saveAll(List.of(starWars))).stream().toList().getFirst(); |
| 114 | + |
| 115 | + Boolean exists = movieRepository.existsById(saved.getId()); |
| 116 | + |
| 117 | + assertThat(exists).isTrue(); |
| 118 | + } |
| 119 | + |
| 120 | + @Test |
| 121 | + @Transactional |
| 122 | + public void shouldFindSavedEntityWithinTransaction_findAll() { |
| 123 | + Movie saved = movieRepository.save(starWars); |
| 124 | + |
| 125 | + List<Movie> list = Streamable.of(movieRepository.findAll()).toList(); |
| 126 | + |
| 127 | + assertThat(list).hasSize(1); |
| 128 | + assertThat(list.getFirst().getId()).isEqualTo(saved.getId()); |
| 129 | + } |
| 130 | + |
| 131 | + @Test |
| 132 | + @Transactional |
| 133 | + @Disabled("count is not transactional") |
| 134 | + public void shouldFindSavedEntityWithinTransaction_count() { |
| 135 | + movieRepository.save(starWars); |
| 136 | + |
| 137 | + long count = movieRepository.count(); |
| 138 | + |
| 139 | + assertThat(count).isEqualTo(1); |
| 140 | + } |
| 141 | + |
| 142 | + @Test |
| 143 | + @Transactional |
| 144 | + public void shouldFindSavedEntityWithinTransaction_deleteById() { |
| 145 | + Movie saved = movieRepository.save(starWars); |
| 146 | + |
| 147 | + movieRepository.deleteById(saved.getId()); |
| 148 | + Boolean exists = movieRepository.existsById(saved.getId()); |
| 149 | + |
| 150 | + assertThat(exists).isFalse(); |
| 151 | + } |
| 152 | + |
| 153 | + @Test |
| 154 | + @Transactional |
| 155 | + public void shouldFindSavedEntityWithinTransaction_delete() { |
| 156 | + Movie saved = movieRepository.save(starWars); |
| 157 | + |
| 158 | + movieRepository.delete(saved); |
| 159 | + Boolean exists = movieRepository.existsById(saved.getId()); |
| 160 | + |
| 161 | + assertThat(exists).isFalse(); |
| 162 | + } |
| 163 | + |
| 164 | + @Test |
| 165 | + @Transactional |
| 166 | + public void shouldFindSavedEntityWithinTransaction_deleteAllById() { |
| 167 | + Movie saved = movieRepository.save(starWars); |
| 168 | + |
| 169 | + movieRepository.deleteAllById(List.of(saved.getId())); |
| 170 | + Boolean exists = movieRepository.existsById(saved.getId()); |
| 171 | + |
| 172 | + assertThat(exists).isFalse(); |
| 173 | + } |
| 174 | + |
| 175 | + @Test |
| 176 | + @Transactional |
| 177 | + public void shouldFindSavedEntityWithinTransaction_deleteAll() { |
| 178 | + Movie saved = movieRepository.save(starWars); |
| 179 | + |
| 180 | + movieRepository.deleteAll(List.of(saved)); |
| 181 | + Boolean exists = movieRepository.existsById(saved.getId()); |
| 182 | + |
| 183 | + assertThat(exists).isFalse(); |
| 184 | + } |
| 185 | + |
| 186 | + @Test |
| 187 | + @Transactional |
| 188 | + @Disabled("delete all is not transactional") |
| 189 | + public void shouldFindSavedEntityWithinTransaction_deleteAllNoArg() { |
| 190 | + Movie saved = movieRepository.save(starWars); |
| 191 | + |
| 192 | + movieRepository.deleteAll(); |
| 193 | + Boolean exists = movieRepository.existsById(saved.getId()); |
| 194 | + |
| 195 | + assertThat(exists).isFalse(); |
| 196 | + } |
74 | 197 | }
|
0 commit comments