1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'selectricity_service_controller'
4 class SelectricityServiceTest < Test::Unit::TestCase
6 @controller=SelectricityServiceController.new
7 @request=ActionController::TestRequest.new
8 @response = ActionController::TestResponse.new
11 def test_list_quickvotes
12 result = invoke_delegated :vote, :list_quickvotes
13 assert_instance_of Array, result
14 assert result.length > 0
17 def test_create_quickvote
18 election = ElectionStruct.new(
19 { :name => "TestVote",
20 :description => "Test Vote",
21 :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"] })
22 assert_create_quickvote_succeeds election
25 def test_cast_quickvote
27 election = invoke_delegated :vote, :get_quickvote, "TestVote"
28 casted_vote = election.candidate_ids.sort_by {rand} #Shuffles
29 assert_cast_quickvote_succeeds "TestVote", 42, [casted_vote]
32 def test_cast_nil_quickvote
33 assert_cast_quickvote_fails nil, nil, nil
34 assert_cast_quickvote_fails "foo", nil, nil
35 assert_cast_quickvote_fails "foo", 33, []
37 assert_cast_quickvote_fails "TestVote", 42,nil
38 assert_cast_quickvote_fails "TestVote", nil, []
41 def test_cast_malformed_votelist
43 election = invoke_delegated :vote, :get_quickvote, "TestVote"
44 assert_cast_quickvote_fails "TestVote", 11, [election.candidate_ids[0]]
45 assert_cast_quickvote_fails "TestVote", 11, [1,2]
46 assert_cast_quickvote_fails "TestVote", 11, [election.candidate_ids[0],election.candidate_ids[0], election.candidate_ids[1], election.candidate_ids[1], election.candidate_ids[2]]
49 def test_get_nonexistent_quickvote
50 assert_raises ArgumentError do
51 qv = invoke_delegated :vote, :get_quickvote, "asdfasdfasdf"
55 def test_get_voters_nonexistent_quickvote
56 assert_raises(ArgumentError) {invoke_delegated :vote, :get_quickvote_votes, "asdfasdf"}
59 def test_get_candidate_map_nonexistent_quickvote
60 assert_raises(ArgumentError) { invoke_delegated :vote, :get_quickvote_candidate_map, "asdfasdf"}
63 def test_cast_mass_quickvote
65 election = invoke_delegated :vote, :get_quickvote, "TestVote"
67 casted_vote = election.candidate_ids.sort_by {rand}
68 assert_cast_quickvote_succeeds "TestVote", t, [casted_vote]
72 def test_cast_quickvote_nonexistent
73 assert_cast_quickvote_fails "ASDFJOFASF", "me", [1,2,3]
76 def test_cast_quickvote_nonexistent_candidates
78 election = invoke_delegated :vote, :get_quickvote, "TestVote"
79 assert_cast_quickvote_fails "TestVote", 42, [123,342314,5342,1,1,2]
82 def test_create_mass_quickvote
84 election = ElectionStruct.new :name => "test#{t}", :description => "Test Vote", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
85 assert_create_quickvote_succeeds election
89 def test_create_quickvote_bad_name
90 election = ElectionStruct.new :name => "invalid space", :description => "Test Vote", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
91 assert_create_quickvote_fails election
94 def test_create_quickvote_nil
95 election = ElectionStruct.new
96 assert_create_quickvote_fails election
99 def test_create_quickvote_name_nil
100 election = ElectionStruct.new :name => "", :description => "Test Vote", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
101 assert_create_quickvote_fails election
104 def test_create_quickvote_description_nil
105 election = ElectionStruct.new :name => "foobar", :description => nil, :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
106 assert_create_quickvote_fails election
110 def test_create_quickvote_description_whitespace
111 election = ElectionStruct.new :name => "foobar", :description => " ", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
112 assert_create_quickvote_fails election
113 election = ElectionStruct.new :name => "foobar", :description => "\t\t", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
114 assert_create_quickvote_fails election
117 def test_create_quickvote_candidates_nil
118 election = ElectionStruct.new :name => "foobar", :description => "valid", :candidate_names => nil
119 assert_create_quickvote_fails election
121 def test_create_quickvote_insufficient_candidates
122 election = ElectionStruct.new :name => "foobar", :description => "valid", :candidate_names => ["Apple"]
123 assert_create_quickvote_fails election
125 def test_create_quickvote_candidates_whitespace
126 election = ElectionStruct.new :name => "foobar", :description => "valid", :candidate_names => [" ", " ", " ", " "]
127 assert_create_quickvote_fails election
129 def test_create_quickvote_dupe_candidates
130 election = ElectionStruct.new :name => "foobar", :description => "valid", :candidate_names => ["Apple", "Apple", "Apple", "Apple"]
131 assert_create_quickvote_fails election
133 # Previous may pass coincidentally if a uniq! then a sizecheck reveals too few unique names
134 # We don't want this to happen. Dupe canidates should fail regardless of how many are left.
136 election = ElectionStruct.new :name => "foobar", :description => "valid", :candidate_names => ["Apple", "Apple", "Orange", "Orange", "Pineapple" , "Pineapple"]
137 assert_create_quickvote_fails election
139 def test_create_quickvote_candidates_nil_mixed
140 election = ElectionStruct.new :name => "foobar", :description => "valid", :candidate_names => ["Apple", nil ]
141 assert_create_quickvote_fails election
143 def test_create_quickvote_description_xmlescape
144 # Will an embedded XML element bork the table?
145 election = ElectionStruct.new :name => "foobar", :description => "test </string>", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
146 assert_create_quickvote_succeeds election
148 def test_create_quickvote_unprintable_description
149 election = ElectionStruct.new :name => "foobar", :description => "test \x01\x02\x03\x04\x05\x06\x07\x08", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
150 assert_create_quickvote_succeeds election
152 def test_quickvote_proper_results
153 election = ElectionStruct.new :name => "favdev", :description => "Who is your favorite developer?", :candidate_names => ["mako", "jdong", "justin"]
154 assert_create_quickvote_succeeds election
155 reflection = invoke_delegated :vote, :get_quickvote, "favdev"
157 reflection.candidate_names.each_with_index do |name, index|
158 candidates[name] = reflection.candidate_ids[index]
161 vote = [candidates["jdong"], candidates["mako"], candidates["justin"]]
162 assert_cast_quickvote_succeeds "favdev", "1:#{t}", [vote]
165 vote = [candidates["mako"], candidates["justin"], candidates["jdong"]]
166 assert_cast_quickvote_succeeds "favdev", "2:#{t}", [vote]
169 vote = [candidates["justin"], candidates["mako"], candidates["jdong"]]
170 assert_cast_quickvote_succeeds "favdev", "3:#{t}", [vote]
173 assert_nothing_raised {results=invoke_delegated(:vote, :get_quickvote_results, "favdev")}
174 assert_equal results.approval_winners, [candidates["mako"]]
175 assert_equal results.borda_winners, [candidates["jdong"]]
176 assert_equal results.plurality_winners, [candidates["jdong"]]
177 assert_equal results.condorcet_winners, [candidates["jdong"]]
178 assert_equal results.ssd_winners, [candidates["jdong"]]
182 def assert_cast_quickvote_succeeds(shortname, id, vote)
183 assert_nothing_raised do
184 old_votes = invoke_delegated(:vote, :get_quickvote_votes, shortname)
185 invoke_delegated(:vote, :cast_quickvote, shortname, id, vote)
187 new_votes = invoke_delegated(:vote, :get_quickvote_votes, shortname)
188 assert_equal(old_votes.length, new_votes.length - 1)
190 reflection = new_votes.find_all { |v| v.voter_session_id == "XMLRPC:#{id}" }
191 assert_not_nil(reflection)
192 assert_equal(reflection.length, 1)
193 assert_equal(reflection[0].vote, vote[0])
197 def assert_cast_quickvote_fails(shortname, id, vote)
198 assert_raise Test::Unit::AssertionFailedError do
199 assert_cast_quickvote_succeeds(shortname, id, vote)
203 def assert_create_quickvote_succeeds(election)
204 # checks if a created quickvote is identical when retrieved
205 assert_nothing_raised do
206 old_len = invoke_delegated(:vote, :list_quickvotes).length
207 result = invoke_delegated(:vote, :create_quickvote, election)
208 assert_equal(result, "")
210 reflection = invoke_delegated(:vote, :get_quickvote, election.name)
211 assert_equal(election.description, reflection.description)
212 assert_equal(0, election.name.casecmp(reflection.name))
213 assert_equal(election.candidate_names, reflection.candidate_names)
214 assert_equal(invoke_delegated(:vote, :list_quickvotes).length, old_len+1)
218 def assert_create_quickvote_fails(election)
219 assert_raise Test::Unit::AssertionFailedError do
220 assert_create_quickvote_succeeds(election)