|
From: <pe...@us...> - 2003-11-22 00:23:51
|
Update of /cvsroot/neuclear/neuclear-id/src/test/org/neuclear/id
In directory sc8-pr-cvs1:/tmp/cvs-serv17112/src/test/org/neuclear/id
Modified Files:
SignedNamedCoreTest.java
Log Message:
All unit tests in commons, id and xmlsec now work.
AssetController now successfully processes payments in the unit test.
Payment Web App has working form that creates a TransferRequest presents it to the signer
and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust.
Index: SignedNamedCoreTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/test/org/neuclear/id/SignedNamedCoreTest.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SignedNamedCoreTest.java 21 Nov 2003 04:45:17 -0000 1.2
--- SignedNamedCoreTest.java 22 Nov 2003 00:23:48 -0000 1.3
***************
*** 3,8 ****
import junit.framework.TestCase;
import org.neuclear.commons.NeuClearException;
- import org.neuclear.commons.crypto.passphraseagents.GuiDialogAgent;
- import org.neuclear.commons.crypto.signers.DefaultSigner;
import org.neuclear.commons.crypto.signers.JCESigner;
import org.neuclear.commons.crypto.signers.TestCaseSigner;
--- 3,6 ----
***************
*** 34,37 ****
--- 32,41 ----
$Id$
$Log$
+ Revision 1.3 2003/11/22 00:23:48 pelle
+ All unit tests in commons, id and xmlsec now work.
+ AssetController now successfully processes payments in the unit test.
+ Payment Web App has working form that creates a TransferRequest presents it to the signer
+ and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust.
+
Revision 1.2 2003/11/21 04:45:17 pelle
EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
***************
*** 68,73 ****
builder.sign(name, signer);
assertTrue(builder.verifySignature(signer.getPublicKey(name)));
- assertTrue(builder.verifySignature(Identity.getRootPK()));
- assertTrue(builder.verifySignature(Identity.NEUROOT.getPublicKey()));
try {
final SignedNamedCore core = SignedNamedCore.read(builder.getElement());
--- 72,75 ----
|