Sha256: 5c47480c2cefd0d6e4bae9ab384c55e558d4b1572152e10083ade9b958054f0c

Contents?: true

Size: 1.76 KB

Versions: 11

Compression:

Stored size: 1.76 KB

Contents

require "inspec/resources/command"
require "shellwords" unless defined?(Shellwords)

module Inspec::Resources
  class NpmPackage < Inspec.resource(1)
    name "npm"
    supports platform: "unix"
    supports platform: "windows"
    desc "Use the npm InSpec audit resource to test if a global npm package is installed. npm is the the package manager for Nodejs packages, such as bower and StatsD."
    example <<~EXAMPLE
      describe npm('bower') do
        it { should be_installed }
      end

      describe npm('tar', path: '/path/to/project') do
        it { should be_installed }
      end
    EXAMPLE

    def initialize(package_name, opts = {})
      @package_name = package_name
      @location = opts[:path]
      @cache = nil
    end

    def info
      return @info if defined?(@info)

      if @location
        command_separator = inspec.os.platform?("windows") ? ";" : "&&"
        invocation = "cd #{Shellwords.escape @location} #{command_separator} npm"
      else
        invocation = "npm -g"
      end

      invocation = "#{invocation} ls --json #{@package_name}"

      # If on unix, wrap in sh -c to protect against sudo
      unless inspec.os.platform?("windows")
        invocation = "sh -c '#{invocation}'"
      end

      cmd = inspec.command(invocation)
      @info = {
        name: @package_name,
        type: "npm",
        installed: cmd.exit_status == 0,
      }
      return @info unless @info[:installed]

      pkgs = JSON.parse(cmd.stdout)
      @info[:version] = pkgs["dependencies"][@package_name]["version"]
      @info
    end

    def installed?
      info[:installed] == true
    end

    def version
      info[:version]
    end

    def resource_id
      @package_name || "npm"
    end

    def to_s
      "Npm Package #{@package_name}"
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
inspec-core-6.8.11 lib/inspec/resources/npm.rb
inspec-core-5.22.58 lib/inspec/resources/npm.rb
inspec-core-5.22.55 lib/inspec/resources/npm.rb
inspec-core-6.8.1 lib/inspec/resources/npm.rb
inspec-core-5.22.40 lib/inspec/resources/npm.rb
inspec-core-6.6.0 lib/inspec/resources/npm.rb
inspec-core-5.22.36 lib/inspec/resources/npm.rb
inspec-core-5.22.29 lib/inspec/resources/npm.rb
inspec-core-5.22.3 lib/inspec/resources/npm.rb
inspec-core-5.21.29 lib/inspec/resources/npm.rb
inspec-core-5.18.14 lib/inspec/resources/npm.rb