You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/12/19 22:21:58 UTC

[couchdb] branch speedup-test-suite updated (fc1b458 -> 5c85c3e)

This is an automated email from the ASF dual-hosted git repository.

davisp pushed a change to branch speedup-test-suite
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from fc1b458  Speed up test: chttpd_endpoints_tests
     add 158ab48  Speedup test: couch_replicator_compact_tests
     add aae193f  Disable JavaScript tests ported to Elixir
     add 4f0c774  Port erlang_views.js to Elixir
     add 4cd16f7  Add utility functions for Elixir auth tests
     add c580497  Port auth_cache.js to Elixir
     add 8cf5e1e  Port cookie_auth.js to Elixir
     add 1dfc7a2  Port users_db.js to Elixir
     add 48ce5a8  Port utf8.js to Elixir
     add b165bbd  Update docs on marking JS tests as ported
     add 5c85c3e  Replace JavaScript quorum tests with Elixir

No new revisions were added by this update.

Summary of changes:
 Makefile                                           |  38 +-
 Makefile.win                                       |   2 +-
 .../test/eunit/couch_replicator_compact_tests.erl  |  39 +-
 test/elixir/README.md                              |  91 +----
 test/elixir/lib/couch.ex                           |  33 +-
 test/elixir/lib/couch/db_test.ex                   |  65 +++-
 test/elixir/test/auth_cache_test.exs               | 211 +++++++++++
 test/elixir/test/cookie_auth_test.exs              | 403 +++++++++++++++++++++
 test/elixir/test/erlang_views_test.exs             | 117 ++++++
 test/elixir/test/users_db_test.exs                 | 322 ++++++++++++++++
 test/elixir/test/utf8_test.exs                     |  65 ++++
 test/javascript/cli_runner.js                      |   4 +
 test/javascript/run                                |   4 +-
 test/javascript/tests/all_docs.js                  |   3 +-
 test/javascript/tests/attachment_names.js          |   1 +
 test/javascript/tests/attachment_paths.js          |   1 +
 test/javascript/tests/attachment_ranges.js         |   3 +-
 test/javascript/tests/attachment_views.js          |   1 +
 test/javascript/tests/attachments.js               |   3 +-
 test/javascript/tests/attachments_multipart.js     | 115 +++---
 test/javascript/tests/auth_cache.js                |   1 +
 test/javascript/tests/basics.js                    |   1 +
 test/javascript/tests/batch_save.js                |  11 +-
 test/javascript/tests/bulk_docs.js                 |   1 +
 test/javascript/tests/coffee.js                    |   1 +
 test/javascript/tests/compact.js                   |   1 +
 test/javascript/tests/config.js                    |   1 +
 test/javascript/tests/conflicts.js                 |   1 +
 test/javascript/tests/cookie_auth.js               |   1 +
 test/javascript/tests/copy_doc.js                  |   1 +
 test/javascript/tests/erlang_views.js              |   1 +
 test/javascript/tests/invalid_docids.js            |   1 +
 test/javascript/tests/large_docs.js                |   1 +
 test/javascript/tests/lots_of_docs.js              |   1 +
 test/javascript/tests/multiple_rows.js             |   1 +
 test/javascript/tests/reduce.js                    |   1 +
 test/javascript/tests/users_db.js                  |   1 +
 test/javascript/tests/utf8.js                      |   1 +
 test/javascript/tests/uuids.js                     |   3 +-
 test/javascript/tests/view_collation.js            |   5 +-
 40 files changed, 1323 insertions(+), 234 deletions(-)
 create mode 100644 test/elixir/test/auth_cache_test.exs
 create mode 100644 test/elixir/test/cookie_auth_test.exs
 create mode 100644 test/elixir/test/erlang_views_test.exs
 create mode 100644 test/elixir/test/users_db_test.exs
 create mode 100644 test/elixir/test/utf8_test.exs