Sha256: 631070667f83047280eec03b16a93685efee35a0db9878c52da928cb60a0b351

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 KB

Contents

require 'spec_helper'

describe LintTrap::Linter::GoLint do
  let(:container){LintTrap::Container::Fake.new}
  subject(:linter){described_class.new(container: container)}

  shared_examples '#lint' do
    context 'when linting a bad file' do
      let(:file){fixture_path('bad.go')}

      it 'generates lint' do
        expect{|b| linter.lint([file], &b)}.to yield_successive_args(
          {
            file: file,
            line: '5',
            column: '1',
            length: nil,
            rule: nil,
            severity: nil,
            message: 'exported function Main should have comment or be unexported'
          }
        )
      end
    end

    context 'when linting a good file' do
      let(:file){fixture_path('good.go')}

      it 'generates no lint' do
        expect{|b| linter.lint([file], &b)}.to_not yield_control
      end
    end
  end

  context 'with docker container', if: !ENV['SKIP_DOCKER'] do
    let(:container){LintTrap::Container::Docker.new('lintci/spin_cycle:latest', fixture_path)}

    it_behaves_like '#lint'
  end

  context 'without a docker container', if: ENV['SKIP_DOCKER'] do
    it_behaves_like '#lint'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lint_trap-0.0.6 spec/integration/golint_spec.rb
lint_trap-0.0.5 spec/integration/golint_spec.rb
lint_trap-0.0.4 spec/integration/golint_spec.rb
lint_trap-0.0.3 spec/integration/golint_spec.rb