Sha256: a6a6ef2b50fbd3ae7e10cda1039a8c396ca32375e52011bbc7605af51512f295

Contents?: true

Size: 1.88 KB

Versions: 6

Compression:

Stored size: 1.88 KB

Contents

@announce @work_in_cwd @cookbooks @cookbook_metadata
Feature: Cookbook Metadata
  In order to understand cookbooks without evaluating them
  As an Administrator
  I want to automatically generate metadata about cookbooks

  Background:
    Given a default base Chef repository in "ckbk/scratch/myapp"
      And the local Chef repository exists
      And a file named "ckbk/scratch/myapp/.chef/knife.rb" with:
      """
      current_dir = File.dirname(__FILE__)
      log_level :debug
      log_location $stdout
      node_name "bobo"
      client_key "#{File.dirname(current_dir)}/bobo.pem"
      chef_server_url "http://localhost:4000"
      cache_type 'Memory'
      cache_options( :path => "#{ENV['HOME']}/.chef/checksums" )
      cookbook_path ["#{current_dir}/../cookbooks","#{current_dir}/../site-cookbooks"]

      """
      And Explanation: Next we step up two levels to escape Aruba's working folder
      And the remote Cookbook repository "./../../features/data/repositories/cookbooks/hosts/.git"
      And I clone the remote Cookbook repository branch "master" to "ckbk/scratch/myapp/cookbooks/hosts"
      And the local Cookbook repository exists

  Scenario: Generate metadata for all cookbooks
     When I successfully generate all Cookbook metadata
      And the output should contain "DEBUG: Generated "
      And the output should not contain "DEBUG: No "
    Then the file "ckbk/scratch/myapp/cookbooks/hosts/metadata.json" exists

  Scenario: Generate metadata for a specific cookbook
     When we record the a-mtime of "ckbk/scratch/myapp/cookbooks/hosts/metadata.json"
      And I successfully generate Cookbook "hosts" metadata
      And the output should contain "DEBUG: Generated "
      And the output should not contain "DEBUG: No "
    Then the file "ckbk/scratch/myapp/cookbooks/hosts/metadata.json" exists
      And the mtime of "ckbk/scratch/myapp/cookbooks/hosts/metadata.json" changes

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cuken-0.1.13 features/chef_examples/cookbooks_metadata.feature
cuken-0.1.12 features/chef_examples/cookbooks_metadata.feature
cuken-0.1.11 features/chef_examples/cookbooks_metadata.feature
cuken-0.1.10 features/chef_examples/cookbooks_metadata.feature
cuken-0.1.9 features/chef_examples/cookbooks_metadata.feature
cuken-0.1.8 features/chef_examples/cookbooks_metadata.feature