aboutsummaryrefslogtreecommitdiff
path: root/app/src/androidTest/kotlin/com/pitchedapps/frost/db/GenericDbTest.kt
blob: c911ddf61e6ad555a1de9a5b92ac5b5918239802 (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
/*
 * Copyright 2019 Allan Wang
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.pitchedapps.frost.db

import com.pitchedapps.frost.facebook.FbItem
import com.pitchedapps.frost.facebook.defaultTabs
import kotlinx.coroutines.runBlocking
import kotlin.test.Test
import kotlin.test.assertEquals

class GenericDbTest : BaseDbTest() {

    private val dao get() = db.genericDao()

    /**
     * Note that order is also preserved here
     */
    @Test
    fun save() {
        val tabs = listOf(
            FbItem.ACTIVITY_LOG,
            FbItem.BIRTHDAYS,
            FbItem.EVENTS,
            FbItem.MARKETPLACE,
            FbItem.ACTIVITY_LOG
        )
        runBlocking {
            dao.saveTabs(tabs)
            assertEquals(tabs, dao.getTabs(), "Tab saving failed")
            val newTabs = listOf(FbItem.PAGES, FbItem.MENU)
            dao.saveTabs(newTabs)
            assertEquals(newTabs, dao.getTabs(), "Tab overwrite failed")
        }
    }

    @Test
    fun defaultRetrieve() {
        runBlocking {
            assertEquals(defaultTabs(), dao.getTabs(), "Default retrieval failed")
        }
    }

    @Test
    fun ignoreErrors() {
        runBlocking {
            dao._save(
                GenericEntity(
                    GenericDao.TYPE_TABS,
                    "${FbItem.ACTIVITY_LOG.name},unknown,${FbItem.EVENTS.name}"
                )
            )
            assertEquals(
                listOf(FbItem.ACTIVITY_LOG, FbItem.EVENTS),
                dao.getTabs(),
                "Tab fetching does not ignore unknown names"
            )
        }
    }
}