blob: 2b188138262fd5cb26ec5ef823a768ed6b916b55 [file] [log] [blame]
/*
* Copyright (C) 2015 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.cts.externalstorageapp;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.PACKAGE_NONE;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.PACKAGE_READ;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.assertFileNoAccess;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.assertFileNotPresent;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.assertFileReadWriteAccess;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.getAllPackageSpecificNoGiftPaths;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.getAllPackageSpecificObbGiftPaths;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.readInt;
import static com.android.cts.externalstorageapp.CommonExternalStorageTest.writeInt;
import android.test.AndroidTestCase;
import java.io.File;
import java.util.List;
public class GiftTest extends AndroidTestCase {
public void testStageNonGifts() throws Exception {
final List<File> noneList = getAllPackageSpecificNoGiftPaths(getContext(), PACKAGE_NONE);
for (File none : noneList) {
none.getParentFile().mkdirs();
assertTrue(none.createNewFile());
writeInt(none, 100);
}
}
/**
* Verify we can read & write only our gifts.
*/
public void testNoGifts() throws Exception {
final List<File> readList = getAllPackageSpecificNoGiftPaths(getContext(), PACKAGE_READ);
for (File read : readList) {
assertFileNoAccess(read);
}
final List<File> noneList = getAllPackageSpecificNoGiftPaths(getContext(), PACKAGE_NONE);
for (File none : noneList) {
assertFileReadWriteAccess(none);
assertEquals(100, readInt(none));
}
}
/**
* Verify we can read our gifts in obb dirs.
*/
public void testObbGifts() throws Exception {
final List<File> noneList = getAllPackageSpecificObbGiftPaths(getContext(), PACKAGE_NONE);
for (File none : noneList) {
assertFileReadWriteAccess(none);
assertEquals(100, readInt(none));
}
}
public void testRemoveObbGifts() throws Exception {
final List<File> noneList = getAllPackageSpecificObbGiftPaths(getContext(), PACKAGE_NONE);
for (File none : noneList) {
none.delete();
}
}
/**
* Verify we can't access gifts in obb dirs.
*/
public void testNoObbGifts() throws Exception {
final List<File> noneList = getAllPackageSpecificObbGiftPaths(getContext(), PACKAGE_NONE);
for (File none : noneList) {
assertFileNotPresent(none);
}
}
}