|
| 1 | +/* |
| 2 | + * Copyright (c) 2024, 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 | +import jdk.test.lib.RandomFactory; |
| 25 | +import org.junit.jupiter.params.ParameterizedTest; |
| 26 | +import org.junit.jupiter.params.provider.MethodSource; |
| 27 | +import org.junit.jupiter.params.provider.Arguments; |
| 28 | + |
| 29 | +import java.math.BigInteger; |
| 30 | +import java.math.MutableBigIntegerBox; |
| 31 | +import java.util.Arrays; |
| 32 | +import java.util.Random; |
| 33 | + |
| 34 | +import static org.junit.jupiter.api.Assertions.assertEquals; |
| 35 | +import static java.math.MutableBigIntegerBox.*; |
| 36 | + |
| 37 | +/** |
| 38 | + * @test |
| 39 | + * @bug 8336274 |
| 40 | + * @summary Tests for correctness of MutableBigInteger.leftShift(int) |
| 41 | + * @library /test/lib |
| 42 | + * @build jdk.test.lib.RandomFactory |
| 43 | + * @build java.base/java.math.MutableBigIntegerBox |
| 44 | + * @key randomness |
| 45 | + * @run junit MutableBigIntegerShiftTests |
| 46 | + */ |
| 47 | +public class MutableBigIntegerShiftTests { |
| 48 | + |
| 49 | + private static final int ORDER_SMALL = 60; |
| 50 | + private static final int ORDER_MEDIUM = 100; |
| 51 | + |
| 52 | + private static final Random random = RandomFactory.getRandom(); |
| 53 | + |
| 54 | + private static int[] orders() { |
| 55 | + return new int[] { ORDER_SMALL, ORDER_MEDIUM }; |
| 56 | + } |
| 57 | + |
| 58 | + @ParameterizedTest |
| 59 | + @MethodSource("orders") |
| 60 | + public void shift(int order) { |
| 61 | + for (int i = 0; i < 100; i++) { |
| 62 | + test(fetchNumber(order), random.nextInt(200)); |
| 63 | + } |
| 64 | + } |
| 65 | + |
| 66 | + @ParameterizedTest |
| 67 | + @MethodSource("pathTargetedCases") |
| 68 | + public void test(MutableBigIntegerBox x, int n) { |
| 69 | + leftShiftAssertions(x, n); |
| 70 | + } |
| 71 | + |
| 72 | + private static Arguments[] pathTargetedCases() { |
| 73 | + return new Arguments[] { |
| 74 | + // intLen == 0 |
| 75 | + Arguments.of(MutableBigIntegerBox.ZERO, |
| 76 | + random.nextInt(33)), |
| 77 | + // intLen != 0 && n <= leadingZeros |
| 78 | + Arguments.of(new MutableBigIntegerBox(new int[] { (int) random.nextLong(1L, 1L << 16) }), |
| 79 | + random.nextInt(1, 17)), |
| 80 | + // intLen != 0 && n > leadingZeros && nBits <= leadingZeros && value.length < newLen && nBits == 0 |
| 81 | + Arguments.of(new MutableBigIntegerBox(new int[] { (int) random.nextLong(1L, 1L << 32) }), |
| 82 | + 32), |
| 83 | + // intLen != 0 && n > leadingZeros && nBits <= leadingZeros && value.length < newLen && nBits != 0 |
| 84 | + Arguments.of(new MutableBigIntegerBox(new int[] { (int) random.nextLong(1L, 1L << 16) }), |
| 85 | + 32 + random.nextInt(1, 17)), |
| 86 | + // intLen != 0 && n > leadingZeros && nBits <= leadingZeros && value.length >= newLen && nBits == 0 |
| 87 | + // && newOffset != offset |
| 88 | + Arguments.of(new MutableBigIntegerBox(new int[] { random.nextInt(), (int) random.nextLong(1L, 1L << 32) }, 1, 1), |
| 89 | + 32), |
| 90 | + // intLen != 0 && n > leadingZeros && nBits <= leadingZeros && value.length >= newLen && nBits == 0 |
| 91 | + // && newOffset == offset |
| 92 | + Arguments.of(new MutableBigIntegerBox(new int[] { (int) random.nextLong(1L, 1L << 32), random.nextInt() }, 0, 1), |
| 93 | + 32), |
| 94 | + // intLen != 0 && n > leadingZeros && nBits <= leadingZeros && value.length >= newLen && nBits != 0 |
| 95 | + // && newOffset != offset |
| 96 | + Arguments.of(new MutableBigIntegerBox(new int[] { random.nextInt(), (int) random.nextLong(1L, 1L << 16) }, 1, 1), |
| 97 | + 32 + random.nextInt(1, 17)), |
| 98 | + // intLen != 0 && n > leadingZeros && nBits <= leadingZeros && value.length >= newLen && nBits != 0 |
| 99 | + // && newOffset == offset |
| 100 | + Arguments.of(new MutableBigIntegerBox(new int[] { (int) random.nextLong(1L, 1L << 16), random.nextInt() }, 0, 1), |
| 101 | + 32 + random.nextInt(1, 17)), |
| 102 | + // intLen != 0 && n > leadingZeros && nBits > leadingZeros && value.length < newLen |
| 103 | + Arguments.of(new MutableBigIntegerBox(new int[] { (int) random.nextLong(1L << 15, 1L << 32) }), |
| 104 | + random.nextInt(17, 32)), |
| 105 | + // intLen != 0 && n > leadingZeros && nBits > leadingZeros && value.length >= newLen && newOffset != offset |
| 106 | + Arguments.of(new MutableBigIntegerBox(new int[] { random.nextInt(), (int) random.nextLong(1L << 15, 1L << 32) }, 1, 1), |
| 107 | + random.nextInt(17, 32)), |
| 108 | + // intLen != 0 && n > leadingZeros && nBits > leadingZeros && value.length >= newLen && newOffset == offset |
| 109 | + Arguments.of(new MutableBigIntegerBox(new int[] { (int) random.nextLong(1L << 15, 1L << 32), random.nextInt() }, 0, 1), |
| 110 | + random.nextInt(17, 32)), |
| 111 | + }; |
| 112 | + } |
| 113 | + |
| 114 | + private static void leftShiftAssertions(MutableBigIntegerBox x, int n) { |
| 115 | + MutableBigIntegerBox xShifted = x.shiftLeft(n); |
| 116 | + assertEquals(x.multiply(new MutableBigIntegerBox(BigInteger.TWO.pow(n))), xShifted); |
| 117 | + assertEquals(x, xShifted.shiftRight(n)); |
| 118 | + } |
| 119 | + |
| 120 | + /* |
| 121 | + * Get a random or boundary-case number. This is designed to provide |
| 122 | + * a lot of numbers that will find failure points, such as max sized |
| 123 | + * numbers, empty MutableBigIntegers, etc. |
| 124 | + * |
| 125 | + * If order is less than 2, order is changed to 2. |
| 126 | + */ |
| 127 | + private static MutableBigIntegerBox fetchNumber(int order) { |
| 128 | + int numType = random.nextInt(8); |
| 129 | + MutableBigIntegerBox result = null; |
| 130 | + if (order < 2) order = 2; |
| 131 | + |
| 132 | + int[] val; |
| 133 | + switch (numType) { |
| 134 | + case 0: // Empty |
| 135 | + result = MutableBigIntegerBox.ZERO; |
| 136 | + break; |
| 137 | + |
| 138 | + case 1: // One |
| 139 | + result = MutableBigIntegerBox.ONE; |
| 140 | + break; |
| 141 | + |
| 142 | + case 2: // All bits set in number |
| 143 | + int numInts = (order + 31) >> 5; |
| 144 | + int[] fullBits = new int[numInts]; |
| 145 | + Arrays.fill(fullBits, -1); |
| 146 | + |
| 147 | + fullBits[0] &= -1 >>> -order; |
| 148 | + result = new MutableBigIntegerBox(fullBits); |
| 149 | + break; |
| 150 | + |
| 151 | + case 3: // One bit in number |
| 152 | + result = MutableBigIntegerBox.ONE.shiftLeft(random.nextInt(order)); |
| 153 | + break; |
| 154 | + |
| 155 | + case 4: // Random bit density |
| 156 | + val = new int[(order + 31) >> 5]; |
| 157 | + int iterations = random.nextInt(order); |
| 158 | + for (int i = 0; i < iterations; i++) { |
| 159 | + int bitIdx = random.nextInt(order); |
| 160 | + val[bitIdx >> 5] |= 1 << bitIdx; |
| 161 | + } |
| 162 | + result = new MutableBigIntegerBox(val); |
| 163 | + break; |
| 164 | + case 5: // Runs of consecutive ones and zeros |
| 165 | + result = ZERO; |
| 166 | + int remaining = order; |
| 167 | + int bit = random.nextInt(2); |
| 168 | + while (remaining > 0) { |
| 169 | + int runLength = Math.min(remaining, random.nextInt(order)); |
| 170 | + result = result.shiftLeft(runLength); |
| 171 | + if (bit > 0) |
| 172 | + result = result.add(ONE.shiftLeft(runLength).subtract(ONE)); |
| 173 | + remaining -= runLength; |
| 174 | + bit = 1 - bit; |
| 175 | + } |
| 176 | + break; |
| 177 | + case 6: // random bits with trailing space |
| 178 | + int len = random.nextInt((order + 31) >> 5) + 1; |
| 179 | + int offset = random.nextInt(len); |
| 180 | + val = new int[len << 1]; |
| 181 | + for (int i = 0; i < val.length; i++) |
| 182 | + val[i] = random.nextInt(); |
| 183 | + result = new MutableBigIntegerBox(val, offset, len); |
| 184 | + break; |
| 185 | + default: // random bits |
| 186 | + result = new MutableBigIntegerBox(new BigInteger(order, random)); |
| 187 | + } |
| 188 | + |
| 189 | + return result; |
| 190 | + } |
| 191 | +} |
0 commit comments