Sha256: 0587feaab09bf46826b6436cd7b92f2fb995a0daec453e7587412966718cb827

Contents?: true

Size: 1.51 KB

Versions: 14

Compression:

Stored size: 1.51 KB

Contents

#
# Copyright:: 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 CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require "chef-cli/helpers"

RSpec.shared_context "fixture cookbooks checksums" do

  def id_to_dotted(sha1_id)
    major = sha1_id[0...14]
    minor = sha1_id[14...28]
    patch = sha1_id[28..40]
    decimal_integers = [major, minor, patch].map { |hex| hex.to_i(16) }
    decimal_integers.join(".")
  end

  let(:cookbook_foo_cksum) { "f24326bbf81d67fcab6a5615c75092d1c6da81cc" }

  let(:cookbook_foo_cksum_dotted) { id_to_dotted(cookbook_foo_cksum) }

  let(:cookbook_bar_cksum) { "4c538def500b75e744a3af05df66afd04dc3b3c5" }

  let(:cookbook_bar_cksum_dotted) { id_to_dotted(cookbook_bar_cksum) }

  let(:cookbook_baz_cksum) { "5c9063efbc5b5d8acc37024d7383f7dd010ae728" }

  let(:cookbook_baz_cksum_dotted) { id_to_dotted(cookbook_baz_cksum) }

  let(:cookbook_dep_of_bar_cksum) { "a4a6a5e4c6d95a580d291f6415d55b010669feac" }

  let(:cookbook_dep_of_bar_cksum_dotted) { id_to_dotted(cookbook_dep_of_bar_cksum) }

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
chef-cli-5.6.16 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.6.14 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.6.13 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.6.12 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.6.11 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.6.8 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.6.1 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.6.0 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.5.6 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.5.5 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.5.4 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.5.0 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.4.2 spec/shared/fixture_cookbook_checksums.rb
chef-cli-5.4.1 spec/shared/fixture_cookbook_checksums.rb