require 'spec_helper' require 'r10k/source' describe R10K::Source::Git do subject do described_class.new('mysource', '/some/nonexistent/dir', {:remote => 'https://git-server/repo.git'}) end it "stores the name" do expect(subject.name).to eq 'mysource' end it "stores the basedir" do expect(subject.basedir).to eq '/some/nonexistent/dir' end describe "preloading" do it "fetches the git cache" do expect(subject.cache).to receive(:sync) subject.preload! end end describe "lazily generating environments" do it "returns an empty list of environments when the cache has not been created" do allow(subject.cache).to receive(:cached?).and_return false expect(subject.environments).to be_empty end it "generates environments when the cache is present and environments have not been loaded" do allow(subject.cache).to receive(:cached?).and_return true allow(subject).to receive(:generate_environments).and_return %w[hi] expect(subject.environments.size).to eq(1) end it "doesn't recreate environments if they have already been loaded" do allow(subject.cache).to receive(:cached?).and_return true allow(subject).to receive(:generate_environments).once.and_return %w[hi] expect(subject.environments.size).to eq(1) expect(subject.environments.size).to eq(1) end end describe "eagerly generating environments" do before do allow(subject.cache).to receive(:branches).and_return %w[master] end let(:master_env) { subject.generate_environments.first } it "creates an environment for each branch" do expect(subject.generate_environments.size).to eq(1) end it "copies the source remote to the environment" do expect(master_env.remote).to eq subject.remote end it "uses the branch name as the directory by default" do expect(master_env.dirname).to eq 'master' end end describe "generate_environments respects ignore_branch_prefixes setting" do before do allow(subject.cache).to receive(:branches).and_return ['master', 'development', 'production', 'not_dev_test_me', 'dev_test', 'dev', 'test_2'] subject.instance_variable_set(:@ignore_branch_prefixes, ['dev', 'test']) end let(:environments) { subject.generate_environments } it "creates an environment for each branch not in ignore_branch_prefixes" do expect(subject.generate_environments.size).to eq(3) end it "copies the source remote to the environment" do expect(environments[0].remote).to eq subject.remote expect(environments[1].remote).to eq subject.remote expect(environments[2].remote).to eq subject.remote end it "uses the branch name as the directory by default" do expect(environments[0].dirname).to eq 'master' expect(environments[1].dirname).to eq 'production' expect(environments[2].dirname).to eq 'not_dev_test_me' end end describe "filtering branches with ignore prefixes" do let(:branches) { ['master', 'development', 'production', 'not_dev_test_me', 'dev_test', 'dev', 'test_2'] } let(:ignore_prefixes) { ['dev', 'test'] } it "filters branches" do expect(subject.filter_branches(branches, ignore_prefixes)).to eq(['master', 'production', 'not_dev_test_me']) end end end describe R10K::Source::Git, "handling invalid branch names" do %w[correct_and_warn correct].each do |setting| describe "when invalid is #{setting}" do subject do described_class.new('/some/nonexistent/dir', 'mysource', { :remote => 'https://git-server/repo.git', :invalid_branches => setting }) end before do allow(subject.cache).to receive(:branches).and_return ['master', 'invalid-branch'] end it "creates an environment for each branch" do expect(subject.generate_environments.size).to eq(2) end it "removes invalid characters from branch names" do invalid_env = subject.generate_environments.last expect(invalid_env.dirname).to eq 'invalid_branch' end end end describe "when invalid is 'error'" do subject do described_class.new('/some/nonexistent/dir', 'mysource', { :remote => 'https://git-server/repo.git', :invalid_branches => 'error', }) end before do allow(subject.cache).to receive(:branches).and_return ['master', 'invalid-branch'] end it "only creates an environment for valid branches" do expect(subject.generate_environments.size).to eq(1) end end end # Since prefixing is an immutable property of a source, it's easier to create # a new context and duplicate stubs in a single location rather than packing a # single test with all the stubs that entirely recreate the source. describe R10K::Source::Git, 'when prefixing is enabled' do subject do described_class.new( 'prefixed', '/some/nonexistent/dir', { :prefix => true, :remote => 'https://git-server/repo.git', }) end describe "generating prefixed environments" do before do allow(subject.cache).to receive(:cached?).and_return true allow(subject.cache).to receive(:branches).and_return %w[master other] end let(:environments) { subject.environments } it "creates an environment for each branch" do expect(subject.environments.size).to eq(2) end it "prefixes the source name to environments when prefixing is enabled" do expect(environments[0].dirname).to eq 'prefixed_master' expect(environments[1].dirname).to eq 'prefixed_other' end end end describe R10K::Source::Git, 'registering as a source' do it "registers with the :git key" do expect(R10K::Source.retrieve(:git)).to eq described_class end it "registers with the nil key" do expect(R10K::Source.retrieve(nil)).to eq described_class end end