-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathblobPlsqlBindAsBuffer_bindin.js
1057 lines (876 loc) · 41.6 KB
/
blobPlsqlBindAsBuffer_bindin.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright (c) 2016, 2023, Oracle and/or its affiliates. */
/******************************************************************************
*
* This software is dual-licensed to you under the Universal Permissive License
* (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl and Apache License
* 2.0 as shown at https://www.apache.org/licenses/LICENSE-2.0. You may choose
* either license.
*
* If you elect to accept the software under the Apache License, Version 2.0,
* the following applies:
*
* 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
*
* https://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.
*
* NAME
* 77. blobPlsqlBindAsBuffer_bindin.js
*
* DESCRIPTION
* Testing BLOB binding in as Buffer.
*
*****************************************************************************/
'use strict';
const oracledb = require('oracledb');
const assert = require('assert');
const fs = require('fs');
const dbConfig = require('./dbconfig.js');
const random = require('./random.js');
describe('77. blobPlsqlBindAsBuffer_bindin.js', function() {
let connection = null;
let insertID = 1; // assume id for insert into db starts from 1
const proc_blob_in_tab = "BEGIN \n" +
" DECLARE \n" +
" e_table_missing EXCEPTION; \n" +
" PRAGMA EXCEPTION_INIT(e_table_missing, -00942); \n" +
" BEGIN \n" +
" EXECUTE IMMEDIATE('DROP TABLE nodb_tab_blob_in PURGE'); \n" +
" EXCEPTION \n" +
" WHEN e_table_missing \n" +
" THEN NULL; \n" +
" END; \n" +
" EXECUTE IMMEDIATE (' \n" +
" CREATE TABLE nodb_tab_blob_in ( \n" +
" id NUMBER, \n" +
" blob_1 BLOB, \n" +
" blob_2 BLOB \n" +
" ) \n" +
" '); \n" +
"END; ";
const proc_lobs_in_tab = "BEGIN \n" +
" DECLARE \n" +
" e_table_missing EXCEPTION; \n" +
" PRAGMA EXCEPTION_INIT(e_table_missing, -00942); \n" +
" BEGIN \n" +
" EXECUTE IMMEDIATE('DROP TABLE nodb_tab_lobs_in PURGE'); \n" +
" EXCEPTION \n" +
" WHEN e_table_missing \n" +
" THEN NULL; \n" +
" END; \n" +
" EXECUTE IMMEDIATE (' \n" +
" CREATE TABLE nodb_tab_lobs_in ( \n" +
" id NUMBER, \n" +
" blob BLOB \n" +
" ) \n" +
" '); \n" +
"END; ";
before(async function() {
connection = await oracledb.getConnection(dbConfig);
await setupAllTable();
}); // before
after(async function() {
await dropAllTable();
await connection.close();
}); // after
const setupAllTable = async function() {
await connection.execute(proc_blob_in_tab);
await connection.execute(proc_lobs_in_tab);
};
const dropAllTable = async function() {
await connection.execute("DROP TABLE nodb_tab_blob_in PURGE");
await connection.execute("DROP TABLE nodb_tab_lobs_in PURGE");
};
const executeSQL = async function(sql) {
await connection.execute(sql);
};
const jpgFileName = './test/fuzzydinosaur.jpg';
const prepareTableWithBlob = async function(sql, id) {
const bindVar = {
i: id,
lobbv: { type: oracledb.BLOB, dir: oracledb.BIND_OUT }
};
const result = await connection.execute(sql, bindVar);
assert.strictEqual(result.rowsAffected, 1);
assert.strictEqual(result.outBinds.lobbv.length, 1);
const inStream = fs.createReadStream(jpgFileName);
const lob = result.outBinds.lobbv[0];
await new Promise((resolve, reject) => {
lob.on('error', reject);
inStream.on('error', reject);
lob.on('finish', resolve);
inStream.pipe(lob);
});
await connection.commit();
};
const verifyBlobValueWithFileData = async function(selectSql) {
const result = await connection.execute(selectSql);
const lob = result.rows[0][0];
const blobData = await lob.getData();
const originalData = await fs.promises.readFile(jpgFileName);
assert.deepStrictEqual(originalData, blobData);
lob.destroy();
};
const verifyBlobValueWithBuffer = async function(selectSql, originalBuffer, specialStr) {
const result = await connection.execute(selectSql);
const lob = result.rows[0][0];
if (originalBuffer == null || originalBuffer == undefined) {
assert.ifError(lob);
} else {
const blobData = await lob.getData();
if (originalBuffer.length === 0) {
assert.strictEqual(blobData, null);
} else {
const specStrLength = specialStr.length;
assert.strictEqual(blobData.toString('utf8', 0, specStrLength),
specialStr);
assert.strictEqual(blobData.toString('utf8',
(blobData.length - specStrLength), blobData.length), specialStr);
assert.deepStrictEqual(blobData, originalBuffer);
}
lob.destroy();
}
};
describe('77.1 BLOB, PLSQL, BIND_IN', function() {
const proc = "CREATE OR REPLACE PROCEDURE nodb_blobs_in_771 (blob_id IN NUMBER, blob_in IN BLOB)\n" +
"AS \n" +
"BEGIN \n" +
" insert into nodb_tab_blob_in (id, blob_1) values (blob_id, blob_in); \n" +
"END nodb_blobs_in_771; ";
const sqlRun = "BEGIN nodb_blobs_in_771 (:i, :b); END;";
const proc_drop = "DROP PROCEDURE nodb_blobs_in_771";
const proc_7711 = "CREATE OR REPLACE PROCEDURE nodb_blobs_in_7711 (blob_id IN NUMBER, blob_in IN BLOB)\n" +
"AS \n" +
"BEGIN \n" +
" insert into nodb_tab_blob_in (id, blob_1) values (blob_id, EMPTY_BLOB()); \n" +
"END nodb_blobs_in_7711; ";
const sqlRun_7711 = "BEGIN nodb_blobs_in_7711 (:i, :b); END;";
const proc_drop_7711 = "DROP PROCEDURE nodb_blobs_in_7711";
before(async function() {
await executeSQL(proc);
}); // before
after(async function() {
await executeSQL(proc_drop);
}); // after
it('77.1.1 works with EMPTY_BLOB', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await executeSQL(proc_7711);
await connection.execute(sqlRun_7711, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
const emptyBuffer = Buffer.from("", "utf-8");
await verifyBlobValueWithBuffer(sql, emptyBuffer, null);
await executeSQL(proc_drop_7711);
}); // 77.1.1
it('77.1.2 works with EMPTY_BLOB and bind in maxSize set to 1', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 1 }
};
const option = { autoCommit: true };
await executeSQL(proc_7711);
await connection.execute(sqlRun_7711, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
const emptyBuffer = Buffer.from("", "utf-8");
await verifyBlobValueWithBuffer(sql, emptyBuffer, null);
await executeSQL(proc_drop_7711);
}); // 77.1.2
it('77.1.3 works with EMPTY_BLOB and bind in maxSize set to (64K - 1)', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 65535 }
};
const option = { autoCommit: true };
await executeSQL(proc_7711);
await connection.execute(sqlRun_7711, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
const emptyBuffer = Buffer.from("", "utf-8");
await verifyBlobValueWithBuffer(sql, emptyBuffer, null);
await executeSQL(proc_drop_7711);
}); // 77.1.3
it('77.1.4 works with null', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: null, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.4
it('77.1.5 works with null and bind in maxSize set to 1', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: null, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 1 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.5
it('77.1.6 works with null and bind in maxSize set to (64K - 1)', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: null, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 65535 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.6
it('77.1.7 works with empty buffer', async function() {
const sequence = insertID++;
const bufferStr = Buffer.from('', "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.7
it('77.1.8 works with empty buffer and bind in maxSize set to 1', async function() {
const sequence = insertID++;
const bufferStr = Buffer.from('', "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 1 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.8
it('77.1.9 works with empty buffer and bind in maxSize set to (64K - 1)', async function() {
const sequence = insertID++;
const bufferStr = Buffer.from('', "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 65535 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.9
it('77.1.10 works with undefined', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: undefined, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.10
it('77.1.11 works with undefined and bind in maxSize set to 1', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: undefined, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 1 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.11
it('77.1.12 works with undefined and bind in maxSize set to (64K - 1)', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: undefined, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 65535 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.1.12
it('77.1.13 works with NaN', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: NaN, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const options = { autoCommit: true };
await assert.rejects(
async () => await connection.execute(sqlRun, bindVar, options),
/NJS-011:/
);
}); // 77.1.13
it('77.1.14 works with 0', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: 0, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const options = { autoCommit: true };
await assert.rejects(
async () => await connection.execute(sqlRun, bindVar, options),
/NJS-011:/
);
}); // 77.1.14
it('77.1.15 works with Buffer size 32K', async function() {
// Driver already supports CLOB AS STRING and BLOB AS BUFFER for PLSQL BIND if the data size less than or equal to 32767.
// As part of this enhancement, driver allows even if data size more than 32767 for both column types
const sequence = insertID++;
const size = 32768;
const specialStr = "77.1.15";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.1.15
it('77.1.16 works with Buffer size (64K - 1)', async function() {
const size = 65535;
const sequence = insertID++;
const specialStr = "77.1.16";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.1.16
it('77.1.17 works with Buffer size (64K + 1)', async function() {
const size = 65537;
const sequence = insertID++;
const specialStr = "77.1.17";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.1.17
it('77.1.18 works with Buffer size (1MB + 1)', async function() {
const size = 1048577; // 1 * 1024 * 1024 + 1
const sequence = insertID++;
const specialStr = "77.1.18";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.1.18
it('77.1.19 works with bind value and type mismatch', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: 200, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 50000 }
};
const options = { autoCommit: true };
await assert.rejects(
async () => await connection.execute(sqlRun, bindVar, options),
/NJS-011:/
);
}); // 77.1.19
it('77.1.20 mixing named with positional binding', async function() {
const size = 50000;
const sequence = insertID++;
const specialStr = "77.1.20";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = [ sequence, { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size } ];
const option = { autoCommit: true };
const sqlRun_77122 = "BEGIN nodb_blobs_in_771 (:1, :2); END;";
await connection.execute(sqlRun_77122, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.1.20
it('77.1.21 works with invalid BLOB', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: {}, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 50000 }
};
const options = { autoCommit: true };
await assert.rejects(
async () => await connection.execute(sqlRun, bindVar, options),
/NJS-011:/
);
}); // 77.1.21
it('77.1.22 works without maxSize', async function() {
const size = 65535;
const sequence = insertID++;
const specialStr = "77.1.22";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.1.22
it('77.1.23 works with bind in maxSize smaller than buffer size', async function() {
const size = 65535;
const sequence = insertID++;
const specialStr = "77.1.23";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size - 1 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.1.23
it('77.1.24 works with UPDATE', async function() {
const proc_7726 = "CREATE OR REPLACE PROCEDURE nodb_blobs_in_7726 (blob_id IN NUMBER, blob_in IN BLOB, blob_update IN BLOB)\n" +
"AS \n" +
"BEGIN \n" +
" insert into nodb_tab_blob_in (id, blob_1) values (blob_id, blob_in); \n" +
" update nodb_tab_blob_in set blob_1 = blob_update where id = blob_id; \n" +
"END nodb_blobs_in_7726; ";
const sqlRun_7726 = "BEGIN nodb_blobs_in_7726 (:i, :b1, :b2); END;";
const proc_drop_7726 = "DROP PROCEDURE nodb_blobs_in_7726";
const sequence = insertID++;
const size_1 = 65535;
const specialStr_1 = "77.1.24_1";
const bigStr_1 = random.getRandomString(size_1, specialStr_1);
const bufferStr_1 = Buffer.from(bigStr_1, "utf-8");
const size_2 = 30000;
const specialStr_2 = "77.1.24_2";
const bigStr_2 = random.getRandomString(size_2, specialStr_2);
const bufferStr_2 = Buffer.from(bigStr_2, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b1: { val: bufferStr_1, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size_1 },
b2: { val: bufferStr_2, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size_2 }
};
const option = { autoCommit: true };
await executeSQL(proc_7726);
await connection.execute(
sqlRun_7726,
bindVar,
option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr_2, specialStr_2);
await executeSQL(proc_drop_7726);
}); // 77.1.24
}); // 77.1
describe('77.2 BLOB, PLSQL, BIND_IN to RAW', function() {
const proc = "CREATE OR REPLACE PROCEDURE nodb_blobs_in_771 (blob_id IN NUMBER, blob_in IN RAW)\n" +
"AS \n" +
"BEGIN \n" +
" insert into nodb_tab_blob_in (id, blob_1) values (blob_id, blob_in); \n" +
"END nodb_blobs_in_771; ";
const sqlRun = "BEGIN nodb_blobs_in_771 (:i, :b); END;";
const proc_drop = "DROP PROCEDURE nodb_blobs_in_771";
const proc_7721 = "CREATE OR REPLACE PROCEDURE nodb_blobs_in_7721 (blob_id IN NUMBER, blob_in IN RAW)\n" +
"AS \n" +
"BEGIN \n" +
" insert into nodb_tab_blob_in (id, blob_1) values (blob_id, EMPTY_BLOB()); \n" +
"END nodb_blobs_in_7721; ";
const sqlRun_7721 = "BEGIN nodb_blobs_in_7721 (:i, :b); END;";
const proc_drop_7721 = "DROP PROCEDURE nodb_blobs_in_7721";
before(async function() {
await executeSQL(proc);
}); // before
after(async function() {
await executeSQL(proc_drop);
}); // after
it('77.2.1 works with EMPTY_BLOB', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await executeSQL(proc_7721);
await connection.execute(sqlRun_7721, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
const emptyBuffer = Buffer.from("", "utf-8");
await verifyBlobValueWithBuffer(sql, emptyBuffer, null);
await executeSQL(proc_drop_7721);
}); // 77.2.1
it('77.2.2 works with EMPTY_BLOB and bind in maxSize set to 1', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 1 }
};
const option = { autoCommit: true };
await executeSQL(proc_7721);
await connection.execute(sqlRun_7721, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
const emptyBuffer = Buffer.from("", "utf-8");
await verifyBlobValueWithBuffer(sql, emptyBuffer, null);
await executeSQL(proc_drop_7721);
}); // 77.2.2
it('77.2.3 works with EMPTY_BLOB and bind in maxSize set to (64K - 1)', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 65535 }
};
const option = { autoCommit: true };
await executeSQL(proc_7721);
await connection.execute(sqlRun_7721, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
const emptyBuffer = Buffer.from("", "utf-8");
await verifyBlobValueWithBuffer(sql, emptyBuffer, null);
await executeSQL(proc_drop_7721);
}); // 77.2.3
it('77.2.4 works with null', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: null, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.4
it('77.2.5 works with null and bind in maxSize set to 1', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: null, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 1 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.5
it('77.2.6 works with null and bind in maxSize set to (64K - 1)', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: null, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 65535 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.6
it('77.2.7 works with empty buffer', async function() {
const sequence = insertID++;
const bufferStr = Buffer.from('', "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.7
it('77.2.8 works with empty buffer and bind in maxSize set to 1', async function() {
const sequence = insertID++;
const bufferStr = Buffer.from('', "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 1 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.8
it('77.2.9 works with empty buffer and bind in maxSize set to (64K - 1)', async function() {
const sequence = insertID++;
const bufferStr = Buffer.from('', "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 65535 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.9
it('77.2.10 works with undefined', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: undefined, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.10
it('77.2.11 works with undefined and bind in maxSize set to 1', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: undefined, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 1 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.11
it('77.2.12 works with undefined and bind in maxSize set to (64K - 1)', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: undefined, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 65535 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, null, null);
}); // 77.2.12
it('77.2.13 works with NaN', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: NaN, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const options = { autoCommit: true };
await assert.rejects(
async () => await connection.execute(sqlRun, bindVar, options),
/NJS-011:/
);
}); // 77.2.13
it('77.2.14 works with 0', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: 0, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const options = { autoCommit: true };
await assert.rejects(
async () => await connection.execute(sqlRun, bindVar, options),
/NJS-011:/
);
}); // 77.2.14
it('77.2.15 works with Buffer size (32K - 1)', async function() {
const sequence = insertID++;
const size = 32767;
const specialStr = "77.2.15";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.2.15
it('77.2.16 works with Buffer size 32K', async function() {
const size = 32768;
const sequence = insertID++;
const specialStr = "77.2.16";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size }
};
await assert.rejects(
async () => await connection.execute(sqlRun, bindVar),
/ORA-06502:/
);
}); // 77.2.16
it('77.2.17 works with invalid BLOB', async function() {
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: {}, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: 50000 }
};
const options = { autoCommit: true };
await assert.rejects(
async () => await connection.execute(sqlRun, bindVar, options),
/NJS-011:/
);
}); // 77.2.17
it('77.2.18 works without maxSize', async function() {
const size = 3000;
const sequence = insertID++;
const specialStr = "77.2.18";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.2.18
it('77.2.19 works with bind in maxSize smaller than buffer size', async function() {
const size = 400;
const sequence = insertID++;
const specialStr = "77.2.19";
const bigStr = random.getRandomString(size, specialStr);
const bufferStr = Buffer.from(bigStr, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b: { val: bufferStr, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size - 1 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr, specialStr);
}); // 77.2.19
it('77.2.20 works with UPDATE', async function() {
const proc_7720 = "CREATE OR REPLACE PROCEDURE nodb_blobs_in_7720 (blob_id IN NUMBER, blob_in IN RAW, blob_update IN RAW)\n" +
"AS \n" +
"BEGIN \n" +
" insert into nodb_tab_blob_in (id, blob_1) values (blob_id, blob_in); \n" +
" update nodb_tab_blob_in set blob_1 = blob_update where id = blob_id; \n" +
"END nodb_blobs_in_7720; ";
const sqlRun_7720 = "BEGIN nodb_blobs_in_7720 (:i, :b1, :b2); END;";
const proc_drop_7720 = "DROP PROCEDURE nodb_blobs_in_7720";
const sequence = insertID++;
const size_1 = 3000;
const specialStr_1 = "77.2.20_1";
const bigStr_1 = random.getRandomString(size_1, specialStr_1);
const bufferStr_1 = Buffer.from(bigStr_1, "utf-8");
const size_2 = 2000;
const specialStr_2 = "77.2.20_2";
const bigStr_2 = random.getRandomString(size_2, specialStr_2);
const bufferStr_2 = Buffer.from(bigStr_2, "utf-8");
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b1: { val: bufferStr_1, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size_1 },
b2: { val: bufferStr_2, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size_2 }
};
const option = { autoCommit: true };
await executeSQL(proc_7720);
await connection.execute(
sqlRun_7720,
bindVar,
option);
const sql = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql, bufferStr_2, specialStr_2);
await executeSQL(proc_drop_7720);
}); // 77.2.20
}); // 77.2
describe('77.3 Multiple BLOBs, BIND_IN', function() {
const proc = "CREATE OR REPLACE PROCEDURE nodb_blobs_in_774 (blob_id IN NUMBER, blob_1 IN BLOB, blob_2 IN BLOB)\n" +
"AS \n" +
"BEGIN \n" +
" insert into nodb_tab_blob_in (id, blob_1, blob_2) values (blob_id, blob_1, blob_2); \n" +
"END nodb_blobs_in_774; ";
const sqlRun = "BEGIN nodb_blobs_in_774 (:i, :b1, :b2); END;";
const proc_drop = "DROP PROCEDURE nodb_blobs_in_774";
before(async function() {
await executeSQL(proc);
}); // before
after(async function() {
await executeSQL(proc_drop);
}); // after
it('77.3.1 bind two Buffer', async function() {
const size_1 = 32768;
const size_2 = 50000;
const specialStr_1 = "77.3.1_1";
const specialStr_2 = "77.3.1_2";
const bigStr_1 = random.getRandomString(size_1, specialStr_1);
const bigStr_2 = random.getRandomString(size_2, specialStr_2);
const bufferStr_1 = Buffer.from(bigStr_1, "utf-8");
const bufferStr_2 = Buffer.from(bigStr_2, "utf-8");
const sequence = insertID++;
const bindVar = {
i: { val: sequence, type: oracledb.NUMBER, dir: oracledb.BIND_IN },
b1: { val: bufferStr_1, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size_1 },
b2: { val: bufferStr_2, type: oracledb.BUFFER, dir: oracledb.BIND_IN, maxSize: size_2 }
};
const option = { autoCommit: true };
await connection.execute(sqlRun, bindVar, option);
const sql_1 = "select blob_1 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql_1, bufferStr_1, specialStr_1);
const sql_2 = "select blob_2 from nodb_tab_blob_in where id = " + sequence;
await verifyBlobValueWithBuffer(sql_2, bufferStr_2, specialStr_2);
}); // 77.3.1
it('77.3.2 bind a JPG file and a Buffer', async function() {
const specialStr = "77.3.2";
const preparedCLOBID = 301;
const sequence = insertID++;
const size_1 = 32768;
const bigStr_1 = random.getRandomString(size_1, specialStr);
const bufferStr_1 = Buffer.from(bigStr_1, "utf-8");
let result = null;