diff options
Diffstat (limited to 'help/test/unit')
-rw-r--r-- | help/test/unit/ticket_comment_test.rb | 46 | ||||
-rw-r--r-- | help/test/unit/ticket_test.rb | 53 |
2 files changed, 99 insertions, 0 deletions
diff --git a/help/test/unit/ticket_comment_test.rb b/help/test/unit/ticket_comment_test.rb new file mode 100644 index 0000000..37e6e67 --- /dev/null +++ b/help/test/unit/ticket_comment_test.rb @@ -0,0 +1,46 @@ +require 'test_helper' + +class TicketCommentTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end + +=begin + setup do + @sample_ticket = Ticket.create :title => 'test ticket' + @sample_ticket.save + end +=end + + test "create" do + + comment2 = TicketComment.new :body => "help my email is broken!" + assert comment2.valid? + assert_not_nil comment2.posted_at + assert_nil comment2.posted_by #if not logged in + + #comment.ticket = testticket #Ticket.find_by_title("testing") + #assert_equal testticket.title, comment.ticket.title + + #tc.ticket = Ticket.find_by_title("test title") + #tc.ticket.title + end + + test "add comments" do + testticket = Ticket.create :title => "testing" + assert_equal testticket.comments.count, 0 + comment = TicketComment.new :body => "my email broke" + assert comment.valid? #validating or saving necessary for setting posted_at + assert_not_nil comment.posted_at + + testticket.comments << comment + assert_equal testticket.comments.count, 1 + sleep(1) # so first comment has earlier posted_at time + comment2 = TicketComment.new :body => "my email broke" + comment2.save #possible to save only if ticketcomment is a model now + testticket.comments << comment2 + assert_equal testticket.comments.count, 2 + assert testticket.comments.first.posted_at < testticket.comments.last.posted_at + end + +end diff --git a/help/test/unit/ticket_test.rb b/help/test/unit/ticket_test.rb new file mode 100644 index 0000000..fddd719 --- /dev/null +++ b/help/test/unit/ticket_test.rb @@ -0,0 +1,53 @@ +require 'test_helper' + +class TicketTest < ActiveSupport::TestCase + #test "the truth" do + # assert true + #end + + setup do + @sample = Ticket.new + end + + test "validity" do + t = Ticket.create :title => 'test title', :email => 'blah@blah.com' + assert t.valid? + assert_equal t.title, 'test title' + + #user = LeapWebHelp::User.new(User.valid_attributes_hash) + #user = LeapWebUsers::User.create + + #t.user = user + + #t.email = '' #invalid + #assert !t.valid? + #t.email = 'blah@blah.com, bb@jjj.org' + #assert t.valid? + t.email = 'bdlfjlkasfjklasjf' #invalid + #p t.email_address + #p t.email_address.strip =~ RFC822::EmailAddress + assert !t.valid? + end + + test "creation validated" do + assert !@sample.is_creator_validated? + #p current_user + @sample.created_by = 22 #current_user + assert @sample.is_creator_validated? + end + + test "code if & only if not creator-validated" do + t1 = Ticket.create :title => 'test title' + assert_not_nil t1.code + assert_nil t1.created_by + + t2 = Ticket.create :title => 'test title', :created_by => 4 + assert_nil t2.code + assert_not_nil t2.created_by + + + end + +end + + |