View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.module.pgp;
8   
9   import org.mule.DefaultMuleMessage;
10  import org.mule.api.MuleMessage;
11  import org.mule.module.client.MuleClient;
12  import org.mule.tck.junit4.FunctionalTestCase;
13  
14  import org.junit.Test;
15  
16  import static org.junit.Assert.assertEquals;
17  
18  public class PGPIntegrationTestCase extends FunctionalTestCase
19  {
20  
21      @Override
22      protected String getConfigResources()
23      {
24          return "pgp-integration-mule-config.xml";
25      }
26  
27      @Test
28      public void testEncryptDecrypt() throws Exception
29      {
30          String payload = "this is a super simple test. Hope it works!!!";
31          MuleClient client = new MuleClient(muleContext);
32          
33          client.send("vm://in", new DefaultMuleMessage(payload, muleContext));
34          MuleMessage message = client.request("vm://out", 5000);
35          assertEquals(payload, message.getPayloadAsString());
36      }
37  
38  }