1   /*
2    * $Id: Pop3sConnectorTestCase.java 7968 2007-08-21 12:01:57Z holger $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.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  
11  package org.mule.providers.email;
12  
13  import org.mule.umo.provider.UMOConnector;
14  
15  /**
16   * Simple tests for pulling from an IMAP server.
17   */
18  public class Pop3sConnectorTestCase extends AbstractReceivingMailConnectorTestCase
19  {
20      
21      public Pop3sConnectorTestCase() 
22      {
23          super("Pop3sConnector");
24      }
25      
26      public UMOConnector createConnector(boolean init) throws Exception
27      {
28          Pop3sConnector connector = new Pop3sConnector();
29          connector.setName(getConnectorName());
30          connector.setCheckFrequency(POLL_PERIOD_MS);
31          connector.setTrustStorePassword("password");
32          connector.setTrustStore("greenmail-truststore");
33          if (init)
34          {
35              connector.initialise();
36          }
37          return connector;
38      }
39  
40      public String getTestEndpointURI()
41      {
42          return getPop3sTestEndpointURI();
43      }
44  
45  }