1
0
Fork 0
arangodb/js/server/tests
Jan Steemann 8504246217 changed behavior of toJSON() function when serializing an object before saving it in the database
if an object provides a toJSON() function, this function is still called for serializing it.
the change is that the result of toJSON() is not stringified anymore, but saved as is. previous
versions of ArangoDB called toJSON() and after that additionally stringified its result.
2016-11-08 15:39:06 +01:00
..
aql Fix for ShoretestPath in Cluster. Does only show up with > 1 shards. Adapterd tests to use 4 shards instead of 1. 2016-10-31 09:19:49 +01:00
dump Speed up dump tests by using babies. 2016-10-10 14:54:38 +02:00
import added test for skipLines 2016-07-04 12:15:13 +02:00
recovery added tests 2016-10-25 16:51:58 +02:00
replication allow dropping system collections in some rare cases 2016-08-25 12:47:06 +02:00
resilience Increase some timeouts from 60 to 90s to be more load tolerant. 2016-10-13 12:52:59 +02:00
shell changed behavior of toJSON() function when serializing an object before saving it in the database 2016-11-08 15:39:06 +01:00
stress Reformat code 2016-06-30 16:57:17 +02:00
README moved tests into sub-directories 2016-01-24 12:21:04 +01:00

README

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

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

All files in the directory "aql" and ends with ".js" automatically
take part in server aql tests (target "shell_server_aql"). Those,
whose filename contains the string "ranges-combined" are only taken if
the flag "skipRanges" in the test options is set to false.

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.