Sha256: e4d7b390ad7e15043bfec8e8f4750125233b8e3e6dcd65d6bfee040e2599775a

Contents?: true

Size: 1.77 KB

Versions: 3

Compression:

Stored size: 1.77 KB

Contents

# Pulled from helper.rb because something in the test suite monkey patches benchmarking

require 'securerandom'

def fixtures_base
  File.expand_path "fixtures", File.dirname( __FILE__ )
end

def fixture_path(fixture)
  File.expand_path fixture, fixtures_base
end

def license_from_path(path)
  license = File.open(path).read.split("---").last
  license.sub! "[fullname]", "Ben Balter"
  license.sub! "[year]", "2014"
  license.sub! "[email]", "ben@github.invalid"
  license
end

class FakeBlob
  attr_reader :content

  def initialize(content)
    @content = content
  end

  def size
    content.size
  end

  def similarity(other)
    self.hashsig ? Rugged::Blob::HashSignature.compare(self.hashsig, other) : 0
  end

  def hashsig(options = 0)
    @hashsig ||= Rugged::Blob::HashSignature.new(content, options)
  rescue Rugged::InvalidError
    nil
  end
end

def chaos_monkey(string)
  Random.rand(5).times do
    string[Random.rand(string.length)] = SecureRandom.base64(Random.rand(10))
  end
  string
end

def verify_license_file(license, chaos = false, wrap=false)
  expected = File.basename(license, ".txt")

  text = license_from_path(license)
  text = chaos_monkey(text) if chaos
  text = wrap(text, wrap) if wrap

  blob = FakeBlob.new(text)
  license_file = Licensee::LicenseFile.new(blob)

  actual = license_file.match
  assert actual, "No match for #{expected}."
  assert_equal expected, actual.key, "expeceted #{expected} but got #{actual.key} for .match. Confidence: #{license_file.confidence}. Method: #{license_file.matcher.class}"
end

def wrap(text, line_width=80)
  text = text.clone
  text.gsub! /([^\n])\n([^\n])/, '\1 \2'
  text = text.split("\n").collect do |line|
    line.length > line_width ? line.gsub(/(.{1,#{line_width}})(\s+|$)/, "\\1\n").strip : line
  end * "\n"
  text.strip
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
licensee-4.4.2 test/functions.rb
licensee-4.4.1 test/functions.rb
licensee-4.4.0 test/functions.rb