summaryrefslogtreecommitdiff
path: root/javatests/com/google/android/libraries/mobiledatadownload/file/backends/BlobStoreBackendTest.java
blob: 7de85c20944f5d982047af1ba28cfd8050125f28 (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
/*
 * Copyright 2022 Google LLC
 *
 * 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.google.android.libraries.mobiledatadownload.file.backends;

import static androidx.test.platform.app.InstrumentationRegistry.getInstrumentation;
import static com.google.android.libraries.mobiledatadownload.file.common.internal.Charsets.UTF_8;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertThrows;

import android.app.blob.BlobStoreManager;
import android.content.Context;
import android.net.Uri;
import android.os.ParcelFileDescriptor;
import android.util.Log;
import android.util.Pair;
import androidx.test.core.app.ApplicationProvider;
import androidx.test.uiautomator.UiDevice;
import com.google.android.libraries.mobiledatadownload.file.common.LimitExceededException;
import com.google.common.io.BaseEncoding;
import com.google.common.io.ByteStreams;
import java.io.Closeable;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.MessageDigest;
import java.util.Random;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

@RunWith(JUnit4.class)
public class BlobStoreBackendTest {
  public static final String TAG = "BlobStoreBackendTest";

  private Context context;
  private BlobStoreBackend backend;
  private BlobStoreManager blobStoreManager;

  @Before
  public final void setUpStorage() {
    context = ApplicationProvider.getApplicationContext();
    backend = new BlobStoreBackend(context);
    blobStoreManager = (BlobStoreManager) context.getSystemService(Context.BLOB_STORE_SERVICE);
  }

  @After
  public void tearDown() throws Exception {
    // Commands to clean up the blob storage.
    runShellCmd("cmd blob_store clear-all-sessions");
    runShellCmd("cmd blob_store clear-all-blobs");
    context.getFilesDir().delete();
  }

  @Test
  public void nativeReadAfterWrite_succeeds() throws Exception {
    byte[] content = "nativeReadAfterWrite_succeeds".getBytes(UTF_8);
    String checksum = computeDigest(content);
    Uri uri = BlobUri.builder(context).setBlobParameters(checksum).build();
    int numOfLeases = blobStoreManager.getLeasedBlobs().size();

    try (OutputStream out = backend.openForWrite(uri)) {
      assertThat(out).isNotNull();
      out.write(content);
    }
    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases);

    Uri uriForRead = BlobUri.builder(context).setBlobParameters(checksum).build();
    Pair<Uri, Closeable> closeableUri = backend.openForNativeRead(uriForRead);
    assertThat(closeableUri.second).isNotNull();
    int nativeFd = FileDescriptorUri.getFd(closeableUri.first);
    try (InputStream in =
            new FileInputStream(ParcelFileDescriptor.fromFd(nativeFd).getFileDescriptor());
        Closeable c = closeableUri.second) {
      assertThat(ByteStreams.toByteArray(in)).isEqualTo(content);
    }
  }

  @Test
  public void readAfterWrite_succeeds() throws Exception {
    byte[] content = "readAfterWrite_succeeds".getBytes(UTF_8);
    String checksum = computeDigest(content);
    Uri uri = BlobUri.builder(context).setBlobParameters(checksum).build();
    int numOfLeases = blobStoreManager.getLeasedBlobs().size();

    try (OutputStream out = backend.openForWrite(uri)) {
      assertThat(out).isNotNull();
      out.write(content);
    }
    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases);

    Uri uriForRead = BlobUri.builder(context).setBlobParameters(checksum).build();
    try (InputStream in = backend.openForRead(uriForRead)) {
      assertThat(in).isNotNull();
      assertThat(ByteStreams.toByteArray(in)).isEqualTo(content);
    }
  }

  @Test
  public void exists() throws Exception {
    byte[] content = "exists".getBytes(UTF_8);
    String checksum = computeDigest(content);
    Uri uri = BlobUri.builder(context).setBlobParameters(checksum).build();

    assertThat(backend.exists(uri)).isFalse();

    try (OutputStream out = backend.openForWrite(uri)) {
      assertThat(out).isNotNull();
      out.write(content);
    }

    assertThat(backend.exists(uri)).isTrue();
  }

  @Test
  public void writeLease_succeeds() throws Exception {
    byte[] content = "writeLease_succeeds".getBytes(UTF_8);
    String checksum = computeDigest(content);
    Uri blobUri = BlobUri.builder(context).setBlobParameters(checksum).build();
    int numOfLeases = blobStoreManager.getLeasedBlobs().size();
    try (OutputStream out = backend.openForWrite(blobUri)) {
      assertThat(out).isNotNull();
      out.write(content);
    }

    Uri leaseUri = BlobUri.builder(context).setLeaseParameters(checksum, 0).build();

    OutputStream out = backend.openForWrite(leaseUri);
    assertThat(out).isNull();

    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases + 1);
  }

  @Test
  public void writeLeaseNonExistentFile_shouldThrow() throws Exception {
    byte[] content = "writeLeaseNonExistentFile_shouldThrow".getBytes(UTF_8);
    String checksum = computeDigest(content);

    Uri uri = BlobUri.builder(context).setLeaseParameters(checksum, 0).build();

    assertThrows(SecurityException.class, () -> backend.openForWrite(uri));
  }

  @Test
  public void delete_succeeds() throws Exception {
    byte[] content = "delete_succeeds".getBytes(UTF_8);
    String checksum = computeDigest(content);
    Uri blobUri = BlobUri.builder(context).setBlobParameters(checksum).build();
    int numOfLeases = blobStoreManager.getLeasedBlobs().size();

    try (OutputStream out = backend.openForWrite(blobUri)) {
      assertThat(out).isNotNull();
      out.write(content);
    }

    Uri leaseUri = BlobUri.builder(context).setLeaseParameters(checksum, 0).build();
    try (OutputStream out = backend.openForWrite(leaseUri)) {
      assertThat(out).isNull();
    }
    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases + 1);

    backend.deleteFile(leaseUri);

    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases);
  }

  @Test
  public void releaseAllLeases_succeeds() throws Exception {
    // Write and acquire lease on first file
    byte[] content = "releaseAllLeases_succeeds_1".getBytes(UTF_8);
    String checksum = computeDigest(content);
    Uri blobUri = BlobUri.builder(context).setBlobParameters(checksum).build();
    int numOfLeases = blobStoreManager.getLeasedBlobs().size();
    try (OutputStream out = backend.openForWrite(blobUri)) {
      assertThat(out).isNotNull();
      out.write(content);
    }
    Uri leaseUri = BlobUri.builder(context).setLeaseParameters(checksum, 0).build();
    try (OutputStream out = backend.openForWrite(leaseUri)) {
      assertThat(out).isNull();
    }
    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases + 1);

    // Write and acquire lease on second file
    content = "releaseAllLeases_succeeds_2".getBytes(UTF_8);
    checksum = computeDigest(content);
    blobUri = BlobUri.builder(context).setBlobParameters(checksum).build();
    try (OutputStream out = backend.openForWrite(blobUri)) {
      assertThat(out).isNotNull();
      out.write(content);
    }
    leaseUri = BlobUri.builder(context).setLeaseParameters(checksum, 0).build();
    try (OutputStream out = backend.openForWrite(leaseUri)) {
      assertThat(out).isNull();
    }
    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases + 2);

    // Release all leases
    Uri allLeases = BlobUri.builder(context).setAllLeasesParameters().build();

    backend.deleteFile(allLeases);

    assertThat(blobStoreManager.getLeasedBlobs()).isEmpty();
  }

  @Test
  public void deleteNonExistentFile_shouldThrow() throws Exception {
    BlobStoreBackend backend = new BlobStoreBackend(context);
    byte[] content = "deleteNonExistentFile_shouldThrow".getBytes(UTF_8);
    String checksum = computeDigest(content);

    Uri uri = BlobUri.builder(context).setBlobParameters(checksum).build();

    assertThrows(IOException.class, () -> backend.deleteFile(uri));
  }

  private static String computeDigest(byte[] byteContent) throws Exception {
    MessageDigest messageDigest = MessageDigest.getInstance("SHA-256");
    if (messageDigest == null) {
      return "";
    }
    return BaseEncoding.base16().lowerCase().encode(messageDigest.digest(byteContent));
  }

  @Test
  public void writeLeaseExceedsLimit_shouldThrow() throws Exception {
    long initialRemainingQuota = blobStoreManager.getRemainingLeaseQuotaBytes();
    int numOfLeases = blobStoreManager.getLeasedBlobs().size();
    int numberOfFiles = 20;
    int singleFileSize = (int) initialRemainingQuota / numberOfFiles;
    long expectedRemainingQuota = initialRemainingQuota - singleFileSize * numberOfFiles;

    // Create small files rather than one big file to avoid OutOfMemoryError
    for (int i = 0; i < numberOfFiles; i++) {
      byte[] content = generateRandomBytes(singleFileSize);
      String checksum = computeDigest(content);
      Uri blobUri = BlobUri.builder(context).setBlobParameters(checksum).build();

      try (OutputStream out = backend.openForWrite(blobUri)) {
        assertThat(out).isNotNull();
        out.write(content);
      }
      Uri leaseUri = BlobUri.builder(context).setLeaseParameters(checksum, 0).build();
      OutputStream out = backend.openForWrite(leaseUri);
      assertThat(out).isNull();
    }
    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases + numberOfFiles);
    assertThat(blobStoreManager.getRemainingLeaseQuotaBytes()).isEqualTo(expectedRemainingQuota);

    // Write one more file bigger than available quota. Acquiring the lease on it will throw
    // LimitExceededException.
    byte[] content = generateRandomBytes((int) expectedRemainingQuota + 1);
    String checksum = computeDigest(content);
    Uri blobUri = BlobUri.builder(context).setBlobParameters(checksum).build();
    try (OutputStream out = backend.openForWrite(blobUri)) {
      assertThat(out).isNotNull();
      out.write(content);
    }
    Uri exceedingLeaseUri = BlobUri.builder(context).setLeaseParameters(checksum, 0).build();

    assertThrows(LimitExceededException.class, () -> backend.openForWrite(exceedingLeaseUri));

    assertThat(blobStoreManager.getLeasedBlobs()).hasSize(numOfLeases + numberOfFiles);
    assertThat(blobStoreManager.getRemainingLeaseQuotaBytes()).isEqualTo(expectedRemainingQuota);
  }

  private static byte[] generateRandomBytes(int length) {
    byte[] content = new byte[length];
    new Random().nextBytes(content);
    return content;
  }

  private static String runShellCmd(String cmd) throws IOException {
    final UiDevice uiDevice = UiDevice.getInstance(getInstrumentation());
    final String result = uiDevice.executeShellCommand(cmd).trim();
    Log.i(TAG, "Output of '" + cmd + "': '" + result + "'");
    return result;
  }
}