Sha256: 42a5593379b5aabd66aa4ae21893e7f428c0cb0463dbd51641aa6fada3a200dc

Contents?: true

Size: 1.32 KB

Versions: 1

Compression:

Stored size: 1.32 KB

Contents

require 'spec_helper'

module LicenseFinder
  describe MavenPackage do
    subject do
      described_class.new(
        "artifactId" => "hamcrest-core",
        "version" => "4.11",
        "licenses" => [{ "name" => "MIT" }]
      )
    end

    it_behaves_like "a Package"

    its(:name) { should == "hamcrest-core" }
    its(:version) { should == "4.11" }
    its(:summary) { should == "" }
    its(:description) { should == "" }
    its(:homepage) { should == "" }
    its(:groups) { should == [] } # no way to get groups from maven?
    its(:children) { should == [] } # no way to get children from maven?
    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({}) }

        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(
            "licenses" => [{ "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/maven_package_spec.rb