# # Author:: Daniel DeLeo (dan@chef.io) # Copyright:: Copyright (c) 2014-2016 Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed 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 CONDIT"Net::HTTP Response"NS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require "spec_helper" require "ohai/plugins/openstack" describe "OpenStack Plugin" do let(:openstack_hint) { false } let(:hp_hint) { false } let(:ohai_system) { Ohai::System.new } let(:ohai_data) { ohai_system.data } let(:openstack_plugin) do plugin = get_plugin("openstack", ohai_system) allow(plugin).to receive(:hint?).with("openstack").and_return(openstack_hint) allow(plugin).to receive(:hint?).with("hp").and_return(hp_hint) plugin end before do end context "when there is no relevant hint" do it "does not set any openstack data" do openstack_plugin.run expect(ohai_data).to_not have_key("openstack") end end context "when there is an `openstack` hint" do let(:openstack_hint) { true } context "and the metadata service is not available" do before do expect(openstack_plugin).to receive(:can_metadata_connect?). with(Ohai::Mixin::Ec2Metadata::EC2_METADATA_ADDR, 80). and_return(false) end it "does not set any openstack data" do openstack_plugin.run expect(ohai_data).to_not have_key("openstack") end end context "and the metadata service is available" do let(:metadata_version) { "2009-04-04" } let(:metadata_root) do < "r-4tjvl99h", "public-keys/" => "0=dan-default", "public-keys/0/" => "openssh-key", "public-keys/0/openssh-key" => "SSH KEY DATA", "security-groups" => "default", "public-ipv4" => "", "ami-manifest-path" => "FIXME", "instance-type" => "opc-tester", "instance-id" => "i-0000162a", "local-ipv4" => "172.31.7.23", "ari-id" => "ari-00000037", "local-hostname" => "ohai-7-system-test.opscode.us", "placement/" => "availability-zone", "placement/availability-zone" => "nova", "ami-launch-index" => "0", "public-hostname" => "ohai-7-system-test.opscode.us", "hostname" => "ohai-7-system-test.opscode.us", "ami-id" => "ami-00000035", "instance-action" => "none", "aki-id" => "aki-00000036", "block-device-mapping/" => "ami\nroot", "block-device-mapping/ami" => "vda", "block-device-mapping/root" => "/dev/vda", } end let(:openstack_metadata_version) { "2013-04-04" } let(:openstack_metadata_endpoint) { "http://169.254.169.254/openstack/" } let(:openstack_metadata_values) do '{ "availability_zone" : "nova", "hostname" : "ohai.novalocal", "launch_index" : 0, "meta" : { "priority" : "low", "role" : "ohaiserver" }, "name" : "ohai_spec", "public_keys" : { "mykey" : "SSH KEY DATA" }, "uuid" : "00000000-0000-0000-0000-100000000000" }' end let(:http_client) { double("Net::HTTP", :read_timeout= => nil) } def expect_get(url, response_body) expect(http_client).to receive(:get). with(url). and_return(double("HTTP Response", :code => "200", :body => response_body)) end def expect_get_response(url, response_body) expect(http_client).to receive(:get_response). with(url, nil, nil). and_return(double("HTTP Response", :code => "200", :body => response_body)) end before do expect(openstack_plugin).to receive(:can_metadata_connect?). with(Ohai::Mixin::Ec2Metadata::EC2_METADATA_ADDR, 80). and_return(true) allow(Net::HTTP).to receive(:start). with(Ohai::Mixin::Ec2Metadata::EC2_METADATA_ADDR). and_return(http_client) allow(openstack_plugin).to receive(:best_api_version).and_return(metadata_version) expect_get("/#{metadata_version}/meta-data/", metadata_root) metadata_values.each do |md_id, md_value| expect_get("/#{metadata_version}/meta-data/#{md_id}", md_value) end expect_get_response( URI.parse("#{openstack_metadata_endpoint}#{openstack_metadata_version}/meta_data.json"), openstack_metadata_values, ) openstack_plugin.run end it "reads the reservation_id from the metadata service" do expect(ohai_data["openstack"]["reservation_id"]).to eq("r-4tjvl99h") end it "reads the public_keys_0_openssh_key from the metadata service" do expect(ohai_data["openstack"]["public_keys_0_openssh_key"]).to eq("SSH KEY DATA") end it "reads the security_groups from the metadata service" do expect(ohai_data["openstack"]["security_groups"]).to eq(["default"]) end it "reads the public_ipv4 from the metadata service" do expect(ohai_data["openstack"]["public_ipv4"]).to eq("") end it "reads the ami_manifest_path from the metadata service" do expect(ohai_data["openstack"]["ami_manifest_path"]).to eq("FIXME") end it "reads the instance_type from the metadata service" do expect(ohai_data["openstack"]["instance_type"]).to eq("opc-tester") end it "reads the instance_id from the metadata service" do expect(ohai_data["openstack"]["instance_id"]).to eq("i-0000162a") end it "reads the local_ipv4 from the metadata service" do expect(ohai_data["openstack"]["local_ipv4"]).to eq("172.31.7.23") end it "reads the ari_id from the metadata service" do expect(ohai_data["openstack"]["ari_id"]).to eq("ari-00000037") end it "reads the local_hostname from the metadata service" do expect(ohai_data["openstack"]["local_hostname"]).to eq("ohai-7-system-test.opscode.us") end it "reads the placement_availability_zone from the metadata service" do expect(ohai_data["openstack"]["placement_availability_zone"]).to eq("nova") end it "reads the ami_launch_index from the metadata service" do expect(ohai_data["openstack"]["ami_launch_index"]).to eq("0") end it "reads the public_hostname from the metadata service" do expect(ohai_data["openstack"]["public_hostname"]).to eq("ohai-7-system-test.opscode.us") end it "reads the hostname from the metadata service" do expect(ohai_data["openstack"]["hostname"]).to eq("ohai-7-system-test.opscode.us") end it "reads the ami_id from the metadata service" do expect(ohai_data["openstack"]["ami_id"]).to eq("ami-00000035") end it "reads the instance_action from the metadata service" do expect(ohai_data["openstack"]["instance_action"]).to eq("none") end it "reads the aki_id from the metadata service" do expect(ohai_data["openstack"]["aki_id"]).to eq("aki-00000036") end it "reads the block_device_mapping_ami from the metadata service" do expect(ohai_data["openstack"]["block_device_mapping_ami"]).to eq("vda") end it "reads the block_device_mapping_root from the metadata service" do expect(ohai_data["openstack"]["block_device_mapping_root"]).to eq("/dev/vda") end it "reads the provider from the metadata service" do expect(ohai_data["openstack"]["provider"]).to eq("openstack") end context "Retreive openStack specific metadata" do it "reads the availability_zone from the openstack metadata service" do expect(ohai_data["openstack"]["metadata"]["availability_zone"]).to eq("nova") end it "reads the hostname from the openstack metadata service" do expect(ohai_data["openstack"]["metadata"]["hostname"]).to eq("ohai.novalocal") end it "reads the launch_index from the openstack metadata service" do expect(ohai_data["openstack"]["metadata"]["launch_index"]).to eq(0) end it "reads the meta from the openstack metadata service" do expect(ohai_data["openstack"]["metadata"]["meta"]).to eq({ "priority" => "low", "role" => "ohaiserver" }) end it "reads the name from the openstack metadata service" do expect(ohai_data["openstack"]["metadata"]["name"]).to eq("ohai_spec") end it "reads the public_keys from the openstack metadata service" do expect(ohai_data["openstack"]["metadata"]["public_keys"]).to eq({ "mykey" => "SSH KEY DATA" }) end it "reads the uuid from the openstack metadata service" do expect(ohai_data["openstack"]["metadata"]["uuid"]).to eq("00000000-0000-0000-0000-100000000000") end end end end end