View Javadoc

1   /*
2    * $Id: FileRssFeedConsumeTestCase.java 20320 2010-11-24 15:03:31Z dfeist $
3    * -------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  package org.mule.module.rss;
11  
12  import org.mule.tck.FunctionalTestCase;
13  
14  import java.io.File;
15  import java.io.FileOutputStream;
16  
17  public class FileRssFeedConsumeTestCase extends FunctionalTestCase
18  {
19      @Override
20      protected String getConfigResources()
21      {
22          return "file-rss-consume.xml";
23      }
24  
25      public void testConsumeFeedEntries() throws Exception
26      {
27          FileOutputStream fos = new FileOutputStream(new File(muleContext.getConfiguration().getWorkingDirectory(), "sample-feed.rss"));
28          String feed = loadResourceAsString("sample-feed.rss");
29          fos.write(feed.getBytes());
30          fos.close();
31  
32          Thread.sleep(3000);
33          EntryReceiver component = (EntryReceiver) getComponent("feedSplitterConsumer");
34          assertEquals(25, component.getCount());
35      }
36  
37  }