/* * Copyright 2017 Martijn Brekhof. All rights reserved. * * 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.xbmc.kore.tests.ui.remote.controlpad.eventserver; import android.content.Context; import android.support.test.rule.ActivityTestRule; import org.junit.After; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Rule; import org.junit.Test; import org.xbmc.kore.R; import org.xbmc.kore.host.HostInfo; import org.xbmc.kore.host.HostManager; import org.xbmc.kore.jsonrpc.method.Input; import org.xbmc.kore.testhelpers.Utils; import org.xbmc.kore.tests.ui.AbstractTestClass; import org.xbmc.kore.testutils.eventserver.MockEventServer; import org.xbmc.kore.ui.sections.remote.RemoteActivity; import java.io.IOException; import static android.support.test.espresso.Espresso.onView; import static android.support.test.espresso.action.ViewActions.longClick; import static android.support.test.espresso.matcher.ViewMatchers.withId; import static junit.framework.Assert.assertTrue; public class KodiPreV17Tests extends AbstractTestClass { private static MockEventServer mockEventServer; @Rule public ActivityTestRule remoteActivityActivityTestRule = new ActivityTestRule<>(RemoteActivity.class); @Override protected ActivityTestRule getActivityTestRule() { return remoteActivityActivityTestRule; } @Override protected void setSharedPreferences(Context context) { Utils.setUseEventServerPreference(context, true); } @Override protected void configureHostInfo(HostInfo hostInfo) { hostInfo.setKodiVersionMajor(16); } @BeforeClass public static void setupEventServer() throws Throwable { mockEventServer = new MockEventServer(); mockEventServer.setListenPort(HostInfo.DEFAULT_EVENT_SERVER_PORT); mockEventServer.start(); } @Override public void setUp() throws Throwable { setKodiMajorVersion(HostInfo.KODI_V16_JARVIS); super.setUp(); } @After public void resetState() { mockEventServer.reset(); } @AfterClass public static void cleanup() throws IOException { mockEventServer.shutdown(); } @Test public void infoControlPadButtonLongClickTest() throws InterruptedException { HostManager.getInstance(getActivity()).getHostInfo().setKodiVersionMajor(16); onView(withId(R.id.info)).perform(longClick()); String actionReceived = getInputHandler().getAction(); assertTrue(actionReceived != null); assertTrue(actionReceived.contentEquals(Input.ExecuteAction.CODECINFO)); } }