1d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd/*
2d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * Copyright (C) 2015 The Android Open Source Project
3d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd *
4d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * Licensed under the Apache License, Version 2.0 (the "License");
5d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * you may not use this file except in compliance with the License.
6d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * You may obtain a copy of the License at
7d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd *
8d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd *      http://www.apache.org/licenses/LICENSE-2.0
9d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd *
10d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * Unless required by applicable law or agreed to in writing, software
11d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * distributed under the License is distributed on an "AS IS" BASIS,
12d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * See the License for the specific language governing permissions and
14d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * limitations under the License.
15d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd */
16d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddpackage com.android.messaging.datamodel.data;
17d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd
18d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddimport android.test.suitebuilder.annotation.SmallTest;
19d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd
20d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddimport com.android.messaging.BugleTestCase;
21d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddimport com.android.messaging.datamodel.FakeCursor;
22d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddimport com.android.messaging.datamodel.DatabaseHelper.ParticipantColumns;
23d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddimport com.android.messaging.datamodel.data.ConversationParticipantsData;
24d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddimport com.android.messaging.datamodel.data.ParticipantData;
25d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd
26d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd@SmallTest
27d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddpublic class ConversationParticipantsDataTest extends BugleTestCase {
28d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd    public void testBindParticipants() {
29d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        final FakeCursor testCursor = TestDataFactory.getConversationParticipantsCursor();
30d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        final ConversationParticipantsData data = new ConversationParticipantsData();
31d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        data.bind(testCursor);
32d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd
33d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        assertEquals(data.getParticipantListExcludingSelf().size(), testCursor.getCount());
34d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        final ParticipantData participant2 = data.getParticipantById("2");
35d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        assertNotNull(participant2);
36d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        assertEquals(participant2.getFirstName(), testCursor.getAt(
37d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd                ParticipantColumns.FIRST_NAME, 1) );
38d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        assertEquals(participant2.getSendDestination(), testCursor.getAt(
39d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd                ParticipantColumns.SEND_DESTINATION, 1));
40d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd    }
41d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd}
42