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

http://github.com/SpringSource/spring-data-mongodb · Java · 110 lines · 65 code · 23 blank · 22 comment · 0 complexity · 1a21ea723d0400f8093bc7a2a4a3bd50 MD5 · raw file

  1. /*
  2. * Copyright 2011-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;
  17. import static org.assertj.core.api.Assertions.*;
  18. import static org.mockito.Mockito.*;
  19. import java.lang.reflect.InvocationHandler;
  20. import java.lang.reflect.Proxy;
  21. import org.junit.jupiter.api.Test;
  22. import org.junit.jupiter.api.extension.ExtendWith;
  23. import org.mockito.Mock;
  24. import org.mockito.junit.jupiter.MockitoExtension;
  25. import org.springframework.aop.framework.AopProxyUtils;
  26. import org.springframework.data.mongodb.MongoDatabaseFactory;
  27. import org.springframework.test.util.ReflectionTestUtils;
  28. import com.mongodb.ConnectionString;
  29. import com.mongodb.client.ClientSession;
  30. import com.mongodb.client.MongoClient;
  31. import com.mongodb.client.MongoDatabase;
  32. /**
  33. * Unit tests for {@link SimpleMongoClientDatabaseFactory}.
  34. *
  35. * @author Oliver Gierke
  36. * @author Christoph Strobl
  37. * @author Mark Paluch
  38. */
  39. @ExtendWith(MockitoExtension.class)
  40. class SimpleMongoClientDatabaseFactoryUnitTests {
  41. @Mock MongoClient mongo;
  42. @Mock ClientSession clientSession;
  43. @Mock MongoDatabase database;
  44. @Test // DATADOC-254, DATAMONGO-1903
  45. void rejectsIllegalDatabaseNames() {
  46. rejectsDatabaseName("foo.bar");
  47. rejectsDatabaseName("foo$bar");
  48. rejectsDatabaseName("foo\\bar");
  49. rejectsDatabaseName("foo//bar");
  50. rejectsDatabaseName("foo bar");
  51. rejectsDatabaseName("foo\"bar");
  52. }
  53. @Test // DATADOC-254
  54. void allowsDatabaseNames() {
  55. new SimpleMongoClientDatabaseFactory(mongo, "foo-bar");
  56. new SimpleMongoClientDatabaseFactory(mongo, "foo_bar");
  57. new SimpleMongoClientDatabaseFactory(mongo, "foo01231bar");
  58. }
  59. @Test // DATADOC-295
  60. void mongoUriConstructor() {
  61. ConnectionString mongoURI = new ConnectionString(
  62. "mongodb://myUsername:myPassword@localhost/myDatabase.myCollection");
  63. MongoDatabaseFactory mongoDbFactory = new SimpleMongoClientDatabaseFactory(mongoURI);
  64. assertThat(mongoDbFactory).hasFieldOrPropertyWithValue("databaseName", "myDatabase");
  65. }
  66. @Test // DATAMONGO-1158
  67. void constructsMongoClientAccordingToMongoUri() {
  68. ConnectionString uri = new ConnectionString(
  69. "mongodb://myUserName:myPassWord@127.0.0.1:27017/myDataBase.myCollection");
  70. SimpleMongoClientDatabaseFactory factory = new SimpleMongoClientDatabaseFactory(uri);
  71. assertThat(factory).hasFieldOrPropertyWithValue("databaseName", "myDataBase");
  72. }
  73. @Test // DATAMONGO-1880
  74. void cascadedWithSessionUsesRootFactory() {
  75. when(mongo.getDatabase("foo")).thenReturn(database);
  76. MongoDatabaseFactory factory = new SimpleMongoClientDatabaseFactory(mongo, "foo");
  77. MongoDatabaseFactory wrapped = factory.withSession(clientSession).withSession(clientSession);
  78. InvocationHandler invocationHandler = Proxy.getInvocationHandler(wrapped.getMongoDatabase());
  79. Object singletonTarget = AopProxyUtils
  80. .getSingletonTarget(ReflectionTestUtils.getField(invocationHandler, "advised"));
  81. assertThat(singletonTarget).isSameAs(database);
  82. }
  83. private void rejectsDatabaseName(String databaseName) {
  84. assertThatThrownBy(() -> new SimpleMongoClientDatabaseFactory(mongo, databaseName))
  85. .isInstanceOf(IllegalArgumentException.class);
  86. }
  87. }