aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_bottle_collector.rb
blob: 0dbc1106b7dba677f488f11f54868ae723cd4783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'testing_env'
require 'bottles'

class BottleCollectorTests < Test::Unit::TestCase
  def setup
    @collector = BottleCollector.new
  end

  def test_collector_returns_passed_tags
    @collector.add('foo', :lion)
    @collector.add('bar', :mountain_lion)
    assert_equal ['bar', :mountain_lion], @collector.fetch_bottle_for(:mountain_lion)
  end

  def test_collector_returns_nil_on_no_matches
    assert_nil @collector.fetch_bottle_for(:foo)
  end

  def test_collector_finds_or_later_tags
    @collector.add('foo', :lion_or_later)
    assert_equal ['foo', :lion_or_later], @collector.fetch_bottle_for(:mountain_lion)
    assert_nil @collector.fetch_bottle_for(:snow_leopard)
  end

  def test_collector_prefers_exact_matches
    @collector.add('foo', :lion_or_later)
    @collector.add('bar', :mountain_lion)
    assert_equal ['bar', :mountain_lion], @collector.fetch_bottle_for(:mountain_lion)
  end

  def test_collector_finds_altivec_tags
    @collector.add('foo', :tiger_altivec)
    assert_equal ['foo', :tiger_altivec], @collector.fetch_bottle_for(:tiger_g4)
    assert_equal ['foo', :tiger_altivec], @collector.fetch_bottle_for(:tiger_g4e)
    assert_equal ['foo', :tiger_altivec], @collector.fetch_bottle_for(:tiger_g5)
    assert_nil @collector.fetch_bottle_for(:tiger_g3)
  end
end