1
0
Fork 0
arangodb/js/common/tests
jsteemann 2a371cbf9e allow creating unique indexes on more attributes than present in shardKeys
The following combinations of shardKeys and indexKeys are allowed/not allowed:

shardKeys     indexKeys
        a             a        ok
        a             b    not ok
        a           a b        ok
      a b             a    not ok
      a b             b    not ok
      a b           a b        ok
      a b         a b c        ok
    a b c           a b    not ok
    a b c         a b c        ok
2016-10-28 13:04:12 +02:00
..
http Reformat code 2016-06-30 16:57:17 +02:00
replication Squashed commit of the following: 2016-10-24 10:18:30 +02:00
shell allow creating unique indexes on more attributes than present in shardKeys 2016-10-28 13:04:12 +02:00
README moved tests into sub-directories 2016-01-24 12:21:04 +01:00
countries.json
execute-infinite-shortest-path.js Reformat code 2016-06-30 16:57:17 +02:00
execute-nothing.js Reformat code 2016-06-30 16:57:17 +02:00

README

Conventions for testing framework:
==================================

All files in the directory "shell" and ends with ".js" automatically
take part in client and server shell tests (targets "shell_client" and
"shell_server" and "shell_server_only").

If the filename contains the string "-cluster", then it is only
executed when testing in cluster mode. If the filename contains the
string "-noncluster", then it is only executed when testing in single
instance mode.

If the filename contains the string "-disabled", then it is not
executed at all. This is for tests that cannot be run from the
JavaScript test framework and have to be run from the Makefile.