describe KnapsackPro::Config::CI::Circle 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 the environment exists' do let(:env) { { 'CIRCLE_NODE_TOTAL' => 4 } } it { should eql 4 } end context "when the environment doesn't exist" do it { should be nil } end end describe '#node_index' do subject { described_class.new.node_index } context 'when the environment exists' do let(:env) { { 'CIRCLE_NODE_INDEX' => 3 } } it { should eql 3 } end context "when the environment doesn't exist" do it { should be nil } end end describe '#node_build_id' do subject { described_class.new.node_build_id } context 'when the environment exists' do let(:env) { { 'CIRCLE_BUILD_NUM' => 123 } } it { should eql 123 } end context "when the environment doesn't exist" do it { should be nil } end end describe '#commit_hash' do subject { described_class.new.commit_hash } context 'when the environment exists' do let(:env) { { 'CIRCLE_SHA1' => '3fa64859337f6e56409d49f865d13fd7' } } it { should eql '3fa64859337f6e56409d49f865d13fd7' } end context "when the environment doesn't exist" do it { should be nil } end end describe '#branch' do subject { described_class.new.branch } context 'when the environment exists' do let(:env) { { 'CIRCLE_BRANCH' => 'main' } } it { should eql 'main' } end context "when the environment doesn't exist" do it { should be nil } end end describe '#project_dir' do subject { described_class.new.project_dir } context 'when CIRCLE_WORKING_DIRECTORY environment variable exists' do let(:env) { { 'CIRCLE_WORKING_DIRECTORY' => '~/knapsack_pro-ruby' } } it { should eql '~/knapsack_pro-ruby' } end context "when the environment doesn't exist" do it { should be nil } end end describe '#user_seat' do subject { described_class.new.user_seat } context 'when the CIRCLE_USERNAME env var exists' do let(:env) do { 'CIRCLE_USERNAME' => 'Jane Doe', 'CIRCLE_PR_USERNAME' => nil } end it { should eql 'Jane Doe' } end context 'when the CIRCLE_PR_USERNAME env var exists' do let(:env) do { 'CIRCLE_USERNAME' => nil, 'CIRCLE_PR_USERNAME' => 'John Doe' } end it { should eql 'John Doe' } end context 'when both CIRCLE_USERNAME and CIRCLE_PR_USERNAME env vars exist' do let(:env) do { 'CIRCLE_USERNAME' => 'Jane Doe', 'CIRCLE_PR_USERNAME' => 'John Doe' } end it { should eql 'Jane Doe' } end context "when neither env var exists" do it { should be nil } end end end