blob: eb38408469b79e53bc1de6809f2658f90b2afe42 [file] [log] [blame]
#
# 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.
$:.unshift File.join(File.dirname(__FILE__))
require "test_helper.rb"
class AddUserDataToMachine < CIMI::Test::Spec
RESOURCE_URI =
"http://schemas.dmtf.org/cimi/1/Machine"
ROOTS = ["machines", "machineImages", "machineConfigurations"]
#USER_DATA_CAPABILITY_URI = "http://schemas.dmtf.org/cimi/1/capability/Machine/userData"
# Check the Machine Resource metadata to confirm if user_data is supported
#need_rmd(RESOURCE_URI, "capabilities", USER_DATA_CAPABILITY_URI)
MiniTest::Unit.after_tests { teardown(@@created_resources, api.basic_auth) }
# Ensure test executes in test plan order
i_suck_and_my_tests_are_order_dependent!
# 1: Query the CEP
model :subject, :cache => true do |fmt|
cep(:accept => fmt)
end
# CEP.machines, CEP.machineConfigs and CEP.machineImages must be set
query_the_cep(ROOTS)
# 2: Create a new machine with user_data
cep_json = cep(:accept => :json)
# Discover machine create URI:
machine_add_uri = discover_uri_for("add", "machines")
machine_created = post(machine_add_uri,
"<MachineCreate>" +
"<name>cimi_machine_machex3</name>" +
"<description> created as part of tests/cimi/machex3_test </description>" +
"<machineTemplate>" +
"<machineConfig " +
"href=\"" + get_a(cep_json, "machineConfig") + "\"/>" +
"<machineImage " +
"href=\"" + get_a(cep_json, "machineImage") + "\"/>" +
"<userData>QmFzZS02NCBlbmNvZGVkIGRhdGE=</userData>" +
"</machineTemplate>" +
"</MachineCreate>",
:accept => :json, :content_type => :xml)
model :machine do |fmt|
get machine_created.json["id"], :accept => fmt
end
it "should add resource for cleanup", :only => :json do
@@created_resources[:machines] << machine_created.json["id"]
end
it "should have 201 or 202 return code" do
machine_created.code.must_be_one_of [201, 202]
end
# 3. Find the address for the machine
it "should return an ip address" do
s = Set.new ["STOPPED", "STARTED"]
machine = get(machine_created.json["id"], :accept=>:json)
5.times do |j|
break if s.include?(machine.json["state"].upcase)
puts machine.json["state"]
puts 'waiting for machine to be in a stable initial state'
sleep(5)
machine = get(machine_created.json["id"], :accept=>:json)
end unless s.include?(machine.json["state"].upcase)
# If the machine is created in the STOPPED state, start it
if machine.json["state"].upcase.eql?("STOPPED")
machine_stop_start(machine(:refetch => true), "start", "STARTED")
end
# Poll for the ip address
end
# Optional - Check that the user_data is available from the machine
it "should have user_data on the machine" do
# ssh to the machine
end
end