GoogleTest.java
/*
* MediaModuleTest.java
* JUnit based test
*
* Created on March 29, 2006, 11:49 PM
*
* 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 com.rometools.modules.mediarss;
import java.io.InputStreamReader;
import java.net.URL;
import junit.framework.Test;
import junit.framework.TestSuite;
import com.rometools.modules.AbstractTestCase;
import com.rometools.rome.feed.synd.SyndEntry;
import com.rometools.rome.feed.synd.SyndFeed;
import com.rometools.rome.io.SyndFeedInput;
public class GoogleTest extends AbstractTestCase {
public GoogleTest(final String testName) {
super(testName);
}
public static Test suite() {
final TestSuite suite = new TestSuite(MediaModuleTest.class);
return suite;
}
public static void testGoogleVideo() throws Exception {
final SyndFeedInput input = new SyndFeedInput();
final SyndFeed feed = input.build(new InputStreamReader(new URL("http://video.google.com/videofeed?type=top100new&num=20&output=rss").openStream()));
for (final Object element : feed.getEntries()) {
final SyndEntry entry = (SyndEntry) element;
final MediaEntryModule m = (MediaEntryModule) entry.getModule(MediaModule.URI);
System.out.print(m);
}
}
}