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
|
/*
* Copyright (C) 2011 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.providers.contacts;
import com.google.android.collect.Maps;
import android.content.res.Resources;
import android.test.AndroidTestCase;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Map;
/**
* Adds support for loading photo files easily from test resources.
*/
public class PhotoLoadingTestCase extends AndroidTestCase {
private Map<Integer, PhotoEntry> photoResourceCache = Maps.newHashMap();
protected static enum PhotoSize {
ORIGINAL,
DISPLAY_PHOTO,
THUMBNAIL
}
protected final class PhotoEntry {
Map<PhotoSize, byte[]> photoMap = Maps.newHashMap();
public PhotoEntry(byte[] original) {
try {
Resources resources = getContext().getResources();
PhotoProcessor processor = new PhotoProcessor(original,
resources.getInteger(R.integer.config_max_display_photo_dim),
resources.getInteger(R.integer.config_max_thumbnail_photo_dim));
photoMap.put(PhotoSize.ORIGINAL, original);
photoMap.put(PhotoSize.DISPLAY_PHOTO, processor.getDisplayPhotoBytes());
photoMap.put(PhotoSize.THUMBNAIL, processor.getThumbnailPhotoBytes());
} catch (IOException ignored) {
// Test is probably going to fail as a result anyway.
}
}
public byte[] getPhoto(PhotoSize size) {
return photoMap.get(size);
}
}
// The test photo will be loaded frequently in tests, so we'll just process it once.
private static PhotoEntry testPhotoEntry;
protected byte[] loadTestPhoto() {
int testPhotoId = com.android.providers.contacts.tests.R.drawable.ic_contact_picture;
if (testPhotoEntry == null) {
loadPhotoFromResource(testPhotoId, PhotoSize.ORIGINAL);
testPhotoEntry = photoResourceCache.get(testPhotoId);
}
return testPhotoEntry.getPhoto(PhotoSize.ORIGINAL);
}
protected byte[] loadTestPhoto(PhotoSize size) {
loadTestPhoto();
return testPhotoEntry.getPhoto(size);
}
protected byte[] loadPhotoFromResource(int resourceId, PhotoSize size) {
PhotoEntry entry = photoResourceCache.get(resourceId);
if (entry == null) {
final Resources resources = getTestContext().getResources();
InputStream is = resources.openRawResource(resourceId);
byte[] content = readInputStreamFully(is);
entry = new PhotoEntry(content);
photoResourceCache.put(resourceId, entry);
}
return entry.getPhoto(size);
}
protected byte[] readInputStreamFully(InputStream is) {
ByteArrayOutputStream os = new ByteArrayOutputStream();
byte[] buffer = new byte[10000];
int count;
try {
while ((count = is.read(buffer)) != -1) {
os.write(buffer, 0, count);
}
is.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
return os.toByteArray();
}
}
|