Sha256: 99cae2beb4b94a97d1ff0d456acc41a0578c0c98b2a5c8c6126c8f5387c839c9

Contents?: true

Size: 1.73 KB

Versions: 25

Compression:

Stored size: 1.73 KB

Contents

describe KnapsackPro::Config::CI::Semaphore do
  let(:env) { {} }

  before do
    stub_const('ENV', env)
  end

  it { should be_kind_of KnapsackPro::Config::CI::Base }

  describe '#node_total' do
    subject { described_class.new.node_total }

    context 'when environment exists' do
      let(:env) { { 'SEMAPHORE_THREAD_COUNT' => 4 } }
      it { should eql 4 }
    end

    context "when environment doesn't exist" do
      it { should be nil }
    end
  end

  describe '#node_index' do
    subject { described_class.new.node_index }

    context 'when environment exists' do
      let(:env) { { 'SEMAPHORE_CURRENT_THREAD' => 4 } }
      it { should eql 3 }
    end

    context "when environment doesn't exist" do
      it { should be nil }
    end
  end

  describe '#commit_hash' do
    subject { described_class.new.commit_hash }

    context 'when environment exists' do
      let(:env) { { 'REVISION' => '3fa64859337f6e56409d49f865d13fd7' } }
      it { should eql '3fa64859337f6e56409d49f865d13fd7' }
    end

    context "when environment doesn't exist" do
      it { should be nil }
    end
  end

  describe '#branch' do
    subject { described_class.new.branch }

    context 'when environment exists' do
      let(:env) { { 'BRANCH_NAME' => 'master' } }
      it { should eql 'master' }
    end

    context "when environment doesn't exist" do
      it { should be nil }
    end
  end

  describe '#project_dir' do
    subject { described_class.new.project_dir }

    context 'when environment exists' do
      let(:env) { { 'SEMAPHORE_PROJECT_DIR' => '/home/runner/knapsack_pro-ruby' } }
      it { should eql '/home/runner/knapsack_pro-ruby' }
    end

    context "when environment doesn't exist" do
      it { should be nil }
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
knapsack_pro-0.2.1 spec/knapsack_pro/config/ci/semaphore_spec.rb
knapsack_pro-0.2.0 spec/knapsack_pro/config/ci/semaphore_spec.rb
knapsack_pro-0.1.2 spec/knapsack_pro/config/ci/semaphore_spec.rb
knapsack_pro-0.1.1 spec/knapsack_pro/config/ci/semaphore_spec.rb
knapsack_pro-0.1.0 spec/knapsack_pro/config/ci/semaphore_spec.rb