summaryrefslogtreecommitdiff
path: root/spec/node_spec.rb
blob: f9c912ea1b341be3f090cd71cf1a01fe5c5e65cd (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
require 'spec_helper'

describe Oxidized::Node do
  before(:each) do
    Oxidized.stubs(:asetus).returns(Asetus.new)
    Oxidized.config.output.git.repo = '/tmp/repository.git'

    Oxidized::Node.any_instance.stubs(:resolve_output)
    @node = Oxidized::Node.new(name: 'example.com',
                               input: 'ssh',
                               output: 'git',
                               model: 'junos',
                               username: 'alma',
                               password: 'armud',
                               prompt: 'test_prompt')

  end

  describe '#new' do
    it 'should resolve input' do
      @node.input[0].to_s.split('::')[1].must_equal 'SSH'
    end
    it 'should resolve model' do
      @node.model.class.must_equal JunOS
    end
    it 'should resolve username' do
      @node.auth[:username].must_equal 'alma'
    end
    it 'should resolve password' do
      @node.auth[:password].must_equal 'armud'
    end
    it 'should require prompt' do
      @node.prompt.must_equal 'test_prompt'
    end
  end

  describe '#run' do
    it 'should fetch the configuration' do
      stub_oxidized_ssh

      status, _ = @node.run
      status.must_equal :success
    end
  end

  describe '#repo' do
    it 'when there is no groups' do
      @node.repo.must_equal '/tmp/repository.git'
    end

    describe 'when there are groups' do
      let(:node) do
        Oxidized::Node.new({
          ip: '127.0.0.1', group: 'ggrroouupp', model: 'junos'
        })
      end

      it 'with only one repository' do
        Oxidized.config.output.git.single_repo = true
        node.repo.must_equal '/tmp/repository.git'
      end

      it 'with more than one repository' do
        Oxidized.config.output.git.single_repo = false
        node.repo.must_equal '/tmp/ggrroouupp.git'
      end
    end
  end
end