Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 12669b6c authored by Vasu Nori's avatar Vasu Nori
Browse files

bring back sqlite WAL tests now that the feature is in.

Change-Id: I92103915845b7cf3f41f95e909051b6669c63ec4
parent 88196e38
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -22,7 +22,6 @@ import android.database.Cursor;
import android.test.AndroidTestCase;
import android.test.suitebuilder.annotation.LargeTest;
import android.test.suitebuilder.annotation.SmallTest;
import android.test.suitebuilder.annotation.Suppress;
import android.util.Log;

import java.io.File;
@@ -55,7 +54,6 @@ public class SQLiteCursorTest extends AndroidTestCase {
        super.tearDown();
    }

    @Suppress
    @SmallTest
    public void testQueryObjReassignment() {
        mDatabase.enableWriteAheadLogging();
+0 −7
Original line number Diff line number Diff line
@@ -74,7 +74,6 @@ public class SQLiteDatabaseTest extends AndroidTestCase {
        mDatabase.setVersion(CURRENT_DATABASE_VERSION);
    }

    @Suppress
    @SmallTest
    public void testEnableWriteAheadLogging() {
        mDatabase.disableWriteAheadLogging();
@@ -87,7 +86,6 @@ public class SQLiteDatabaseTest extends AndroidTestCase {
        assertEquals(pool, mDatabase.mConnectionPool);
    }

    @Suppress
    @SmallTest
    public void testDisableWriteAheadLogging() {
        mDatabase.execSQL("create table test (i int);");
@@ -104,7 +102,6 @@ public class SQLiteDatabaseTest extends AndroidTestCase {
        assertFalse(db.isOpen());
    }

    @Suppress
    @SmallTest
    public void testCursorsWithClosedDbConnAfterDisableWriteAheadLogging() {
        mDatabase.disableWriteAheadLogging();
@@ -141,7 +138,6 @@ public class SQLiteDatabaseTest extends AndroidTestCase {
    /**
     * a transaction should be started before a standalone-update/insert/delete statement
     */
    @Suppress
    @SmallTest
    public void testStartXactBeforeUpdateSql() throws InterruptedException {
        runTestForStartXactBeforeUpdateSql(INSERT);
@@ -753,7 +749,6 @@ public class SQLiteDatabaseTest extends AndroidTestCase {
     *
     * @throws InterruptedException
     */
    @Suppress
    @SmallTest
    public void testTransactionAndWalInterplay1() throws InterruptedException {
        createTableAndClearCache();
@@ -812,7 +807,6 @@ public class SQLiteDatabaseTest extends AndroidTestCase {
     * instead of mDatabase.beginTransactionNonExclusive(), use execSQL("BEGIN transaction")
     * and instead of mDatabase.endTransaction(), use execSQL("END");
     */
    @Suppress
    @SmallTest
    public void testTransactionAndWalInterplay2() throws InterruptedException {
        createTableAndClearCache();
@@ -869,7 +863,6 @@ public class SQLiteDatabaseTest extends AndroidTestCase {
     * instead of committing the data, do rollback and make sure the data seen by the query
     * within the transaction is now gone.
     */
    @Suppress
    @SmallTest
    public void testTransactionAndWalInterplay3() {
        createTableAndClearCache();