aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/GraphicsUtilitiesTest.java
blob: 4f00097bc3dd0448941e0f1dd0c5cd1ddbb84581 (plain)
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
/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * 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
 *
 *      http://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.
 */

package com.android.ide.eclipse.adt.internal.editors.draw9patch.graphics;

import java.util.Arrays;

import junit.framework.TestCase;

import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.widgets.Display;

public class GraphicsUtilitiesTest extends TestCase {
    private static final int MASK_ALPHA = 0xFF000000;

    private static final String DIR = "/com/android/ide/eclipse/testdata/draw9patch/";

    public void testConvertToNinePatchNull() throws Exception {
        ImageData result = GraphicsUtilities.convertToNinePatch(null);
        assertNull(result);
    }

    public void testConvertToNinePatch() throws Exception {
        String fileName = DIR + "no-patched.png";
        Image image = new Image(Display.getDefault(),
                getClass().getResourceAsStream(fileName));
        ImageData baseData = image.getImageData();

        ImageData result = GraphicsUtilities.convertToNinePatch(baseData);

        assertEquals(baseData.width + 2, result.width);
        assertEquals(baseData.height + 2, result.height);

        // horizontal
        for (int x = 0; x < result.width; x++) {

            // top row
            assertEquals(0x0, result.getPixel(x, 0) & MASK_ALPHA);

            // bottom row
            assertEquals(0x0, result.getPixel(x, result.height - 1) & MASK_ALPHA);
        }

        // vertical
        for (int y = 0; y < result.height; y++) {

            // left column
            assertEquals(0x0, result.getPixel(0, y) & MASK_ALPHA);

            // right column
            assertEquals(0x0, result.getPixel(result.width - 1, y) & MASK_ALPHA);
        }
    }

    public void testClearImageDataNull() throws Exception {
        try {
            GraphicsUtilities.clearImageData(null);
            fail();
        } catch (IllegalArgumentException e) {
        }
    }

    public void testClearImageData() throws Exception {
        String fileName = DIR + "no-patched.png";
        Image image = new Image(Display.getDefault(),
                getClass().getResourceAsStream(fileName));

        ImageData baseData = image.getImageData();
        GraphicsUtilities.clearImageData(baseData);
        for (int y = 0; y < baseData.height; y++) {
            for (int x = 0; x < baseData.width; x++) {
                assertEquals(0x000000, baseData.getPixel(x, y));
                assertEquals(0x00, baseData.getAlpha(x, y));
            }
        }

    }

    public void testCopyNull() throws Exception {
        ImageData result = GraphicsUtilities.copy(null);
        assertNull(result);
    }

    public void testCopy() throws Exception {
        String fileName = DIR + "no-patched.png";
        Image image = new Image(Display.getDefault(),
                getClass().getResourceAsStream(fileName));

        ImageData baseData = image.getImageData();
        ImageData copiedData = GraphicsUtilities.copy(baseData);

        assertEquals(baseData.width, copiedData.width);
        assertEquals(baseData.height, copiedData.height);
        assertEquals(baseData.depth, copiedData.depth);
        assertEquals(baseData.transparentPixel, copiedData.transparentPixel);
        assertEquals(baseData.alpha, copiedData.alpha);
        assertTrue(baseData.palette.equals(copiedData.palette));

        final int[] baseColors = new int[baseData.width];
        final byte[] baseAlpha = new byte[baseData.width];

        final int[] copiedColors = new int[copiedData.width];
        final byte[] copiedAlpha = new byte[copiedData.width];

        for (int y = 0; y < baseData.height; y++) {

            baseData.getPixels(0, y, baseData.width, baseColors, 0);
            baseData.getPixels(0, y, baseData.width, copiedColors, 0);
            assertTrue(Arrays.equals(baseColors, copiedColors));

            baseData.getAlphas(0, y, baseData.width, baseAlpha, 0);
            baseData.getAlphas(0, y, baseData.width, copiedAlpha, 0);
            assertTrue(Arrays.equals(baseAlpha, copiedAlpha));

        }
    }

    public void testGetVerticalPixelsIllegalArgument() throws Exception {
        String fileName = DIR + "no-patched.png";
        Image image = new Image(Display.getDefault(),
                getClass().getResourceAsStream(fileName));

        ImageData baseData = image.getImageData();
        int[] temp = new int[baseData.width];

        // data must not be null
        try {
            GraphicsUtilities.getVerticalPixels(null, 0, 0, 1, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // out must not be null
        try {
            GraphicsUtilities.getVerticalPixels(baseData, 0, 0, 1, null);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // out length must be > height
        try {
            GraphicsUtilities.getVerticalPixels(baseData, 0, 0, 1, new int[0]);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // x must be > 0
        try {
            GraphicsUtilities.getVerticalPixels(baseData, -1, 0, 1, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // y must be > 0
        try {
            GraphicsUtilities.getVerticalPixels(baseData, 0, -1, 1, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // height must be >= 0
        try {
            GraphicsUtilities.getVerticalPixels(baseData, 0, 0, 0, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // argument x must be < data.width
        try {
            GraphicsUtilities.getVerticalPixels(baseData, baseData.width, 0, baseData.height, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // argument y must be < data.height
        try {
            GraphicsUtilities
                    .getVerticalPixels(baseData, 0, baseData.height, baseData.height, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // argument height must be > (y + data.height)
        try {
            GraphicsUtilities.getVerticalPixels(baseData, 0, 1, baseData.height, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

    }

    public void testGetVerticalPixels() throws Exception {
        String fileName = DIR + "no-patched.png";
        Image image = new Image(Display.getDefault(),
                getClass().getResourceAsStream(fileName));

        ImageData baseData = image.getImageData();
        int[] temp = new int[baseData.width];

        GraphicsUtilities.getVerticalPixels(baseData, 0, 0, baseData.height, temp);

        int height = baseData.height;
        for (int y = 0; y < height; y++) {
            assertEquals(baseData.getPixel(0, y), temp[y]);
        }
    }

    public void testGetHorizontalPixelsIllegalArgument() throws Exception {
        String fileName = DIR + "no-patched.png";
        Image image = new Image(Display.getDefault(),
                getClass().getResourceAsStream(fileName));

        ImageData baseData = image.getImageData();
        int[] temp = new int[baseData.width];

        // data must not be null
        try {
            GraphicsUtilities.getHorizontalPixels(null, 0, 0, 1, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // out must not be null
        try {
            GraphicsUtilities.getHorizontalPixels(baseData, 0, 0, 1, null);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // out length must be > width
        try {
            GraphicsUtilities.getHorizontalPixels(baseData, 0, 0, 1, new int[0]);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // x must be > 0
        try {
            GraphicsUtilities.getHorizontalPixels(baseData, -1, 0, 1, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // y must be > 0
        try {
            GraphicsUtilities.getHorizontalPixels(baseData, 0, -1, 1, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // width must be >= 0
        try {
            GraphicsUtilities.getHorizontalPixels(baseData, 0, 0, 0, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // argument x must be < data.width
        try {
            GraphicsUtilities
                    .getHorizontalPixels(baseData, baseData.width, 0, baseData.width, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // argument y must be < data.height
        try {
            GraphicsUtilities
                    .getHorizontalPixels(baseData, 0, baseData.height, baseData.width, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

        // argument width must be > (x + data.width)
        try {
            GraphicsUtilities.getHorizontalPixels(baseData, 1, 0, baseData.width, temp);
            fail();
        } catch (IllegalArgumentException e) {
        }

    }

    public void testGetHorizontalPixels() throws Exception {
        String fileName = DIR + "no-patched.png";
        Image image = new Image(Display.getDefault(),
                getClass().getResourceAsStream(fileName));

        ImageData baseData = image.getImageData();
        int[] temp = new int[baseData.width];

        GraphicsUtilities.getHorizontalPixels(baseData, 0, 0, baseData.width, temp);

        int width = baseData.width;
        for (int x = 0; x < width; x++) {
            assertEquals(baseData.getPixel(x, 0), temp[x]);
        }
    }

}