/* * Catroid: An on-device visual programming system for Android devices * Copyright (C) 2010-2016 The Catrobat Team * (<http://developer.catrobat.org/credits>) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * An additional term exception under section 7 of the GNU Affero * General Public License, version 3, is available at * http://developer.catrobat.org/license_additional_term * * 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.catrobat.catroid.uiespresso.util.matchers; import android.view.View; import android.widget.LinearLayout; import android.widget.ListView; import org.catrobat.catroid.ui.adapter.BrickAdapter; import org.catrobat.catroid.ui.dragndrop.BrickDragAndDropListView; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import static android.support.test.espresso.matcher.ViewMatchers.hasDescendant; import static android.support.test.espresso.matcher.ViewMatchers.withText; public final class ScriptListMatchers { // Suppress default constructor for noninstantiability private ScriptListMatchers() { throw new AssertionError(); } public static Matcher<View> isScriptListView() { return new TypeSafeMatcher<View>() { @Override protected boolean matchesSafely(View view) { return view instanceof BrickDragAndDropListView && ((ListView) view).getAdapter() instanceof BrickAdapter; } @Override public void describeTo(Description description) { description.appendText("Locate scriptlistView within view"); } }; } public static Matcher<View> isBrickWithTitle(final int brickTitle) { return new TypeSafeMatcher<View>() { @Override protected boolean matchesSafely(View view) { if (view instanceof LinearLayout) { return matches(hasDescendant(withText(brickTitle))); //return matches(hasDescendant(withText(brickTitle))) && matches(isDisplayed()); } return false; } @Override public void describeTo(Description description) { description.appendText("Is brick with title "); } }; } }