* Refactor testcase code -- create_quickvote_fails assertion -- was using same block...
[selectricity-live] / test / unit / selectricityservice_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'selectricity_service_controller'
3
4 class SelectricityServiceTest < Test::Unit::TestCase
5   def setup
6     @controller=SelectricityServiceController.new
7     @request=ActionController::TestRequest.new
8     @response   = ActionController::TestResponse.new
9   end
10
11   def test_list_quickvotes
12     result= invoke_delegated :vote, :list_quickvotes
13     assert_instance_of Array, result
14     assert_equal result.length, 0
15   end
16   def test_create_quickvote
17     election = ElectionStruct.new :name => "TestVote", :description => "Test Vote", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
18     result = invoke_delegated :vote, :create_quickvote, election
19     assert_instance_of String, result
20     assert_equal "", result
21     assert_equal(invoke_delegated(:vote,:list_quickvotes).length, 1)
22   end
23   def test_get_quickvote
24     test_create_quickvote
25     result = invoke_delegated :vote, :get_quickvote, "TestVote"
26     assert_instance_of ElectionStruct, result
27     assert_equal 0, result.name.casecmp("TestVote")
28     assert_equal result.description, "Test Vote"
29     assert_equal result.candidate_names.sort, ["Apple", "Orange", "Banana", "Pineapple"].sort
30     assert_not_nil result.id
31     assert result.id != 0
32     assert_nil result.candidate_ids.uniq!
33     assert result.candidate_ids.length == result.candidate_names.length
34   end
35   def test_cast_quickvote
36     test_create_quickvote
37     election = invoke_delegated :vote, :get_quickvote, "TestVote"
38     casted_vote = election.candidate_ids.sort_by {rand} #Shuffles
39     invoke_delegated :vote, :cast_quickvote, "TestVote", 42, [casted_vote]
40     quickvote_votes= invoke_delegated :vote, :get_quickvote_votes, "TestVote"
41     assert_equal quickvote_votes.length, 1
42     assert_equal quickvote_votes[0].vote, casted_vote
43   end
44   def test_cast_mass_quickvote
45     test_create_quickvote
46     election = invoke_delegated :vote, :get_quickvote, "TestVote"
47     20.times do |t|
48       casted_vote = election.candidate_ids.sort_by {rand}
49       invoke_delegated :vote, :cast_quickvote, "TestVote", t, [casted_vote]
50     end
51     quickvote_votes= invoke_delegated :vote, :get_quickvote_votes, "TestVote"
52     assert_equal quickvote_votes.length, 20
53   end
54   def test_create_mass_quickvote
55     10.times do |t|
56       election = ElectionStruct.new :name => "test#{t}", :description => "Test Vote", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
57       result = invoke_delegated :vote, :create_quickvote, election
58       assert_instance_of String, result
59       assert_equal "", result
60       assert_equal(invoke_delegated(:vote,:list_quickvotes).length, t+1)
61     end
62   end
63   def test_create_quickvote_bad_name
64     election = ElectionStruct.new :name => "invalid space", :description => "Test Vote", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
65     assert_create_quickvote_fails election
66   end
67   def test_create_quickvote_nil
68     election =  ElectionStruct.new
69     assert_create_quickvote_fails election
70   end
71   def test_create_quickvote_name_nil
72     election = ElectionStruct.new :name => "", :description => "Test Vote", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
73     assert_create_quickvote_fails election
74   end
75   def test_create_quickvote_description_nil
76     election = ElectionStruct.new :name => "foobar", :description => nil, :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
77     assert_create_quickvote_fails election
78     
79   end
80   def test_create_quickvote_description_whitespace
81     election = ElectionStruct.new :name => "foobar", :description => "       ", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
82     assert_create_quickvote_fails election
83     election = ElectionStruct.new :name => "foobar", :description => "\t\t", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
84     assert_create_quickvote_fails election
85   end
86   def test_create_quickvote_candidates_nil
87     election = ElectionStruct.new :name => "foobar", :description => nil, :candidate_names => nil
88     assert_create_quickvote_fails election
89   end
90   def test_create_quickvote_insufficient_candidates
91     election = ElectionStruct.new :name => "foobar", :description => nil, :candidate_names => ["Apple"]
92     assert_create_quickvote_fails election
93   end
94   def test_create_quickvote_candidates_whitespace
95     election = ElectionStruct.new :name => "foobar", :description => "valid", :candidate_names => [" ", "   ", "       ", "         "]
96     assert_create_quickvote_fails election
97   end
98   def test_create_quickvote_dupe_candidates
99     election = ElectionStruct.new :name => "foobar", :description => nil, :candidate_names => ["Apple", "Apple", "Apple", "Apple"]
100     assert_create_quickvote_fails election
101   end
102   def test_create_quickvote_candidates_nil_mixed
103     election = ElectionStruct.new :name => "foobar", :description => nil, :candidate_names => ["Apple", nil ]
104     assert_create_quickvote_fails election
105   end
106   def test_create_quickvote_description_htmlescape
107     election = ElectionStruct.new :name => "foobar", :description => "<a>test</a>", :candidate_names => ["Apple", "Orange", "Banana", "Pineapple"]
108     result = invoke_delegated :vote, :create_quickvote, election
109     assert_equal result, ""
110     reflection = invoke_delegated :vote, :get_quickvote, election.name
111     assert_not_equal election.description, reflection.description
112     assert_not_equal reflection.description.length, 0
113   end
114   private
115   def assert_create_quickvote_fails(election)
116     old_len=invoke_delegated(:vote,:list_quickvotes).length
117     result = invoke_delegated :vote, :create_quickvote, election
118     assert_instance_of String, result
119     assert_not_equal result.length, 0
120     assert_equal(invoke_delegated(:vote,:list_quickvotes).length, old_len)
121   end
122 end

Benjamin Mako Hill || Want to submit a patch?