summaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/messaging/ui/MultiAttachmentLayoutTest.java
blob: cf9a6471e24be2f20db44e21f179ff683e1aa7b5 (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
/*
 * Copyright (C) 2015 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.messaging.ui;


import android.content.Context;
import android.net.Uri;
import android.test.suitebuilder.annotation.MediumTest;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import com.android.messaging.FakeFactory;
import com.android.messaging.datamodel.data.MessagePartData;

import java.util.Arrays;
import java.util.Collections;

@MediumTest
public class MultiAttachmentLayoutTest extends ViewTest<MultiAttachmentLayout> {
    @Override
    protected void setUp() throws Exception {
        super.setUp();
        final Context context = getInstrumentation().getTargetContext();
        FakeFactory.register(context);
    }

    @Override
    protected MultiAttachmentLayout getView() {
        if (mView == null) {
            // View creation deferred (typically until test time) so that factory/appcontext is
            // ready.
            mView = new MultiAttachmentLayout(getActivity(), null);
            mView.setLayoutParams(new ViewGroup.LayoutParams(100, 100));
        }
        return mView;
    }

    protected void verifyContent(
            final MultiAttachmentLayout view,
            final int imageCount,
            final int plusCount) {
        final int count = view.getChildCount();
        int actualImageCount = 0;
        final boolean needPlusText = plusCount > 0;
        boolean hasPlusText = false;
        for (int i = 0; i < count; i++) {
            final View child = view.getChildAt(i);
            if (child instanceof AsyncImageView) {
                actualImageCount++;
            } else if (child instanceof TextView) {
                assertTrue(plusCount > 0);
                assertTrue(((TextView) child).getText().toString().contains("" + plusCount));
                hasPlusText = true;
            } else {
                // Nothing other than image and overflow text view should appear in this layout.
                fail("unexpected view in layout. view = " + child);
            }
        }
        assertEquals(imageCount, actualImageCount);
        assertEquals(needPlusText, hasPlusText);
    }

    public void testBindTwoAttachments() {
        final MultiAttachmentLayout view = getView();
        final MessagePartData testAttachment1 = MessagePartData.createMediaMessagePart(
                "image/jpeg", Uri.parse("content://uri1"), 100, 100);
        final MessagePartData testAttachment2 = MessagePartData.createMediaMessagePart(
                "image/jpeg", Uri.parse("content://uri2"), 100, 100);

        view.bindAttachments(createAttachmentList(testAttachment1, testAttachment2),
                null /* transitionRect */, 2);
        verifyContent(view, 2, 0);
    }

    public void testBindFiveAttachments() {
        final MultiAttachmentLayout view = getView();
        final MessagePartData testAttachment1 = MessagePartData.createMediaMessagePart(
                "image/jpeg", Uri.parse("content://uri1"), 100, 100);
        final MessagePartData testAttachment2 = MessagePartData.createMediaMessagePart(
                "image/jpeg", Uri.parse("content://uri2"), 100, 100);
        final MessagePartData testAttachment3 = MessagePartData.createMediaMessagePart(
                "image/jpeg", Uri.parse("content://uri3"), 100, 100);
        final MessagePartData testAttachment4 = MessagePartData.createMediaMessagePart(
                "image/jpeg", Uri.parse("content://uri4"), 100, 100);
        final MessagePartData testAttachment5 = MessagePartData.createMediaMessagePart(
                "image/jpeg", Uri.parse("content://uri5"), 100, 100);

        view.bindAttachments(createAttachmentList(testAttachment1, testAttachment2, testAttachment3,
                testAttachment4, testAttachment5), null /* transitionRect */, 5);
        verifyContent(view, 4, 1);
    }

    public void testBindTwice() {
        // Put the above two tests together so we can simulate binding twice.
        testBindTwoAttachments();
        testBindFiveAttachments();
    }

    private Iterable<MessagePartData> createAttachmentList(final MessagePartData... attachments) {
        return Collections.unmodifiableList(Arrays.asList(attachments));
    }

    @Override
    protected int getLayoutIdForView() {
        return 0;   // We construct the view with getView().
    }
}