summaryrefslogtreecommitdiffstats
path: root/robolectric_tests/src/com/android/launcher3/model/CacheDataUpdatedTaskTest.java
blob: 42848f46108eed070396423f2f661af92598952e (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.android.launcher3.model;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertNull;

import com.android.launcher3.AppInfo;
import com.android.launcher3.ItemInfo;
import com.android.launcher3.WorkspaceItemInfo;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;

import java.util.Arrays;
import java.util.HashSet;

/**
 * Tests for {@link CacheDataUpdatedTask}
 */
@RunWith(RobolectricTestRunner.class)
public class CacheDataUpdatedTaskTest extends BaseModelUpdateTaskTestCase {

    private static final String NEW_LABEL_PREFIX = "new-label-";

    @Before
    public void initData() throws Exception {
        initializeData("/cache_data_updated_task_data.txt");
        // Add dummy entries in the cache to simulate update
        for (ItemInfo info : bgDataModel.itemsIdMap) {
            iconCache.addCache(info.getTargetComponent(), NEW_LABEL_PREFIX + info.id);
        }
    }

    private CacheDataUpdatedTask newTask(int op, String... pkg) {
        return new CacheDataUpdatedTask(op, myUser, new HashSet<>(Arrays.asList(pkg)));
    }

    @Test
    @Ignore("This test fails with resource errors") // b/131115553
    public void testCacheUpdate_update_apps() throws Exception {
        // Clear all icons from apps list so that its easy to check what was updated
        for (AppInfo info : allAppsList.data) {
            info.iconBitmap = null;
        }

        executeTaskForTest(newTask(CacheDataUpdatedTask.OP_CACHE_UPDATE, "app1"));

        // Verify that only the app icons of app1 (id 1 & 2) are updated. Custom shortcut (id 7)
        // is not updated
        verifyUpdate(1, 2);

        // Verify that only app1 var updated in allAppsList
        assertFalse(allAppsList.data.isEmpty());
        for (AppInfo info : allAppsList.data) {
            if (info.componentName.getPackageName().equals("app1")) {
                assertNotNull(info.iconBitmap);
            } else {
                assertNull(info.iconBitmap);
            }
        }
    }

    @Test
    @Ignore("This test fails with resource errors") // b/131115553
    public void testSessionUpdate_ignores_normal_apps() throws Exception {
        executeTaskForTest(newTask(CacheDataUpdatedTask.OP_SESSION_UPDATE, "app1"));

        // app1 has no restored shortcuts. Verify that nothing was updated.
        verifyUpdate();
    }

    @Test
    @Ignore("This test fails with resource errors") // b/131115553
    public void testSessionUpdate_updates_pending_apps() throws Exception {
        executeTaskForTest(newTask(CacheDataUpdatedTask.OP_SESSION_UPDATE, "app3"));

        // app3 has only restored apps (id 5, 6) and shortcuts (id 9). Verify that only apps were
        // were updated
        verifyUpdate(5, 6);
    }

    private void verifyUpdate(Integer... idsUpdated) {
        HashSet<Integer> updates = new HashSet<>(Arrays.asList(idsUpdated));
        for (ItemInfo info : bgDataModel.itemsIdMap) {
            if (updates.contains(info.id)) {
                assertEquals(NEW_LABEL_PREFIX + info.id, info.title);
                assertNotNull(((WorkspaceItemInfo) info).iconBitmap);
            } else {
                assertNotSame(NEW_LABEL_PREFIX + info.id, info.title);
                assertNull(((WorkspaceItemInfo) info).iconBitmap);
            }
        }
    }
}