forked from marklogic/node-client-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.js
More file actions
104 lines (97 loc) · 3.08 KB
/
client.js
File metadata and controls
104 lines (97 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
* Copyright 2014-2016 MarkLogic Corporation
*
* 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.
*/
var assert = require('assert');
var should = require('should');
var testconfig = require('../etc/test-config.js');
var marklogic = require('../');
var q = marklogic.queryBuilder;
var YAgent = require('yakaa');
// TODO: setup should create user with eval-in role
var connection = {
user: 'admin',
password: 'admin'
};
Object.keys(testconfig.restWriterConnection).forEach(function(key){
if (connection[key] === undefined) {
connection[key] = testconfig.restWriterConnection[key];
}
});
var db = marklogic.createDatabaseClient(connection);
var otherConnection = {
database: 'unittest-nodeapi',
port: '8000'
};
Object.keys(connection).forEach(function(key){
if (otherConnection[key] === undefined) {
otherConnection[key] = connection[key];
}
});
var otherDb = marklogic.createDatabaseClient(otherConnection);
var agentConnection = {
agent: new YAgent({keepAlive: true, keepAliveTimeoutMsecs: 1000})
}
Object.keys(otherConnection).forEach(function(key){
if (agentConnection[key] === undefined) {
agentConnection[key] = otherConnection[key];
}
});
var agentDb = marklogic.createDatabaseClient(agentConnection);
describe('database clients', function() {
it('should write in a default db and read in a specified db', function(done) {
db.documents.write({
uri: '/test/database/doc1.json',
contentType: 'application/json',
content: {
id: 'database1',
value: 'Database One'
}
})
.result(function(document) {
return otherDb.documents.probe('/test/database/doc1.json').result();
})
.then(function(document) {
document.exists.should.equal(true);
done();
})
.catch(done);
});
it('should write in a specified db and read in a default db', function(done) {
otherDb.documents.write({
uri: '/test/database/doc2.json',
contentType: 'application/json',
content: {
id: 'database2',
value: 'Database Two'
}
})
.result(function(document) {
return db.documents.probe('/test/database/doc2.json').result();
})
.then(function(document) {
document.exists.should.equal(true);
done();
})
.catch(done);
});
it('should use a default agent', function(done) {
otherDb.connectionParams.agent.options.keepAlive.should.equal(true);
done();
});
it('should use a custom agent', function(done) {
agentDb.connectionParams.agent.options.keepAliveTimeoutMsecs.should.equal(1000);
done();
});
});