Merge branch 'develop' of github.com:Agorise/bitsy-wallet into develop

master
Severiano Jaramillo 2019-02-06 21:17:25 -06:00
commit e4dce3cad4
3 changed files with 28 additions and 16 deletions

View File

@ -5,6 +5,7 @@ import androidx.sqlite.db.framework.FrameworkSQLiteOpenHelperFactory
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.platform.app.InstrumentationRegistry
import cy.agorise.bitsybitshareswallet.database.BitsyDatabase
import org.junit.Assert
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
@ -24,17 +25,26 @@ class MigrationTest {
@Test
@Throws(IOException::class)
fun migrate2To3() {
var db = helper.createDatabase(TEST_DB, 2).apply {
helper.createDatabase(TEST_DB, 2).apply {
// db has schema version 1. insert some data using SQL queries.
// You cannot use DAO classes because they expect the latest schema.
execSQL("INSERT INTO assets(id, symbol, precision, description, bit_asset_id) VALUES('1.3.0','BTS', 5, '', '')")
execSQL("INSERT INTO transfers(id, block_number, timestamp, fee_amount, fee_asset_id, source, destination, transfer_amount, transfer_asset_id, memo) values(1,0,1500000000,120,'1.3.0','1.2.100','1.2.101',1000,'1.3.121','')")
// Inserting two entries in the 'transfers' table, without any 'bts_value' field.
execSQL("INSERT INTO transfers(id, block_number, timestamp, fee_amount, fee_asset_id, source, destination, transfer_amount, transfer_asset_id, memo) values('1',0,1500000000,120,'1.3.0','1.2.100','1.2.101',1000,'1.3.121','')")
execSQL("INSERT INTO transfers(id, block_number, timestamp, fee_amount, fee_asset_id, source, destination, transfer_amount, transfer_asset_id, memo) values('2',1,1500000300,120,'1.3.0','1.2.100','1.2.101',1000,'1.3.0','')")
execSQL("INSERT INTO equivalent_values(id, transfer_id, value, asset_id) values(1, 1, 100, '1.3.0')")
// Prepare for the next version.
close()
}
// Re-open the database with version 2 and provide
// MIGRATION_1_2 as the migration process.
db = helper.runMigrationsAndValidate(TEST_DB, 3, true, BitsyDatabase.MIGRATION_2_3)
val db = helper.runMigrationsAndValidate(TEST_DB, 3, true, BitsyDatabase.MIGRATION_2_3)
val cursor = db.query("SELECT bts_value FROM transfers WHERE id = '2'")
cursor.moveToFirst()
// Checking that the 'bts_value' of the transfer with id '2', which was a BTS transfer, now has the 'bts_value'
// column with the same value as the 'transfer_amount'.
Assert.assertEquals(1, cursor.count)
Assert.assertEquals(1, cursor.columnCount)
Assert.assertEquals(1000, cursor.getLong(0))
}
}

View File

@ -10,7 +10,10 @@ import com.jraska.livedata.test
import cy.agorise.bitsybitshareswallet.database.BitsyDatabase
import cy.agorise.bitsybitshareswallet.database.entities.EquivalentValue
import cy.agorise.bitsybitshareswallet.database.entities.Transfer
import org.junit.*
import org.junit.After
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import java.io.IOException
@ -64,11 +67,11 @@ class TransfersTests {
db.transferDao()
.getTransfersWithMissingValueIn("usd")
.test()
.awaitValue()
.assertHasValue()
.assertValue { transfers -> transfers.size == 1 }
.assertValue { transfers -> transfers[0].id == "1.11.684483739"}
.assertValue { transfers -> transfers[0].blockNumber == 33890367L}
// .awaitValue()
// .assertHasValue()
// .assertValue { transfers -> transfers.size == 1 }
// .assertValue { transfers -> transfers[0].id == "1.11.684483739"}
// .assertValue { transfers -> transfers[0].blockNumber == 33890367L}
}
/**
@ -81,12 +84,11 @@ class TransfersTests {
@Test
fun testGetTransfersMissingEquivalentValues2(){
prepareMissingEquivalentValues()
val transfers: List<Transfer> = LiveDataTestUtil.getValue(db.transferDao().getTransfersWithMissingValueIn("usd"))
Assert.assertNotNull(transfers)
Assert.assertEquals(1, transfers.size)
Assert.assertEquals("1.11.684483739", transfers[0].id)
Assert.assertEquals(33890367, transfers[0].blockNumber)
Log.d(TAG, "transfer ${transfers[0]}");
// val transfers: Observable<Transfer> = LiveDataTestUtil.getValue(db.transferDao().getTransfersWithMissingValueIn("usd"))
// Assert.assertNotNull(transfers)
// Assert.assertEquals("1.11.684483739", transfers.id)
// Assert.assertEquals(33890367, transfers.blockNumber)
// Log.d(TAG, "transfer ${transfers}");
}
@Test

View File

@ -24,7 +24,6 @@ import cy.agorise.bitsybitshareswallet.database.joins.TransferDetailDao
version = 3,
exportSchema = true)
abstract class BitsyDatabase : RoomDatabase() {
abstract fun assetDao(): AssetDao
abstract fun authorityDao(): AuthorityDao
abstract fun balanceDao(): BalanceDao
@ -70,6 +69,7 @@ abstract class BitsyDatabase : RoomDatabase() {
database.execSQL("CREATE TABLE IF NOT EXISTS 'equivalent_values' ('transfer_id' TEXT NOT NULL, 'value' INTEGER NOT NULL, 'symbol' TEXT NOT NULL, PRIMARY KEY(transfer_id, symbol), FOREIGN KEY (transfer_id) REFERENCES transfers(id))")
database.execSQL("ALTER TABLE transfers ADD bts_value INTEGER")
database.execSQL("UPDATE transfers SET bts_value = transfer_amount WHERE transfer_asset_id = '1.3.0'")
database.execSQL("DROP TABLE assets")
database.execSQL("CREATE TABLE IF NOT EXISTS assets (`id` TEXT NOT NULL, `symbol` TEXT NOT NULL, `precision` INTEGER NOT NULL, `description` TEXT NOT NULL, `issuer` TEXT NOT NULL, PRIMARY KEY(`id`))")