1
0
Fork 0
arangodb/js/common/tests
Michael Hackstein 03cf0d69fb Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2014-09-10 15:50:28 +02:00
..
README Add disabled tests. 2014-06-30 12:45:10 +02:00
execute-infinite-payload.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
execute-infinite-shortest-path.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
execute-nothing.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
execute-payload.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
replication.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-aqlfunctions.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-attributes.js reallow attribute names starting with underscores 2014-08-07 15:52:58 +02:00
shell-base64.js added `/_api/database/user` method 2013-11-04 14:22:00 +01:00
shell-cap-constraint.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-cluster-collection.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-cluster-crud.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-cluster-simple.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-collection-noncluster.js excluded collection 2014-06-23 13:27:27 +02:00
shell-collection-volatile-noncluster.js renamed test file 2014-06-26 16:19:22 +02:00
shell-collection.js moving some nonccluster tests to a new file 2014-06-26 16:38:08 +02:00
shell-crypto.js Replaced PBKDF2_HMAC with PBKDF2_HMAC_SHA1 for OSX compat. 2014-09-08 14:32:40 +02:00
shell-database.js attempt to shield test from other influences 2014-09-10 15:01:50 +02:00
shell-document.js moving some nonccluster tests to a new file 2014-06-26 16:38:08 +02:00
shell-download.js adjusted tests for new rewrite rules on apache 2014-06-27 17:02:02 +02:00
shell-edge.js WAL DDL markers 2014-06-19 14:33:38 +02:00
shell-errors.js added tests for error codes and messges 2014-03-13 23:56:45 +01:00
shell-figures-noncluster.js moving some nonccluster tests to a new file 2014-06-26 16:38:08 +02:00
shell-fs.js jslintified several tests 2014-02-01 01:50:58 +01:00
shell-fulltext.js fixed typo in test name 2013-02-23 00:03:36 +01:00
shell-general-graph.js Deprecated _directedRelation and _undirectedRelation in general-graphs. Created _relation in general-graphs creating a _directedRelation. Handling undirected relations is now given to the user / api-implementor as arangodb itself does not offer any direction constrains which caused some confusion 2014-09-10 15:50:22 +02:00
shell-graph-algorithms.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-graph-measurement.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-graph-traversal.js Deprecated _directedRelation and _undirectedRelation in general-graphs. Created _relation in general-graphs creating a _directedRelation. Handling undirected relations is now given to the user / api-implementor as arangodb itself does not offer any direction constrains which caused some confusion 2014-09-10 15:50:22 +02:00
shell-graph.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-hash-index.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-index-ensure.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-index-geo.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-index.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-keygen-noncluster.js issue #919: fixed null options handling 2014-06-23 08:40:51 +02:00
shell-keygen.js jshund 2014-05-09 00:42:18 +02:00
shell-noncluster-edge.js jshund 2014-05-09 00:42:18 +02:00
shell-require.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-simple-query.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-statement.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-transactions.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-unique-constraint.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-unload.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-users.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00

README

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

All files in this directory whose name starts with "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.