/labs/fgcp/src/test/java/org/jclouds/fujitsu/fgcp/compute/FGCPRestClientModuleTest.java

http://github.com/jclouds/jclouds · Java · 95 lines · 39 code · 14 blank · 42 comment · 0 complexity · d43384e1f593d0ccd92d20db95201f01 MD5 · raw file

  1. /**
  2. * Licensed to jclouds, Inc. (jclouds) under one or more
  3. * contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. jclouds licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package org.jclouds.fujitsu.fgcp.compute;
  20. import static org.testng.Assert.assertNotNull;
  21. import java.io.IOException;
  22. import java.net.URL;
  23. import java.security.KeyStore;
  24. import java.security.KeyStoreException;
  25. import java.security.NoSuchAlgorithmException;
  26. import java.security.cert.CertificateException;
  27. import java.security.spec.InvalidKeySpecException;
  28. import org.jclouds.crypto.Crypto;
  29. import org.testng.annotations.BeforeTest;
  30. import org.testng.annotations.Test;
  31. import com.google.inject.Guice;
  32. import com.google.inject.Injector;
  33. /**
  34. * @author Dies Koper
  35. */
  36. @Test(groups = "unit", testName = "FGCPRestClientModuleTest")
  37. public class FGCPRestClientModuleTest {
  38. protected FGCPRestClientModule module;
  39. protected Crypto crypto;
  40. @BeforeTest
  41. protected void createCrypto() {
  42. Injector i = Guice.createInjector();
  43. crypto = i.getInstance(Crypto.class);
  44. }
  45. @BeforeTest
  46. protected void createRestClientModule() {
  47. Injector i = Guice.createInjector();
  48. module = i.getInstance(FGCPRestClientModule.class);
  49. }
  50. public void testKeyStoreAsPkcs12() throws IOException, InvalidKeySpecException, NoSuchAlgorithmException, KeyStoreException, CertificateException {
  51. assertNotNull(crypto);
  52. assertNotNull(module);
  53. // self-signed dummy cert:
  54. // keytool -genkey -alias test-fgcp -keyalg RSA -keysize 1024 -validity 5475 -dname "CN=localhost" -keystore jclouds-test-fgcp.p12 -storepass jcloudsjclouds -storetype pkcs12
  55. String cert = "/certs/jclouds-test-fgcp.p12";
  56. String keyPassword = "jcloudsjclouds";
  57. URL url = this.getClass().getResource(cert);
  58. String certPath = url.getFile();
  59. KeyStore ks = module.provideKeyStore(crypto, certPath, keyPassword);
  60. assertNotNull(ks.getCertificate("test-fgcp"), "cert with alias");
  61. }
  62. /* public void testKeyStoreAsPEM() throws IOException, InvalidKeySpecException, NoSuchAlgorithmException, KeyStoreException, CertificateException {
  63. assertNotNull(crypto);
  64. assertNotNull(module);
  65. //openssl pkcs12 -nodes -in jclouds-test-fgcp.p12 -out jclouds-test-fgcp.pem
  66. // String privKeyFilename = "D:\\UserCert.pem.pkcs12-nodes";//_nobags";
  67. String cert = "/certs/jclouds-test-fgcp.pem";
  68. String keyPassword = "jcloudsjclouds";
  69. URL url = this.getClass().getResource(cert);
  70. String certPath = url.getFile();
  71. Scanner scanner = new Scanner(new File(certPath));
  72. String content = scanner.useDelimiter("\\A").next();
  73. KeyStore ks = module.provideKeyStore(crypto, content, keyPassword);
  74. assertNotNull(ks.getCertificate("test-fgcp"), "cert with alias");
  75. }
  76. */
  77. }