1
0
Fork 0
Commit Graph

471 Commits

Author SHA1 Message Date
Jan Steemann 1bf5abaf14 changed HTTP return code for canceled operations from 408 to 410 2015-11-23 10:25:05 +01:00
Jan Steemann e321c9747a added option `--server.hide-product-header` 2015-11-10 10:27:59 +01:00
Wilfried Goesgens 2c38e2a78d make redirects relative if on the same host; later editions of the HTTP 1.1 RFC state that its valid.
this fixes #1558
2015-11-04 13:32:34 +01:00
Jan Steemann 53d2787cf6 added test case for routing and binary req/res 2015-10-08 10:18:36 +02:00
jsteemann 9e6223756a attempt to fix test that fails non-deterministically on TravisCI 2015-09-17 21:07:48 +02:00
jsteemann 22e17814e3 additionally allow the following characters in document keys:
`(` `)` `+` `,` `=` `;` `$` `!` `*` `'` `%`
2015-09-15 00:16:08 +02:00
Willi Goesgens 931451c279 Add compatibility for RSpec V3 2015-09-07 13:13:58 +02:00
CoDEmanX b4593a7e82 Change spelling of 'initialize' to American English (comments and log messages only) 2015-09-01 17:07:21 +02:00
Jan Steemann b08713d768 added tests and documentation 2015-08-24 11:05:26 +02:00
Jan Steemann c558a19511 added tests for timeouts 2015-08-16 23:28:49 +02:00
Jan Steemann 7468b13958 do not test on message strings, but error codes 2015-08-12 22:13:08 +02:00
Jan Steemann 57fa0e45a9 fixed test when using SSL 2015-07-30 12:20:12 +02:00
Jan Steemann 05a233bec9 fixed failing test 2015-07-29 18:19:01 +02:00
Heiko Kernbach 1d0dfad48c Merge branch 'devel' of github.com:arangodb/arangodb into web-ui 2015-07-29 16:46:03 +02:00
Jan Steemann 4920420097 lol httparty 2015-07-29 12:54:51 +02:00
Heiko Kernbach 89975821bb tests 2015-07-28 18:21:40 +02:00
Jan Steemann 118fd54fd0 split tests 2015-07-20 10:58:43 +02:00
Frank Celler 0f1ee72723 fixed version 2015-07-13 18:06:42 +02:00
Jan Steemann 0e42565aa8 added test for HTTP API 2015-06-27 05:50:32 +02:00
Jan Steemann 83b326cfc7 moved PUT /_api/simple/all to C++ 2015-06-18 15:34:45 +02:00
Jan Steemann a41a84cc62 fixed test 2015-06-02 15:11:43 +02:00
Michael Hackstein 25aa2a58c3 Temprorarily disabled a neighbors test using the old return format. Will be reactivated soon 2015-05-30 00:41:28 -07:00
Jan Steemann f6bc0a05e3 added `limit` parameter for export API 2015-05-12 14:16:27 +02:00
Jan Steemann 63138def67 fix location response headers with special characters 2015-05-05 14:00:06 +02:00
Jan Steemann ce7ea1e287 fixed test 2015-04-30 23:38:39 +02:00
Jan Steemann eaa49b11c6 rename file 2015-04-17 17:48:34 +02:00
Jan Steemann 6e23c5330f added restrictions for export API 2015-04-17 00:24:43 +02:00
Jan Steemann 92fcdd3e56 issue #1298: Bulk import if data already exists
This change extends the HTTP REST API for bulk imports as follows:

When documents are imported and the `_key` attribute is specified for them, the import can be
used for inserting and updating/replacing documents. Previously, the import could be used for
inserting new documents only, and re-inserting a document with an existing would have failed
with a *unique key constraint violated* error.

The above behavior is still the default. However, the API now allows controlling the behavior
in case of a unique key constraint error via the optional URL parameter `onDuplicate`.

This parameter can have one of the following values:

- `error`: when a unique key constraint error occurs, do not import or update the document but
  report an error. This is the default.

- `update`: when a unique key constraint error occurs, try to (partially) update the existing
  document with the data specified in the import. This may still fail if the document would
  violate secondary unique indexes. Only the attributes present in the import data will be
  updated and other attributes already present will be preserved. The number of updated documents
  will be reported in the `updated` attribute of the HTTP API result.

- `replace`: when a unique key constraint error occurs, try to fully replace the existing
  document with the data specified in the import. This may still fail if the document would
  violate secondary unique indexes. The number of replaced documents will be reported in the
  `updated` attribute of the HTTP API result.

- `ignore`: when a unique key constraint error occurs, ignore this error. There will be no
  insert, update or replace for the particular document. Ignored documents will be reported
  separately in the `ignored` attribute of the HTTP API result.

The result of the HTTP import API will now contain the attributes `ignored` and `updated`, which
contain the number of ignored and updated documents respectively. These attributes will contain a
value of zero unless the `onDuplicate` URL parameter is set to either `update` or `replace`
(in this case the `updated` attribute may contain non-zero values) or `ignore` (in this case the
`ignored` attribute may contain a non-zero value).
2015-04-14 11:44:33 +02:00
Jan Steemann 0f1244f72d better export API cleanup 2015-03-31 18:44:51 +02:00
Jan Steemann 80a99ab23e refactored cursor API 2015-03-30 14:58:51 +02:00
Jan Steemann be713c0a0e bumped version number 2015-03-26 11:38:10 +01:00
Jan Steemann 6e3cf20876 higher timeout 2015-03-19 10:36:07 +01:00
Michael Hackstein 711712fef3 Another improvement of query test 2015-03-13 13:58:06 +01:00
Michael Hackstein 50257a2d5d Made the api-query-anaylsis test more relyable 2015-03-13 13:43:59 +01:00
Michael Hackstein 6e893826dc Further tests for api query analysis 2015-03-12 16:05:46 +01:00
Michael Hackstein 7eb685a5aa Added a test for the new query analysis api. 2015-03-12 16:05:40 +01:00
Michael Hackstein f70b8c66af Fixed the Web interface reachability test 2015-03-10 10:32:34 +01:00
Jan Steemann 6d016abc3b issue #1258: added tests for HTTP pipelining 2015-03-03 15:00:57 +01:00
Jan Steemann ded5b67264 added test 2015-02-24 11:40:15 +01:00
Frank Celler 6190bb7994 Merge branch 'devel' of github.com:arangodb/arangodb into 2.5 2015-02-18 21:50:33 +01:00
Jan Steemann f29591135a adjusted geo index API 2015-02-18 14:59:46 +01:00
Frank Celler 15fb7131f1 Merge remote-tracking branch 'origin/devel' into 2.5
Conflicts:
	Documentation/Examples/CollectionUnload.generated
	Documentation/Examples/HttpGharialAddEdge.generated
	Documentation/Examples/HttpGharialAddEdgeCol.generated
	Documentation/Examples/HttpGharialAddVertex.generated
	Documentation/Examples/HttpGharialAddVertexCol.generated
	Documentation/Examples/HttpGharialCreate.generated
	Documentation/Examples/HttpGharialEdgeDefinitionRemove.generated
	Documentation/Examples/HttpGharialGetEdge.generated
	Documentation/Examples/HttpGharialGetGraph.generated
	Documentation/Examples/HttpGharialGetVertex.generated
	Documentation/Examples/HttpGharialList.generated
	Documentation/Examples/HttpGharialModifyVertex.generated
	Documentation/Examples/HttpGharialPatchEdge.generated
	Documentation/Examples/HttpGharialPutEdge.generated
	Documentation/Examples/HttpGharialRemoveVertexCollection.generated
	Documentation/Examples/HttpGharialReplaceEdgeCol.generated
	Documentation/Examples/HttpGharialReplaceVertex.generated
	Documentation/Examples/RestAdminStatistics1.generated
	Documentation/Examples/RestBatchMultipartHeader.generated
	Documentation/Examples/RestCollectionCreateCollection.generated
	Documentation/Examples/RestCollectionCreateKeyopt.generated
	Documentation/Examples/RestCollectionDeleteCollectionIdentifier.generated
	Documentation/Examples/RestCollectionDeleteCollectionName.generated
	Documentation/Examples/RestCollectionGetAllCollections.generated
	Documentation/Examples/RestCollectionGetCollectionChecksum.generated
	Documentation/Examples/RestCollectionGetCollectionChecksumNoRev.generated
	Documentation/Examples/RestCollectionGetCollectionCount.generated
	Documentation/Examples/RestCollectionGetCollectionFigures.generated
	Documentation/Examples/RestCollectionGetCollectionIdentifier.generated
	Documentation/Examples/RestCollectionGetCollectionName.generated
	Documentation/Examples/RestCollectionGetCollectionRevision.generated
	Documentation/Examples/RestCollectionIdentifierLoad.generated
	Documentation/Examples/RestCollectionIdentifierPropertiesSync.generated
	Documentation/Examples/RestCollectionIdentifierRename.generated
	Documentation/Examples/RestCollectionIdentifierTruncate.generated
	Documentation/Examples/RestCollectionIdentifierUnload.generated
	Documentation/Examples/RestCursorCreateCursorForLimitReturn.generated
	Documentation/Examples/RestCursorCreateCursorForLimitReturnSingle.generated
	Documentation/Examples/RestCursorDelete.generated
	Documentation/Examples/RestCursorForLimitReturnCont.generated
	Documentation/Examples/RestDatabaseGetInfo.generated
	Documentation/Examples/RestDocumentHandlerDeleteDocument.generated
	Documentation/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated
	Documentation/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated
	Documentation/Examples/RestDocumentHandlerPatchDocument.generated
	Documentation/Examples/RestDocumentHandlerPatchDocumentMerge.generated
	Documentation/Examples/RestDocumentHandlerPostAccept1.generated
	Documentation/Examples/RestDocumentHandlerPostCreate1.generated
	Documentation/Examples/RestDocumentHandlerPostCreate2.generated
	Documentation/Examples/RestDocumentHandlerPostWait1.generated
	Documentation/Examples/RestDocumentHandlerReadDocument.generated
	Documentation/Examples/RestDocumentHandlerReadDocumentAllKey.generated
	Documentation/Examples/RestDocumentHandlerReadDocumentAllPath.generated
	Documentation/Examples/RestDocumentHandlerReadDocumentHead.generated
	Documentation/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocument.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocumentIfMatchOtherLastWriteWins.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocumentRevOther.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated
	Documentation/Examples/RestEdgeCreateEdge.generated
	Documentation/Examples/RestEdgesReadEdgesAny.generated
	Documentation/Examples/RestEdgesReadEdgesIn.generated
	Documentation/Examples/RestEdgesReadEdgesOut.generated
	Documentation/Examples/RestEndpointGet.generated
	Documentation/Examples/RestExplainAllPlans.generated
	Documentation/Examples/RestExplainOptimizerRules.generated
	Documentation/Examples/RestExplainOptions.generated
	Documentation/Examples/RestGraphChangeEdge.generated
	Documentation/Examples/RestGraphChangeVertex.generated
	Documentation/Examples/RestGraphChangepEdge.generated
	Documentation/Examples/RestGraphChangepVertex.generated
	Documentation/Examples/RestGraphCreateEdge.generated
	Documentation/Examples/RestGraphCreateVertex.generated
	Documentation/Examples/RestGraphGetEdge.generated
	Documentation/Examples/RestGraphGetEdges.generated
	Documentation/Examples/RestGraphGetGraph.generated
	Documentation/Examples/RestGraphGetGraphs.generated
	Documentation/Examples/RestGraphGetVertex.generated
	Documentation/Examples/RestGraphGetVertexEdges.generated
	Documentation/Examples/RestGraphGetVertexVertices.generated
	Documentation/Examples/RestGraphGetVertexVertices2.generated
	Documentation/Examples/RestGraphGetVertices.generated
	Documentation/Examples/RestGraphPostGraph.generated
	Documentation/Examples/RestIndexAllIndexes.generated
	Documentation/Examples/RestIndexCreateGeoLatitudeLongitude.generated
	Documentation/Examples/RestIndexCreateGeoLocation.generated
	Documentation/Examples/RestIndexCreateNewCapConstraint.generated
	Documentation/Examples/RestIndexCreateNewFulltext.generated
	Documentation/Examples/RestIndexCreateNewHashIndex.generated
	Documentation/Examples/RestIndexCreateNewSkiplist.generated
	Documentation/Examples/RestIndexCreateNewUniqueConstraint.generated
	Documentation/Examples/RestIndexCreateSparseHashIndex.generated
	Documentation/Examples/RestIndexCreateSparseSkiplist.generated
	Documentation/Examples/RestIndexDeleteUniqueSkiplist.generated
	Documentation/Examples/RestReplicationApplierStart.generated
	Documentation/Examples/RestReplicationApplierStateNotRunning.generated
	Documentation/Examples/RestReplicationApplierStateRunning.generated
	Documentation/Examples/RestReplicationApplierStop.generated
	Documentation/Examples/RestReplicationDump.generated
	Documentation/Examples/RestReplicationInventory.generated
	Documentation/Examples/RestReplicationInventoryIndexes.generated
	Documentation/Examples/RestReplicationLoggerFollowBufferLimit.generated
	Documentation/Examples/RestReplicationLoggerFollowEmpty.generated
	Documentation/Examples/RestReplicationLoggerFollowSome.generated
	Documentation/Examples/RestReplicationLoggerStateActive.generated
	Documentation/Examples/RestReplicationServerId.generated
	Documentation/Examples/RestSimpleAllBatch.generated
	Documentation/Examples/RestSimpleAllSkipLimit.generated
	Documentation/Examples/RestSimpleAny.generated
	Documentation/Examples/RestSimpleByExample.generated
	Documentation/Examples/RestSimpleByExample2.generated
	Documentation/Examples/RestSimpleByExample3.generated
	Documentation/Examples/RestSimpleFirst.generated
	Documentation/Examples/RestSimpleFirstExample.generated
	Documentation/Examples/RestSimpleFirstSingle.generated
	Documentation/Examples/RestSimpleFulltext.generated
	Documentation/Examples/RestSimpleLast.generated
	Documentation/Examples/RestSimpleLastSingle.generated
	Documentation/Examples/RestSimpleNear.generated
	Documentation/Examples/RestSimpleNearDistance.generated
	Documentation/Examples/RestSimpleRange.generated
	Documentation/Examples/RestSimpleWithin.generated
	Documentation/Examples/RestSimpleWithinDistance.generated
	Documentation/Examples/RestSimpleWithinRectangle.generated
	Documentation/Examples/RestTasksCreate.generated
	Documentation/Examples/RestTasksListAll.generated
	Documentation/Examples/RestTasksListOne.generated
	Documentation/Examples/RestTasksPutWithId.generated
	Documentation/Examples/RestTraversalAny.generated
	Documentation/Examples/RestTraversalBackwardItemOrder.generated
	Documentation/Examples/RestTraversalDepthFirst.generated
	Documentation/Examples/RestTraversalEdgeUniqueness.generated
	Documentation/Examples/RestTraversalFilterExclude.generated
	Documentation/Examples/RestTraversalFilterPrune.generated
	Documentation/Examples/RestTraversalInbound.generated
	Documentation/Examples/RestTraversalMaxDepth.generated
	Documentation/Examples/RestTraversalMinDepth.generated
	Documentation/Examples/RestTraversalOutbound.generated
	Documentation/Examples/RestTraversalPostorder.generated
	Documentation/Examples/RestTraversalVisitorCountAndList.generated
	Documentation/Examples/RestTraversalVisitorExpander.generated
	Documentation/Examples/RestVersion.generated
	Documentation/Examples/RestVersionDetails.generated
	Documentation/Examples/SaveEdgeCol.generated
	Documentation/Examples/collectionAll.generated
	Documentation/Examples/collectionAllNext.generated
	Documentation/Examples/collectionByExample.generated
	Documentation/Examples/collectionByExampleNext.generated
	Documentation/Examples/collectionClosedRange.generated
	Documentation/Examples/collectionDatabaseCollectionName.generated
	Documentation/Examples/collectionDatabaseCreate.generated
	Documentation/Examples/collectionDatabaseCreateKey.generated
	Documentation/Examples/collectionDatabaseCreateProperties.generated
	Documentation/Examples/collectionDatabaseCreateSpecialKey.generated
	Documentation/Examples/collectionDatabaseDrop.generated
	Documentation/Examples/collectionDatabaseDropName.generated
	Documentation/Examples/collectionDatabaseName.generated
	Documentation/Examples/collectionDatabaseTruncate.generated
	Documentation/Examples/collectionDatabaseTruncateName.generated
	Documentation/Examples/collectionDrop.generated
	Documentation/Examples/collectionFigures.generated
	Documentation/Examples/collectionFirstExample.generated
	Documentation/Examples/collectionFulltext.generated
	Documentation/Examples/collectionLoad.generated
	Documentation/Examples/collectionNear.generated
	Documentation/Examples/collectionNearDistance.generated
	Documentation/Examples/collectionRange.generated
	Documentation/Examples/collectionRename.generated
	Documentation/Examples/collectionTruncate.generated
	Documentation/Examples/collectionWithin.generated
	Documentation/Examples/collectionsDatabaseName.generated
	Documentation/Examples/cursorHasNext.generated
	Documentation/Examples/cursorNext.generated
	Documentation/Examples/documentDocumentRemove.generated
	Documentation/Examples/documentDocumentRemoveConflict.generated
	Documentation/Examples/documentDocumentUpdate.generated
	Documentation/Examples/documentsCollectionFirst.generated
	Documentation/Examples/documentsCollectionFirstNull.generated
	Documentation/Examples/documentsCollectionInsert.generated
	Documentation/Examples/documentsCollectionLast.generated
	Documentation/Examples/documentsCollectionLastNull.generated
	Documentation/Examples/documentsCollectionName.generated
	Documentation/Examples/documentsCollectionRemove.generated
	Documentation/Examples/documentsCollectionRemoveConflict.generated
	Documentation/Examples/documentsCollectionRemoveSignature.generated
	Documentation/Examples/documentsCollectionReplace.generated
	Documentation/Examples/documentsCollectionReplaceHandle.generated
	Documentation/Examples/documentsCollectionUpdate.generated
	Documentation/Examples/documentsCollectionUpdateHandle.generated
	Documentation/Examples/documentsCollectionUpdateHandleArray.generated
	Documentation/Examples/documentsCollectionUpdateHandleKeepNull.generated
	Documentation/Examples/documentsDocumentName.generated
	Documentation/Examples/documentsDocumentReplace.generated
	Documentation/Examples/executeQuery.generated
	Documentation/Examples/executeQueryBatchSize.generated
	Documentation/Examples/generalGraphAbsBetweenness1.generated
	Documentation/Examples/generalGraphAbsBetweenness2.generated
	Documentation/Examples/generalGraphAbsBetweenness3.generated
	Documentation/Examples/generalGraphAbsCloseness1.generated
	Documentation/Examples/generalGraphAbsCloseness2.generated
	Documentation/Examples/generalGraphAbsEccentricity2.generated
	Documentation/Examples/generalGraphBetweenness2.generated
	Documentation/Examples/generalGraphBetweenness3.generated
	Documentation/Examples/generalGraphCloseness1.generated
	Documentation/Examples/generalGraphCloseness3.generated
	Documentation/Examples/generalGraphCommonNeighbors1.generated
	Documentation/Examples/generalGraphCommonNeighbors2.generated
	Documentation/Examples/generalGraphDistanceTo1.generated
	Documentation/Examples/generalGraphDropGraphKeep.generated
	Documentation/Examples/generalGraphEccentricity1.generated
	Documentation/Examples/generalGraphEccentricity2.generated
	Documentation/Examples/generalGraphEdgeCollectionRemove.generated
	Documentation/Examples/generalGraphEdgeCollectionReplace.generated
	Documentation/Examples/generalGraphEdgeCollectionSave1.generated
	Documentation/Examples/generalGraphEdgeCollectionUpdate.generated
	Documentation/Examples/generalGraphEdges1.generated
	Documentation/Examples/generalGraphEdges2.generated
	Documentation/Examples/generalGraphEdgesFiltered.generated
	Documentation/Examples/generalGraphEdgesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLEdgesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLEdgesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLEdgesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLFromVerticesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLFromVerticesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLFromVerticesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLInEdgesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLInEdgesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLInEdgesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLNeighborsFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLNeighborsUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLNext.generated
	Documentation/Examples/generalGraphFluentAQLNextRecreate.generated
	Documentation/Examples/generalGraphFluentAQLOutEdgesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLOutEdgesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLOutEdgesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLPathNeighbors.generated
	Documentation/Examples/generalGraphFluentAQLPathSimple.generated
	Documentation/Examples/generalGraphFluentAQLRestricted.generated
	Documentation/Examples/generalGraphFluentAQLToArray.generated
	Documentation/Examples/generalGraphFluentAQLToVerticesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLToVerticesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLToVerticesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLUnfilteredEdges.generated
	Documentation/Examples/generalGraphFluentAQLUnfilteredVertices.generated
	Documentation/Examples/generalGraphFluentAQLUnrestricted.generated
	Documentation/Examples/generalGraphFluentAQLVerticesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLVerticesUnfiltered.generated
	Documentation/Examples/generalGraphGetFromVertex.generated
	Documentation/Examples/generalGraphGetToVertex.generated
	Documentation/Examples/generalGraphModuleAbsBetweenness1.generated
	Documentation/Examples/generalGraphModuleAbsBetweenness2.generated
	Documentation/Examples/generalGraphModuleAbsBetweenness3.generated
	Documentation/Examples/generalGraphModuleAbsCloseness1.generated
	Documentation/Examples/generalGraphModuleAbsCloseness2.generated
	Documentation/Examples/generalGraphModuleAbsCloseness3.generated
	Documentation/Examples/generalGraphModuleAbsEccentricity2.generated
	Documentation/Examples/generalGraphModuleBetweenness1.generated
	Documentation/Examples/generalGraphModuleBetweenness2.generated
	Documentation/Examples/generalGraphModuleCloseness1.generated
	Documentation/Examples/generalGraphModuleCommonNeighbors1.generated
	Documentation/Examples/generalGraphModuleCommonNeighbors2.generated
	Documentation/Examples/generalGraphModuleConnectingEdges1.generated
	Documentation/Examples/generalGraphModuleDistanceTo1.generated
	Documentation/Examples/generalGraphModuleDistanceTo2.generated
	Documentation/Examples/generalGraphModuleEccentricity2.generated
	Documentation/Examples/generalGraphModuleEccentricity3.generated
	Documentation/Examples/generalGraphModuleNeighbors1.generated
	Documentation/Examples/generalGraphModuleNeighbors2.generated
	Documentation/Examples/generalGraphModulePaths.generated
	Documentation/Examples/generalGraphModulePaths2.generated
	Documentation/Examples/generalGraphModuleShortestPaths1.generated
	Documentation/Examples/generalGraphModuleShortestPaths2.generated
	Documentation/Examples/generalGraphNeighbors1.generated
	Documentation/Examples/generalGraphNeighbors2.generated
	Documentation/Examples/generalGraphPaths.generated
	Documentation/Examples/generalGraphPaths2.generated
	Documentation/Examples/generalGraphShortestPaths1.generated
	Documentation/Examples/generalGraphTraversal1.generated
	Documentation/Examples/generalGraphTraversal2.generated
	Documentation/Examples/generalGraphTraversalTree1.generated
	Documentation/Examples/generalGraphTraversalTree2.generated
	Documentation/Examples/generalGraphVertexCollectionRemove.generated
	Documentation/Examples/generalGraphVertexCollectionReplace.generated
	Documentation/Examples/generalGraphVertexCollectionSave.generated
	Documentation/Examples/generalGraphVertexCollectionUpdate.generated
	Documentation/Examples/generalGraphVertices1.generated
	Documentation/Examples/generalGraphVertices2.generated
	Documentation/Examples/generalGraphVerticesFiltered.generated
	Documentation/Examples/generalGraphVerticesUnfiltered.generated
	Documentation/Examples/general_graph__deleteEdgeDefinition.generated
	Documentation/Examples/queryLimit.generated
	Documentation/Examples/querySkip.generated
	build.h
	configure
	configure.ac
	js/common/tests/shell-database.js
2015-02-17 15:31:33 +01:00
Michael Hackstein c6e9d98251 Added a force uninstall for foxx apps, to make sure they are removed from disk even if sth is unclear with mounting. Also created an error for foxx not found on file system has been added 2015-02-16 17:14:36 +01:00
Michael Hackstein 0c78629199 Merge branch 'foxx-pathes' of github.com:arangodb/arangodb into devel 2015-02-16 14:17:52 +01:00
Frank Celler 9053c16f37 fixed version 2015-02-16 11:46:29 +01:00
Michael Hackstein 11877983c8 Added an http spec to install a foxx app 2015-02-13 22:12:31 +01:00
Jan Steemann 924adc9e46 added tests for sparse indexes 2015-02-10 21:28:12 +01:00
Jan Steemann 39603ebaf4 added selectivity estimates for some index types 2015-01-30 23:04:46 +01:00
Jan Steemann 0ed3b03cbd added test case 2015-01-29 11:48:38 +01:00
Jan Steemann 63bf4c888a flush WAL status file after collection to shorten recovery 2015-01-18 21:06:57 +01:00
Jan Steemann abfb03b3f0 avoid deprecation warning 2015-01-16 12:34:12 +01:00
Jan Steemann 34c3ac0f56 fixed incompatibilies with newer rspec/ruby versions
Conflicts:
	UnitTests/HttpInterface/api-collection-spec.rb
2015-01-16 12:34:12 +01:00
Frank Celler ca16940c77 using 2.5.0-devel 2015-01-13 18:21:37 +01:00
Jan Steemann c31280331f Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-12-19 14:01:07 +01:00
Jan Steemann fd5a723f30 removed deprecated methods 2014-12-19 14:00:58 +01:00
Frank Celler e37da76255 removed debug output 2014-12-19 13:42:22 +01:00
Jan Steemann 017f52c113 fixed for rspec 3 2014-12-17 17:47:16 +01:00
Frank Celler 9e3474d335 raised version 2014-12-17 09:31:55 +01:00
Jan Steemann d9a945e33a include or exclude system collections from replication 2014-12-05 14:58:43 +01:00
Willi Goesgens fa926a48a7 Add timecritical option to the unittests 2014-10-14 11:04:45 +02:00
Jan Steemann 481a16fd7a removed bitarray indexes 2014-09-15 14:19:38 +02:00
Jan Steemann c0463a1797 added `type` option for `GET /_api/document?collection=...`
Conflicts:
	CHANGELOG
2014-08-30 17:26:24 +02:00
Jan Steemann 3b9636c52b issue #1004 2014-08-28 08:55:02 +02:00
Jan Steemann 4760b3c921 once again: attempt to fix non-deterministic test 2014-08-27 22:44:14 +02:00
Jan Steemann 6e872111f0 hopefully fix random travis test 2014-08-27 11:45:14 +02:00
Jan Steemann 5a9c16eaad attempt to fix test 2014-08-20 16:26:43 +02:00
Jan Steemann cd575e073f fixed tests 2014-08-15 18:19:52 +02:00
Frank Celler e0db77b070 fixed tests, log can contain more entries 2014-08-13 12:17:37 +02:00
Jan Steemann 099ec8db60 reallow attribute names starting with underscores 2014-08-07 15:52:58 +02:00
Frank Celler 0344573b5f use all available, non-cluster tests 2014-07-25 15:36:21 +02:00
Jan Steemann fbbea02c71 disabled non-deterministic test 2014-07-23 15:49:17 +02:00
Jan Steemann 8de45f0225 increase ttl for test 2014-07-22 15:18:02 +02:00
Jan Steemann 712358d069 added optional `ttl` attribute to specify result cursor expiration for HTTP API method `POST /_api/cursor`
The `ttl` attribute can be used to prevent cursor results from timing out too early.
2014-07-21 15:48:43 +02:00
Michael Hackstein 30f2a59511 Fixed cluster test in general graph 2014-07-17 09:02:45 +02:00
Michael Hackstein 871db072e7 Added tests for gharial error return codes. Fixed a bug pn false return code on the way 2014-07-16 11:04:39 +01:00
Michael Hackstein 5ccc4cb2c0 Fixed Cluster gharial tests 2014-07-09 10:15:07 +02:00
Michael Hackstein 3f6e1c3555 Unified gharial error responses with normal API 2014-07-08 10:46:18 +02:00
Michael Hackstein 72a9b7e5aa Added waitForSync support for creation of vertices and edges in gharial 2014-07-07 15:18:35 +02:00
Michael Hackstein 202deaae85 Fixed issues in gharial module. By default the do not wait for sync http codes are returned. You can now optionally send waitForSync true to all modifying endpoints 2014-07-03 10:53:18 +02:00
Jan Steemann acf6c688b7 fixed typo 2014-07-02 17:04:57 +02:00
Michael Hackstein 7b22c0c2a5 Added a correct 404 return code to gharial when trying to remove a vertex/edge which does not exists. Also added tests for return codes 2014-07-02 15:03:06 +02:00
Michael Hackstein d211b6eacd Fixed general graph spec. Error message is more specfic then expected 2014-07-01 17:08:55 +02:00
Max Neunhoeffer c36995c8b8 Fix gharial test if not mounted under /system. 2014-06-30 11:00:31 +02:00
Michael Hackstein ac014bbfe0 Fixed a bug in gharial which was not allowed to create orphan collections during graph creation 2014-06-24 17:27:47 +02:00
Jan Steemann f411fceb2e exposed WAL API 2014-06-24 16:10:27 +02:00
Jan Steemann 53909c0dcd adjusted tests 2014-06-23 18:45:06 +02:00
Jan Steemann e51dcdb2cb Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh
Conflicts:
	js/common/tests/shell-general-graph.js
2014-06-20 13:39:51 +02:00
Michael Hackstein 22d9be8903 Added short hand for graph creation for http api tests 2014-06-20 13:02:40 +02:00
Michael Hackstein 92b50b4d08 Added graph and edge collection tests for traversal API to execution script 2014-06-20 13:01:43 +02:00
Michael Hackstein 43edb7772a Added tests for traversal API using graphs instead of an edge collection. 2014-06-20 13:00:00 +02:00
Jan Steemann 73e3fd5551 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh 2014-06-18 21:13:51 +02:00
Jan Steemann 6fc48d2625 fixed failing test 2014-06-18 21:12:52 +02:00
Frank Celler dd9f81ec82 fixed version check 2014-06-18 19:14:14 +02:00
Jan Steemann 1d68586500 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh
Conflicts:
	js/apps/system/aardvark/frontend/js/modules/org/arangodb/general-graph.js
2014-06-18 16:37:28 +02:00
Michael Hackstein 02f1552b35 Fixed general graph api tests 2014-06-18 10:55:16 +02:00
Jan Steemann 85b92dbf21 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh 2014-06-13 18:16:48 +02:00
Jan Steemann 0c5950507c fixed test 2014-06-13 17:50:44 +02:00
Michael Hackstein fdece972d0 Added tests for vertex and edge collection lists in http interface. Added docu for _list in general-graph module 2014-06-13 16:41:48 +02:00
Michael Hackstein 7541149200 Added functions to list all graphs and all vertex/edge collections of a specific graph to http-api 2014-06-13 15:11:59 +02:00
Jan Steemann d7f35bcc7b fixed datafile ticks issues 2014-06-13 14:46:21 +02:00