mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-06 22:44:14 +00:00
141 lines
8.9 KiB
Ruby
141 lines
8.9 KiB
Ruby
require 'test_helper'
|
|
|
|
class DoubleEliminationSixteenManMatchGeneration < ActionDispatch::IntegrationTest
|
|
def setup
|
|
create_double_elim_tournament_single_weight_1_6(14)
|
|
end
|
|
|
|
test "Match generation works" do
|
|
assert @tournament.matches.count == 29
|
|
assert @tournament.matches.select{|m| m.bracket_position == "1/2"}.count == 1
|
|
assert @tournament.matches.select{|m| m.bracket_position == "3/4"}.count == 1
|
|
assert @tournament.matches.select{|m| m.bracket_position == "5/6"}.count == 1
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Bracket" and m.round == 1}.count == 8
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2}.count == 4
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Quarter"}.count == 4
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Semis"}.count == 2
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 3}.count == 4
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso Quarter"}.count == 2
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso Semis"}.count == 2
|
|
end
|
|
|
|
test "Seeded wrestlers have correct first line" do
|
|
@tournament.matches.reload
|
|
match1 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 1}.first
|
|
match2 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 2}.first
|
|
match3 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 3}.first
|
|
match4 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 4}.first
|
|
match5 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 5}.first
|
|
match6 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 6}.first
|
|
match7 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 7}.first
|
|
match8 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 8}.first
|
|
|
|
assert match1.wrestler1.bracket_line == 1
|
|
assert match1.loser2_name == "BYE"
|
|
|
|
assert match2.wrestler1.bracket_line == 8
|
|
assert match2.wrestler2.bracket_line == 9
|
|
|
|
assert match3.wrestler1.bracket_line == 5
|
|
assert match3.wrestler2.bracket_line == 12
|
|
|
|
assert match4.wrestler1.bracket_line == 4
|
|
assert match4.wrestler2.bracket_line == 14
|
|
|
|
assert match5.wrestler1.bracket_line == 3
|
|
assert match5.wrestler2.bracket_line == 13
|
|
|
|
assert match6.wrestler1.bracket_line == 6
|
|
assert match6.wrestler2.bracket_line == 11
|
|
|
|
assert match7.wrestler1.bracket_line == 7
|
|
assert match7.wrestler2.bracket_line == 10
|
|
|
|
assert match8.wrestler1.bracket_line == 2
|
|
assert match8.loser2_name == "BYE"
|
|
end
|
|
|
|
test "Byes are advanced correctly" do
|
|
@tournament.matches.reload
|
|
match1 = @tournament.matches.select{|match| match.round == 2 and match.bracket_position == "Quarter" and match.bracket_position_number == 1}.first
|
|
match2 = @tournament.matches.select{|match| match.round == 2 and match.bracket_position == "Quarter" and match.bracket_position_number == 4}.first
|
|
|
|
assert match1.wrestler1.name == "Test1"
|
|
assert match2.wrestler2.name == "Test2"
|
|
end
|
|
|
|
test "Loser names set up correctly" do
|
|
@tournament.matches.reload
|
|
match1 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 1}.first
|
|
match2 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 2}.first
|
|
match3 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 3}.first
|
|
match4 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 4}.first
|
|
match5 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 5}.first
|
|
match6 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 6}.first
|
|
match7 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 7}.first
|
|
match8 = @tournament.matches.select{|match| match.round == 1 and match.bracket_position_number == 8}.first
|
|
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2 && m.bracket_position_number == 1}.first.loser1_name == "BYE"
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2 && m.bracket_position_number == 1}.first.loser2_name == "Loser of #{match2.bout_number}"
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2 && m.bracket_position_number == 2}.first.loser1_name == "Loser of #{match3.bout_number}"
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2 && m.bracket_position_number == 2}.first.loser2_name == "Loser of #{match4.bout_number}"
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2 && m.bracket_position_number == 3}.first.loser1_name == "Loser of #{match5.bout_number}"
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2 && m.bracket_position_number == 3}.first.loser2_name == "Loser of #{match6.bout_number}"
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2 && m.bracket_position_number == 4}.first.loser1_name == "Loser of #{match7.bout_number}"
|
|
assert @tournament.matches.select{|m| m.bracket_position == "Conso" and m.round == 2 && m.bracket_position_number == 4}.first.loser2_name == "BYE"
|
|
|
|
quarter1 = @tournament.matches.select{|match| match.bracket_position == "Quarter" and match.bracket_position_number == 1}.first
|
|
quarter2 = @tournament.matches.select{|match| match.bracket_position == "Quarter" and match.bracket_position_number == 2}.first
|
|
quarter3 = @tournament.matches.select{|match| match.bracket_position == "Quarter" and match.bracket_position_number == 3}.first
|
|
quarter4 = @tournament.matches.select{|match| match.bracket_position == "Quarter" and match.bracket_position_number == 4}.first
|
|
consoround2match1 = @tournament.matches.select{|match| match.bracket_position == "Conso" and match.round == 3 && match.bracket_position_number == 1}.first
|
|
consoround2match2 = @tournament.matches.select{|match| match.bracket_position == "Conso" and match.round == 3 && match.bracket_position_number == 2}.first
|
|
consoround2match3 = @tournament.matches.select{|match| match.bracket_position == "Conso" and match.round == 3 && match.bracket_position_number == 3}.first
|
|
consoround2match4 = @tournament.matches.select{|match| match.bracket_position == "Conso" and match.round == 3 && match.bracket_position_number == 4}.first
|
|
|
|
assert consoround2match1.loser1_name == "Loser of #{quarter4.bout_number}"
|
|
assert consoround2match2.loser1_name == "Loser of #{quarter3.bout_number}"
|
|
assert consoround2match3.loser1_name == "Loser of #{quarter2.bout_number}"
|
|
assert consoround2match4.loser1_name == "Loser of #{quarter1.bout_number}"
|
|
|
|
semis1 = @tournament.matches.select{|match| match.bracket_position == "Semis" and match.bracket_position_number == 1}.first
|
|
semis2 = @tournament.matches.select{|match| match.bracket_position == "Semis" and match.bracket_position_number == 2}.first
|
|
consosemis1 = @tournament.matches.select{|match| match.bracket_position == "Conso Semis" and match.bracket_position_number == 1}.first
|
|
consosemis2 = @tournament.matches.select{|match| match.bracket_position == "Conso Semis" and match.bracket_position_number == 2}.first
|
|
|
|
assert consosemis1.loser1_name == "Loser of #{semis1.bout_number}"
|
|
assert consosemis2.loser1_name == "Loser of #{semis2.bout_number}"
|
|
|
|
assert @tournament.matches.select{|m| m.bracket_position == "5/6" && m.bracket_position_number == 1}.first.loser1_name == "Loser of #{consosemis1.bout_number}"
|
|
assert @tournament.matches.select{|m| m.bracket_position == "5/6" && m.bracket_position_number == 1}.first.loser2_name == "Loser of #{consosemis2.bout_number}"
|
|
end
|
|
|
|
test "Placement points are given when moving through bracket" do
|
|
match = @tournament.matches.select{|m| m.bracket_position == "Semis"}.first
|
|
wrestler = get_wrestler_by_name("Test1")
|
|
match.w1 = wrestler.id
|
|
match.save
|
|
|
|
match2 = @tournament.matches.select{|m| m.bracket_position == "Conso Semis"}.first
|
|
wrestler2 = get_wrestler_by_name("Test2")
|
|
match2.w1 = wrestler2.id
|
|
match2.save
|
|
|
|
assert wrestler.reload.placement_points == 3
|
|
assert wrestler2.reload.placement_points == 3
|
|
end
|
|
|
|
test "Run through all matches works" do
|
|
@tournament.matches.sort_by{ |match| match.bout_number }.each do |match|
|
|
match.reload
|
|
if match.finished != 1 and match.w1 and match.w2
|
|
match.winner_id = match.w1
|
|
match.win_type = "Decision"
|
|
match.score = "0-0"
|
|
match.finished = 1
|
|
match.save
|
|
end
|
|
end
|
|
assert @tournament.matches.reload.select{|m| m.finished == 0}.count == 0
|
|
end
|
|
end |