mirror of https://gitee.com/bigwinds/arangodb
82 lines
2.2 KiB
JavaScript
82 lines
2.2 KiB
JavaScript
/*jshint globalstrict:false, strict:false */
|
|
/*global assertEqual, assertNull, fail */
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief test the collection interface
|
|
///
|
|
/// @file
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2010-2012 triagens GmbH, Cologne, Germany
|
|
///
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
/// you may not use this file except in compliance with the License.
|
|
/// You may obtain a copy of the License at
|
|
///
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
///
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
/// See the License for the specific language governing permissions and
|
|
/// limitations under the License.
|
|
///
|
|
/// Copyright holder is triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// @author Dr. Frank Celler
|
|
/// @author Copyright 2012, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
var jsunity = require("jsunity");
|
|
|
|
var arangodb = require("@arangodb");
|
|
var internal = require("internal");
|
|
|
|
var ArangoCollection = arangodb.ArangoCollection;
|
|
var db = arangodb.db;
|
|
var ERRORS = arangodb.errors;
|
|
|
|
function CollectionSuite() {
|
|
let cn = "example";
|
|
return {
|
|
setUp: function() {
|
|
db._drop(cn);
|
|
},
|
|
|
|
tearDown: function() {
|
|
db._drop(cn);
|
|
},
|
|
|
|
testCreateWithInvalidIndexes1 : function () {
|
|
try {
|
|
db._create(cn, { indexes: [{ id: "1", type: "edge", fields: ["_from"] }] });
|
|
fail();
|
|
} catch (err) {
|
|
assertEqual(ERRORS.ERROR_BAD_PARAMETER.code, err.errorNum);
|
|
}
|
|
|
|
assertNull(db._collection(cn));
|
|
},
|
|
|
|
testCreateWithInvalidIndexes2 : function () {
|
|
let cn = "example";
|
|
|
|
db._drop(cn);
|
|
try {
|
|
db._create(cn, { indexes: [{ id: "1234", type: "hash", fields: ["a"] }] });
|
|
fail();
|
|
} catch (err) {
|
|
assertEqual(ERRORS.ERROR_BAD_PARAMETER.code, err.errorNum);
|
|
}
|
|
|
|
assertNull(db._collection(cn));
|
|
}
|
|
|
|
};
|
|
}
|
|
|
|
jsunity.run(CollectionSuite);
|
|
|
|
return jsunity.done();
|