X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Frun.sh;h=d97a5c9caba43da30e8dcc153eea41d1cbb0308b;hb=8f72e695538c2281f923bdbf7a6d7b1d1763c70c;hp=325622218f5de13a961ee18f0b751d4aeea61f74;hpb=4ca434ef8df820f0eb3a8f12931352838ed25ed3;p=doctor.git diff --git a/tests/run.sh b/tests/run.sh index 32562221..d97a5c9c 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -17,10 +17,13 @@ IMAGE_URL=https://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64 IMAGE_NAME=${IMAGE_NAME:-cirros} IMAGE_FILE="${IMAGE_NAME}.img" IMAGE_FORMAT=qcow2 -VM_NAME=doctor_vm1 +VM_BASENAME=doctor_vm VM_FLAVOR=m1.tiny -ALARM_NAME=doctor_alarm1 -INSPECTOR_PORT=12345 +#if VM_COUNT set, use that instead +VM_COUNT=${VM_COUNT:-1} +NET_NAME=doctor_net +NET_CIDR=192.168.168.0/24 +ALARM_BASENAME=doctor_alarm CONSUMER_PORT=12346 DOCTOR_USER=doctor DOCTOR_PW=doctor @@ -32,14 +35,17 @@ PROFILER_TYPE=${PROFILER_TYPE:-none} TOP_DIR=$(cd $(dirname "$0") && pwd) as_doctor_user="--os-username $DOCTOR_USER --os-password $DOCTOR_PW - --os-tenant-name $DOCTOR_PROJECT" + --os-project-name $DOCTOR_PROJECT --os-tenant-name $DOCTOR_PROJECT" +# NOTE: ceilometer command still requires '--os-tenant-name'. +#ceilometer="ceilometer ${as_doctor_user/--os-project-name/--os-tenant-name}" +ceilometer="ceilometer $as_doctor_user" # Functions get_compute_host_info() { - # get computer host info which VM boot in - COMPUTE_HOST=$(openstack $as_doctor_user server show $VM_NAME | + # get computer host info which first VM boot in + COMPUTE_HOST=$(openstack $as_doctor_user server show ${VM_BASENAME}1 | grep "OS-EXT-SRV-ATTR:host" | awk '{ print $4 }') compute_host_in_undercloud=${COMPUTE_HOST%%.*} die_if_not_set $LINENO COMPUTE_HOST "Failed to get compute hostname" @@ -108,42 +114,80 @@ create_test_user() { openstack user create "$DOCTOR_USER" --password "$DOCTOR_PW" \ --project "$DOCTOR_PROJECT" } - openstack user role list "$DOCTOR_USER" --project "$DOCTOR_PROJECT" \ - | grep -q " $DOCTOR_ROLE " || { - openstack role add "$DOCTOR_ROLE" --user "$DOCTOR_USER" \ - --project "$DOCTOR_PROJECT" + openstack role show "$DOCTOR_ROLE" || { + openstack role create "$DOCTOR_ROLE" } + openstack role add "$DOCTOR_ROLE" --user "$DOCTOR_USER" \ + --project "$DOCTOR_PROJECT" + # tojuvone: openstack quota show is broken and have to use nova + # https://bugs.launchpad.net/manila/+bug/1652118 + # Note! while it is encouraged to use openstack client it has proven + # quite buggy. + # QUOTA=$(openstack quota show $DOCTOR_PROJECT) + DOCTOR_QUOTA=$(nova quota-show --tenant $DOCTOR_PROJECT) + # We make sure that quota allows number of instances and cores + OLD_INSTANCE_QUOTA=$(echo "${DOCTOR_QUOTA}" | grep " instances " | \ + awk '{print $4}') + if [ $OLD_INSTANCE_QUOTA -lt $VM_COUNT ]; then + openstack quota set --instances $VM_COUNT \ + $DOCTOR_USER + fi + OLD_CORES_QUOTA=$(echo "${DOCTOR_QUOTA}" | grep " cores " | \ + awk '{print $4}') + if [ $OLD_CORES_QUOTA -lt $VM_COUNT ]; then + openstack quota set --cores $VM_COUNT \ + $DOCTOR_USER + fi } boot_vm() { # test VM done with test user, so can test non-admin - openstack $as_doctor_user server list | grep -q " $VM_NAME " && return 0 - openstack $as_doctor_user server create --flavor "$VM_FLAVOR" \ - --image "$IMAGE_NAME" \ - "$VM_NAME" + + if ! openstack $as_doctor_user network show $NET_NAME; then + openstack $as_doctor_user network create $NET_NAME + fi + if ! openstack $as_doctor_user subnet show $NET_NAME; then + openstack $as_doctor_user subnet create $NET_NAME \ + --network $NET_NAME --subnet-range $NET_CIDR --no-dhcp + fi + net_id=$(openstack $as_doctor_user network show $NET_NAME -f value -c id) + + servers=$(openstack $as_doctor_user server list) + for i in `seq $VM_COUNT`; do + echo "${servers}" | grep -q " $VM_BASENAME$i " && continue + openstack $as_doctor_user server create --flavor "$VM_FLAVOR" \ + --image "$IMAGE_NAME" --nic net-id=$net_id "$VM_BASENAME$i" + done sleep 1 } create_alarm() { # get vm_id as test user - ceilometer $as_doctor_user alarm-list | grep -q " $ALARM_NAME " && return 0 - vm_id=$(openstack $as_doctor_user server list | grep " $VM_NAME " | awk '{print $2}') - # TODO(r-mibu): change notification endpoint from localhost to the consumer - # IP address (functest container). - ceilometer $as_doctor_user alarm-event-create --name "$ALARM_NAME" \ - --alarm-action "http://localhost:$CONSUMER_PORT/failure" \ - --description "VM failure" \ - --enabled True \ - --repeat-actions False \ - --severity "moderate" \ - --event-type compute.instance.update \ - -q "traits.state=string::error; traits.instance_id=string::$vm_id" + alarm_list=$($ceilometer alarm-list) + vms=$(openstack $as_doctor_user server list) + for i in `seq $VM_COUNT`; do + echo "${alarm_list}" | grep -q " $ALARM_BASENAME$i " || { + vm_id=$(echo "${vms}" | grep " $VM_BASENAME$i " | awk '{print $2}') + # TODO(r-mibu): change notification endpoint from localhost to the + # consumer. IP address (functest container). + $ceilometer alarm-event-create \ + --name "$ALARM_BASENAME$i" \ + --alarm-action "http://localhost:$CONSUMER_PORT/failure" \ + --description "VM failure" \ + --enabled True \ + --repeat-actions False \ + --severity "moderate" \ + --event-type compute.instance.update \ + -q "traits.state=string::error; \ + traits.instance_id=string::$vm_id" + } + done } start_monitor() { pgrep -f "python monitor.py" && return 0 sudo -E python monitor.py "$COMPUTE_HOST" "$COMPUTE_IP" "$INSPECTOR_TYPE" \ - "http://127.0.0.1:$INSPECTOR_PORT/events" > monitor.log 2>&1 & + > monitor.log 2>&1 & } stop_monitor() { @@ -189,19 +233,31 @@ wait_for_vm_launch() { count=0 while [[ ${count} -lt 60 ]] do - state=$(openstack $as_doctor_user server list | grep " $VM_NAME " | awk '{print $6}') - if [[ "$state" == "ACTIVE" ]]; then - # NOTE(cgoncalves): sleeping for a bit to stabilize - # See python-openstackclient/functional/tests/compute/v2/test_server.py:wait_for_status - sleep 5 + active_count=0 + vms=$(openstack $as_doctor_user server list) + for i in `seq $VM_COUNT`; do + state=$(echo "${vms}" | grep " $VM_BASENAME$i " | awk '{print $6}') + if [[ "$state" == "ACTIVE" ]]; then + active_count=$(($active_count+1)) + elif [[ "$state" == "ERROR" ]]; then + die $LINENO "vm state $VM_BASENAME$i is ERROR" + else + #This VM not yet active + count=$(($count+1)) + sleep 5 + continue + fi + done + [[ $active_count -eq $VM_COUNT ]] && { + echo "get computer host info..." + get_compute_host_info + VMS_ON_FAILED_HOST=$(openstack $as_doctor_user server list --host \ + $COMPUTE_HOST | grep " ${VM_BASENAME}" | wc -l) return 0 - fi - if [[ "$state" == "ERROR" ]]; then - openstack $as_doctor_user server show $VM_NAME - die $LINENO "vm state is ERROR" - fi + } + #Not all VMs active count=$(($count+1)) - sleep 1 + sleep 5 done die $LINENO "Time out while waiting for VM launch" } @@ -227,17 +283,27 @@ END_TXT triggered=$(date "+%s.%N") } -calculate_notification_time() { - if ! grep -q "doctor consumer notified at" consumer.log ; then - die $LINENO "Consumer hasn't received fault notification." - fi +wait_consumer() { + local interval=1 + local rounds=$(($1 / $interval)) + for i in `seq $rounds`; do + notified_count=$(grep "doctor consumer notified at" consumer.log | wc -l) + if [[ $notified_count -eq $VMS_ON_FAILED_HOST ]]; then + return 0 + fi + sleep $interval + done + die $LINENO "Consumer hasn't received fault notification." +} +calculate_notification_time() { + wait_consumer 60 #keep 'at' as the last keyword just before the value, and #use regex to get value instead of the fixed column detected=$(grep "doctor monitor detected at" monitor.log |\ sed -e "s/^.* at //") notified=$(grep "doctor consumer notified at" consumer.log |\ - sed -e "s/^.* at //") + sed -e "s/^.* at //" | tail -1) echo "$notified $detected" | \ awk '{ @@ -248,39 +314,62 @@ calculate_notification_time() { } check_host_status() { + # Check host related to first Doctor VM is in wanted state + # $1 Expected state + # $2 Seconds to wait to have wanted state expected_state=$1 - - host_status_line=$(openstack $as_doctor_user --os-compute-api-version 2.16 \ - server show $VM_NAME | grep "host_status") - host_status=$(echo $host_status_line | awk '{print $4}') - die_if_not_set $LINENO host_status "host_status not reported by: nova show $VM_NAME" + local interval=5 + local rounds=$(($2 / $interval)) + for i in `seq $rounds`; do + host_status_line=$(openstack $as_doctor_user --os-compute-api-version \ + 2.16 server show ${VM_BASENAME}1 | grep "host_status") + host_status=$(echo $host_status_line | awk '{print $4}') + die_if_not_set $LINENO host_status "host_status not reported by: nova show ${VM_BASENAME}1" + if [[ "$expected_state" =~ "$host_status" ]] ; then + echo "${VM_BASENAME}1 showing host_status: $host_status" + return 0 + else + sleep $interval + fi + done if [[ "$expected_state" =~ "$host_status" ]] ; then - echo "$VM_NAME showing host_status: $host_status" + echo "${VM_BASENAME}1 showing host_status: $host_status" else - die $LINENO "host_status:$host_status not equal to expected_state: $expected_state" + die $LINENO "host_status:$host_status not equal to expected_state: $expected_state" fi } unset_forced_down_hosts() { - for host in $(openstack compute service list --service nova-compute \ - -f value -c Host -c State | sed -n -e '/down$/s/ *down$//p') + # for debug + openstack compute service list --service nova-compute + + downed_computes=$(openstack compute service list --service nova-compute \ + -f value -c Host -c State | grep ' down$' \ + | sed -e 's/ *down$//') + echo "downed_computes: $downed_computes" + for host in $downed_computes do - # TODO (r-mibu): make sample inspector use keystone v3 api - OS_AUTH_URL=${OS_AUTH_URL/v3/v2.0} \ - python ./nova_force_down.py $host --unset + # TODO(r-mibu): use openstack client + #openstack compute service set --up $host nova-compute + nova service-force-down --unset $host nova-compute done echo "waiting disabled compute host back to be enabled..." wait_until 'openstack compute service list --service nova-compute -f value -c State | grep -q down' 240 5 + + for host in $downed_computes + do + # TODO(r-mibu): improve 'get_compute_ip_from_hostname' + get_compute_ip_from_hostname $host + wait_until "! ping -c 1 $COMPUTE_IP" 120 5 + done } collect_logs() { - unset_forced_down_hosts - # TODO: We need to make sure the target compute host is back to IP - # reachable. wait_ping() will be added by tojuvone . - sleep 110 - scp $ssh_opts_cpu "$COMPUTE_USER@$COMPUTE_IP:disable_network.log" . + if [[ -n "$COMPUTE_IP" ]];then + scp $ssh_opts_cpu "$COMPUTE_USER@$COMPUTE_IP:disable_network.log" . + fi # TODO(yujunz) collect other logs, e.g. nova, aodh } @@ -320,18 +409,24 @@ cleanup() { stop_consumer unset_forced_down_hosts - # TODO: We need to make sure the target compute host is back to IP - # reachable. wait_ping() will be added by tojuvone . - sleep 110 - if is_set COMPUTE_IP; then - scp $ssh_opts_cpu "$COMPUTE_USER@$COMPUTE_IP:disable_network.log" . - fi + collect_logs - openstack $as_doctor_user server list | grep -q " $VM_NAME " && openstack $as_doctor_user server delete "$VM_NAME" - sleep 1 - alarm_id=$(ceilometer $as_doctor_user alarm-list | grep " $ALARM_NAME " | awk '{print $2}') + vms=$(openstack $as_doctor_user server list) + vmstodel="" + for i in `seq $VM_COUNT`; do + $(echo "${vms}" | grep -q " $VM_BASENAME$i ") && + vmstodel+=" $VM_BASENAME$i" + done + [[ $vmstodel ]] && openstack $as_doctor_user server delete $vmstodel + alarm_list=$($ceilometer alarm-list) + for i in `seq $VM_COUNT`; do + alarm_id=$(echo "${alarm_list}" | grep " $ALARM_BASENAME$i " | + awk '{print $2}') + [ -n "$alarm_id" ] && $ceilometer alarm-delete "$alarm_id" + done + openstack $as_doctor_user subnet delete $NET_NAME sleep 1 - [ -n "$alarm_id" ] && ceilometer $as_doctor_user alarm-delete "$alarm_id" + openstack $as_doctor_user network delete $NET_NAME sleep 1 image_id=$(openstack image list | grep " $IMAGE_NAME " | awk '{print $2}') @@ -344,9 +439,20 @@ cleanup() { --project "$DOCTOR_PROJECT" openstack project delete "$DOCTOR_PROJECT" openstack user delete "$DOCTOR_USER" + # NOTE: remove role only for doctor test. + #openstack role delete "$DOCTOR_ROLE" cleanup_installer cleanup_inspector + + # NOTE: Temporal log printer. + for f in $(find . -name '*.log') + do + echo + echo "[$f]" + sed -e 's/^/ | /' $f + echo + done } # Main process @@ -373,9 +479,6 @@ echo "creating VM..." boot_vm wait_for_vm_launch -echo "get computer host info..." -get_compute_host_info - echo "creating alarm..." #TODO: change back to use, network problems depends on infra and installers #get_consumer_ip @@ -389,10 +492,10 @@ start_consumer sleep 60 echo "injecting host failure..." inject_failure -sleep 60 -check_host_status "(DOWN|UNKNOWN)" +check_host_status "(DOWN|UNKNOWN)" 60 calculate_notification_time +unset_forced_down_hosts collect_logs run_profiler