summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul J. Davis <paul.joseph.davis@gmail.com>2017-08-16 14:38:11 -0500
committerPaul J. Davis <paul.joseph.davis@gmail.com>2017-08-16 16:15:15 -0500
commitc8025651da0e2183c5ff069bf36ea9ca01ee9c98 (patch)
tree9a67dedf37eb8441cedab22621716c4561ba45b2
parent9c4c41ac22577e6ec8c46c44f0efc13c38712d3d (diff)
downloadcouchdb-compactor-rewrite.tar.gz
Add a test suite for compactionscompactor-rewrite
-rw-r--r--src/couch/test/couch_db_updater_tests.erl25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/couch/test/couch_db_updater_tests.erl b/src/couch/test/couch_db_updater_tests.erl
new file mode 100644
index 000000000..5dd5e54ad
--- /dev/null
+++ b/src/couch/test/couch_db_updater_tests.erl
@@ -0,0 +1,25 @@
+% Licensed under the Apache License, Version 2.0 (the "License"); you may not
+% use this file except in compliance with the License. You may obtain a copy of
+% the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+% License for the specific language governing permissions and limitations under
+% the License.
+
+-module(couch_db_updater_tests).
+
+-include_lib("couch/include/couch_eunit.hrl").
+
+% Tests to test
+% 10k docs
+% kill during first pass
+% kill during docid copy
+% kill before docid copy starts
+% kill during docid copy
+% kill after docid copy
+% 5k docs, write docs during compaction
+% \ No newline at end of file