package org.schabi.newpipe.extractor.services.youtube; /* * Created by Christian Schabesberger on 29.12.15. * * Copyright (C) Christian Schabesberger 2015 * YoutubeSearchExtractorStreamTest.java is part of NewPipe. * * NewPipe 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. * * NewPipe 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 NewPipe. If not, see . */ import org.junit.BeforeClass; import org.junit.Test; import org.schabi.newpipe.DownloaderTestImpl; import org.schabi.newpipe.extractor.NewPipe; import org.schabi.newpipe.extractor.StreamingService; import org.schabi.newpipe.extractor.kiosk.KioskList; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.schabi.newpipe.extractor.ServiceList.YouTube; /** * Test for {@link YoutubeService} */ public class YoutubeServiceTest { static StreamingService service; static KioskList kioskList; @BeforeClass public static void setUp() throws Exception { NewPipe.init(DownloaderTestImpl.getInstance()); service = YouTube; kioskList = service.getKioskList(); } @Test public void testGetKioskAvailableKiosks() throws Exception { assertFalse("No kiosk got returned", kioskList.getAvailableKiosks().isEmpty()); } @Test public void testGetDefaultKiosk() throws Exception { assertEquals(kioskList.getDefaultKioskExtractor(null).getId(), "Trending"); } }