diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeChannelExtractorTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeChannelExtractorTest.java index 89a0f0c8e..7ae8cafa1 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeChannelExtractorTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeChannelExtractorTest.java @@ -3,8 +3,8 @@ package org.schabi.newpipe.extractor.youtube; import android.test.AndroidTestCase; import org.schabi.newpipe.Downloader; -import org.schabi.newpipe.extractor.ChannelExtractor; import org.schabi.newpipe.extractor.NewPipe; +import org.schabi.newpipe.extractor.channel.ChannelExtractor; /** * Created by Christian Schabesberger on 12.09.16. @@ -33,7 +33,7 @@ public class YoutubeChannelExtractorTest extends AndroidTestCase { public void setUp() throws Exception { super.setUp(); extractor = NewPipe.getService("Youtube") - .getChannelExtractorInstance("https://www.youtube.com/channel/UCYJ61XIK64sp6ZFFS8sctxw", 0, new Downloader()); + .getChannelExtractorInstance("https://www.youtube.com/channel/UCYJ61XIK64sp6ZFFS8sctxw", 0); } public void testGetChannelName() throws Exception { @@ -67,13 +67,13 @@ public class YoutubeChannelExtractorTest extends AndroidTestCase { public void testGetNextPage() throws Exception { extractor = NewPipe.getService("Youtube") - .getChannelExtractorInstance("https://www.youtube.com/channel/UCYJ61XIK64sp6ZFFS8sctxw", 1, new Downloader()); + .getChannelExtractorInstance("https://www.youtube.com/channel/UCYJ61XIK64sp6ZFFS8sctxw", 1); assertTrue("next page didn't have content", !extractor.getStreams().getItemList().isEmpty()); } public void testGetNextNextPageUrl() throws Exception { extractor = NewPipe.getService("Youtube") - .getChannelExtractorInstance("https://www.youtube.com/channel/UCYJ61XIK64sp6ZFFS8sctxw", 2, new Downloader()); + .getChannelExtractorInstance("https://www.youtube.com/channel/UCYJ61XIK64sp6ZFFS8sctxw", 2); assertTrue("next page didn't have content", extractor.hasNextPage()); } } diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java index 24fde8342..93f1fe108 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java @@ -2,10 +2,9 @@ package org.schabi.newpipe.extractor.youtube; import android.test.AndroidTestCase; -import org.schabi.newpipe.extractor.SearchResult; import org.schabi.newpipe.extractor.NewPipe; -import org.schabi.newpipe.extractor.SearchEngine; -import org.schabi.newpipe.Downloader; +import org.schabi.newpipe.extractor.search.SearchEngine; +import org.schabi.newpipe.extractor.search.SearchResult; import java.util.List; @@ -31,16 +30,25 @@ import java.util.List; public class YoutubeSearchEngineTest extends AndroidTestCase { private SearchResult result; - private List suggestionReply; @Override public void setUp() throws Exception { super.setUp(); - SearchEngine engine = NewPipe.getService("Youtube") - .getSearchEngineInstance(new Downloader()); + SearchEngine engine = NewPipe.getService("Youtube").getSearchEngineInstance(); - result = engine.search("this is something boring", - 0, "de", new Downloader()).getSearchResult(); - suggestionReply = engine.suggestionList("hello", "de", new Downloader()); + result = engine.search("this is something boring", 0, "de").getSearchResult(); + } + + public void testResultList() { + assertFalse(result.resultList.isEmpty()); + } + + public void testResultErrors() { + assertTrue(result.errors == null || result.errors.isEmpty()); + } + + public void testSuggestion() { + //todo write a real test + assertTrue(result.suggestion != null); } } diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchResultTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchResultTest.java new file mode 100644 index 000000000..ce0cd477a --- /dev/null +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchResultTest.java @@ -0,0 +1,45 @@ +package org.schabi.newpipe.extractor.youtube; + +import android.test.AndroidTestCase; + +import org.schabi.newpipe.extractor.exceptions.ExtractionException; +import org.schabi.newpipe.extractor.search.SuggestionExtractor; +import org.schabi.newpipe.extractor.services.youtube.YoutubeSuggestionExtractor; + +import java.io.IOException; +import java.util.List; + +/** + * Created by Christian Schabesberger on 18.11.16. + * + * Copyright (C) Christian Schabesberger 2016 + * YoutubeSearchResultTest.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 . + */ + +public class YoutubeSearchResultTest extends AndroidTestCase { + List suggestionReply; + + + @Override + public void setUp() throws Exception { + SuggestionExtractor engine = new YoutubeSuggestionExtractor(0); + suggestionReply = engine.suggestionList("hello", "de"); + } + + public void testIfSuggestions() { + assertFalse(suggestionReply.isEmpty()); + } +} diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorDefaultTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorDefaultTest.java index 8aab43b9b..b118230ee 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorDefaultTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorDefaultTest.java @@ -2,12 +2,11 @@ package org.schabi.newpipe.extractor.youtube; import android.test.AndroidTestCase; -import org.schabi.newpipe.Downloader; -import org.schabi.newpipe.extractor.AbstractVideoInfo; -import org.schabi.newpipe.extractor.ExtractionException; -import org.schabi.newpipe.extractor.ParsingException; +import org.schabi.newpipe.extractor.AbstractStreamInfo; import org.schabi.newpipe.extractor.NewPipe; -import org.schabi.newpipe.extractor.StreamExtractor; +import org.schabi.newpipe.extractor.exceptions.ExtractionException; +import org.schabi.newpipe.extractor.exceptions.ParsingException; +import org.schabi.newpipe.extractor.stream_info.StreamExtractor; import org.schabi.newpipe.extractor.stream_info.VideoStream; import java.io.IOException; @@ -38,7 +37,7 @@ public class YoutubeStreamExtractorDefaultTest extends AndroidTestCase { public void setUp() throws IOException, ExtractionException { extractor = NewPipe.getService("Youtube") - .getExtractorInstance("https://www.youtube.com/watch?v=YQHsXMglC9A", new Downloader()); + .getExtractorInstance("https://www.youtube.com/watch?v=YQHsXMglC9A"); } public void testGetInvalidTimeStamp() throws ParsingException { @@ -49,7 +48,7 @@ public class YoutubeStreamExtractorDefaultTest extends AndroidTestCase { public void testGetValidTimeStamp() throws ExtractionException, IOException { StreamExtractor extractor = NewPipe.getService("Youtube") - .getExtractorInstance("https://youtu.be/FmG385_uUys?t=174", new Downloader()); + .getExtractorInstance("https://youtu.be/FmG385_uUys?t=174"); assertTrue(Integer.toString(extractor.getTimeStamp()), extractor.getTimeStamp() == 174); } @@ -108,7 +107,7 @@ public class YoutubeStreamExtractorDefaultTest extends AndroidTestCase { } public void testStreamType() throws ParsingException { - assertTrue(extractor.getStreamType() == AbstractVideoInfo.StreamType.VIDEO_STREAM); + assertTrue(extractor.getStreamType() == AbstractStreamInfo.StreamType.VIDEO_STREAM); } public void testGetDashMpd() throws ParsingException { diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorGemaTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorGemaTest.java index 800128ec8..0d150cd22 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorGemaTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorGemaTest.java @@ -3,8 +3,8 @@ package org.schabi.newpipe.extractor.youtube; import android.test.AndroidTestCase; import org.schabi.newpipe.Downloader; -import org.schabi.newpipe.extractor.ExtractionException; import org.schabi.newpipe.extractor.NewPipe; +import org.schabi.newpipe.extractor.exceptions.ExtractionException; import org.schabi.newpipe.extractor.services.youtube.YoutubeStreamExtractor; import java.io.IOException; @@ -40,8 +40,7 @@ public class YoutubeStreamExtractorGemaTest extends AndroidTestCase { if(testActive) { try { NewPipe.getService("Youtube") - .getExtractorInstance("https://www.youtube.com/watch?v=3O1_3zBUKM8", - new Downloader()); + .getExtractorInstance("https://www.youtube.com/watch?v=3O1_3zBUKM8"); } catch(YoutubeStreamExtractor.GemaException ge) { assertTrue(true); } diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorLiveStreamTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorLiveStreamTest.java index 3c0fbce11..dca969442 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorLiveStreamTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorLiveStreamTest.java @@ -2,9 +2,10 @@ package org.schabi.newpipe.extractor.youtube; import android.test.AndroidTestCase; -import org.schabi.newpipe.extractor.ExtractionException; -import org.schabi.newpipe.extractor.ParsingException; -import org.schabi.newpipe.extractor.StreamExtractor; + +import org.schabi.newpipe.extractor.exceptions.ExtractionException; +import org.schabi.newpipe.extractor.exceptions.ParsingException; +import org.schabi.newpipe.extractor.stream_info.StreamExtractor; import java.io.IOException; diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorRestrictedTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorRestrictedTest.java index 07121fa12..ec2f6618e 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorRestrictedTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeStreamExtractorRestrictedTest.java @@ -2,11 +2,10 @@ package org.schabi.newpipe.extractor.youtube; import android.test.AndroidTestCase; -import org.schabi.newpipe.Downloader; -import org.schabi.newpipe.extractor.ExtractionException; import org.schabi.newpipe.extractor.NewPipe; -import org.schabi.newpipe.extractor.ParsingException; -import org.schabi.newpipe.extractor.StreamExtractor; +import org.schabi.newpipe.extractor.exceptions.ExtractionException; +import org.schabi.newpipe.extractor.exceptions.ParsingException; +import org.schabi.newpipe.extractor.stream_info.StreamExtractor; import org.schabi.newpipe.extractor.stream_info.VideoStream; import java.io.IOException; @@ -17,8 +16,7 @@ public class YoutubeStreamExtractorRestrictedTest extends AndroidTestCase { public void setUp() throws IOException, ExtractionException { extractor = NewPipe.getService("Youtube") - .getExtractorInstance("https://www.youtube.com/watch?v=i6JTvzrpBy0", - new Downloader()); + .getExtractorInstance("https://www.youtube.com/watch?v=i6JTvzrpBy0"); } public void testGetInvalidTimeStamp() throws ParsingException { @@ -28,8 +26,7 @@ public class YoutubeStreamExtractorRestrictedTest extends AndroidTestCase { public void testGetValidTimeStamp() throws ExtractionException, IOException { StreamExtractor extractor= NewPipe.getService("Youtube") - .getExtractorInstance("https://youtu.be/FmG385_uUys?t=174", - new Downloader()); + .getExtractorInstance("https://youtu.be/FmG385_uUys?t=174"); assertTrue(Integer.toString(extractor.getTimeStamp()), extractor.getTimeStamp() == 174); } @@ -73,7 +70,8 @@ public class YoutubeStreamExtractorRestrictedTest extends AndroidTestCase { } public void testGetAudioStreams() throws ParsingException { - assertTrue(!extractor.getAudioStreams().isEmpty()); + // audiostream not always necessary + //assertTrue(!extractor.getAudioStreams().isEmpty()); } public void testGetVideoStreams() throws ParsingException {