Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetch the user-data on Alibaba Cloud correctly #1766

Closed
wants to merge 9 commits into from
9 changes: 6 additions & 3 deletions lib/ohai/mixin/alibaba_metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,21 @@ def http_get(uri)
conn.get("/2016-01-01/#{uri}", { "User-Agent" => "chef-ohai/#{Ohai::VERSION}" })
end

def fetch_metadata(id = "")
def fetch_metadata(id = "", is_dir = true)
ETiV marked this conversation as resolved.
Show resolved Hide resolved
response = http_get(id)
return nil unless response.code == "200"

if json?(response.body)
data = String(response.body)
parser = FFI_Yajl::Parser.new
parser.parse(data)
elsif response.body.include?("\n")
elsif id == "/user-data" || !is_dir
response.body
elsif response.body.include?("\n") || is_dir
temp = {}
response.body.split("\n").each do |sub_attr|
temp[sanitize_key(sub_attr)] = fetch_metadata("#{id}/#{sub_attr}")
# the top-level (when id == "") URL has no trailing slash, but apparently it's a directory (except user-data)
temp[sanitize_key(sub_attr).gsub(/_$/, "")] = fetch_metadata("#{id}/#{sub_attr}", id == "" || has_trailing_slash?(sub_attr))
end
temp
else
Expand Down
167 changes: 167 additions & 0 deletions spec/unit/mixin/alibaba_metadata_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
#
# Author:: ETiV Wang <[email protected]>
# Copyright:: Copyright (c) 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/mixin/alibaba_metadata"

describe Ohai::Mixin::AlibabaMetadata do
let(:mixin) do
metadata_object = Object.new.extend(described_class)
conn = double("Net::HTTP client")
allow(conn).to receive(:get).and_return(response)
allow(metadata_object).to receive(:http_get).and_return(conn.get)
metadata_object
end

before do
logger = instance_double("Mixlib::Log::Child", trace: nil, debug: nil, warn: nil)
allow(mixin).to receive(:logger).and_return(logger)
end

JSON_STR = %{{"zone-id":"cn-shanghai-a","region-id":"cn-shanghai","private-ipv4":"192.168.0.200","instance-type":"ecs.4xlarge"}}.freeze
CONF_STR = %{#cloud-config

# system wide
timezone: Asia/Shanghai
locale: en_US.UTF-8
manage_etc_hosts: localhost

## apt & packages
apt:
disable_suites: [proposed, $RELEASE-proposed-updates]
package_update: true
package_upgrade: true
packages:
- htop
- lvm2
- tmux
- dnsutils
- net-tools
- rsync
- ca-certificates
- curl
}.freeze

def compare_tree(local, remote, need_sanitize = false)
local.all? do |k, v|
key = k
key = mixin.sanitize_key(k) if !!need_sanitize

if v.class == Hash
return compare_tree(v, remote[key], need_sanitize)
else
return v == remote[key]
end
end
end

describe "#fetch_metadata" do
context "when get a non-200 status code" do
let(:response) { double("Net::HTTP Response", code: "404") }

it "should get nil" do
expect(mixin.fetch_metadata).to eq(nil)
end
end

context "when get a plain text content without new-line" do
let(:response) { double("Net::HTTP Response", body: "bar", code: "200") }

it "should be its original content" do
expect(mixin.fetch_metadata("foo", false)).to eq("bar")
end
end

context "when get a plain text content with a new-line" do
let(:response) { double("Net::HTTP Response", body: "bar\nbaz", code: "200") }

it "should be its original content" do
expect(mixin.fetch_metadata("foo", false)).to eq("bar\nbaz")
end
end

context "when get a JSON response" do
let(:response) { double("Net::HTTP Response", body: JSON_STR, code: "200") }

it "should be parsed" do
ret = mixin.fetch_metadata("foo", false)

parser = FFI_Yajl::Parser.new
json_obj = parser.parse(JSON_STR)

expect(compare_tree(json_obj, ret, false)).to eq(true)
end
end

context "when fetching user-data" do
let(:response) { double("Net::HTTP Response", body: CONF_STR, code: "200") }

it "should not to be continuously requested line by line, and equals to its content" do
expect { mixin.fetch_metadata("/user-data") }.not_to raise_error
expect(mixin.fetch_metadata("/user-data")).to eq(CONF_STR)
end
end

context "when recursively fetching a tree structure from root" do
let(:response) { double("Net::HTTP Response", body: "", code: "200") }

meta_tree = {
"meta-data" => {
# plain K-V
"a" => "b",
# nested structure
"c" => {
"d" => "e",
},
# has a new-line but not nested
"dns-conf" => "1.1.1.1\n1.0.0.1",
},
"json-data" => {
"dynamic" => JSON_STR,
},
"user-data" => CONF_STR,
}

it "should be a nested structure" do
allow(mixin).to receive(:http_get) do |uri|
tree = meta_tree

uri.split("/").each do |part|
tree = tree[part] unless part == ""
end

output = [tree]
if tree.class == Hash
output = tree.keys.map do |key|
ret = key
ret += "/" if tree[key].class == Hash
ret
end
end

double("Net::HTTP Response", body: output.join("\n"), code: "200")
end

ret = mixin.fetch_metadata

expect(compare_tree(meta_tree, ret, true)).to eq(true)
end
end

end
end