/* * Copyright (c) 2013, Will Szumski * Copyright (c) 2013, Doug Szumski * * This file is part of Cyclismo. * * Cyclismo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cyclismo 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cyclismo. If not, see <http://www.gnu.org/licenses/>. */ /* * Copyright 2012 Google Inc. * * 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 org.cowboycoders.cyclismo.endtoendtest; import android.app.Activity; import android.app.Instrumentation; import android.test.ActivityInstrumentationTestCase2; import android.view.View; import android.widget.ImageButton; import org.cowboycoders.cyclismo.R; import org.cowboycoders.cyclismo.TrackListActivity; import org.cowboycoders.cyclismo.util.GoogleLocationUtils; import java.util.ArrayList; /** * Tests the function of go to my location. * * @author Youtao Liu */ public class GoToMyLocationTest extends ActivityInstrumentationTestCase2<TrackListActivity> { private Instrumentation instrumentation; private TrackListActivity activityMyTracks; public GoToMyLocationTest() { super(TrackListActivity.class); } @Override protected void setUp() throws Exception { super.setUp(); instrumentation = getInstrumentation(); activityMyTracks = getActivity(); EndToEndTestUtils.setupForAllTest(instrumentation, activityMyTracks); } /** * Tests the menu My Location. */ public void testGotoMyLocation() { findAndClickMyLocation(activityMyTracks); if (EndToEndTestUtils.isEmulator) { String setting = activityMyTracks.getString( GoogleLocationUtils.isAvailable(activityMyTracks) ? R.string.gps_google_location_settings : R.string.gps_location_access); EndToEndTestUtils.SOLO.waitForText( activityMyTracks.getString(R.string.my_location_no_gps, setting), 1, EndToEndTestUtils.SHORT_WAIT_TIME); } else { // TODO How to verify the location is shown on the map. } } /** * Finds the My Location view and click it. * * @param activity */ public static void findAndClickMyLocation(Activity activity) { EndToEndTestUtils.createTrackIfEmpty(1, false); EndToEndTestUtils.sendGps(30); View myLocation = EndToEndTestUtils.SOLO.getCurrentActivity() .findViewById(R.id.map_my_location); // Find the My Location button in another if null. if (myLocation == null) { ArrayList<ImageButton> aa = EndToEndTestUtils.SOLO.getCurrentImageButtons(); for (ImageButton imageButton : aa) { if (imageButton.getContentDescription() != null && imageButton.getContentDescription().equals( activity.getString(R.string.icon_my_location))) { myLocation = imageButton; break; } } } EndToEndTestUtils.SOLO.clickOnView(myLocation); } @Override protected void tearDown() throws Exception { EndToEndTestUtils.SOLO.finishOpenedActivities(); super.tearDown(); } }