Author: sgoeschl
Date: Tue Nov  1 04:38:11 2005
New Revision: 330046

URL: http://svn.apache.org/viewcvs?rev=330046&view=rev
Log:
Renamed the test since it has nothing to do with ECM container any longer

Added:
    
jakarta/turbine/core/trunk/src/test/org/apache/turbine/services/crypto/FulcrumCryptoServiceTest.java

Added: 
jakarta/turbine/core/trunk/src/test/org/apache/turbine/services/crypto/FulcrumCryptoServiceTest.java
URL: 
http://svn.apache.org/viewcvs/jakarta/turbine/core/trunk/src/test/org/apache/turbine/services/crypto/FulcrumCryptoServiceTest.java?rev=330046&view=auto
==============================================================================
--- 
jakarta/turbine/core/trunk/src/test/org/apache/turbine/services/crypto/FulcrumCryptoServiceTest.java
 (added)
+++ 
jakarta/turbine/core/trunk/src/test/org/apache/turbine/services/crypto/FulcrumCryptoServiceTest.java
 Tue Nov  1 04:38:11 2005
@@ -0,0 +1,96 @@
+package org.apache.turbine.services.crypto;

+

+/*

+ * Copyright 2001-2004 The Apache Software Foundation.

+ *

+ * 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.

+ */

+

+import org.apache.fulcrum.crypto.CryptoAlgorithm;

+import org.apache.fulcrum.crypto.CryptoService;

+import org.apache.turbine.services.ServiceManager;

+import org.apache.turbine.services.TurbineServices;

+import org.apache.turbine.test.BaseTestCase;

+import org.apache.turbine.util.TurbineConfig;

+

+/**

+ * Verifies the Fulcrum Crypto Service works properly in Turbine.

+ *

+ * @author <a href="mailto:[EMAIL PROTECTED]">Eric Pugh</a>

+ * @author <a href="mailto:[EMAIL PROTECTED]">Rafal Krzewski</a>

+ * @author <a href="mailto:[EMAIL PROTECTED]">Siegfried Goeschl</a>

+ * @version $Id: CryptoRunningInECMTest.java 222043 2004-12-06 17:47:33Z 
painter $

+ */

+public class FulcrumCryptoServiceTest extends BaseTestCase

+{

+    private static final String preDefinedInput = "Oeltanks";

+    private static TurbineConfig tc = null;

+    private CryptoService cryptoService;

+

+    public FulcrumCryptoServiceTest(String name) throws Exception

+    {

+        super(name);

+    }

+

+    public void testMd5()

+    {

+        String preDefinedResult = "XSop0mncK19Ii2r2CUe29w==";

+

+        try

+        {

+            CryptoAlgorithm ca =cryptoService.getCryptoAlgorithm("default");

+            ca.setCipher("MD5");

+            String output = ca.encrypt(preDefinedInput);

+            assertEquals("MD5 Encryption failed ", preDefinedResult, output);

+        }

+        catch (Exception e)

+        {

+            e.printStackTrace();

+            fail();

+        }

+    }

+

+    public void testSha1()

+    {

+        String preDefinedResult = "uVDiJHaavRYX8oWt5ctkaa7j1cw=";

+

+        try

+        {

+            CryptoAlgorithm ca = cryptoService.getCryptoAlgorithm("default");

+            ca.setCipher("SHA1");

+            String output = ca.encrypt(preDefinedInput);

+            assertEquals("SHA1 Encryption failed ", preDefinedResult, output);

+        }

+        catch (Exception e)

+        {

+            e.printStackTrace();

+            fail();

+        }

+    }

+    

+    public void setUp() throws Exception

+    {

+        tc = new TurbineConfig(".", 
"/conf/test/TestFulcrumComponents.properties");

+        tc.initialize();     

+        ServiceManager serviceManager = TurbineServices.getInstance();

+        cryptoService = (CryptoService) 
serviceManager.getService(CryptoService.ROLE);

+    }

+    

+    public void tearDown() throws Exception

+    {

+        if (tc != null)

+        {

+            tc.dispose();

+        }

+    }

+}




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to