/test/src/main/java/org/axonframework/test/aggregate/TestExecutor.java

http://github.com/AxonFramework/AxonFramework · Java · 215 lines · 34 code · 19 blank · 162 comment · 0 complexity · 03ea3fc1e4827368c7843bbe7738ccde MD5 · raw file

  1. /*
  2. * Copyright (c) 2010-2021. Axon Framework
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.axonframework.test.aggregate;
  17. import org.axonframework.messaging.Message;
  18. import java.time.Duration;
  19. import java.time.Instant;
  20. import java.util.List;
  21. import java.util.Map;
  22. /**
  23. * Interface describing the operations available on a test fixture in the execution stage. In this stage, there is only
  24. * on operation: {@link #when(Object)}, which dispatches a command on this fixture's Command Bus.
  25. *
  26. * @param <T> The type of Aggregate under test
  27. * @author Allard Buijze
  28. * @since 0.6
  29. */
  30. public interface TestExecutor<T> {
  31. /**
  32. * Dispatches the given command to the appropriate command handler and records all activity in the fixture for
  33. * result validation. If the given {@code command} is a {@link
  34. * org.axonframework.commandhandling.CommandMessage} instance, it will be dispatched as-is. Any other object will
  35. * cause the given {@code command} to be wrapped in a {@code CommandMessage} as its payload.
  36. *
  37. * @param command The command to execute
  38. * @return a ResultValidator that can be used to validate the resulting actions of the command execution
  39. */
  40. ResultValidator<T> when(Object command);
  41. /**
  42. * Dispatches the given command and meta data to the appropriate command handler and records all
  43. * activity in the fixture for result validation. If the given {@code command} is a {@link
  44. * org.axonframework.commandhandling.CommandMessage} instance, it will be dispatched as-is, with given
  45. * additional {@code metaData}. Any other object will cause the given {@code command} to be wrapped in a
  46. * {@code CommandMessage} as its payload.
  47. *
  48. * @param command The command to execute
  49. * @param metaData The meta data to attach to the
  50. * @return a ResultValidator that can be used to validate the resulting actions of the command execution
  51. */
  52. ResultValidator<T> when(Object command, Map<String, ?> metaData);
  53. /**
  54. * Configures the given {@code domainEvents} as the "given" events. These are the events returned by the event
  55. * store when an aggregate is loaded.
  56. * <p/>
  57. * If an item in the given {@code domainEvents} implements {@link Message}, the
  58. * payload and meta data from that message are copied into a newly created Domain Event Message. Otherwise, a
  59. * Domain Event Message with the item as payload and empty meta data is created.
  60. *
  61. * @param domainEvents the domain events the event store should return
  62. * @return a TestExecutor instance that can execute the test with this configuration
  63. */
  64. TestExecutor<T> andGiven(Object... domainEvents);
  65. /**
  66. * Configures the given {@code domainEvents} as the "given" events. These are the events returned by the event
  67. * store when an aggregate is loaded.
  68. * <p/>
  69. * If an item in the list implements {@link Message}, the payload and meta data from that
  70. * message are copied into a newly created Domain Event Message. Otherwise, a Domain Event Message with the item
  71. * as payload and empty meta data is created.
  72. *
  73. * @param domainEvents the domain events the event store should return
  74. * @return a TestExecutor instance that can execute the test with this configuration
  75. */
  76. TestExecutor<T> andGiven(List<?> domainEvents);
  77. /**
  78. * Configures the given {@code commands} as the command that will provide the "given" events. The commands are
  79. * executed, and the resulting stored events are captured.
  80. *
  81. * @param commands the domain events the event store should return
  82. * @return a TestExecutor instance that can execute the test with this configuration
  83. */
  84. TestExecutor<T> andGivenCommands(Object... commands);
  85. /**
  86. * Configures the given {@code commands} as the command that will provide the "given" events. The commands are
  87. * executed, and the resulting stored events are captured.
  88. *
  89. * @param commands the domain events the event store should return
  90. * @return a TestExecutor instance that can execute the test with this configuration
  91. */
  92. TestExecutor<T> andGivenCommands(List<?> commands);
  93. /**
  94. * Use this method to indicate a specific moment as the initial current time "known" by the fixture at the start
  95. * of the given state.
  96. *
  97. * @param currentTime The simulated "current time" at which the given state is initialized
  98. * @return a TestExecutor instance that can execute the test with this configuration
  99. */
  100. TestExecutor<T> andGivenCurrentTime(Instant currentTime);
  101. /**
  102. * Returns the time as "known" by the fixture. This is the time at which the fixture was created, plus the amount of
  103. * time the fixture was told to simulate a "wait".
  104. *
  105. * @return the simulated "current time" of the fixture.
  106. */
  107. Instant currentTime();
  108. /**
  109. * Simulates the time elapsing in the current given state using a {@link Duration} as the unit of time. This can be
  110. * useful when the time between given events is of importance, for example when leveraging the
  111. * {@link org.axonframework.deadline.DeadlineManager} to schedule deadlines in the context of a given Aggregate.
  112. *
  113. * @param elapsedTime a {@link Duration} specifying the amount of time that will elapse
  114. * @return a {@link ResultValidator} that can be used to validate the resulting actions of the command execution
  115. *
  116. * @deprecated in favor of {@link #whenTimeElapses(Duration)}. This function incorrectly suggests you can
  117. * proceed with other operations after calling it, which is made impossible due to the {@link ResultValidator}
  118. * return type
  119. */
  120. @Deprecated
  121. default ResultValidator andThenTimeElapses(Duration elapsedTime) {
  122. return whenTimeElapses(elapsedTime);
  123. }
  124. /**
  125. * Simulates the time elapsing in the current given state using a {@link Duration} as the unit of time. This can be
  126. * useful when the time between given events is of importance, for example when leveraging the
  127. * {@link org.axonframework.deadline.DeadlineManager} to schedule deadlines in the context of a given Aggregate.
  128. *
  129. * @param elapsedTime a {@link Duration} specifying the amount of time that will elapse
  130. * @return a {@link ResultValidator} that can be used to validate the resulting actions of the command execution
  131. * @deprecated since 4.6. Use {@link #whenTimeAdvancesTo(Instant)} method
  132. */
  133. @Deprecated
  134. ResultValidator<T> whenThenTimeElapses(Duration elapsedTime);
  135. /**
  136. * Simulates the time elapsing in the current given state using a {@link Duration} as the unit of time. This can be
  137. * useful when the time between given events is of importance, for example when leveraging the
  138. * {@link org.axonframework.deadline.DeadlineManager} to schedule deadlines in the context of a given Aggregate.
  139. *
  140. * Note: As this method is added to the interface as a replacement for the deprecated
  141. * {@link #whenThenTimeAdvancesTo(Instant)} method, and in case there are other implementations by 3rd party
  142. * libraries, this method is changed to a default method that rely on the deprecated method so that there is no
  143. * breaking changes in the API in case an external implementation of this interface. Nevertheless, the recomended
  144. * approach is to override this implementation.
  145. *
  146. * @param elapsedTime a {@link Duration} specifying the amount of time that will elapse
  147. * @return a {@link ResultValidator} that can be used to validate the resulting actions of the command execution
  148. */
  149. default ResultValidator<T> whenTimeElapses(Duration elapsedTime) {
  150. return whenThenTimeElapses(elapsedTime);
  151. }
  152. /**
  153. * Simulates the time advancing in the current given state using an {@link Instant} as the unit of time. This can be
  154. * useful when the time between given events is of importance, for example when leveraging the
  155. * {@link org.axonframework.deadline.DeadlineManager} to schedule deadlines in the context of a given Aggregate.
  156. *
  157. * @param newPointInTime an {@link Instant} specifying the amount of time to advance the clock to
  158. * @return a {@link ResultValidator} that can be used to validate the resulting actions of the command execution
  159. *
  160. * @deprecated in favor of {@link #whenTimeAdvancesTo(Instant)}. This function incorrectly suggests you can
  161. * proceed with other operations after calling it, which is made impossible due to the {@link ResultValidator}
  162. * return type
  163. */
  164. @Deprecated
  165. default ResultValidator andThenTimeAdvancesTo(Instant newPointInTime) {
  166. return whenTimeAdvancesTo(newPointInTime);
  167. }
  168. /**
  169. * Simulates the time advancing in the current given state using an {@link Instant} as the unit of time. This can be
  170. * useful when the time between given events is of importance, for example when leveraging the
  171. * {@link org.axonframework.deadline.DeadlineManager} to schedule deadlines in the context of a given Aggregate.
  172. *
  173. * @param newPointInTime an {@link Instant} specifying the amount of time to advance the clock to
  174. * @return a {@link ResultValidator} that can be used to validate the resulting actions of the command execution
  175. * @deprecated since 4.6. Use {@link #whenTimeAdvancesTo(Instant)} method
  176. */
  177. @Deprecated
  178. ResultValidator<T> whenThenTimeAdvancesTo(Instant newPointInTime);
  179. /**
  180. * Simulates the time advancing in the current given state using an {@link Instant} as the unit of time. This can be
  181. * useful when the time between given events is of importance, for example when leveraging the
  182. * {@link org.axonframework.deadline.DeadlineManager} to schedule deadlines in the context of a given Aggregate.
  183. *
  184. * Note: As this method is added to the interface as a replacement for the deprecated
  185. * {@link #whenThenTimeAdvancesTo(Instant)} method, and in case there are other implementations by 3rd party
  186. * libraries, this method is changed to a default method that rely on the deprecated method so that there is no
  187. * breaking changes in the API in case an external implementation of this interface. Nevertheless, the recomended
  188. * approach is to override this implementation.
  189. *
  190. * @param newPointInTime an {@link Instant} specifying the amount of time to advance the clock to
  191. * @return a {@link ResultValidator} that can be used to validate the resulting actions of the command execution
  192. */
  193. default ResultValidator<T> whenTimeAdvancesTo(Instant newPointInTime) {
  194. return whenThenTimeAdvancesTo(newPointInTime);
  195. }
  196. }