OSDN Git Service

Refactored MockLogger class.
[shogi-server/shogi-server.git] / test / TC_floodgate.rb
index 7b0bc0d..b1263db 100644 (file)
@@ -4,27 +4,9 @@ require 'shogi_server'
 require 'shogi_server/player'
 require 'shogi_server/pairing'
 require 'shogi_server/league/floodgate'
+require 'test/mock_log_message'
 
-class MockLogger
-  def debug(str)
-  end
-  def info(str)
-    #puts str
-  end
-  def warn(str)
-  end
-  def error(str)
-  end
-end
-
-$logger = MockLogger.new
-def log_message(msg)
-  $logger.info(msg)
-end
-
-def log_warning(msg)
-  $logger.warn(msg)
-end
+$topdir = File.expand_path File.dirname(__FILE__)
 
 class TestFloodgate < Test::Unit::TestCase
   def setup
@@ -43,54 +25,34 @@ class TestFloodgate < Test::Unit::TestCase
 
 end
 
-class TestPairing < Test::Unit::TestCase  
+class TestDeleteMostPlayingPlayer < Test::Unit::TestCase
   def setup
-    @pairing= ShogiServer::Pairing.new
-    $pairs = []
-    def @pairing.start_game(p1,p2)
-      $pairs << [p1,p2]
-    end
+    @pairing= ShogiServer::DeleteMostPlayingPlayer.new
     @a = ShogiServer::BasicPlayer.new
-    @a.name = "a"
     @a.win  = 1
     @a.loss = 2
     @a.rate = 0
-    @a.last_game_win = false
     @b = ShogiServer::BasicPlayer.new
-    @b.name = "b"
     @b.win  = 10
     @b.loss = 20
     @b.rate = 1500
-    @b.last_game_win = true
     @c = ShogiServer::BasicPlayer.new
-    @c.name = "c"
     @c.win  = 100
     @c.loss = 200
     @c.rate = 1000
-    @c.last_game_win = true
-    @d = ShogiServer::BasicPlayer.new
-    @d.name = "d"
-    @d.win  = 1000
-    @d.loss = 2000
-    @d.rate = 1800
-    @d.last_game_win = true
   end
 
-  def test_include_newbie
-    assert(@pairing.include_newbie?([@a]))
-    assert(!@pairing.include_newbie?([@b]))
-    assert(@pairing.include_newbie?([@b,@a]))
-    assert(!@pairing.include_newbie?([@b,@c]))
+  def test_match
+    players = [@a, @b, @c]
+    @pairing.match(players)
+    assert_equal([@a,@b], players)
   end
 end
 
-class TestStartGame < Test::Unit::TestCase
+class TestMakeEven < Test::Unit::TestCase  
   def setup
-    @pairing= ShogiServer::StartGame.new
-    $called = 0
-    def @pairing.start_game(p1,p2)
-      $called += 1
-    end
+    srand(10)
+    @pairing= ShogiServer::MakeEven.new
     @a = ShogiServer::BasicPlayer.new
     @a.name = "a"
     @a.win  = 1
@@ -106,65 +68,18 @@ class TestStartGame < Test::Unit::TestCase
     @c.win  = 100
     @c.loss = 200
     @c.rate = 1000
-    @d = ShogiServer::BasicPlayer.new
-    @d.name = "d"
-    @d.win  = 1000
-    @d.loss = 2000
-    @d.rate = 2000
-  end
-
-  def test_match_two_players
-    players = [@a,@b]
-    @pairing.match(players)
-    assert_equal(1, $called)
   end
 
-  def test_match_one_player
-    players = [@a]
-    @pairing.match(players)
-    assert_equal(0, $called)
-  end
-
-  def test_match_zero_player
-    players = []
-    @pairing.match(players)
-    assert_equal(0, $called)
-  end
-
-  def test_match_three_players
-    players = [@a,@b,@c]
-    @pairing.match(players)
-    assert_equal(1, $called)
-  end
-
-  def test_match_four_players
-    players = [@a,@b,@c,@d]
+ def test_match_even
+    players = [@a, @b]
     @pairing.match(players)
-    assert_equal(2, $called)
-  end
-end
-
-class TestDeleteMostPlayingPlayer < Test::Unit::TestCase
-  def setup
-    @pairing= ShogiServer::DeleteMostPlayingPlayer.new
-    @a = ShogiServer::BasicPlayer.new
-    @a.win  = 1
-    @a.loss = 2
-    @a.rate = 0
-    @b = ShogiServer::BasicPlayer.new
-    @b.win  = 10
-    @b.loss = 20
-    @b.rate = 1500
-    @c = ShogiServer::BasicPlayer.new
-    @c.win  = 100
-    @c.loss = 200
-    @c.rate = 1000
-  end
+    assert_equal([@a,@b], players)
+ end
 
-  def test_match
+ def test_match_odd
     players = [@a, @b, @c]
     @pairing.match(players)
-    assert_equal([@a,@b], players)
+    assert_equal([@a, @b], players)
   end
 end
 
@@ -329,3 +244,149 @@ class TestExcludeSacrifice < Test::Unit::TestCase
   end
 end
 
+class TestSwissPairing < Test::Unit::TestCase
+  def setup
+    srand(10)
+    @a = ShogiServer::BasicPlayer.new
+    @a.player_id = "a"
+    @a.rate = 0
+    @a.game_name = "floodgate-900-0"
+    @b = ShogiServer::BasicPlayer.new
+    @b.player_id = "b"
+    @b.rate = 1000
+    @b.game_name = "floodgate-900-0"
+    @c = ShogiServer::BasicPlayer.new
+    @c.player_id = "c"
+    @c.rate = 1500
+    @c.game_name = "floodgate-900-0"
+    @d = ShogiServer::BasicPlayer.new
+    @d.player_id = "d"
+    @d.rate = 2000
+    @d.game_name = "floodgate-900-0"
+
+    @players = [@a, @b, @c, @d]
+
+    @file = Pathname.new(File.join(File.dirname(__FILE__), "floodgate_history_900_0.yaml"))
+    @history = ShogiServer::League::Floodgate::History.factory @file
+
+    @swiss = ShogiServer::Swiss.new
+  end
+
+  def teardown
+    @file.delete if @file.exist?
+  end
+
+  def test_none
+    players = []
+    @swiss.match players
+    assert(players.empty?)
+  end
+
+  def test_all_win
+    ShogiServer::League::Floodgate::History.class_eval do
+      def last_win?(player_id)
+        true
+      end
+    end
+    @swiss.match @players
+    assert_equal([@d, @c, @b, @a], @players)
+  end
+
+  def test_all_lose
+    ShogiServer::League::Floodgate::History.class_eval do
+      def last_win?(player_id)
+        false
+      end
+    end
+    @swiss.match @players
+    assert_equal([@d, @c, @b, @a], @players)
+  end
+
+  def test_one_win
+    ShogiServer::League::Floodgate::History.class_eval do
+      def last_win?(player_id)
+        if player_id == "a"
+          true
+        else
+          false
+        end
+      end
+    end
+    @swiss.match @players
+    assert_equal([@a, @d, @c, @b], @players)
+  end
+
+  def test_two_win
+    ShogiServer::League::Floodgate::History.class_eval do
+      def last_win?(player_id)
+        if player_id == "a" || player_id == "d"
+          true
+        else
+          false
+        end
+      end
+    end
+    @swiss.match @players
+    assert_equal([@d, @a, @c, @b], @players)
+  end
+end
+
+class TestFloodgateHistory < Test::Unit::TestCase
+  def setup
+    @file = Pathname.new(File.join(File.dirname(__FILE__), "floodgate_history.yaml"))
+    @history = ShogiServer::League::Floodgate::History.new @file
+  end
+
+  def teardown
+    @file.delete if @file.exist?
+  end
+
+  def test_new
+    file = Pathname.new(File.join(File.dirname(__FILE__), "hoge.yaml"))
+    history = ShogiServer::League::Floodgate::History.new file
+    history.save
+    assert file.exist?
+    file.delete if file.exist?
+  end
+
+  def test_update
+    dummy = nil
+    def @history.make_record(game_result)
+      {:game_id => "wdoor+floodgate-900-0-hoge-foo-1", 
+       :black => "hoge",  :white => "foo",
+       :winner => "foo", :loser => "hoge"}
+    end
+    @history.update(dummy)
+
+    def @history.make_record(game_result)
+      {:game_id => "wdoor+floodgate-900-0-hoge-foo-2", 
+       :black => "hoge",  :white => "foo",
+       :winner => "hoge", :loser => "foo"}
+    end
+    @history.update(dummy)
+
+    def @history.make_record(game_result)
+      {:game_id => "wdoor+floodgate-900-0-hoge-foo-3", 
+       :black => "hoge",  :white => "foo",
+       :winner => nil, :loser => nil}
+    end
+    @history.update(dummy)
+
+    @history.load
+    assert_equal 3, @history.records.size
+    assert_equal "wdoor+floodgate-900-0-hoge-foo-1", @history.records[0][:game_id]
+    assert_equal "wdoor+floodgate-900-0-hoge-foo-2", @history.records[1][:game_id]
+    assert_equal "wdoor+floodgate-900-0-hoge-foo-3", @history.records[2][:game_id]
+    assert_equal "hoge", @history.records[1][:black]
+    assert_equal "foo",  @history.records[1][:white]
+    assert_equal "hoge", @history.records[1][:winner]
+    assert_equal "foo",  @history.records[1][:loser]
+
+    assert @history.last_win? "hoge"
+    assert !@history.last_win?("foo")
+    assert !@history.last_lose?("hoge")
+    assert @history.last_lose?("foo")
+  end
+end
+
+