Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/java/nio/Buffer/BasicChar.java
38813 views
1
/*
2
* Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/* Type-specific source code for unit test
25
*
26
* Regenerate the BasicX classes via genBasic.sh whenever this file changes.
27
* We check in the generated source files so that the test tree can be used
28
* independently of the rest of the source tree.
29
*/
30
31
// -- This file was mechanically generated: Do not edit! -- //
32
33
import java.nio.*;
34
import java.lang.reflect.Method;
35
36
37
public class BasicChar
38
extends Basic
39
{
40
41
private static final char[] VALUES = {
42
Character.MIN_VALUE,
43
(char) -1,
44
(char) 0,
45
(char) 1,
46
Character.MAX_VALUE,
47
48
49
50
51
52
53
54
55
56
57
58
59
};
60
61
private static void relGet(CharBuffer b) {
62
int n = b.capacity();
63
char v;
64
for (int i = 0; i < n; i++)
65
ck(b, (long)b.get(), (long)((char)ic(i)));
66
b.rewind();
67
}
68
69
private static void relGet(CharBuffer b, int start) {
70
int n = b.remaining();
71
char v;
72
for (int i = start; i < n; i++)
73
ck(b, (long)b.get(), (long)((char)ic(i)));
74
b.rewind();
75
}
76
77
private static void absGet(CharBuffer b) {
78
int n = b.capacity();
79
char v;
80
for (int i = 0; i < n; i++)
81
ck(b, (long)b.get(), (long)((char)ic(i)));
82
b.rewind();
83
}
84
85
private static void bulkGet(CharBuffer b) {
86
int n = b.capacity();
87
char[] a = new char[n + 7];
88
b.get(a, 7, n);
89
for (int i = 0; i < n; i++)
90
ck(b, (long)a[i + 7], (long)((char)ic(i)));
91
}
92
93
private static void relPut(CharBuffer b) {
94
int n = b.capacity();
95
b.clear();
96
for (int i = 0; i < n; i++)
97
b.put((char)ic(i));
98
b.flip();
99
}
100
101
private static void absPut(CharBuffer b) {
102
int n = b.capacity();
103
b.clear();
104
for (int i = 0; i < n; i++)
105
b.put(i, (char)ic(i));
106
b.limit(n);
107
b.position(0);
108
}
109
110
private static void bulkPutArray(CharBuffer b) {
111
int n = b.capacity();
112
b.clear();
113
char[] a = new char[n + 7];
114
for (int i = 0; i < n; i++)
115
a[i + 7] = (char)ic(i);
116
b.put(a, 7, n);
117
b.flip();
118
}
119
120
private static void bulkPutBuffer(CharBuffer b) {
121
int n = b.capacity();
122
b.clear();
123
CharBuffer c = CharBuffer.allocate(n + 7);
124
c.position(7);
125
for (int i = 0; i < n; i++)
126
c.put((char)ic(i));
127
c.flip();
128
c.position(7);
129
b.put(c);
130
b.flip();
131
}
132
133
//6231529
134
private static void callReset(CharBuffer b) {
135
b.position(0);
136
b.mark();
137
138
b.duplicate().reset();
139
b.asReadOnlyBuffer().reset();
140
}
141
142
143
144
// 6221101-6234263
145
146
private static void putBuffer() {
147
final int cap = 10;
148
149
CharBuffer direct1 = ByteBuffer.allocateDirect(cap).asCharBuffer();
150
CharBuffer nondirect1 = ByteBuffer.allocate(cap).asCharBuffer();
151
direct1.put(nondirect1);
152
153
CharBuffer direct2 = ByteBuffer.allocateDirect(cap).asCharBuffer();
154
CharBuffer nondirect2 = ByteBuffer.allocate(cap).asCharBuffer();
155
nondirect2.put(direct2);
156
157
CharBuffer direct3 = ByteBuffer.allocateDirect(cap).asCharBuffer();
158
CharBuffer direct4 = ByteBuffer.allocateDirect(cap).asCharBuffer();
159
direct3.put(direct4);
160
161
CharBuffer nondirect3 = ByteBuffer.allocate(cap).asCharBuffer();
162
CharBuffer nondirect4 = ByteBuffer.allocate(cap).asCharBuffer();
163
nondirect3.put(nondirect4);
164
}
165
166
167
168
169
private static void bulkPutString(CharBuffer b) {
170
int n = b.capacity();
171
b.clear();
172
StringBuffer sb = new StringBuffer(n + 7);
173
sb.append("1234567");
174
for (int i = 0; i < n; i++)
175
sb.append((char)ic(i));
176
b.put(sb.toString(), 7, 7 + n);
177
b.flip();
178
}
179
180
181
182
private static void checkSlice(CharBuffer b, CharBuffer slice) {
183
ck(slice, 0, slice.position());
184
ck(slice, b.remaining(), slice.limit());
185
ck(slice, b.remaining(), slice.capacity());
186
if (b.isDirect() != slice.isDirect())
187
fail("Lost direction", slice);
188
if (b.isReadOnly() != slice.isReadOnly())
189
fail("Lost read-only", slice);
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
private static void fail(String problem,
333
CharBuffer xb, CharBuffer yb,
334
char x, char y) {
335
fail(problem + String.format(": x=%s y=%s", x, y), xb, yb);
336
}
337
338
private static void tryCatch(Buffer b, Class<?> ex, Runnable thunk) {
339
boolean caught = false;
340
try {
341
thunk.run();
342
} catch (Throwable x) {
343
if (ex.isAssignableFrom(x.getClass())) {
344
caught = true;
345
} else {
346
fail(x.getMessage() + " not expected");
347
}
348
}
349
if (!caught)
350
fail(ex.getName() + " not thrown", b);
351
}
352
353
private static void tryCatch(char [] t, Class<?> ex, Runnable thunk) {
354
tryCatch(CharBuffer.wrap(t), ex, thunk);
355
}
356
357
public static void test(int level, final CharBuffer b, boolean direct) {
358
359
show(level, b);
360
361
if (direct != b.isDirect())
362
fail("Wrong direction", b);
363
364
// Gets and puts
365
366
relPut(b);
367
relGet(b);
368
absGet(b);
369
bulkGet(b);
370
371
absPut(b);
372
relGet(b);
373
absGet(b);
374
bulkGet(b);
375
376
bulkPutArray(b);
377
relGet(b);
378
379
bulkPutBuffer(b);
380
relGet(b);
381
382
383
384
bulkPutString(b);
385
relGet(b);
386
b.position(1);
387
b.limit(7);
388
ck(b, b.toString().equals("bcdefg"));
389
390
// CharSequence ops
391
392
b.position(2);
393
ck(b, b.charAt(1), 'd');
394
CharBuffer c = b.subSequence(1, 4);
395
ck(c, c.capacity(), b.capacity());
396
ck(c, c.position(), b.position()+1);
397
ck(c, c.limit(), b.position()+4);
398
ck(c, b.subSequence(1, 4).toString().equals("def"));
399
400
// 4938424
401
b.position(4);
402
ck(b, b.charAt(1), 'f');
403
ck(b, b.subSequence(1, 3).toString().equals("fg"));
404
405
// String ops
406
407
// 7190219
408
b.clear();
409
int pos = b.position();
410
tryCatch(b, BufferOverflowException.class, new Runnable() {
411
public void run() {
412
b.put(String.valueOf(new char[b.capacity() + 1]), 0,
413
b.capacity() + 1);
414
}});
415
ck(b, b.position(), pos);
416
relGet(b);
417
418
419
420
// Compact
421
422
relPut(b);
423
b.position(13);
424
b.compact();
425
b.flip();
426
relGet(b, 13);
427
428
// Exceptions
429
430
relPut(b);
431
b.limit(b.capacity() / 2);
432
b.position(b.limit());
433
434
tryCatch(b, BufferUnderflowException.class, new Runnable() {
435
public void run() {
436
b.get();
437
}});
438
439
tryCatch(b, BufferOverflowException.class, new Runnable() {
440
public void run() {
441
b.put((char)42);
442
}});
443
444
// The index must be non-negative and lesss than the buffer's limit.
445
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
446
public void run() {
447
b.get(b.limit());
448
}});
449
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
450
public void run() {
451
b.get(-1);
452
}});
453
454
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
455
public void run() {
456
b.put(b.limit(), (char)42);
457
}});
458
459
tryCatch(b, InvalidMarkException.class, new Runnable() {
460
public void run() {
461
b.position(0);
462
b.mark();
463
b.compact();
464
b.reset();
465
}});
466
467
// Values
468
469
b.clear();
470
b.put((char)0);
471
b.put((char)-1);
472
b.put((char)1);
473
b.put(Character.MAX_VALUE);
474
b.put(Character.MIN_VALUE);
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
char v;
493
b.flip();
494
ck(b, b.get(), 0);
495
ck(b, b.get(), (char)-1);
496
ck(b, b.get(), 1);
497
ck(b, b.get(), Character.MAX_VALUE);
498
ck(b, b.get(), Character.MIN_VALUE);
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
// Comparison
522
b.rewind();
523
CharBuffer b2 = CharBuffer.allocate(b.capacity());
524
b2.put(b);
525
b2.flip();
526
b.position(2);
527
b2.position(2);
528
if (!b.equals(b2)) {
529
for (int i = 2; i < b.limit(); i++) {
530
char x = b.get(i);
531
char y = b2.get(i);
532
if (x != y
533
534
535
536
537
538
539
)
540
out.println("[" + i + "] " + x + " != " + y);
541
}
542
fail("Identical buffers not equal", b, b2);
543
}
544
if (b.compareTo(b2) != 0)
545
fail("Comparison to identical buffer != 0", b, b2);
546
547
b.limit(b.limit() + 1);
548
b.position(b.limit() - 1);
549
b.put((char)99);
550
b.rewind();
551
b2.rewind();
552
if (b.equals(b2))
553
fail("Non-identical buffers equal", b, b2);
554
if (b.compareTo(b2) <= 0)
555
fail("Comparison to shorter buffer <= 0", b, b2);
556
b.limit(b.limit() - 1);
557
558
b.put(2, (char)42);
559
if (b.equals(b2))
560
fail("Non-identical buffers equal", b, b2);
561
if (b.compareTo(b2) <= 0)
562
fail("Comparison to lesser buffer <= 0", b, b2);
563
564
// Check equals and compareTo with interesting values
565
for (char x : VALUES) {
566
CharBuffer xb = CharBuffer.wrap(new char[] { x });
567
if (xb.compareTo(xb) != 0) {
568
fail("compareTo not reflexive", xb, xb, x, x);
569
}
570
if (! xb.equals(xb)) {
571
fail("equals not reflexive", xb, xb, x, x);
572
}
573
for (char y : VALUES) {
574
CharBuffer yb = CharBuffer.wrap(new char[] { y });
575
if (xb.compareTo(yb) != - yb.compareTo(xb)) {
576
fail("compareTo not anti-symmetric",
577
xb, yb, x, y);
578
}
579
if ((xb.compareTo(yb) == 0) != xb.equals(yb)) {
580
fail("compareTo inconsistent with equals",
581
xb, yb, x, y);
582
}
583
if (xb.compareTo(yb) != Character.compare(x, y)) {
584
585
586
587
588
589
590
fail("Incorrect results for CharBuffer.compareTo",
591
xb, yb, x, y);
592
}
593
if (xb.equals(yb) != ((x == y) || ((x != x) && (y != y)))) {
594
fail("Incorrect results for CharBuffer.equals",
595
xb, yb, x, y);
596
}
597
}
598
}
599
600
// Sub, dup
601
602
relPut(b);
603
relGet(b.duplicate());
604
b.position(13);
605
relGet(b.duplicate(), 13);
606
relGet(b.duplicate().slice(), 13);
607
relGet(b.slice(), 13);
608
relGet(b.slice().duplicate(), 13);
609
610
// Slice
611
612
b.position(5);
613
CharBuffer sb = b.slice();
614
checkSlice(b, sb);
615
b.position(0);
616
CharBuffer sb2 = sb.slice();
617
checkSlice(sb, sb2);
618
619
if (!sb.equals(sb2))
620
fail("Sliced slices do not match", sb, sb2);
621
if ((sb.hasArray()) && (sb.arrayOffset() != sb2.arrayOffset()))
622
fail("Array offsets do not match: "
623
+ sb.arrayOffset() + " != " + sb2.arrayOffset(), sb, sb2);
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
// Read-only views
657
658
b.rewind();
659
final CharBuffer rb = b.asReadOnlyBuffer();
660
if (!b.equals(rb))
661
fail("Buffer not equal to read-only view", b, rb);
662
show(level + 1, rb);
663
664
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
665
public void run() {
666
relPut(rb);
667
}});
668
669
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
670
public void run() {
671
absPut(rb);
672
}});
673
674
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
675
public void run() {
676
bulkPutArray(rb);
677
}});
678
679
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
680
public void run() {
681
bulkPutBuffer(rb);
682
}});
683
684
// put(CharBuffer) should not change source position
685
final CharBuffer src = CharBuffer.allocate(1);
686
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
687
public void run() {
688
rb.put(src);
689
}});
690
ck(src, src.position(), 0);
691
692
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
693
public void run() {
694
rb.compact();
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
// 7199551
758
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
759
public void run() {
760
String s = new String(new char[rb.remaining() + 1]);
761
rb.put(s);
762
}});
763
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
764
public void run() {
765
String s = new String(new char[rb.remaining() + 1]);
766
rb.append(s);
767
}});
768
769
770
771
if (rb.getClass().getName().startsWith("java.nio.Heap")) {
772
773
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
774
public void run() {
775
rb.array();
776
}});
777
778
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
779
public void run() {
780
rb.arrayOffset();
781
}});
782
783
if (rb.hasArray())
784
fail("Read-only heap buffer's backing array is accessible",
785
rb);
786
787
}
788
789
// Bulk puts from read-only buffers
790
791
b.clear();
792
rb.rewind();
793
b.put(rb);
794
795
796
797
798
799
800
801
802
803
804
805
relPut(b); // Required by testViews
806
807
}
808
809
810
811
private static void testStr() {
812
final String s = "abcdefghijklm";
813
int start = 3;
814
int end = 9;
815
final CharBuffer b = CharBuffer.wrap(s, start, end);
816
show(0, b);
817
ck(b, b.toString().equals(s.substring(start, end)));
818
ck(b, b.toString().equals("defghi"));
819
ck(b, b.isReadOnly());
820
tryCatch(b, ReadOnlyBufferException.class, new Runnable() {
821
public void run() {
822
b.put('x');
823
}});
824
ck(b, start, b.position());
825
ck(b, end, b.limit());
826
ck(b, s.length(), b.capacity());
827
b.position(6);
828
ck(b, b.subSequence(0,3).toString().equals("ghi"));
829
830
// The index, relative to the position, must be non-negative and
831
// smaller than remaining().
832
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
833
public void run() {
834
b.charAt(-1);
835
}});
836
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
837
public void run() {
838
b.charAt(b.remaining());
839
}});
840
841
// The index must be non-negative and less than the buffer's limit.
842
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
843
public void run() {
844
b.get(b.limit());
845
}});
846
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
847
public void run() {
848
b.get(-1);
849
}});
850
851
// The start must be non-negative and no larger than remaining().
852
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
853
public void run() {
854
b.subSequence(-1, b.remaining());
855
}});
856
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
857
public void run() {
858
b.subSequence(b.remaining() + 1, b.remaining());
859
}});
860
861
// The end must be no smaller than start and no larger than
862
// remaining().
863
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
864
public void run() {
865
b.subSequence(2, 1);
866
}});
867
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
868
public void run() {
869
b.subSequence(0, b.remaining() + 1);
870
}});
871
872
// The offset must be non-negative and no larger than <array.length>.
873
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
874
public void run() {
875
CharBuffer.wrap(s, -1, s.length());
876
}});
877
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
878
public void run() {
879
CharBuffer.wrap(s, s.length() + 1, s.length());
880
}});
881
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
882
public void run() {
883
CharBuffer.wrap(s, 1, 0);
884
}});
885
tryCatch(b, IndexOutOfBoundsException.class, new Runnable() {
886
public void run() {
887
CharBuffer.wrap(s, 0, s.length() + 1);
888
}});
889
}
890
891
892
893
public static void test(final char [] ba) {
894
int offset = 47;
895
int length = 900;
896
final CharBuffer b = CharBuffer.wrap(ba, offset, length);
897
show(0, b);
898
ck(b, b.capacity(), ba.length);
899
ck(b, b.position(), offset);
900
ck(b, b.limit(), offset + length);
901
902
// The offset must be non-negative and no larger than <array.length>.
903
tryCatch(ba, IndexOutOfBoundsException.class, new Runnable() {
904
public void run() {
905
CharBuffer.wrap(ba, -1, ba.length);
906
}});
907
tryCatch(ba, IndexOutOfBoundsException.class, new Runnable() {
908
public void run() {
909
CharBuffer.wrap(ba, ba.length + 1, ba.length);
910
}});
911
tryCatch(ba, IndexOutOfBoundsException.class, new Runnable() {
912
public void run() {
913
CharBuffer.wrap(ba, 0, -1);
914
}});
915
tryCatch(ba, IndexOutOfBoundsException.class, new Runnable() {
916
public void run() {
917
CharBuffer.wrap(ba, 0, ba.length + 1);
918
}});
919
920
// A NullPointerException will be thrown if the array is null.
921
tryCatch(ba, NullPointerException.class, new Runnable() {
922
public void run() {
923
CharBuffer.wrap((char []) null, 0, 5);
924
}});
925
tryCatch(ba, NullPointerException.class, new Runnable() {
926
public void run() {
927
CharBuffer.wrap((char []) null);
928
}});
929
}
930
931
private static void testAllocate() {
932
// An IllegalArgumentException will be thrown for negative capacities.
933
tryCatch((Buffer) null, IllegalArgumentException.class, new Runnable() {
934
public void run() {
935
CharBuffer.allocate(-1);
936
}});
937
938
939
940
941
942
943
}
944
945
public static void test() {
946
testAllocate();
947
test(0, CharBuffer.allocate(7 * 1024), false);
948
test(0, CharBuffer.wrap(new char[7 * 1024], 0, 7 * 1024), false);
949
test(new char[1024]);
950
951
952
953
954
955
956
957
testStr();
958
959
960
callReset(CharBuffer.allocate(10));
961
962
963
964
putBuffer();
965
966
}
967
968
}
969
970