summaryrefslogtreecommitdiff
path: root/tests/src/com/android/dialer/calllog/CallLogAdapterTest.java
blob: 83d098fc5f541c314ae73399860eb48e52b9f50b (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
/*
 * Copyright (C) 2011 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.dialer.calllog;

import android.content.ContentUris;
import android.content.Context;
import android.content.Intent;
import android.database.MatrixCursor;
import android.net.Uri;
import android.provider.CallLog.Calls;
import android.provider.ContactsContract.CommonDataKinds.Phone;
import android.provider.VoicemailContract;
import android.support.v7.widget.RecyclerView.ViewHolder;
import android.telephony.PhoneNumberUtils;
import android.test.AndroidTestCase;
import android.test.suitebuilder.annotation.SmallTest;
import android.test.suitebuilder.annotation.MediumTest;
import android.test.suitebuilder.annotation.LargeTest;
import android.text.TextUtils;
import android.view.View;

import com.android.dialer.contactinfo.ContactInfoCache;
import com.android.dialer.contactinfo.ContactInfoCache.OnContactInfoChangedListener;
import com.android.dialer.util.TestConstants;
import com.google.common.collect.Lists;

import java.util.Date;
import java.util.List;
import java.util.Random;

/**
 * Unit tests for {@link CallLogAdapter}.
 *
 * adb shell am instrument \
 *     -e com.android.dialer.calllog.CallLogAdapterTest \
 *     -w com.android.dialer.tests/android.test.InstrumentationTestRunner
 */
public class CallLogAdapterTest extends AndroidTestCase {
    private static final String EMPTY_STRING = "";
    private static final int NO_VALUE_SET = -1;

    private static final String TEST_CACHED_NAME = "name";
    private static final String TEST_CACHED_NUMBER_LABEL = "label";
    private static final int TEST_CACHED_NUMBER_TYPE = 1;
    private static final String TEST_COUNTRY_ISO = "US";
    private static final String TEST_DEFAULT_CUSTOM_LABEL = "myLabel";
    private static final Uri TEST_LOOKUP_URI = Uri.parse("content://contacts/2");

    private static final String TEST_NUMBER = "12125551000";
    private static final String TEST_NUMBER_1 = "12345678";
    private static final String TEST_NUMBER_2 = "87654321";
    private static final String TEST_NUMBER_3 = "18273645";
    private static final String TEST_FORMATTED_NUMBER = "1 212-555-1000";

    // The object under test.
    private TestCallLogAdapter mAdapter;

    private MatrixCursor mCursor;

    private View mView;
    private CallLogListItemViewHolder mViewHolder;
    private Random mRandom;

    @Override
    protected void setUp() throws Exception {
        super.setUp();
        mRandom = new Random();

        // Use a call fetcher that does not do anything.
        CallLogAdapter.CallFetcher fakeCallFetcher = new CallLogAdapter.CallFetcher() {
            @Override
            public void fetchCalls() {}
        };

        ContactInfoHelper fakeContactInfoHelper =
                new ContactInfoHelper(getContext(), TEST_COUNTRY_ISO) {
                    @Override
                    public ContactInfo lookupNumber(String number, String countryIso) {
                        ContactInfo info = new ContactInfo();
                        info.number = number;
                        info.formattedNumber = number;
                        return info;
                    }
                };

        mAdapter = new TestCallLogAdapter(getContext(), fakeCallFetcher, fakeContactInfoHelper);

        // The cursor used in the tests to store the entries to display.
        mCursor = new MatrixCursor(CallLogQuery._PROJECTION);
        mCursor.moveToFirst();

        // The views into which to store the data.
        mViewHolder = CallLogListItemViewHolder.createForTest(getContext());
    }

    @Override
    protected void tearDown() throws Exception {
        mAdapter = null;
        mCursor = null;
        super.tearDown();
    }

    @MediumTest
    public void testBindView_NumberOnlyNoCache() {
        createCallLogEntry();

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertNameIs(mViewHolder, TEST_NUMBER);
    }

    @MediumTest
    public void testBindView_PrivateCall() {
        createPrivateCallLogEntry();

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertEquals(Calls.PRESENTATION_RESTRICTED, mViewHolder.numberPresentation);
        assertNull(mViewHolder.primaryActionButtonView.getTag());
    }

    @MediumTest
    public void testBindView_UnknownCall() {
        createUnknownCallLogEntry();

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertEquals(Calls.PRESENTATION_UNKNOWN, mViewHolder.numberPresentation);
        assertNull(mViewHolder.primaryActionButtonView.getTag());
    }

    @MediumTest
    public void testBindView_WithoutQuickContactBadge() {
        createCallLogEntry();

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertFalse(mViewHolder.quickContactView.isEnabled());
    }

    @MediumTest
    public void testBindView_CallButton() {
        createCallLogEntry();

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        // The primaryActionView tag is set when the ViewHolder is binded. If it is possible
        // to place a call to the phone number, a call intent will have been created which
        // starts a phone call to the entry's number.
        assertHasCallAction(mViewHolder);
    }

    @MediumTest
    public void testBindView_VoicemailUri() {
        createVoicemailCallLogEntry();

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertEquals(Uri.parse(mViewHolder.voicemailUri),
                ContentUris.withAppendedId(VoicemailContract.Voicemails.CONTENT_URI, 0));
        assertNull(mViewHolder.primaryActionButtonView.getTag());
    }

    @MediumTest
    public void testPresentationAfterRebindingViewHolders() {
        final int increment = 10;
        final int size = increment * 4;

        // Instantiate list of ViewHolders.
        CallLogListItemViewHolder[] holders = new CallLogListItemViewHolder[size];
        for (int i = 0; i < size; i++) {
            holders[i] = CallLogListItemViewHolder.createForTest(getContext());
        }

        // Add first set of entries to the cursor.
        for (int i = 0; i < increment; i++) {
            createCallLogEntry();
            createPrivateCallLogEntry();
            createCallLogEntry();
            createUnknownCallLogEntry();
        }

        mAdapter.changeCursor(mCursor);

        // Verify correct appearance for presentation.
        for (int i = 0; i < size; i++) {
            mAdapter.onBindViewHolder(holders[i], i);
            if (holders[i].numberPresentation == Calls.PRESENTATION_ALLOWED) {
                assertHasCallAction(holders[i]);
            } else {
                assertNull(holders[i].primaryActionButtonView.getTag());
                assertEquals(holders[i].number, EMPTY_STRING);
            }
        }

        // Append the rest of the entries to the cursor. Keep the first set of ViewHolders
        // so they are updated and not buitl from scratch. This checks for bugs which may
        // be evident only after the call log is updated.
        for (int i = 0; i < increment; i++) {
            createPrivateCallLogEntry();
            createCallLogEntry();
            createUnknownCallLogEntry();
            createCallLogEntry();
        }

        mCursor.move(size);

        // Verify correct appearnce for presentation.
        for (int i = 0; i < size; i++) {
            mAdapter.onBindViewHolder(holders[i], i + size);
            if (holders[i].numberPresentation == Calls.PRESENTATION_ALLOWED) {
                assertHasCallAction(holders[i]);
            } else {
                assertNull(holders[i].primaryActionButtonView.getTag());
                assertEquals(holders[i].number, EMPTY_STRING);
            }
        }
    }

   @MediumTest
   public void testBindView_NoCallLogCacheNorMemoryCache_EnqueueRequest() {
       createCallLogEntry();

       // Bind the views of a single row.
       mAdapter.changeCursor(mCursor);
       mAdapter.onBindViewHolder(mViewHolder, 0);

       // There is one request for contact details.
       assertEquals(1, mAdapter.getContactInfoCache().requests.size());

       TestContactInfoCache.Request request = mAdapter.getContactInfoCache().requests.get(0);
       // It is for the number we need to show.
       assertEquals(TEST_NUMBER, request.number);
       // It has the right country.
       assertEquals(TEST_COUNTRY_ISO, request.countryIso);
       // Since there is nothing in the cache, it is an immediate request.
       assertTrue("should be immediate", request.immediate);
   }

   @MediumTest
   public void testBindView_CallLogCacheButNoMemoryCache_EnqueueRequest() {
       createCallLogEntryWithCachedValues(false);

       // Bind the views of a single row.
       mAdapter.changeCursor(mCursor);
       mAdapter.onBindViewHolder(mViewHolder, 0);

        // There is one request for contact details.
        assertEquals(1, mAdapter.getContactInfoCache().requests.size());

        TestContactInfoCache.Request request = mAdapter.getContactInfoCache().requests.get(0);

        // The values passed to the request, match the ones in the call log cache.
        assertEquals(TEST_CACHED_NAME, request.callLogInfo.name);
        assertEquals(TEST_CACHED_NUMBER_TYPE, request.callLogInfo.type);
        assertEquals(TEST_CACHED_NUMBER_LABEL, request.callLogInfo.label);
    }

    @MediumTest
    public void testBindView_NoCallLogButMemoryCache_EnqueueRequest() {
        createCallLogEntry();
        mAdapter.injectContactInfoForTest(TEST_NUMBER, TEST_COUNTRY_ISO, createContactInfo());

        // Bind the views of a single row.
        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        // There is one request for contact details.
        assertEquals(1, mAdapter.getContactInfoCache().requests.size());

        TestContactInfoCache.Request request = mAdapter.getContactInfoCache().requests.get(0);
        // Since there is something in the cache, it is not an immediate request.
        assertFalse("should not be immediate", request.immediate);
    }

    @MediumTest
    public void testBindView_BothCallLogAndMemoryCache_NoEnqueueRequest() {
        createCallLogEntryWithCachedValues(true);

        // Bind the views of a single row.
        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        // Cache and call log are up-to-date: no need to request update.
        assertEquals(0, mAdapter.getContactInfoCache().requests.size());
    }

    @MediumTest
    public void testBindView_MismatchBetweenCallLogAndMemoryCache_EnqueueRequest() {
        createCallLogEntryWithCachedValues(false);

        // Contact info contains a different name.
        ContactInfo info = createContactInfo();
        info.name = "new name";
        mAdapter.injectContactInfoForTest(TEST_NUMBER, TEST_COUNTRY_ISO, info);

        // Bind the views of a single row.
        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        // There is one request for contact details.
        assertEquals(1, mAdapter.getContactInfoCache().requests.size());

        TestContactInfoCache.Request request = mAdapter.getContactInfoCache().requests.get(0);
        // Since there is something in the cache, it is not an immediate request.
        assertFalse("should not be immediate", request.immediate);
    }

    @MediumTest
    public void testBindView_WithCachedName() {
        createCallLogEntryWithCachedValues(
                "John Doe",
                Phone.TYPE_HOME,
                TEST_CACHED_NUMBER_LABEL);

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertNameIs(mViewHolder, "John Doe");
        assertLabel(mViewHolder, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_HOME));
    }

    @MediumTest
    public void testBindView_UriNumber() {
        createCallLogEntryWithCachedValues(
                "sip:johndoe@gmail.com",
                Calls.INCOMING_TYPE,
                "John Doe",
                Phone.TYPE_HOME,
                TEST_DEFAULT_CUSTOM_LABEL,
                EMPTY_STRING,
                false /* inject */);

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertNameIs(mViewHolder, "John Doe");
        assertLabel(mViewHolder, "sip:johndoe@gmail.com", "sip:johndoe@gmail.com");
    }

    @MediumTest
    public void testBindView_HomeLabel() {
        createCallLogEntryWithCachedValues(
                "John Doe",
                Phone.TYPE_HOME,
                TEST_CACHED_NUMBER_LABEL);

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertNameIs(mViewHolder, "John Doe");
        assertLabel(mViewHolder, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_HOME));
    }

    @MediumTest
    public void testBindView_WorkLabel() {
        createCallLogEntryWithCachedValues(
                "John Doe",
                Phone.TYPE_WORK,
                TEST_CACHED_NUMBER_LABEL);

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertNameIs(mViewHolder, "John Doe");
        assertLabel(mViewHolder, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_WORK));
    }

    @MediumTest
    public void testBindView_CustomLabel() {
        createCallLogEntryWithCachedValues(
                "John Doe",
                Phone.TYPE_CUSTOM,
                TEST_DEFAULT_CUSTOM_LABEL);

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertNameIs(mViewHolder, "John Doe");
        assertLabel(mViewHolder, TEST_FORMATTED_NUMBER, TEST_DEFAULT_CUSTOM_LABEL);
    }

    @MediumTest
    public void testBindView_NumberOnlyDbCachedFormattedNumber() {
        createCallLogEntryWithCachedValues(
                TEST_NUMBER,
                Calls.INCOMING_TYPE,
                EMPTY_STRING,
                TEST_CACHED_NUMBER_TYPE,
                TEST_CACHED_NUMBER_LABEL,
                TEST_FORMATTED_NUMBER,
                false /* inject */);

        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(mViewHolder, 0);

        assertNameIs(mViewHolder, TEST_FORMATTED_NUMBER);
    }

    @MediumTest
    public void testBindVoicemailPromoCard() {
        createCallLogEntry(TEST_NUMBER_1);
        createCallLogEntry(TEST_NUMBER_1);
        createCallLogEntry(TEST_NUMBER_2);
        createCallLogEntry(TEST_NUMBER_2);
        createCallLogEntry(TEST_NUMBER_2);
        createCallLogEntry(TEST_NUMBER_3);

        // Bind the voicemail promo card.
        mAdapter.showVoicemailPromoCard(true);
        mAdapter.changeCursor(mCursor);
        mAdapter.onBindViewHolder(PromoCardViewHolder.createForTest(getContext()), 0);

        // Check that displaying the promo card does not affect the grouping or list display.
        mAdapter.onBindViewHolder(mViewHolder, 1);
        assertEquals(2, mAdapter.getGroupSize(1));
        assertEquals(TEST_NUMBER_1, mViewHolder.number);

        mAdapter.onBindViewHolder(mViewHolder, 2);
        assertEquals(3, mAdapter.getGroupSize(2));
        assertEquals(TEST_NUMBER_2, mViewHolder.number);

        mAdapter.onBindViewHolder(mViewHolder, 3);
        assertEquals(1, mAdapter.getGroupSize(3));
        assertEquals(TEST_NUMBER_3, mViewHolder.number);
    }

    private void createCallLogEntry() {
        createCallLogEntry(TEST_NUMBER);
    }

    private void createCallLogEntry(String testNumber) {
        createCallLogEntry(testNumber, NO_VALUE_SET, NO_VALUE_SET);
    }

    private void createPrivateCallLogEntry() {
        createCallLogEntry(EMPTY_STRING, Calls.PRESENTATION_RESTRICTED, Calls.INCOMING_TYPE);
    }

    private void createUnknownCallLogEntry() {
        createCallLogEntry(EMPTY_STRING, Calls.PRESENTATION_UNKNOWN, Calls.INCOMING_TYPE);
    }

    private void createVoicemailCallLogEntry() {
        createCallLogEntry(TEST_NUMBER, NO_VALUE_SET, Calls.VOICEMAIL_TYPE);
    }

    private void createCallLogEntry(String number, int presentation, int type) {
        Object[] values = getValues(number, presentation, type);
        mCursor.addRow(values);
    }

    private void createCallLogEntryWithCachedValues(boolean inject) {
        createCallLogEntryWithCachedValues(
                TEST_NUMBER,
                NO_VALUE_SET,
                TEST_CACHED_NAME,
                TEST_CACHED_NUMBER_TYPE,
                TEST_CACHED_NUMBER_LABEL,
                EMPTY_STRING,
                inject);
    }

    private void createCallLogEntryWithCachedValues(
            String cachedName, int cachedNumberType, String cachedNumberLabel) {
        createCallLogEntryWithCachedValues(
                TEST_NUMBER,
                NO_VALUE_SET,
                cachedName,
                cachedNumberType,
                cachedNumberLabel,
                EMPTY_STRING,
                false /* inject */);
    }

    /**
     * Inserts a new call log entry
     *
     * It includes the values for the cached contact associated with the number.
     *
     * @param number The phone number.
     * @param type Either Call.OUTGOING_TYPE or Call.INCOMING_TYPE or Call.MISSED_TYPE.
     * @param cachedName The name of the contact with this number
     * @param cachedNumberType The type of the number, from the contact with this number.
     * @param cachedNumberLabel The label of the number, from the contact with this number.
     * @param cachedFormattedNumber The formatted number, from the contact with this number.
     * @param inject Whether to inject the contact info into the adapter's ContactInfoCache.
    */
    private void createCallLogEntryWithCachedValues(
            String number,
            int type,
            String cachedName,
            int cachedNumberType,
            String cachedNumberLabel,
            String cachedFormattedNumber,
            boolean inject) {
        Object[] values = getValues(number, NO_VALUE_SET, type);
        values[CallLogQuery.CACHED_NAME] = cachedName;
        values[CallLogQuery.CACHED_NUMBER_TYPE] = cachedNumberType;
        values[CallLogQuery.CACHED_NUMBER_LABEL] = cachedNumberLabel;
        values[CallLogQuery.CACHED_FORMATTED_NUMBER] = cachedFormattedNumber;

        mCursor.addRow(values);

        if (inject) {
            ContactInfo contactInfo =
                    createContactInfo(cachedName, cachedNumberType, cachedNumberLabel);
            mAdapter.injectContactInfoForTest(number, TEST_COUNTRY_ISO, contactInfo);
        }
    }

    /**
     * @param number The phone number.
     * @param presentation Number representing display rules for "allowed",
     *               "payphone", "restricted", or "unknown".
     * @param date In millisec since epoch. Use NOW to use the current time.
     */
    private Object[] getValues(
            String number,
            int presentation,
            int type) {
        Object[] values = CallLogQueryTestUtils.createTestValues();

        values[CallLogQuery.ID] = mCursor.getCount();
        values[CallLogQuery.COUNTRY_ISO] = TEST_COUNTRY_ISO;
        values[CallLogQuery.DATE] = new Date().getTime();
        values[CallLogQuery.DURATION] = mRandom.nextInt(10 * 60);

        if (!TextUtils.isEmpty(number)) {
            values[CallLogQuery.NUMBER] = number;
        }
        if (presentation != NO_VALUE_SET) {
            values[CallLogQuery.NUMBER_PRESENTATION] = presentation;
        }
        if (type != NO_VALUE_SET) {
            values[CallLogQuery.CALL_TYPE] = type;
        }
        if (type == Calls.VOICEMAIL_TYPE) {
            values[CallLogQuery.VOICEMAIL_URI] = ContentUris.withAppendedId(
                    VoicemailContract.Voicemails.CONTENT_URI, mCursor.getCount());
        }

        return values;
    }

    private ContactInfo createContactInfo() {
        return createContactInfo(
                TEST_CACHED_NAME,
                TEST_CACHED_NUMBER_TYPE,
                TEST_CACHED_NUMBER_LABEL);
    }

    /** Returns a contact info with default values. */
    private ContactInfo createContactInfo(String name, int type, String label) {
        ContactInfo info = new ContactInfo();
        info.number = TEST_NUMBER;
        info.name = name;
        info.type = type;
        info.label = label;
        info.formattedNumber = TEST_FORMATTED_NUMBER;
        info.normalizedNumber = TEST_NUMBER;
        info.lookupUri = TEST_LOOKUP_URI;
        return info;
    }

    // Asserts that the name text view is shown and contains the given text.
    private void assertNameIs(CallLogListItemViewHolder viewHolder, String name) {
        assertEquals(View.VISIBLE, viewHolder.phoneCallDetailsViews.nameView.getVisibility());
        assertEquals(name, viewHolder.phoneCallDetailsViews.nameView.getText());
    }

    // Asserts that the label text view contains the given text.
    private void assertLabel(
            CallLogListItemViewHolder viewHolder, CharSequence number, CharSequence label) {
        if (label != null) {
            assertTrue(viewHolder.phoneCallDetailsViews.callLocationAndDate.getText()
                    .toString().contains(label));
        }
    }

    private void assertHasCallAction(CallLogListItemViewHolder viewHolder) {
        // The primaryActionView tag is set when the ViewHolder is binded. If it is possible
        // to place a call to the phone number, a call intent will have been created which
        // starts a phone call to the entry's number.
        IntentProvider intentProvider =
                (IntentProvider) viewHolder.primaryActionButtonView.getTag();
        Intent intent = intentProvider.getIntent(getContext());
        assertEquals(TestConstants.CALL_INTENT_ACTION, intent.getAction());
        assertEquals(Uri.parse("tel:" + TEST_NUMBER), intent.getData());
    }

    /** Returns the label associated with a given phone type. */
    private CharSequence getTypeLabel(int phoneType) {
        return Phone.getTypeLabel(getContext().getResources(), phoneType, "");
    }

    /// Subclass of {@link CallLogAdapter} used in tests to intercept certain calls.
    private static final class TestCallLogAdapter extends CallLogAdapter {
        public TestCallLogAdapter(Context context, CallFetcher callFetcher,
                ContactInfoHelper contactInfoHelper) {
            super(context, callFetcher, contactInfoHelper, null, false);
            mContactInfoCache = new TestContactInfoCache(
                    contactInfoHelper, mOnContactInfoChangedListener);
        }

        public TestContactInfoCache getContactInfoCache() {
            return (TestContactInfoCache) mContactInfoCache;
        }

        public void showVoicemailPromoCard(boolean show) {
            mShowVoicemailPromoCard = show;
        }
    }

    private static final class TestContactInfoCache extends ContactInfoCache {
        public static class Request {
            public final String number;
            public final String countryIso;
            public final ContactInfo callLogInfo;
            public final boolean immediate;

            public Request(String number, String countryIso, ContactInfo callLogInfo,
                    boolean immediate) {
                this.number = number;
                this.countryIso = countryIso;
                this.callLogInfo = callLogInfo;
                this.immediate = immediate;
            }
        }

        public final List<Request> requests = Lists.newArrayList();

        public TestContactInfoCache(
                ContactInfoHelper contactInfoHelper, OnContactInfoChangedListener listener) {
            super(contactInfoHelper, listener);
        }

        @Override
        protected void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo,
                boolean immediate) {
            requests.add(new Request(number, countryIso, callLogInfo, immediate));
        }
    }
}