You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by wi...@apache.org on 2014/01/23 21:09:49 UTC

git commit: updated refs/heads/master to dad98ef

Updated Branches:
  refs/heads/master 50b6de471 -> dad98ef4d


test: Add UnitTest for LibvirtSecretDef


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/dad98ef4
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/dad98ef4
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/dad98ef4

Branch: refs/heads/master
Commit: dad98ef4de9a1acf72a94854048b57cd51ae28d6
Parents: 50b6de4
Author: Wido den Hollander <wi...@42on.com>
Authored: Thu Jan 23 21:09:25 2014 +0100
Committer: Wido den Hollander <wi...@42on.com>
Committed: Thu Jan 23 21:09:25 2014 +0100

----------------------------------------------------------------------
 .../kvm/resource/LibvirtSecretDefTest.java      | 55 ++++++++++++++++++++
 1 file changed, 55 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/dad98ef4/plugins/hypervisors/kvm/test/com/cloud/hypervisor/kvm/resource/LibvirtSecretDefTest.java
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/kvm/test/com/cloud/hypervisor/kvm/resource/LibvirtSecretDefTest.java b/plugins/hypervisors/kvm/test/com/cloud/hypervisor/kvm/resource/LibvirtSecretDefTest.java
new file mode 100644
index 0000000..54036b3
--- /dev/null
+++ b/plugins/hypervisors/kvm/test/com/cloud/hypervisor/kvm/resource/LibvirtSecretDefTest.java
@@ -0,0 +1,55 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+
+package com.cloud.hypervisor.kvm.resource;
+
+import junit.framework.TestCase;
+import com.cloud.hypervisor.kvm.resource.LibvirtSecretDef.usage;
+
+public class LibvirtSecretDefTest extends TestCase {
+
+    public void testVolumeSecretDef() {
+        String uuid = "db66f42b-a79e-4666-9910-9dfc8a024427";
+        String name = "myEncryptedQCOW2";
+        usage use = usage.VOLUME;
+
+        LibvirtSecretDef def = new LibvirtSecretDef(use, uuid);
+        def.setVolumeVolume(name);
+
+        String expectedXml = "<secret ephemeral='no' private='no'>\n<uuid>" + uuid + "</uuid>\n" +
+                             "<usage type='" + use.toString() + "'>\n<volume>" + name + "</volume>\n</usage>\n</secret>\n";
+
+        assertEquals(expectedXml, def.toString());
+    }
+
+    public void testCephSecretDef() {
+        String uuid = "a9febe83-ac5c-467a-bf19-eb75325ec23c";
+        String name = "admin";
+        usage use = usage.CEPH;
+
+        LibvirtSecretDef def = new LibvirtSecretDef(use, uuid);
+        def.setCephName(name);
+
+        String expectedXml = "<secret ephemeral='no' private='no'>\n<uuid>" + uuid + "</uuid>\n" +
+                             "<usage type='" + use.toString() + "'>\n<name>" + name + "</name>\n</usage>\n</secret>\n";
+
+        assertEquals(expectedXml, def.toString());
+    }
+
+}
\ No newline at end of file