Skip to content

Latest commit

 

History

History
122 lines (86 loc) · 4.53 KB

CONTRIBUTING.md

File metadata and controls

122 lines (86 loc) · 4.53 KB

Contributing

TL;DR

Running Tests

You can use the LicenseFinder docker image to run the tests by using the dlf script. There are 2 sets of tests to run in order to confirm that License Finder is working as intended:

./dlf rake spec
./dlf bundle exec rake features

The spec task runs all the unit test and the features task will run all the feature test. Note that the feature test needs to be wrapped in bundle exec, or else it will use the gem version installed inside the docker image.

Useful Tips

To build the docker image simply call docker build . or explicitly pass the Dockerfile. Prebuilt versions of the dockerfile can also be found on Dockerhub.

To launch the docker image and interact with it via bash:

docker run -v $PWD:/scan -it licensefinder/license_finder /bin/bash -l

-v $PWD:/scan will mount the current working directory to the /scan path.

Adding Package Managers

There are a few steps to adding a new package manager. The main things which need to be implemented are mentioned in Package Manager.

Here is how support was added for rebar, an erlang package manager.

There are feature tests and unit tests for each currently supported package manager.

Adding Licenses

Add new licenses to lib/license_finder/license/definitions.rb. There are existing tools for matching licenses; see, for example, the MIT license, which can be detected in many different ways.

Adding Reports

If you need license_finder to output additional package data, consider submitting a pull request which adds new columns to lib/license_finder/reports/csv_report.rb.

It is also possible to generate a custom report from an ERB template. Use this example as a starting point. These reports will have access to the helpers in LicenseFinder::ErbReport.

If you need a report with more detailed data or in a different format, we recommend writing a custom ruby script. This example will get you started.

If you come up with something useful, consider posting it to the Google Group license-finder@googlegroups.com.

Development Dependencies

To successfully run the test suite, you will need the following installed:

  • NPM (requires Node)
  • Yarn (requires Node)
  • PNPM (requires Node)
  • Bower (requires Node and NPM)
  • Maven (requires Java)
  • Gradle (requires Java)
  • Pip (requires python)
  • Rebar (requires erlang)
  • GoDep, GoWorkspace, govendor, Glide, Dep, and Gvt (requires golang)
  • CocoaPods (requires ruby)
  • Bundler (requires ruby)
  • Carthage (requires homebrew)
  • Mix (requires Elixir)
  • Conan
  • NuGet
  • dotnet
  • Conda (requires python)

The LicenseFinder docker image already contains these dependencies.

If you run rake check_dependencies, you'll see exactly which package managers you're missing.

Python

For the python dependency tests you will want to have virtualenv installed, to allow pip to work without sudo. For more details, see this post on virtualenv.

You'll need a pip version >= 6.0.

JRuby

If you're running the test suite with jruby, you're probably going to want to set up some environment variables:

JAVA_OPTS='-client -XX:+TieredCompilation -XX:TieredStopAtLevel=1' JRUBY_OPTS='-J-Djruby.launch.inproc=true'

Gradle

You'll need a gradle version >= 1.8.