-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestDocs.js
273 lines (264 loc) · 5.8 KB
/
testDocs.js
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
var PJsonCouch = require("./lib/PJsonCouch.js");
var fs = require("fs");
log = function(desc, json) {
console.log(desc);
console.log(json);
}
// connection without database definition
var test = PJsonCouch({
host : "127.0.0.1",
port : 5984
});
// modify the default debug settings
test.setDebugConfig({
debug : false,
debugOnError : true,
debugWithHeaders : true,
throwExceptionsOnError : false
});
// Attenion: I will delete and create this db for tests
var dbForTest = "mytempdblandeiro123";
// Docs for test
var docs = [{
_id : "objmyid0",
a : 0
}, {
_id : "objmyid1",
a : 1
}, {
_id : "objmyid2",
a : 3
}, {
_id : "objmyid4",
a : 4
}, {
_id : "objmyid5",
a : 5
}, {
_id : "objmyid6",
a : 6
}, {
_id : "objmyid7",
a : 7
}];
// Remove login if your DB is not protected
test.login({
user : "landeiro",
password : "123"
}, function(r) {
test.queryDB({
db : dbForTest
}, function(r) {
if(r.error === "not_found")
proceedWithTests();
else
test.deleteDB({
db : dbForTest
}, function(r) {
if(r.ok)
proceedWithTests();
})
});
});
// Will create DB, save Bulks docs, get a Doc and delete it.
function proceedWithTests() {
test.createDB({
db : dbForTest
}, function() {
test.setDB({
db : dbForTest
});
// Save bulk, supports all request data from original couchdb API
test.saveBulkDocs({
docs : docs
}, function(r) {
log("insert bulk", r);
// Get Doc, supports all arguments from original couchdb API
test.getDoc({
id : "objmyid0"
}, function(gdoc) {
log("*get doc*", gdoc)
if(!gdoc.error) {
// Delete a Doc, supports all arguments from original couchdb API
test.deleteDoc({
doc : gdoc
}, function(r) {
log("*deleted " + gdoc._id + "*", r);
saveDocsTests();
});
}
});
});
});
}
// will save, update, info and copy docs,
function saveDocsTests() {
//Saving a Doc, supports all arguments from original couchdb API
test.saveDoc({
doc : {
name : "pedro",
surname : "landeiro"
}
}, function(r) {
log("*save doc withoutid*", r);
});
test.saveDoc({
doc : {
"_id" : "myownid",
"name" : "pedro",
"surname" : "landeiro"
}
}, function(r) {
log("*save doc with id*", r);
test.getDoc({
id : "myownid"
}, function(gDoc) {
//Updating a existing doc
gDoc.newfield = "this is a new field";
// will save doc with the new field
test.saveDoc({
doc : gDoc
}, function(r) {
log("*updated doc " + gDoc._id + "*", r);
// Copy Doc, supports all arguments and request data from original couchdb API
test.copyDoc({
source : {
id : "myownid",
rev : r._rev
},
destination : {
id : "copied_doc"
}
}, function(r) {
log("*copied updated doc with id copied_doc", r);
//Info Docs, supports all arguments from original couchdb API
test.infoDoc({
id : "copied_doc"
}, function(r) {
log("*info from previous copied doc*", r);
localDocsTests()
});
})
});
});
});
}
// will save, update, info and copy docs locally,
function localDocsTests() {
console.log("LOCAL DOCS");
//Saving a Doc, supports all arguments from original couchdb API
test.saveDoc({
doc : {
_id : "myownidlocal",
"name" : "pedro",
"surname" : "landeiro"
},
local : true
}, function(r) {
log("*save doc with id*", r);
test.getDoc({
id : "myownidlocal",
local : true
}, function(gDoc) {
//Updating a existing doc
gDoc.newfield = "this is a new field in local doc";
// will save doc with the new field
test.saveDoc({
doc : gDoc,
local : true
}, function(r) {
log("*updated doc " + gDoc._id + "*", r);
// Copy Doc, supports all arguments and request data from original couchdb API
test.copyDoc({
source : {
id : r.id,
rev : r.rev
},
destination : {
id : "copied_doc_local"
},
local : true
}, function(r) {
log("*copied updated doc with id copied_doc_local", r);
//Info Docs, supports all arguments from original couchdb API
test.infoDoc({
id : "copied_doc_local",
local : true
}, function(r) {log("*info from previous copied doc*", r);
attachmentsTests()
});
})
});
});
});
}
function attachmentsTests() {
// How to attach a binary file
test.getDoc({
id : "myownid"
}, function(r) {
// *** Insert here a image file to upload ***
fs.readFile('couchdb.png', 'binary', function(err, data) {
if(err)
throw err;
// Save a binary attachment on myownid Doc
test.saveDocAttachment({
id : r._id,
rev : r._rev,
attachment : {
file : "image.png",
content : data,
content_type : "image/png",
content_encoding : "binary"
}
}, function(r) {
log("*insert image.png on myownid Doc*", r)
test.saveDocAttachment({
id : r.id,
rev : r.rev,
attachment : {
file : "file.txt",
content : "some text",
content_type : "text/plain"
}
}, function(r) {
log("*insert file.txt on myownid Doc*", r);
});
// Get a Binary content from image file (this content is available on property 'not_json')
test.getDocAttachment({
id : r.id,
attachment : {
file : "image.png",
content_encoding : "binary"
}
}, function(r) {
log("*get image.png*", r);
});
});
});
});
test.getDoc({
id : "objmyid1"
}, function(r) {
test.saveDocAttachment({
id : r._id,
rev : r._rev,
attachment : {
file : "fileToDelete.txt",
content : "some text that will be deleted",
content_type : "text/plain"
}
}, function(r) {
log("*insert fileToDelete.txt on objmyid1 Doc*", r);
test.deleteDocAttachment({
id : r.id,
rev : r.rev,
attachment : {
file : "fileToDelete.txt"
}
}, function(r) {
log("*delete fileToDelete.txt on objmyid1 Doc*", r);
})
});
});
}