summaryrefslogtreecommitdiff
path: root/spec/integration/knife/show_spec.rb
blob: 8f1887e738982163f89ec37c26ad1150c9b46b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#
# Author:: John Keiser (<jkeiser@opscode.com>)
# Copyright:: Copyright (c) 2013 Opscode, 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 'support/shared/integration/integration_helper'
require 'support/shared/context/config'
require 'chef/knife/show'

describe 'knife show', :workstation do
  include IntegrationSupport
  include KnifeSupport

  include_context "default config options"

  when_the_chef_server "has one of each thing" do
    before do
      client 'x', '{}'
      cookbook 'x', '1.0.0'
      data_bag 'x', { 'y' => '{}' }
      environment 'x', '{}'
      node 'x', '{}'
      role 'x', '{}'
      user 'x', '{}'
    end

    when_the_repository 'also has one of each thing' do
      before do
        file 'clients/x.json', { 'foo' => 'bar' }
        file 'cookbooks/x/metadata.rb', cb_metadata('x', '1.0.0')
        file 'data_bags/x/y.json', { 'foo' => 'bar' }
        file 'environments/_default.json', { 'foo' => 'bar' }
        file 'environments/x.json', { 'foo' => 'bar' }
        file 'nodes/x.json', { 'foo' => 'bar' }
        file 'roles/x.json', { 'foo' => 'bar' }
        file 'users/x.json', { 'foo' => 'bar' }
      end

      it 'knife show /cookbooks/x/metadata.rb shows the remote version' do
        knife('show /cookbooks/x/metadata.rb').should_succeed <<EOM
/cookbooks/x/metadata.rb:
name "x"; version "1.0.0"
EOM
      end
      it 'knife show --local /cookbooks/x/metadata.rb shows the local version' do
        knife('show --local /cookbooks/x/metadata.rb').should_succeed <<EOM
/cookbooks/x/metadata.rb:
name "x"; version "1.0.0"
EOM
      end
      it 'knife show /data_bags/x/y.json shows the remote version' do
        knife('show /data_bags/x/y.json').should_succeed <<EOM
/data_bags/x/y.json:
{
  "id": "y"
}
EOM
      end
      it 'knife show --local /data_bags/x/y.json shows the local version' do
        knife('show --local /data_bags/x/y.json').should_succeed <<EOM
/data_bags/x/y.json:
{
  "foo": "bar"
}
EOM
      end
      it 'knife show /environments/x.json shows the remote version', :skip => (RUBY_VERSION < "1.9") do
        knife('show /environments/x.json').should_succeed <<EOM
/environments/x.json:
{
  "name": "x"
}
EOM
      end
      it 'knife show --local /environments/x.json shows the local version' do
        knife('show --local /environments/x.json').should_succeed <<EOM
/environments/x.json:
{
  "foo": "bar"
}
EOM
      end
      it 'knife show /roles/x.json shows the remote version', :skip => (RUBY_VERSION < "1.9") do
        knife('show /roles/x.json').should_succeed <<EOM
/roles/x.json:
{
  "name": "x"
}
EOM
      end
      it 'knife show --local /roles/x.json shows the local version' do
        knife('show --local /roles/x.json').should_succeed <<EOM
/roles/x.json:
{
  "foo": "bar"
}
EOM
      end
      # show directory
      it 'knife show /data_bags/x fails' do
        knife('show /data_bags/x').should_fail "ERROR: /data_bags/x: is a directory\n"
      end
      it 'knife show --local /data_bags/x fails' do
        knife('show --local /data_bags/x').should_fail "ERROR: /data_bags/x: is a directory\n"
      end
      # show nonexistent file
      it 'knife show /environments/nonexistent.json fails' do
        knife('show /environments/nonexistent.json').should_fail "ERROR: /environments/nonexistent.json: No such file or directory\n"
      end
      it 'knife show --local /environments/nonexistent.json fails' do
        knife('show --local /environments/nonexistent.json').should_fail "ERROR: /environments/nonexistent.json: No such file or directory\n"
      end
    end
  end

  when_the_chef_server 'has a hash with multiple keys' do
    before do
      environment 'x', {
        'default_attributes' => { 'foo' => 'bar' },
        'cookbook_versions' => { 'blah' => '= 1.0.0'},
        'override_attributes' => { 'x' => 'y' },
        'description' => 'woo',
        'name' => 'x'
      }
    end
    it 'knife show shows the attributes in a predetermined order', :skip => (RUBY_VERSION < "1.9") do
      knife('show /environments/x.json').should_succeed <<EOM
/environments/x.json:
{
  "name": "x",
  "description": "woo",
  "cookbook_versions": {
    "blah": "= 1.0.0"
  },
  "default_attributes": {
    "foo": "bar"
  },
  "override_attributes": {
    "x": "y"
  }
}
EOM
    end
  end

  when_the_repository 'has an environment with bad JSON' do
    before { file 'environments/x.json', '{' }
    it 'knife show succeeds' do
      knife('show --local /environments/x.json').should_succeed <<EOM
/environments/x.json:
{
EOM
    end
  end
end