/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/messaging/TaskFactoryUnitTests.java

http://github.com/SpringSource/spring-data-mongodb · Java · 81 lines · 45 code · 16 blank · 20 comment · 0 complexity · 8d2cfae95c86d06412e25611d99ec2a4 MD5 · raw file

  1. /*
  2. * Copyright 2018-2021 the original author or authors.
  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. * https://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.springframework.data.mongodb.core.messaging;
  17. import static org.assertj.core.api.Assertions.*;
  18. import static org.mockito.Mockito.*;
  19. import org.junit.jupiter.api.BeforeEach;
  20. import org.junit.jupiter.api.Test;
  21. import org.junit.jupiter.api.extension.ExtendWith;
  22. import org.mockito.Mock;
  23. import org.mockito.Mockito;
  24. import org.mockito.junit.jupiter.MockitoExtension;
  25. import org.springframework.data.mongodb.core.MongoTemplate;
  26. import org.springframework.data.mongodb.core.convert.MongoConverter;
  27. import org.springframework.data.mongodb.core.messaging.ChangeStreamRequest.ChangeStreamRequestOptions;
  28. import org.springframework.data.mongodb.core.messaging.SubscriptionRequest.RequestOptions;
  29. import org.springframework.util.ErrorHandler;
  30. /**
  31. * Unit tests for {@link TaskFactory}.
  32. *
  33. * @author Christoph Strobl
  34. */
  35. @ExtendWith(MockitoExtension.class)
  36. class TaskFactoryUnitTests {
  37. @Mock MongoConverter converter;
  38. @Mock MongoTemplate template;
  39. @Mock MessageListener<Object, Object> messageListener;
  40. @Mock ErrorHandler errorHandler;
  41. private TaskFactory factory;
  42. @BeforeEach
  43. void setUp() {
  44. factory = new TaskFactory(template);
  45. }
  46. @Test // DATAMONGO-1803
  47. void requestMustNotBeNull() {
  48. assertThatIllegalArgumentException().isThrownBy(() -> factory.forRequest(null, Object.class, errorHandler));
  49. }
  50. @Test // DATAMONGO-1803
  51. void createsChangeStreamRequestCorrectly() {
  52. when(template.getConverter()).thenReturn(converter);
  53. ChangeStreamRequestOptions options = Mockito.mock(ChangeStreamRequestOptions.class);
  54. Task task = factory.forRequest(new ChangeStreamRequest(messageListener, options), Object.class, errorHandler);
  55. assertThat(task).isInstanceOf(ChangeStreamTask.class);
  56. }
  57. @Test // DATAMONGO-1803
  58. void createsTailableRequestCorrectly() {
  59. when(template.getConverter()).thenReturn(converter);
  60. RequestOptions options = Mockito.mock(RequestOptions.class);
  61. when(options.getCollectionName()).thenReturn("collection-1");
  62. Task task = factory.forRequest(new TailableCursorRequest(messageListener, options), Object.class, errorHandler);
  63. assertThat(task).isInstanceOf(TailableCursorTask.class);
  64. }
  65. }