35 lines
1.3 KiB
Ruby
35 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe ProjectSnippet do
|
|
describe "Associations" do
|
|
it { is_expected.to belong_to(:project) }
|
|
end
|
|
|
|
describe "Validation" do
|
|
it { is_expected.to validate_presence_of(:project) }
|
|
it { is_expected.to validate_inclusion_of(:secret).in_array([false]) }
|
|
end
|
|
|
|
describe '#embeddable?' do
|
|
[
|
|
{ project: :public, snippet: :public, embeddable: true },
|
|
{ project: :internal, snippet: :public, embeddable: false },
|
|
{ project: :private, snippet: :public, embeddable: false },
|
|
{ project: :public, snippet: :internal, embeddable: false },
|
|
{ project: :internal, snippet: :internal, embeddable: false },
|
|
{ project: :private, snippet: :internal, embeddable: false },
|
|
{ project: :public, snippet: :private, embeddable: false },
|
|
{ project: :internal, snippet: :private, embeddable: false },
|
|
{ project: :private, snippet: :private, embeddable: false }
|
|
].each do |combination|
|
|
it 'only returns true when both project and snippet are public' do
|
|
project = create(:project, combination[:project])
|
|
snippet = build(:project_snippet, combination[:snippet], project: project)
|
|
|
|
expect(snippet.embeddable?).to eq(combination[:embeddable])
|
|
end
|
|
end
|
|
end
|
|
end
|