blob: 8730683cb4cbd03597803af1251aa0b81c3ed5a5 [file] [log] [blame]
/*
* Copyright (C) 2020 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.cellbroadcastreceiver.unit;
import android.content.Context;
import android.content.pm.ProviderInfo;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
import androidx.test.InstrumentationRegistry;
import com.android.cellbroadcastreceiver.CellBroadcastContentProvider;
import com.android.cellbroadcastreceiver.CellBroadcastDatabaseHelper;
public class CellBroadcastContentProviderTestable extends CellBroadcastContentProvider {
private static final String TAG = CellBroadcastContentProviderTestable.class.getSimpleName();
public CellBroadcastContentProviderTestable() {
}
@Override
public boolean onCreate() {
// DO NOT call super.onCreate(), otherwise the permission checker will be override.
Log.d(TAG, "CellBroadcastContentProviderTestable onCreate");
mOpenHelper = new InMemoryCellBroadcastProviderDbHelper();
return true;
}
public void closeDatabase() {
mOpenHelper.close();
}
public static class InMemoryCellBroadcastProviderDbHelper extends SQLiteOpenHelper {
public InMemoryCellBroadcastProviderDbHelper() {
super(InstrumentationRegistry.getTargetContext(),
null, // db file name is null for in-memory db
null, // CursorFactory is null by default
1); // db version is no-op for tests
}
@Override
public void onCreate(SQLiteDatabase db) {
Log.d(TAG, "IN MEMORY DB CREATED");
db.execSQL(CellBroadcastDatabaseHelper.getStringForCellBroadcastTableCreation(
CellBroadcastDatabaseHelper.TABLE_NAME));
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {}
}
public void initializeForTesting(Context context) {
ProviderInfo providerInfo = new ProviderInfo();
providerInfo.authority = "cellbroadcasts-app";
attachInfoForTesting(context, providerInfo);
}
}