Sha256: 7b3dea09903455a371be45b3dc7f6606acbbbd31e1d10812359181bf144d5215

Contents?: true

Size: 1.68 KB

Versions: 1

Compression:

Stored size: 1.68 KB

Contents

require 'spec_helper'

module LicenseFinder
  describe GradlePackage do
    subject do
      described_class.new(
        "name" => "ch.qos.logback:logback-classic:1.1.1",
        "license" => [ { "name" => "MIT" } ]
      )
    end

    it_behaves_like "a Package"

    its(:name) { should == "logback-classic" }
    its(:version) { should == "1.1.1" }
    its(:summary) { should == "" }
    its(:description) { should == "" }
    its(:homepage) { should == "" }
    its(:groups) { should == [] } # no way to get groups from gradle?
    its(:children) { should == [] } # no way to get children from gradle?
    its(:install_path) { should be_nil }

    describe "#license_names_from_spec" do
      it "returns the license" do
        expect(subject.license_names_from_spec).to eq ["MIT"]
      end

      context "when there are no licenses" do
        subject { described_class.new("name" => "a:b:c") }

        it "is empty" do
          expect(subject.license_names_from_spec).to be_empty
        end
      end

      context "when there are no real licenses" do
        subject do
          described_class.new(
            "name" => "a:b:c",
            "license" => [ { "name" => "No license found"} ]
          )
        end

        it "is empty" do
          expect(subject.license_names_from_spec).to be_empty
        end
      end

      context "when there are multiple licenses" do
        subject do
          described_class.new(
            "name" => "a:b:c",
            "license" => [ { "name" => "1" }, { "name" => "2" } ]
          )
        end

        it "returns multiple licenses" do
          expect(subject.license_names_from_spec).to eq ['1', '2']
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
license_finder-2.0.0.rc2 spec/lib/license_finder/package_managers/gradle_package_spec.rb