X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=test;h=65af6c2b3199b5636cec5231116fe32d09d6fc1f;hb=4211c2a7e489cdccf085da7825030ad769f30304;hp=fcb556c5baa4e11c1ed1ab3eeaf216bb54c3f1da;hpb=3dae3833cb5247943e27649a9b16639c2187c8c5;p=empires-server diff --git a/test b/test index fcb556c..65af6c2 100755 --- a/test +++ b/test @@ -376,7 +376,7 @@ TEST_END TEST "Verify player-info event reports 'curl' name" result=$(tictactoe_player_info) -test "$result" = 'data: {"id":1,"name":"curl","team":""}' +test "$result" = 'data: {"id":1,"active":true,"name":"curl","team":""}' TEST_END TEST_SUBSECTION "Tic Tac Toe /player" @@ -384,31 +384,31 @@ TEST_SUBSECTION "Tic Tac Toe /player" TEST "Change name to 'newname'" tictactoe_player_name newname result=$(tictactoe_player_info) -test "$result" = 'data: {"id":1,"name":"newname","team":""}' +test "$result" = 'data: {"id":1,"active":true,"name":"newname","team":""}' TEST_END TEST "Change team to 'X'" tictactoe_player_team X result=$(tictactoe_player_info) -test "$result" = 'data: {"id":1,"name":"newname","team":"X"}' +test "$result" = 'data: {"id":1,"active":true,"name":"newname","team":"X"}' TEST_END TEST "Change team to 'O'" tictactoe_player_team O result=$(tictactoe_player_info) -test "$result" = 'data: {"id":1,"name":"newname","team":"O"}' +test "$result" = 'data: {"id":1,"active":true,"name":"newname","team":"O"}' TEST_END TEST "Verify cannot change team to 'Z'" tictactoe_player_team Z result=$(tictactoe_player_info) -test "$result" = 'data: {"id":1,"name":"newname","team":"O"}' +test "$result" = 'data: {"id":1,"active":true,"name":"newname","team":"O"}' TEST_END TEST "Leave current team" tictactoe_player_team "" result=$(tictactoe_player_info) -test "$result" = 'data: {"id":1,"name":"newname","team":""}' +test "$result" = 'data: {"id":1,"active":true,"name":"newname","team":""}' TEST_END TEST_SUBSECTION "Tic Tac Toe /move" @@ -655,12 +655,12 @@ empathy_judged() } TEST "Submit word groups from alice" -result=$(empathy_judged alice $prompt_id '[["sun","SunLight","SunShine"],["sand","sands","Grains of Sand"],["water","wafer"]]') +result=$(empathy_judged alice $prompt_id '[{"words":["sun","SunLight","SunShine"],"kudos":false},{"words":["sand","sands","Grains of Sand"],"kudos":false},{"words":["water","wafer"],"kudos":false}]') test "$result" = '{"valid":true}' TEST_END TEST "Submit word groups from bob" -result=$(empathy_judged bob $prompt_id '[["sands","grains of sand"],["water","wafer"]]') +result=$(empathy_judged bob $prompt_id '[{"words":["sands","grains of sand"],"kudos":false},{"words":["water","wafer"],"kudos":false}]') test "$result" = '{"valid":true}' TEST_END @@ -676,7 +676,7 @@ test "$result" = "null" TEST_END TEST "Submit word groups from charlie" -result=$(empathy_judged charlie $prompt_id '[["SunLight","SunShine"],["sand","Grains of Sand"]]') +result=$(empathy_judged charlie $prompt_id '[{"words":["SunLight","SunShine"],"kudos":false},{"words":["sand","Grains of Sand"],"kudos":false}]') test "$result" = '{"valid":true}' TEST_END @@ -856,6 +856,16 @@ result=$(echo $(empathy_scores alice)) test "$result" = "null" TEST_END +TEST "Submit word groups from a non-answering player" +result=$(empathy_judged dale $prompt_id '[]') +test "$result" = '{"valid":true}' +TEST_END + +TEST "Scoring still hasn't started" +result=$(echo $(empathy_scores alice)) +test "$result" = "null" +TEST_END + TEST "Submit word groups from last answering player" result=$(empathy_judged charlie $prompt_id '[]') test "$result" = '{"valid":true}' @@ -882,7 +892,7 @@ test "$?" = "0" TEST_END TEST "1 player votes for a match" -empathy_judged alice $prompt_id '[["truth","true"]]' >/dev/null +empathy_judged alice $prompt_id '[{"words":["truth","true"],"kudos":false}]' >/dev/null result=$(empathy_judged bob $prompt_id '[]') test "$result" = '{"valid":true}' TEST_END