1 /*
   2  * Copyright (c) 2002, 2014 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 /*
  25  * @test
  26  * @bug 4726380 8037097
  27  * @summary Check that different sorts give equivalent results.
  28  * @run testng Correct
  29  */
  30 
  31 import java.util.*;
  32 
  33 import org.testng.annotations.Test;
  34 import org.testng.annotations.DataProvider;
  35 import static org.testng.Assert.fail;
  36 import static org.testng.Assert.assertEquals;
  37 
  38 public class Correct {
  39 
  40     static final Random rnd = new Random();
  41     static final int ITERATIONS = 1000;
  42     static final int TEST_SIZE = 1000;
  43  
  44     @Test
  45     public void testDefaultSort() {
  46         for (int i=0; i<ITERATIONS; i++) {
  47             int size = rnd.nextInt(TEST_SIZE) + 1;
  48             Integer[] array1 = getIntegerArray(size);
  49             Integer[] array2 = Arrays.copyOf(array1, array1.length);
  50             Arrays.sort(array1, array1.length/3, array1.length/2);
  51             stupidSort(array2, array2.length/3, array2.length/2);
  52             assertEquals(array1, array2, "Arrays did not match");
  53         }
  54     }
  55     
  56     @Test(dataProvider = "Comparators")
  57     public void testComparatorSort(Comparator<Integer> comparator) {
  58         for (int i=0; i<ITERATIONS; i++) {
  59             int size = rnd.nextInt(TEST_SIZE) + 1;
  60             Integer[] array1 = getIntegerArray(size);
  61             Integer[] array2 = Arrays.copyOf(array1, array1.length);
  62             Arrays.sort(array1, array1.length/3, array1.length/2, comparator);
  63             stupidSort(array2, array2.length/3, array2.length/2, comparator);
  64             assertEquals(array1, array2, "Arrays did not match");
  65         }
  66     }
  67 
  68     static Integer[] getIntegerArray(int size) {
  69         Integer[] blah = new Integer[size];
  70         for (int x=0; x<size; x++) {
  71             blah[x] = new Integer(rnd.nextInt());
  72         }
  73         return blah;
  74     }
  75 
  76     static void stupidSort(Integer[] a1, int from, int to) {
  77         if (from > to - 1 )
  78           return;
  79 
  80         for (int x=from; x<to; x++) {
  81             Integer lowest = a1[x];
  82             int lowestIndex = x;
  83             for (int y=x + 1; y<to; y++) {
  84                 if (((Comparable)a1[y]).compareTo((Comparable)lowest) < 0) {
  85                     lowest = a1[y];
  86                     lowestIndex = y;
  87                 }
  88             }
  89             if (lowestIndex != x) {
  90                 swap(a1, x, lowestIndex);
  91             }
  92         }
  93     }
  94     
  95     static void stupidSort(Integer[] a1, int from, int to, Comparator<Integer> comparator) {
  96         if (from > to - 1 )
  97           return;
  98 
  99         for (int x=from; x<to; x++) {
 100             Integer lowest = a1[x];
 101             int lowestIndex = x;
 102             for (int y=x + 1; y<to; y++) {
 103                 if (comparator.compare(a1[y], lowest) < 0) {
 104                     lowest = a1[y];
 105                     lowestIndex = y;
 106                 }
 107             }
 108             if (lowestIndex != x) {
 109                 swap(a1, x, lowestIndex);
 110             }
 111         }
 112     }
 113 
 114     static <T> void swap(T[] x, int a, int b) {
 115         T t = x[a];
 116         x[a] = x[b];
 117         x[b] = t;
 118     }
 119 
 120     @DataProvider(name = "Comparators", parallel = true)
 121     public static Iterator<Object[]> comparators() {
 122         Object[][] comparators = new Object[][] {
 123             new Object[] { Comparator.naturalOrder() },
 124             new Object[] { Comparator.<Integer>naturalOrder().reversed() },
 125             new Object[] { STANDARD_ORDER },
 126             new Object[] { STANDARD_ORDER.reversed() },
 127             new Object[] { REVERSE_ORDER },
 128             new Object[] { REVERSE_ORDER.reversed() },
 129             new Object[] { Comparator.comparingInt(Integer::intValue) }
 130         };
 131         
 132         return Arrays.asList(comparators).iterator();
 133     }
 134 
 135     private static final Comparator<Integer> STANDARD_ORDER = new Comparator<Integer>() {
 136         public int compare(Integer o1, Integer o2) {
 137             return  o1.compareTo(o2);
 138         }
 139     };
 140 
 141     private static final Comparator<Integer> REVERSE_ORDER = new Comparator<Integer>() {
 142         public int compare(Integer o1, Integer o2) {
 143             return - o1.compareTo(o2);
 144         }
 145     };
 146 }