Sha256: c78e3e444bb6fe9250a2dcb8dcb3e2a875c742cfb440aa87de3503ba9c030fce

Contents?: true

Size: 955 Bytes

Versions: 119

Compression:

Stored size: 955 Bytes

Contents

require 'spec_helper'

describe Travis::CLI::ApiCommand do
  describe 'enterprise' do
    travis_config_path = ENV['TRAVIS_CONFIG_PATH']

    before do
      ENV['TRAVIS_CONFIG_PATH'] = File.expand_path '../support', File.dirname(__FILE__)
      config = subject.send(:load_file, 'fake_travis_config.yml')
      subject.config = YAML.load(config)

      subject.api_endpoint = 'https://travis-ci-enterprise/api'
      subject.enterprise_name = 'default'
    end

    after do
      ENV['TRAVIS_CONFIG_PATH'] = travis_config_path
    end

    describe '#setup_enterprise' do
      before do
        subject.send(:setup_enterprise)
      end

      it 'keeps verifying peers' do
        subject.insecure.should be_falsey
      end

      it 'uses default CAs' do
        subject.session.ssl.should_not include(:ca_file)
      end

      it 'flags endpoint' do
        subject.endpoint_config.should include('enterprise' => true)
      end
    end
  end
end

Version data entries

119 entries across 119 versions & 2 rubygems

Version Path
travis-1.8.10.travis.943.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.942.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.941.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.940.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.935.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.933.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.931.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.930.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.929.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.927.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.925.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.924.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.923.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.922.11 spec/cli/api_command_spec.rb
travis-1.8.10.travis.921.11 spec/cli/api_command_spec.rb
travis-1.8.9 spec/cli/api_command_spec.rb
travis-1.8.9.travis.919.11 spec/cli/api_command_spec.rb
travis-1.8.9.travis.918.11 spec/cli/api_command_spec.rb
travis-1.8.9.travis.916.11 spec/cli/api_command_spec.rb