/driver-core/src/test/unit/com/mongodb/connection/TestInternalConnection.java

http://github.com/mongodb/mongo-java-driver · Java · 189 lines · 143 code · 30 blank · 16 comment · 11 complexity · 2a9fdeb58562da4a671ce2b6ad3cc40e 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.connection;
  17. import com.mongodb.MongoException;
  18. import com.mongodb.async.SingleResultCallback;
  19. import org.bson.ByteBuf;
  20. import org.bson.ByteBufNIO;
  21. import org.bson.io.BsonInput;
  22. import org.bson.io.ByteBufferBsonInput;
  23. import java.nio.ByteBuffer;
  24. import java.nio.ByteOrder;
  25. import java.util.Deque;
  26. import java.util.LinkedList;
  27. import java.util.List;
  28. class TestInternalConnection implements InternalConnection {
  29. private static class Interaction {
  30. private ResponseBuffers responseBuffers;
  31. private RuntimeException receiveException;
  32. private RuntimeException sendException;
  33. }
  34. private final ConnectionDescription description;
  35. private final BufferProvider bufferProvider;
  36. private final Deque<Interaction> replies;
  37. private final List<BsonInput> sent;
  38. private boolean opened;
  39. private boolean closed;
  40. public TestInternalConnection(final ServerId serverId) {
  41. this.description = new ConnectionDescription(serverId);
  42. this.bufferProvider = new SimpleBufferProvider();
  43. this.replies = new LinkedList<Interaction>();
  44. this.sent = new LinkedList<BsonInput>();
  45. }
  46. public void enqueueReply(final ResponseBuffers responseBuffers) {
  47. Interaction interaction = new Interaction();
  48. interaction.responseBuffers = responseBuffers;
  49. replies.add(interaction);
  50. }
  51. public void enqueueSendMessageException(final RuntimeException e) {
  52. Interaction interaction = new Interaction();
  53. interaction.sendException = e;
  54. replies.add(interaction);
  55. }
  56. public void enqueueReceiveMessageException(final RuntimeException e) {
  57. Interaction interaction = new Interaction();
  58. interaction.receiveException = e;
  59. replies.add(interaction);
  60. }
  61. public List<BsonInput> getSent() {
  62. return sent;
  63. }
  64. @Override
  65. public ConnectionDescription getDescription() {
  66. return description;
  67. }
  68. public void open() {
  69. opened = true;
  70. }
  71. @Override
  72. public void openAsync(final SingleResultCallback<Void> callback) {
  73. opened = true;
  74. callback.onResult(null, null);
  75. }
  76. @Override
  77. public void close() {
  78. closed = true;
  79. }
  80. @Override
  81. public boolean opened() {
  82. return opened;
  83. }
  84. @Override
  85. public boolean isClosed() {
  86. return closed;
  87. }
  88. @Override
  89. public void sendMessage(final List<ByteBuf> byteBuffers, final int lastRequestId) {
  90. // repackage all byte buffers into a single byte buffer...
  91. int totalSize = 0;
  92. for (ByteBuf buf : byteBuffers) {
  93. totalSize += buf.remaining();
  94. }
  95. ByteBuffer combined = ByteBuffer.allocate(totalSize);
  96. for (ByteBuf buf : byteBuffers) {
  97. combined.put(buf.array(), 0, buf.remaining());
  98. }
  99. combined.flip();
  100. Interaction interaction = replies.getFirst();
  101. if (interaction.responseBuffers != null) {
  102. ReplyHeader header = replaceResponseTo(interaction.responseBuffers.getReplyHeader(), lastRequestId);
  103. interaction.responseBuffers = (new ResponseBuffers(header, interaction.responseBuffers.getBodyByteBuffer()));
  104. sent.add(new ByteBufferBsonInput(new ByteBufNIO(combined)));
  105. } else if (interaction.sendException != null) {
  106. replies.removeFirst();
  107. throw interaction.sendException;
  108. }
  109. }
  110. private ReplyHeader replaceResponseTo(final ReplyHeader header, final int responseTo) {
  111. ByteBuffer headerByteBuffer = ByteBuffer.allocate(36);
  112. headerByteBuffer.order(ByteOrder.LITTLE_ENDIAN);
  113. headerByteBuffer.putInt(header.getMessageLength());
  114. headerByteBuffer.putInt(header.getRequestId());
  115. headerByteBuffer.putInt(responseTo);
  116. headerByteBuffer.putInt(1);
  117. headerByteBuffer.putInt(header.getResponseFlags());
  118. headerByteBuffer.putLong(header.getCursorId());
  119. headerByteBuffer.putInt(header.getStartingFrom());
  120. headerByteBuffer.putInt(header.getNumberReturned());
  121. headerByteBuffer.flip();
  122. ByteBufferBsonInput headerInputBuffer = new ByteBufferBsonInput(new ByteBufNIO(headerByteBuffer));
  123. return new ReplyHeader(headerInputBuffer, ConnectionDescription.getDefaultMaxMessageSize());
  124. }
  125. @Override
  126. public ResponseBuffers receiveMessage(final int responseTo) {
  127. if (this.replies.isEmpty()) {
  128. throw new MongoException("Test was not setup properly as too many calls to receiveMessage occured.");
  129. }
  130. Interaction interaction = replies.removeFirst();
  131. if (interaction.responseBuffers != null) {
  132. return interaction.responseBuffers;
  133. } else {
  134. throw interaction.receiveException;
  135. }
  136. }
  137. @Override
  138. public void sendMessageAsync(final List<ByteBuf> byteBuffers, final int lastRequestId, final SingleResultCallback<Void> callback) {
  139. try {
  140. sendMessage(byteBuffers, lastRequestId);
  141. callback.onResult(null, null);
  142. } catch (RuntimeException e) {
  143. callback.onResult(null, e);
  144. }
  145. }
  146. @Override
  147. public void receiveMessageAsync(final int responseTo, final SingleResultCallback<ResponseBuffers> callback) {
  148. try {
  149. ResponseBuffers buffers = receiveMessage(responseTo);
  150. callback.onResult(buffers, null);
  151. } catch (MongoException ex) {
  152. callback.onResult(null, ex);
  153. }
  154. }
  155. @Override
  156. public ByteBuf getBuffer(final int size) {
  157. return this.bufferProvider.getBuffer(size);
  158. }
  159. }