Sha256: 6bae9f8532c86997a250078c8da857a0fd8b4813cbb44e5fca827d07f8a05ded

Contents?: true

Size: 1.68 KB

Versions: 1

Compression:

Stored size: 1.68 KB

Contents

require 'yaml/store'
require_relative '../test_helper'
require_relative '../../lib/signore/sig_finder'
require_relative '../../lib/signore/tags'

module Signore
  describe SigFinder do
    let(:sigs) do
      Repo.new(path: Pathname.new('test/fixtures/signatures.yml')).sigs
    end

    let(:sig_finder) { SigFinder.new(sigs) }

    describe '.find' do
      it 'returns a random Signature by default' do
        SigFinder.find(sigs, random: Random.new(0)).text
          .must_include 'Amateur fighter pilot ignores orders'
        SigFinder.find(sigs, random: Random.new(1)).text
          .must_equal '// sometimes I believe compiler ignores all my comments'
      end

      it 'returns a random signature if the tags are empty' do
        SigFinder.find(sigs, tags: Tags.new, random: Random.new(1)).text
          .must_equal '// sometimes I believe compiler ignores all my comments'
      end

      it 'returns a random signature based on provided tags' do
        SigFinder.find(sigs, tags: Tags.new(required: %w(programming))).text
          .must_equal '// sometimes I believe compiler ignores all my comments'
        SigFinder.find(sigs, tags: Tags.new(required: %w(work))).text
          .must_equal 'You do have to be mad to work here, but it doesn’t help.'
      end

      it 'returns a random signature based on required and forbidden tags' do
        tags = Tags.new(forbidden: %w(programming security), required: %w(tech))
        SigFinder.find(sigs, tags: tags).text
          .must_equal 'You do have to be mad to work here, but it doesn’t help.'
      end

      it 'returns a null object if there are no results' do
        SigFinder.find([]).must_equal Signature.new
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
signore-0.4.0 test/signore/sig_finder_test.rb