/src/main/java/com/couchbase/mock/control/MockCommand.java

http://github.com/couchbase/CouchbaseMock · Java · 120 lines · 62 code · 9 blank · 49 comment · 4 complexity · 6e4bce0b8ae232239948ef343f5fd1ac MD5 · raw file

  1. /*
  2. * Copyright 2017 Couchbase, 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.couchbase.mock.control;
  17. import com.couchbase.mock.CouchbaseMock;
  18. import com.google.gson.JsonArray;
  19. import com.google.gson.JsonElement;
  20. import com.google.gson.JsonObject;
  21. import org.jetbrains.annotations.NotNull;
  22. import java.util.Set;
  23. /**
  24. * The MockCommand class is the base class for all commands
  25. * that the client may send to the mock to instruct it to
  26. * do certain actions.
  27. *
  28. * All commands is sent as JSON objects with a certain form:
  29. * <p> { "command" : "name of the command", "payload" : { } } </p>
  30. * The response for the command will be delivered at its most basic
  31. * level will be a JSON object consisting of the following fields:
  32. * <p> { "status" : "ok", "payload" : { } } </p>
  33. *
  34. * For "non-successful" commands the object may be:
  35. * <p> { "status" : "fail", "error" : "error description" } </p>
  36. *
  37. * To implement a new command you should subclass the MockCommand
  38. * class and add implement the execute method. You must add the
  39. * name of the command to the Command enum, and register the
  40. * class in MockCommandDispatcher.
  41. *
  42. * @author mnunberg
  43. */
  44. public abstract class MockCommand {
  45. public enum Command {
  46. FAILOVER,
  47. RESPAWN,
  48. HICCUP,
  49. TRUNCATE,
  50. MOCKINFO,
  51. PERSIST,
  52. CACHE,
  53. UNPERSIST,
  54. UNCACHE,
  55. ENDURE,
  56. PURGE,
  57. KEYINFO,
  58. TIME_TRAVEL,
  59. HELP,
  60. OPFAIL,
  61. SET_CCCP,
  62. GET_MCPORTS,
  63. REGEN_VBCOORDS,
  64. RESET_QUERYSTATE,
  65. START_CMDLOG,
  66. STOP_CMDLOG,
  67. GET_CMDLOG,
  68. START_RETRY_VERIFY,
  69. CHECK_RETRY_VERIFY,
  70. SET_ENHANCED_ERRORS,
  71. SET_QUERY_ERROR_STATE,
  72. SET_COMPRESSION,
  73. SET_SASL_MECHANISMS
  74. }
  75. /**
  76. * Get the response to send to the client.
  77. * @return a CommandStatus object indicating the status
  78. */
  79. @NotNull
  80. protected CommandStatus getResponse() {
  81. return new CommandStatus();
  82. }
  83. /**
  84. * Execute the command
  85. *
  86. * @param mock the couchbase mock object to operate on
  87. * @param command the actual command being executed (in case a handler
  88. * implements multiple commands
  89. * @param payload the payload containing arguments to the command
  90. * @return command status
  91. */
  92. public abstract
  93. @NotNull
  94. CommandStatus execute(@NotNull CouchbaseMock mock, @NotNull Command command, @NotNull JsonObject payload);
  95. public static void loadServers(@NotNull JsonObject payload, Set<Integer> enabledServers) {
  96. if (payload.has("servers")) {
  97. JsonArray arr = payload.get("servers").getAsJsonArray();
  98. for (int ii = 0; ii < arr.size(); ii++) {
  99. JsonElement e = arr.get(ii);
  100. enabledServers.add(e.getAsInt());
  101. }
  102. }
  103. }
  104. public static void loadBuckets(@NotNull CouchbaseMock mock, @NotNull JsonObject payload, Set<String> enabledBuckets) {
  105. if (payload.has("bucket")) {
  106. enabledBuckets.add(payload.get("bucket").getAsString());
  107. } else {
  108. enabledBuckets.addAll(mock.getBuckets().keySet());
  109. }
  110. }
  111. }