/driver/src/test/functional/com/mongodb/DatabaseTestCase.java

http://github.com/mongodb/mongo-java-driver · Java · 54 lines · 27 code · 8 blank · 19 comment · 0 complexity · bcee26409a354c30c238b28a1aabbc43 MD5 · raw file

  1. /*
  2. * Copyright (c) 2008-2014 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;
  17. import org.junit.After;
  18. import org.junit.Before;
  19. import static com.mongodb.Fixture.getDefaultDatabaseName;
  20. import static com.mongodb.Fixture.getMongoClient;
  21. public class DatabaseTestCase {
  22. //For ease of use and readability, in this specific case we'll allow protected variables
  23. //CHECKSTYLE:OFF
  24. protected DB database;
  25. protected DBCollection collection;
  26. protected String collectionName;
  27. //CHECKSTYLE:ON
  28. @Before
  29. @SuppressWarnings("deprecation") // This is for testing the old API, so it will use deprecated methods
  30. public void setUp() {
  31. database = getMongoClient().getDB(getDefaultDatabaseName());
  32. database.setCollation(null);
  33. //create a brand new collection for each test
  34. collectionName = getClass().getName() + System.nanoTime();
  35. collection = database.getCollection(collectionName);
  36. }
  37. @After
  38. public void tearDown() {
  39. database.setCollation(null);
  40. collection.setCollation(null);
  41. collection.drop();
  42. }
  43. public MongoClient getClient() {
  44. return getMongoClient();
  45. }
  46. }