/OldUniversityStuff/ZIKS/cryptix-openpgp-20050418-snap/tests/cryptix/openpgp/test/algorithm/PGPAlgorithmFactoryTest.java

https://bitbucket.org/Behemot/university-rep · Java · 400 lines · 242 code · 51 blank · 107 comment · 6 complexity · 5b25d1ff5d6311822f841ced332b361b MD5 · raw file

  1. /* $Id: PGPAlgorithmFactoryTest.java,v 1.2 2005/03/13 17:46:40 woudt Exp $
  2. *
  3. * Copyright (C) 1999-2005 The Cryptix Foundation Limited.
  4. * All rights reserved.
  5. *
  6. * Use, modification, copying and distribution of this software is subject
  7. * the terms and conditions of the Cryptix General Licence. You should have
  8. * received a copy of the Cryptix General License along with this library;
  9. * if not, you can download a copy from http://www.cryptix.org/ .
  10. */
  11. package cryptix.openpgp.test.algorithm;
  12. import junit.framework.TestCase;
  13. import junit.framework.TestSuite;
  14. import java.io.*;
  15. import cryptix.openpgp.algorithm.*;
  16. import cryptix.openpgp.algorithm.PGPAlgorithmFactory;
  17. import cryptix.openpgp.algorithm.PGPPublicKeyAlgorithm;
  18. import cryptix.openpgp.algorithm.PGPSigner;
  19. import cryptix.openpgp.algorithm.PGPEncryptor;
  20. import cryptix.openpgp.algorithm.PGPCompressor;
  21. import cryptix.openpgp.algorithm.PGPStringToKey;
  22. import java.security.MessageDigest;
  23. import javax.crypto.Cipher;
  24. /**
  25. * PGPAlgorithmFactoryTest (Copyright 2001 Cryptix Foundation)
  26. *
  27. * <p> This class performs unit tests on cryptix.openpgp.algorithm.PGPAlgorithmFactory </p>
  28. *
  29. * <p> Explanation about the tested class and its responsibilities </p>
  30. *
  31. * <p> Relations:
  32. * PGPAlgorithmFactory extends java.lang.Object <br>
  33. *
  34. * @author Erwin van der Koogh erwin@cryptix.org - Cryptix Foundation
  35. * @date $Date: 2005/03/13 17:46:40 $
  36. * @version $Revision: 1.2 $
  37. *
  38. * @see cryptix.openpgp.algorithm.PGPAlgorithmFactory
  39. */
  40. public class PGPAlgorithmFactoryTest extends TestCase
  41. {
  42. //Private variables
  43. private static final String fs = System.getProperty("file.separator");
  44. private PGPAlgorithmFactory pgpalgorithmfactory;
  45. private File testdir;
  46. /**
  47. * Constructor (needed for JTest)
  48. * @param name Name of Object
  49. */
  50. public PGPAlgorithmFactoryTest(String name) {
  51. super(name);
  52. String td = System.getProperty("CRYPTIX_OPENPGP_TESTDIR");
  53. if(td == null || "".equals(td) ) {
  54. testdir = new File(".", "testdata");
  55. }
  56. else {
  57. testdir = new File(td, "testdata");
  58. }
  59. }
  60. /**
  61. * Used by JUnit (called before each test method)
  62. */
  63. protected void setUp() {
  64. //pgpalgorithmfactory = new PGPAlgorithmFactory();
  65. }
  66. /**
  67. * Used by JUnit (called after each test method)
  68. */
  69. protected void tearDown() {
  70. pgpalgorithmfactory = null;
  71. }
  72. /**
  73. * Test the constructor: PGPAlgorithmFactory(int)
  74. */
  75. public void testPGPAlgorithmFactory_1() {
  76. //Must test for the following parameters!
  77. int intValues [] = {-1, 0, 1, Integer.MAX_VALUE, Integer.MIN_VALUE};
  78. }
  79. /**
  80. * Test all default values
  81. */
  82. public void testAllDefault() throws Exception{
  83. PGPAlgorithmFactory factory =
  84. new PGPAlgorithmFactory(PGPAlgorithmFactory.INIT_DEFAULT);
  85. PGPPublicKeyAlgorithm pka;
  86. PGPCompressor comp;
  87. PGPStringToKey s2k;
  88. MessageDigest md;
  89. Cipher ciph;
  90. pka = null;
  91. try {
  92. pka = factory.getPublicKeyAlgorithm(1);
  93. } catch (RuntimeException re) {
  94. re.printStackTrace();
  95. }
  96. assertTrue((pka instanceof PGPSigner) && (pka instanceof PGPEncryptor));
  97. pka = null;
  98. try {
  99. pka = factory.getPublicKeyAlgorithm(2);
  100. } catch (RuntimeException re) {
  101. }
  102. assertTrue((pka instanceof PGPEncryptor));
  103. pka = null;
  104. try {
  105. pka = factory.getPublicKeyAlgorithm(3);
  106. } catch (RuntimeException re) {
  107. }
  108. assertTrue((pka instanceof PGPSigner));
  109. pka = null;
  110. try {
  111. pka = factory.getPublicKeyAlgorithm(16);
  112. } catch (RuntimeException re) {
  113. }
  114. assertTrue((pka instanceof PGPEncryptor));
  115. pka = null;
  116. try {
  117. pka = factory.getPublicKeyAlgorithm(17);
  118. } catch (RuntimeException re) {
  119. }
  120. assertTrue((pka instanceof PGPSigner));
  121. pka = null;
  122. try {
  123. pka = factory.getPublicKeyAlgorithm(20);
  124. } catch (RuntimeException re) {
  125. }
  126. assertTrue((pka instanceof PGPSigner) && (pka instanceof PGPEncryptor));
  127. comp = null;
  128. try {
  129. comp = factory.getCompressionAlgorithm(0);
  130. } catch (RuntimeException re) {
  131. }
  132. assertTrue(comp instanceof PGPCompressor);
  133. /*
  134. comp = null;
  135. beginTest(" 1: ZIP");
  136. try {
  137. comp = factory.getCompressionAlgorithm(1);
  138. } catch (RuntimeException re) {
  139. }
  140. assertTrue(comp instanceof PGPCompressor);
  141. */
  142. comp = null;
  143. try {
  144. comp = factory.getCompressionAlgorithm(2);
  145. } catch (RuntimeException re) {
  146. }
  147. assertTrue(comp instanceof PGPCompressor);
  148. s2k = null;
  149. try {
  150. s2k = factory.getS2KAlgorithm(0);
  151. } catch (RuntimeException re) {
  152. }
  153. assertTrue(s2k instanceof PGPStringToKey);
  154. s2k = null;
  155. try {
  156. s2k = factory.getS2KAlgorithm(1);
  157. } catch (RuntimeException re) {
  158. }
  159. assertTrue(s2k instanceof PGPStringToKey);
  160. s2k = null;
  161. try {
  162. s2k = factory.getS2KAlgorithm(3);
  163. } catch (RuntimeException re) {
  164. }
  165. assertTrue(s2k instanceof PGPStringToKey);
  166. md = null;
  167. try {
  168. md = factory.getHashAlgorithm(1);
  169. } catch (RuntimeException re) {
  170. }
  171. assertTrue(md instanceof MessageDigest);
  172. md = null;
  173. try {
  174. md = factory.getHashAlgorithm(2);
  175. } catch (RuntimeException re) {
  176. }
  177. assertTrue(md instanceof MessageDigest);
  178. md = null;
  179. try {
  180. md = factory.getHashAlgorithm(3);
  181. } catch (RuntimeException re) {
  182. }
  183. assertTrue(md instanceof MessageDigest);
  184. /* md = null;
  185. beginTest(" 4: DW SHA");
  186. try {
  187. md = factory.getHashAlgorithm(4);
  188. } catch (RuntimeException re) {
  189. }
  190. assertTrue(md instanceof MessageDigest);
  191. */
  192. md = null;
  193. try {
  194. md = factory.getHashAlgorithm(5);
  195. } catch (RuntimeException re) {
  196. }
  197. assertTrue(md instanceof MessageDigest);
  198. md = null;
  199. try {
  200. md = factory.getHashAlgorithm(6);
  201. } catch (RuntimeException re) {
  202. }
  203. assertTrue(md instanceof MessageDigest);
  204. /* md = null;
  205. beginTest(" 7: HAVAL");
  206. try {
  207. md = factory.getHashAlgorithm(7);
  208. } catch (RuntimeException re) {
  209. }
  210. assertTrue(md instanceof MessageDigest);
  211. */
  212. ciph = null;
  213. // beginTest(" 1: IDEA /CFB");
  214. try {
  215. ciph = factory.getCipherAlgorithm(1, "CFB");
  216. } catch (RuntimeException re) {
  217. }
  218. assertTrue(ciph instanceof Cipher);
  219. ciph = null;
  220. // beginTest(" 2: TripleDES/CFB");
  221. try {
  222. ciph = factory.getCipherAlgorithm(2, "CFB");
  223. } catch (RuntimeException re) {
  224. }
  225. assertTrue(ciph instanceof Cipher);
  226. ciph = null;
  227. // beginTest(" 3: CAST5 /CFB");
  228. try {
  229. ciph = factory.getCipherAlgorithm(3, "CFB");
  230. } catch (RuntimeException re) {
  231. }
  232. assertTrue(ciph instanceof Cipher);
  233. ciph = null;
  234. // beginTest(" 4: Blowfish /CFB");
  235. try {
  236. ciph = factory.getCipherAlgorithm(4, "CFB");
  237. } catch (RuntimeException re) {
  238. }
  239. assertTrue(ciph instanceof Cipher);
  240. /* ciph = null;
  241. beginTest("5: SAFER /CFB");
  242. try {
  243. ciph = factory.getCipherAlgorithm(5, "CFB");
  244. } catch (RuntimeException re) {
  245. }
  246. assertTrue(ciph instanceof Cipher);
  247. */
  248. ciph = null;
  249. // beginTest(" 7: AES /CFB");
  250. try {
  251. ciph = factory.getCipherAlgorithm(9, "CFB");
  252. } catch (RuntimeException re) {
  253. }
  254. assertTrue(ciph instanceof Cipher);
  255. ciph = null;
  256. // beginTest(" 8: AES /CFB");
  257. try {
  258. ciph = factory.getCipherAlgorithm(9, "CFB");
  259. } catch (RuntimeException re) {
  260. }
  261. assertTrue(ciph instanceof Cipher);
  262. ciph = null;
  263. // beginTest(" 9: AES /CFB");
  264. try {
  265. ciph = factory.getCipherAlgorithm(9, "CFB");
  266. } catch (RuntimeException re) {
  267. }
  268. assertTrue(ciph instanceof Cipher);
  269. ciph = null;
  270. // beginTest("10: Twofish /CFB");
  271. try {
  272. ciph = factory.getCipherAlgorithm(10, "CFB");
  273. } catch (RuntimeException re) {
  274. }
  275. assertTrue(ciph instanceof Cipher);
  276. ciph = null;
  277. // beginTest(" 1: IDEA /OpenpgpCFB");
  278. try {
  279. ciph = factory.getCipherAlgorithm(1, "OpenpgpCFB");
  280. } catch (RuntimeException re) {
  281. }
  282. assertTrue(ciph instanceof Cipher);
  283. ciph = null;
  284. // beginTest(" 2: TripleDES/OpenpgpCFB");
  285. try {
  286. ciph = factory.getCipherAlgorithm(2, "OpenpgpCFB");
  287. } catch (RuntimeException re) {
  288. }
  289. assertTrue(ciph instanceof Cipher);
  290. ciph = null;
  291. // beginTest(" 3: CAST5 /OpenpgpCFB");
  292. try {
  293. ciph = factory.getCipherAlgorithm(3, "OpenpgpCFB");
  294. } catch (RuntimeException re) {
  295. }
  296. assertTrue(ciph instanceof Cipher);
  297. ciph = null;
  298. // beginTest(" 4: Blowfish /OpenpgpCFB");
  299. try {
  300. ciph = factory.getCipherAlgorithm(4, "OpenpgpCFB");
  301. } catch (RuntimeException re) {
  302. }
  303. assertTrue(ciph instanceof Cipher);
  304. /* ciph = null;
  305. beginTest(" 5: SAFER /OpenpgpCFB");
  306. try {
  307. ciph = factory.getCipherAlgorithm(5, "OpenpgpCFB");
  308. } catch (RuntimeException re) {
  309. }
  310. assertTrue(ciph instanceof Cipher);
  311. */
  312. ciph = null;
  313. // beginTest(" 7: AES /OpenpgpCFB");
  314. try {
  315. ciph = factory.getCipherAlgorithm(7, "OpenpgpCFB");
  316. } catch (RuntimeException re) {
  317. }
  318. assertTrue(ciph instanceof Cipher);
  319. ciph = null;
  320. // beginTest(" 8: AES /OpenpgpCFB");
  321. try {
  322. ciph = factory.getCipherAlgorithm(8, "OpenpgpCFB");
  323. } catch (RuntimeException re) {
  324. }
  325. assertTrue(ciph instanceof Cipher);
  326. ciph = null;
  327. // beginTest(" 9: AES /OpenpgpCFB");
  328. try {
  329. ciph = factory.getCipherAlgorithm(9, "OpenpgpCFB");
  330. } catch (RuntimeException re) {
  331. }
  332. assertTrue(ciph instanceof Cipher);
  333. ciph = null;
  334. // beginTest("10: Twofish /OpenpgpCFB");
  335. try {
  336. ciph = factory.getCipherAlgorithm(10, "OpenpgpCFB");
  337. } catch (RuntimeException re) {
  338. }
  339. assertTrue(ciph instanceof Cipher);
  340. }
  341. /**
  342. * Main method needed to make a self runnable class
  343. *
  344. * @param args This is required for main method
  345. */
  346. public static void main(String[] args) {
  347. junit.textui.TestRunner.run( new TestSuite(PGPAlgorithmFactoryTest.class) );
  348. }
  349. }