summaryrefslogtreecommitdiff
path: root/spec/unit/knife/user_password_spec.rb
blob: d58280178041ec9a164ac96b4882f4445f2d6b4c (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
#
# Author:: Snehal Dwivedi (<sdwivedi@msystechnologies.com>)
# Copyright:: Copyright 2014-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"
require "chef/org"

Chef::Knife::UserDelete.load_deps

describe Chef::Knife::UserPassword do

  let(:root_rest) { double("Chef::ServerAPI") }

  before :each do
    @knife = Chef::Knife::UserPassword.new
    @user_name = "foobar"
    @password = "abc123"
    @user = double("Chef::User")
    allow(@user).to receive(:root_rest).and_return(root_rest)
    allow(Chef::User).to receive(:new).and_return(@user)
    @key = "You don't come into cooking to get rich - Ramsay"
  end

  describe "should change user's password" do
    before :each do
      @knife.name_args << @user_name << @password
    end

    it "with username and password" do
      result = { "password" => [], "recovery_authentication_enabled" => true }
      allow(@user).to receive(:[]).with("organization")

      expect(Chef::ServerAPI).to receive(:new).with(Chef::Config[:chef_server_url], { api_version: "2" }).and_return(root_rest)
      expect(@user.root_rest).to receive(:get).with("users/#{@user_name}").and_return(result)
      expect(@user.root_rest).to receive(:put).with("users/#{@user_name}", result)
      expect(@knife.ui).to receive(:msg).with("Authentication info updated for #{@user_name}.")

      @knife.run
    end
  end

  describe "should not change user's password" do

    it "ails with an informative message" do
      expect(@knife).to receive(:show_usage)
      expect(@knife.ui).to receive(:fatal).with("You must pass two arguments")
      expect(@knife.ui).to receive(:fatal).with("Note that --enable-external-auth cannot be passed with a password")
      expect { @knife.run }.to raise_error(SystemExit)
    end
  end
end