inspec/test/unit/dependencies/lockfile_test.rb
Ryan Davis 07dc5e3192 First pass at cleaning deprecations for old minitest/spec-style tests.
3 files left to go, and they're behaving oddly so I'm leaving them out
in this pass. Looks like 21 deprecations left.

Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-10-03 13:45:19 -07:00

73 lines
2.3 KiB
Ruby

require "helper"
require "inspec/dependencies/lockfile" # TODO: move files or namespace properly
describe Inspec::Lockfile do
# Ruby 1.9: .to_yaml format is slightly different
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.0")
let(:lockfile_content) do
<<~EOF
---
lockfile_version: 1
depends:
- name: foo
resolved_source:
url: http://foo
version_constraints: ! '>= 0'
dependencies:
- name: bar
resolved_source:
url: http://bar
version_constraints: ! '>= 0'
EOF
end
else
let(:lockfile_content) do
<<~EOF
---
lockfile_version: 1
depends:
- name: foo
resolved_source:
url: http://foo
version_constraints: ">= 0"
dependencies:
- name: bar
resolved_source:
url: http://bar
version_constraints: ">= 0"
EOF
end
end
let(:lockfile_hash) do
{ "lockfile_version" => 1,
"depends" => [
{ "name" => "foo", "resolved_source" => { "url" => "http://foo" }, "version_constraints" => ">= 0",
"dependencies" => [{ "name" => "bar", "resolved_source" => { "url" => "http://bar" }, "version_constraints" => ">= 0" }]
}] }
end
let(:lockfile_hash_with_symbols) do
{ "lockfile_version" => 1,
"depends" => [
{ name: "foo", resolved_source: { url: "http://foo" }, version_constraints: ">= 0",
dependencies: [{ name: "bar", resolved_source: { url: "http://bar" }, version_constraints: ">= 0" }]
}] }
end
it "can generate a yaml representation of the lockfile" do
l = Inspec::Lockfile.new(lockfile_hash)
_(l.to_yaml.force_encoding("UTF-8")).must_equal lockfile_content
end
it "can generates a yaml representation of the lockfile even when the depends keys are symbols" do
l = Inspec::Lockfile.new(lockfile_hash_with_symbols)
_(l.to_yaml.force_encoding("UTF-8")).must_equal lockfile_content
end
it "uses symbol keys for the deps by default" do
File.stubs(:read).with("testfile").returns(lockfile_content)
l = Inspec::Lockfile.from_file("testfile")
_(l.deps).must_equal lockfile_hash_with_symbols["depends"]
end
end