author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 40173 | jdk/test/java/awt/image/LookupOp/RasterOpNullDestinationRasterTest.java@668a4cd8de97 |
permissions | -rw-r--r-- |
40173
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
1 |
/* |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
2 |
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
4 |
* |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
8 |
* |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
13 |
* accompanied this code). |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
14 |
* |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
18 |
* |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
21 |
* questions. |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
22 |
*/ |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
23 |
|
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
24 |
/* |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
25 |
* @test |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
26 |
* @bug 6427331 |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
27 |
* @summary Test to check there is no NullPointerException raised if |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
28 |
* null raster is provided as destination in case of RasterOp.filter() |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
29 |
* @run main RasterOpNullDestinationRasterTest |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
30 |
*/ |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
31 |
|
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
32 |
import java.awt.Point; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
33 |
import java.awt.image.ByteLookupTable; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
34 |
import java.awt.image.DataBuffer; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
35 |
import java.awt.image.DataBufferByte; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
36 |
import java.awt.image.LookupOp; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
37 |
import java.awt.image.PixelInterleavedSampleModel; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
38 |
import java.awt.image.Raster; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
39 |
import java.awt.image.RasterOp; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
40 |
import java.awt.image.SampleModel; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
41 |
|
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
42 |
public class RasterOpNullDestinationRasterTest { |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
43 |
|
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
44 |
public static void main(String[] args) { |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
45 |
|
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
46 |
byte[][] data = new byte[1][10]; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
47 |
ByteLookupTable lut = new ByteLookupTable(0, data); |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
48 |
RasterOp op = new LookupOp(lut, null); |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
49 |
|
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
50 |
int[] bandOffsets = {0}; |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
51 |
Point location = new Point(0, 0); |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
52 |
DataBuffer db = new DataBufferByte(10 * 10); |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
53 |
SampleModel sm = new PixelInterleavedSampleModel(DataBuffer.TYPE_BYTE, |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
54 |
10, 10, 1, 10, |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
55 |
bandOffsets); |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
56 |
|
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
57 |
Raster src = Raster.createRaster(sm, db, location); |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
58 |
|
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
59 |
op.filter(src, null); // this used to result in NullPointerException |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
60 |
} |
668a4cd8de97
6427331: NullPointerException in LookupOp.filter(Raster, WritableRaster)
aghaisas
parents:
diff
changeset
|
61 |
} |