Sha256: d6d9d536111f5bbd0f849523a8f2397b4bba316296794def332ad8e32dd6c13a

Contents?: true

Size: 1.54 KB

Versions: 31

Compression:

Stored size: 1.54 KB

Contents

#
# Author:: Steven Danna (<steve@chef.io>)
# Copyright:: Copyright 2012-2016, 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 "spec_helper"

describe Chef::Knife::UserEdit do
  let(:knife) { Chef::Knife::UserEdit.new }

  before(:each) do
    @stderr = StringIO.new
    @stdout = StringIO.new

    Chef::Knife::UserEdit.load_deps
    allow(knife.ui).to receive(:stderr).and_return(@stderr)
    allow(knife.ui).to receive(:stdout).and_return(@stdout)
    knife.name_args = [ "my_user" ]
    knife.config[:disable_editing] = true
  end

  it "loads and edits the user" do
    data = { "username" => "my_user" }
    allow(Chef::UserV1).to receive(:load).with("my_user").and_return(data)
    expect(knife).to receive(:edit_hash).with(data).and_return(data)
    knife.run
  end

  it "prints usage and exits when a user name is not provided" do
    knife.name_args = []
    expect(knife).to receive(:show_usage)
    expect(knife.ui).to receive(:fatal)
    expect { knife.run }.to raise_error(SystemExit)
  end
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
chef-15.4.45 spec/unit/knife/user_edit_spec.rb
chef-15.4.45-universal-mingw32 spec/unit/knife/user_edit_spec.rb
chef-15.3.14 spec/unit/knife/user_edit_spec.rb
chef-15.3.14-universal-mingw32 spec/unit/knife/user_edit_spec.rb
chef-15.2.20 spec/unit/knife/user_edit_spec.rb
chef-15.2.20-universal-mingw32 spec/unit/knife/user_edit_spec.rb
chef-15.1.36 spec/unit/knife/user_edit_spec.rb
chef-15.1.36-universal-mingw32 spec/unit/knife/user_edit_spec.rb
chef-15.0.300 spec/unit/knife/user_edit_spec.rb
chef-15.0.298 spec/unit/knife/user_edit_spec.rb
chef-15.0.293 spec/unit/knife/user_edit_spec.rb