diff options
author | Tarun Gupta <tarun1995gupta@gmail.com> | 2015-06-19 03:44:50 (GMT) |
---|---|---|
committer | Tarun Gupta <tarun1995gupta@gmail.com> | 2015-06-23 14:53:15 (GMT) |
commit | bc9dade982d8e8efe66c0fc814dafd8bf079e689 (patch) | |
tree | dd71e35abbf05a191a530d9d6ed421c5c0a1e5dd /test | |
parent | 45e302d354d663eed61de58325ac162182497046 (diff) | |
download | stroke-bc9dade982d8e8efe66c0fc814dafd8bf079e689.zip stroke-bc9dade982d8e8efe66c0fc814dafd8bf079e689.tar.bz2 |
Add ComponentHandshake Element.
Adds ComponentHandshake Element, its parser and Serializer.
Adds ComponentHandshake Generator.
Adds TopLevelElement.
Updates SafeByteArray.
License:
This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details.
Test-Information:
Test added for ComponentHandshakeGenerator, which passes.
Change-Id: If3026a3db2207e6c65aa2306fee56d8dd5dee86f
Diffstat (limited to 'test')
-rw-r--r-- | test/com/isode/stroke/component/ComponentHandshakeGeneratorTest.java | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/test/com/isode/stroke/component/ComponentHandshakeGeneratorTest.java b/test/com/isode/stroke/component/ComponentHandshakeGeneratorTest.java new file mode 100644 index 0000000..e5cdc84 --- /dev/null +++ b/test/com/isode/stroke/component/ComponentHandshakeGeneratorTest.java @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2010-2013 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ +/* + * Copyright (c) 2015 Tarun Gupta. + * Licensed under the simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + +package com.isode.stroke.component; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import org.junit.Test; +import org.junit.Before; +import com.isode.stroke.component.ComponentHandshakeGenerator; +import com.isode.stroke.crypto.JavaCryptoProvider; +import com.isode.stroke.crypto.CryptoProvider; + +public class ComponentHandshakeGeneratorTest { + + public ComponentHandshakeGeneratorTest() { + + } + + private CryptoProvider crypto; + + @Before + public void setUp() { + crypto = new JavaCryptoProvider(); + } + + @Test + public void testGetHandshake() { + String result = ComponentHandshakeGenerator.getHandshake("myid", "mysecret", crypto); + assertEquals("4011cd31f9b99ac089a0cd7ce297da7323fa2525", result); + } + + @Test + public void testGetHandshake_SpecialChars() { + String result = ComponentHandshakeGenerator.getHandshake("&<", ">'\"", crypto); + assertEquals("33631b3e0aaeb2a11c4994c917919324028873fe", result); + } +}
\ No newline at end of file |