blob: b3c7f0f739c6eb71a0902272e213b16d11a9f175 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import {AGTypeParse} from "../src/tools/AGEParser";
const assert = require('assert').strict;
describe('Test Connector Api', () => {
it('Object Circulating', (done) => {
const ret = AGTypeParse('{"id": 1688849860263937, "label": "car", "properties": {"a": {"b":{"c":{"d":[1, 2, "A"]}}}}}::vertex');
assert.deepStrictEqual(ret, {
id: 1688849860263937,
label: 'car',
properties: {
a: {
b: {
c: {
d: [
1,
2,
'A'
]
}
}
}
}
});
done();
});
it('Null Properties', (done) => {
const ret = AGTypeParse('{"id": 1688849860263937, "label": "car", "properties": {}}::vertex');
assert.deepStrictEqual(ret, {"id":1688849860263937,"label":"car","properties":{}});
done();
});
it('Path', (done) => {
const ret = AGTypeParse('[{"id": 844424930131969, "label": "Part", "properties": {"part_num": "123"}}::vertex, {"id": 1125899906842625, "label": "used_by", "end_id": 844424930131970, "start_id": 844424930131969, "properties": {"quantity": 1}}::edge, {"id": 844424930131970, "label": "Part", "properties": {"part_num": "345"}}::vertex]::path');
assert.deepStrictEqual(ret, [
{
id: 844424930131969,
label: 'Part',
properties: { part_num: '123' }
},
{
id: 1125899906842625,
label: 'used_by',
end_id: 844424930131970,
start_id: 844424930131969,
properties: { quantity: 1 }
},
{
id: 844424930131970,
label: 'Part',
properties: { part_num: '345' }
}
]);
done();
});
it('Edge', (done) => {
const ret = AGTypeParse('{"id": 1125899906842625, "label": "used_by", "end_id": 844424930131970, "start_id": 844424930131969, "properties": {"quantity": 1}}::edge');
assert.deepStrictEqual(ret, {
id: 1125899906842625,
label: 'used_by',
end_id: 844424930131970,
start_id: 844424930131969,
properties: { quantity: 1 }
});
done();
});
it('String', (done) => {
const ret = AGTypeParse('"parent"');
assert.deepStrictEqual(ret, 'parent');
done();
});
});