/driver/src/test/acceptance/com/mongodb/acceptancetest/core/ClientAcceptanceTest.java

http://github.com/mongodb/mongo-java-driver · Java · 106 lines · 66 code · 18 blank · 22 comment · 2 complexity · ded06498ac38968327a7c164cf05d4fe MD5 · raw file

  1. /*
  2. * Copyright (c) 2015 MongoDB, Inc.
  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 com.mongodb.acceptancetest.core;
  17. import com.mongodb.client.DatabaseTestCase;
  18. import com.mongodb.client.MongoDatabase;
  19. import org.bson.Document;
  20. import org.hamcrest.BaseMatcher;
  21. import org.hamcrest.Description;
  22. import org.junit.Test;
  23. import java.util.ArrayList;
  24. import java.util.List;
  25. import static org.hamcrest.CoreMatchers.hasItem;
  26. import static org.hamcrest.CoreMatchers.hasItems;
  27. import static org.hamcrest.CoreMatchers.not;
  28. import static org.hamcrest.core.Is.is;
  29. import static org.junit.Assert.assertThat;
  30. /**
  31. * Documents the basic functionality available for the MongoClient via the Java driver.
  32. */
  33. public class ClientAcceptanceTest extends DatabaseTestCase {
  34. @Test
  35. public void shouldListDatabaseNamesFromDatabase() {
  36. database.createCollection(getCollectionName());
  37. List<String> names = client.listDatabaseNames().into(new ArrayList<String>());
  38. assertThat(names.contains(getDatabaseName()), is(true));
  39. }
  40. @Test
  41. public void shouldBeAbleToListAllTheDatabaseNamesAvailable() {
  42. MongoDatabase firstDatabase = client.getDatabase("FirstNewDatabase");
  43. MongoDatabase secondDatabase = client.getDatabase("SecondNewDatabase");
  44. MongoDatabase otherDatabase = client.getDatabase("DatabaseThatDoesNotExistYet");
  45. try {
  46. // given
  47. firstDatabase.getCollection("coll").insertOne(new Document("aDoc", "to force database creation"));
  48. secondDatabase.getCollection("coll").insertOne(new Document("aDoc", "to force database creation"));
  49. //when
  50. List<String> databaseNames = client.listDatabaseNames().into(new ArrayList<String>());
  51. //then
  52. assertThat(databaseNames, hasItems(firstDatabase.getName(), secondDatabase.getName()));
  53. assertThat(databaseNames, not(hasItem(otherDatabase.getName())));
  54. } finally {
  55. //tear down
  56. firstDatabase.drop();
  57. secondDatabase.drop();
  58. }
  59. }
  60. @Test
  61. public void shouldListDatabase() {
  62. List<Document> databases = client.listDatabases().into(new ArrayList<Document>());
  63. database.createCollection(getCollectionName());
  64. databases = client.listDatabases().into(new ArrayList<Document>());
  65. assertThat(databases, new DatabaseNameMatcher(getDatabaseName()));
  66. }
  67. private static final class DatabaseNameMatcher extends BaseMatcher<List<Document>> {
  68. private final String name;
  69. DatabaseNameMatcher(final String name) {
  70. this.name = name;
  71. }
  72. @Override
  73. @SuppressWarnings("unchecked")
  74. public boolean matches(final Object item) {
  75. List<Document> databases = (List<Document>) item;
  76. for (Document cur : databases) {
  77. if (cur.get("name").equals(name)) {
  78. return true;
  79. }
  80. }
  81. return false;
  82. }
  83. @Override
  84. public void describeTo(final Description description) {
  85. description.appendText("Document containing a name of " + name);
  86. }
  87. }
  88. }