]> git.proxmox.com Git - pve-ha-manager.git/commitdiff
add service addition and deletion regression tests
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 7 Jan 2016 10:34:50 +0000 (11:34 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 8 Jan 2016 08:53:07 +0000 (09:53 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
14 files changed:
src/PVE/HA/Sim/Hardware.pm
src/PVE/HA/Sim/TestHardware.pm
src/test/test-service-command5/README [new file with mode: 0644]
src/test/test-service-command5/cmdlist [new file with mode: 0644]
src/test/test-service-command5/hardware_status [new file with mode: 0644]
src/test/test-service-command5/log.expect [new file with mode: 0644]
src/test/test-service-command5/manager_status [new file with mode: 0644]
src/test/test-service-command5/service_config [new file with mode: 0644]
src/test/test-service-command6/README [new file with mode: 0644]
src/test/test-service-command6/cmdlist [new file with mode: 0644]
src/test/test-service-command6/hardware_status [new file with mode: 0644]
src/test/test-service-command6/log.expect [new file with mode: 0644]
src/test/test-service-command6/manager_status [new file with mode: 0644]
src/test/test-service-command6/service_config [new file with mode: 0644]

index adccf2533873aa53c5243880d9144d5b21416385..cfeba7efde97c9d7affe856bcb3f1be3ed88bb62 100644 (file)
@@ -127,6 +127,33 @@ sub set_service_state {
     return $conf;
 }
 
+sub add_service {
+    my ($self, $sid, $opts) = @_;
+
+    my $conf = $self->read_service_config();
+    die "resource ID '$sid' already defined\n" if $conf->{$sid};
+
+    $conf->{$sid} = $opts;
+
+    $self->write_service_config($conf);
+
+    return $conf;
+}
+
+sub delete_service {
+    my ($self, $sid) = @_;
+
+    my $conf = $self->read_service_config();
+
+    die "no such service '$sid'" if !$conf->{$sid};
+
+    delete $conf->{$sid};
+
+    $self->write_service_config($conf);
+
+    return $conf;
+}
+
 sub change_service_location {
     my ($self, $sid, $current_node, $new_node) = @_;
 
index 6ba9404a8ebbaf30ec31e02741e850fcb6ea9e94..d7f4efb592ab1860bd1af47db95fef70dc440462 100644 (file)
@@ -172,6 +172,14 @@ sub sim_hardware_cmd {
 
                $self->queue_crm_commands_nolock("$action $sid $target");
 
+           } elsif ($action eq 'add') {
+
+               $self->add_service($sid, {state => 'enabled', node => $target});
+
+           } elsif ($action eq 'delete') {
+
+               $self->delete_service($sid);
+
            } else {
                die "sim_hardware_cmd: unknown service action '$action' " .
                    "- not implemented\n"
diff --git a/src/test/test-service-command5/README b/src/test/test-service-command5/README
new file mode 100644 (file)
index 0000000..e446ede
--- /dev/null
@@ -0,0 +1 @@
+Test user triggered service deletion.
diff --git a/src/test/test-service-command5/cmdlist b/src/test/test-service-command5/cmdlist
new file mode 100644 (file)
index 0000000..8ecc4db
--- /dev/null
@@ -0,0 +1,4 @@
+[
+    [ "power node1 on", "power node2 on", "power node3 on"],
+    [ "service vm:103 delete" ]
+]
diff --git a/src/test/test-service-command5/hardware_status b/src/test/test-service-command5/hardware_status
new file mode 100644 (file)
index 0000000..451beb1
--- /dev/null
@@ -0,0 +1,5 @@
+{
+  "node1": { "power": "off", "network": "off" },
+  "node2": { "power": "off", "network": "off" },
+  "node3": { "power": "off", "network": "off" }
+}
diff --git a/src/test/test-service-command5/log.expect b/src/test/test-service-command5/log.expect
new file mode 100644 (file)
index 0000000..1bf014e
--- /dev/null
@@ -0,0 +1,25 @@
+info      0     hardware: starting simulation
+info     20      cmdlist: execute power node1 on
+info     20    node1/crm: status change startup => wait_for_quorum
+info     20    node1/lrm: status change startup => wait_for_agent_lock
+info     20      cmdlist: execute power node2 on
+info     20    node2/crm: status change startup => wait_for_quorum
+info     20    node2/lrm: status change startup => wait_for_agent_lock
+info     20      cmdlist: execute power node3 on
+info     20    node3/crm: status change startup => wait_for_quorum
+info     20    node3/lrm: status change startup => wait_for_agent_lock
+info     20    node1/crm: got lock 'ha_manager_lock'
+info     20    node1/crm: status change wait_for_quorum => master
+info     20    node1/crm: node 'node1': state changed from 'unknown' => 'online'
+info     20    node1/crm: node 'node2': state changed from 'unknown' => 'online'
+info     20    node1/crm: node 'node3': state changed from 'unknown' => 'online'
+info     20    node1/crm: adding new service 'vm:103' on node 'node3'
+info     22    node2/crm: status change wait_for_quorum => slave
+info     24    node3/crm: status change wait_for_quorum => slave
+info     25    node3/lrm: got lock 'ha_agent_node3_lock'
+info     25    node3/lrm: status change wait_for_agent_lock => active
+info     25    node3/lrm: starting service vm:103
+info     25    node3/lrm: service status vm:103 started
+info    120      cmdlist: execute service vm:103 delete
+info    120    node1/crm: removing stale service 'vm:103' (no config)
+info    720     hardware: exit simulation - done
diff --git a/src/test/test-service-command5/manager_status b/src/test/test-service-command5/manager_status
new file mode 100644 (file)
index 0000000..0967ef4
--- /dev/null
@@ -0,0 +1 @@
+{}
diff --git a/src/test/test-service-command5/service_config b/src/test/test-service-command5/service_config
new file mode 100644 (file)
index 0000000..c6860e7
--- /dev/null
@@ -0,0 +1,3 @@
+{
+    "vm:103": { "node": "node3", "state": "enabled" }
+}
diff --git a/src/test/test-service-command6/README b/src/test/test-service-command6/README
new file mode 100644 (file)
index 0000000..bdf319e
--- /dev/null
@@ -0,0 +1 @@
+Test user triggered service addition.
diff --git a/src/test/test-service-command6/cmdlist b/src/test/test-service-command6/cmdlist
new file mode 100644 (file)
index 0000000..86840cc
--- /dev/null
@@ -0,0 +1,4 @@
+[
+    [ "power node1 on", "power node2 on", "power node3 on"],
+    [ "service vm:103 add node1" ]
+]
diff --git a/src/test/test-service-command6/hardware_status b/src/test/test-service-command6/hardware_status
new file mode 100644 (file)
index 0000000..451beb1
--- /dev/null
@@ -0,0 +1,5 @@
+{
+  "node1": { "power": "off", "network": "off" },
+  "node2": { "power": "off", "network": "off" },
+  "node3": { "power": "off", "network": "off" }
+}
diff --git a/src/test/test-service-command6/log.expect b/src/test/test-service-command6/log.expect
new file mode 100644 (file)
index 0000000..947723a
--- /dev/null
@@ -0,0 +1,24 @@
+info      0     hardware: starting simulation
+info     20      cmdlist: execute power node1 on
+info     20    node1/crm: status change startup => wait_for_quorum
+info     20    node1/lrm: status change startup => wait_for_agent_lock
+info     20      cmdlist: execute power node2 on
+info     20    node2/crm: status change startup => wait_for_quorum
+info     20    node2/lrm: status change startup => wait_for_agent_lock
+info     20      cmdlist: execute power node3 on
+info     20    node3/crm: status change startup => wait_for_quorum
+info     20    node3/lrm: status change startup => wait_for_agent_lock
+info     20    node1/crm: got lock 'ha_manager_lock'
+info     20    node1/crm: status change wait_for_quorum => master
+info     20    node1/crm: node 'node1': state changed from 'unknown' => 'online'
+info     20    node1/crm: node 'node2': state changed from 'unknown' => 'online'
+info     20    node1/crm: node 'node3': state changed from 'unknown' => 'online'
+info     22    node2/crm: status change wait_for_quorum => slave
+info     24    node3/crm: status change wait_for_quorum => slave
+info    120      cmdlist: execute service vm:103 add node1
+info    120    node1/crm: adding new service 'vm:103' on node 'node1'
+info    121    node1/lrm: got lock 'ha_agent_node1_lock'
+info    121    node1/lrm: status change wait_for_agent_lock => active
+info    121    node1/lrm: starting service vm:103
+info    121    node1/lrm: service status vm:103 started
+info    720     hardware: exit simulation - done
diff --git a/src/test/test-service-command6/manager_status b/src/test/test-service-command6/manager_status
new file mode 100644 (file)
index 0000000..0967ef4
--- /dev/null
@@ -0,0 +1 @@
+{}
diff --git a/src/test/test-service-command6/service_config b/src/test/test-service-command6/service_config
new file mode 100644 (file)
index 0000000..0967ef4
--- /dev/null
@@ -0,0 +1 @@
+{}