# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::View::Presenter::Base do
  let(:project) { double(:project) }
  let(:presenter_class) do
    Struct.new(:__subject__).include(described_class)
  end

  describe '.presenter?' do
    it 'returns true' do
      presenter = presenter_class.new(project)

      expect(presenter.class).to be_presenter
    end
  end

  describe '.presents' do
    it 'raises an error when symbol is passed' do
      expect { presenter_class.presents(:foo) }.to raise_error(ArgumentError)
    end

    context 'when the presenter class specifies a custom keyword' do
      subject(:presenter) { presenter_class.new(project) }

      before do
        presenter_class.class_eval do
          presents Object, as: :foo
        end
      end

      it 'exposes the subject with the given keyword' do
        expect(presenter.foo).to be(project)
      end
    end

    context 'when the presenter class inherits Presenter::Delegated' do
      let(:presenter_class) do
        Class.new(::Gitlab::View::Presenter::Delegated) do
          include(::Gitlab::View::Presenter::Base)
        end
      end

      it 'sets the delegator target' do
        expect(presenter_class).to receive(:delegator_target).with(Object)

        presenter_class.presents(Object, as: :foo)
      end
    end

    context 'when the presenter class inherits Presenter::Simple' do
      let(:presenter_class) do
        Class.new(::Gitlab::View::Presenter::Simple) do
          include(::Gitlab::View::Presenter::Base)
        end
      end

      it 'does not set the delegator target' do
        expect(presenter_class).not_to receive(:delegator_target)

        presenter_class.presents(Object, as: :foo)
      end
    end
  end

  describe '#__subject__' do
    it 'returns the subject' do
      subject = double
      presenter = presenter_class.new(subject)

      expect(presenter.__subject__).to be(subject)
    end
  end

  describe '#can?' do
    context 'user is not allowed' do
      it 'returns false' do
        presenter = presenter_class.new(build_stubbed(:project))

        expect(presenter.can?(nil, :read_project)).to be_falsy
      end
    end

    context 'user is allowed' do
      it 'returns true' do
        presenter = presenter_class.new(build_stubbed(:project, :public))

        expect(presenter.can?(nil, :read_project)).to be_truthy
      end
    end

    context 'subject is overridden' do
      it 'returns true' do
        presenter = presenter_class.new(build_stubbed(:project, :public))

        expect(presenter.can?(nil, :read_project, build_stubbed(:project))).to be_falsy
      end
    end
  end

  describe '#present' do
    it 'returns self' do
      presenter = presenter_class.new(build_stubbed(:project))
      expect(presenter.present).to eq(presenter)
    end
  end

  describe '#url_builder' do
    it 'returns the UrlBuilder instance' do
      presenter = presenter_class.new(project)

      expect(presenter.url_builder).to eq(Gitlab::UrlBuilder.instance)
    end
  end

  describe '#web_url' do
    it 'delegates to the UrlBuilder' do
      presenter = presenter_class.new(project)

      expect(presenter.url_builder).to receive(:build).with(project)

      presenter.web_url
    end
  end

  describe '#web_path' do
    it 'delegates to the UrlBuilder' do
      presenter = presenter_class.new(project)

      expect(presenter.url_builder).to receive(:build).with(project, only_path: true)

      presenter.web_path
    end
  end
end