/driver-core/src/test/unit/com/mongodb/WriteConcernDocumentTest.java

http://github.com/mongodb/mongo-java-driver · Java · 101 lines · 76 code · 9 blank · 16 comment · 11 complexity · c6d0831a828f2e51072ab6cf3a838df5 MD5 · raw file

  1. /*
  2. * Copyright 2008-present 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 junit.framework.TestCase;
  18. import org.bson.BsonBoolean;
  19. import org.bson.BsonDocument;
  20. import org.bson.BsonInt32;
  21. import org.bson.BsonNumber;
  22. import org.bson.BsonString;
  23. import org.bson.BsonValue;
  24. import org.junit.Test;
  25. import org.junit.runner.RunWith;
  26. import org.junit.runners.Parameterized;
  27. import util.JsonPoweredTestHelper;
  28. import java.io.File;
  29. import java.io.IOException;
  30. import java.net.URISyntaxException;
  31. import java.util.ArrayList;
  32. import java.util.Collection;
  33. import java.util.List;
  34. import java.util.concurrent.TimeUnit;
  35. // See https://github.com/mongodb/specifications/tree/master/source/read-write-concern/tests/connection-string
  36. @RunWith(Parameterized.class)
  37. public class WriteConcernDocumentTest extends TestCase {
  38. private final String description;
  39. private final BsonDocument writeConcernDocument;
  40. private final BsonDocument definition;
  41. public WriteConcernDocumentTest(final String description, final BsonDocument writeConcernDocument, final BsonDocument definition) {
  42. this.description = description;
  43. this.writeConcernDocument = writeConcernDocument;
  44. this.definition = definition;
  45. }
  46. @Test
  47. public void shouldPassAllOutcomes() {
  48. boolean valid = definition.getBoolean("valid", BsonBoolean.TRUE).getValue();
  49. try {
  50. WriteConcern writeConcern = getWriteConcern(writeConcernDocument);
  51. assertTrue(valid);
  52. assertEquals(writeConcern.isAcknowledged(), definition.getBoolean("isAcknowledged").getValue());
  53. assertEquals(writeConcern.isServerDefault(), definition.getBoolean("isServerDefault").getValue());
  54. assertEquals(writeConcern.asDocument(), definition.getDocument("writeConcernDocument"));
  55. } catch (IllegalArgumentException e) {
  56. assertFalse(valid);
  57. }
  58. }
  59. private WriteConcern getWriteConcern(final BsonDocument writeConcernDocument) {
  60. BsonValue wValue = writeConcernDocument.get("w");
  61. WriteConcern retVal;
  62. if (wValue == null) {
  63. retVal = WriteConcern.ACKNOWLEDGED;
  64. } else if (wValue instanceof BsonNumber) {
  65. retVal = new WriteConcern(wValue.asNumber().intValue());
  66. } else if (wValue instanceof BsonString) {
  67. retVal = new WriteConcern(wValue.asString().getValue());
  68. } else {
  69. throw new IllegalArgumentException("Unexpected w value: " + wValue);
  70. }
  71. if (writeConcernDocument.containsKey("wtimeoutMS")) {
  72. retVal = retVal.withWTimeout(writeConcernDocument.getNumber("wtimeoutMS", new BsonInt32(0)).intValue(), TimeUnit.MILLISECONDS);
  73. }
  74. if (writeConcernDocument.containsKey("journal")) {
  75. retVal = retVal.withJournal(writeConcernDocument.getBoolean("journal", BsonBoolean.FALSE).getValue());
  76. }
  77. return retVal;
  78. }
  79. @Parameterized.Parameters(name = "{0}: {1}")
  80. public static Collection<Object[]> data() throws URISyntaxException, IOException {
  81. List<Object[]> data = new ArrayList<Object[]>();
  82. for (File file : JsonPoweredTestHelper.getTestFiles("/write-concern/document")) {
  83. BsonDocument testDocument = JsonPoweredTestHelper.getTestDocument(file);
  84. for (BsonValue test : testDocument.getArray("tests")) {
  85. data.add(new Object[]{test.asDocument().getString("description").getValue(),
  86. test.asDocument().getDocument("writeConcern"),
  87. test.asDocument()});
  88. }
  89. }
  90. return data;
  91. }
  92. }