diff options
| -rw-r--r-- | help/test/factories.rb | 8 | ||||
| -rw-r--r-- | help/test/unit/ticket_test.rb | 41 | 
2 files changed, 25 insertions, 24 deletions
| diff --git a/help/test/factories.rb b/help/test/factories.rb index 5b38952..5368ce6 100644 --- a/help/test/factories.rb +++ b/help/test/factories.rb @@ -2,8 +2,12 @@ FactoryGirl.define do    factory :ticket do      title { Faker::Lorem.sentence } -    comments_attributes do -      { "0" => { "body" => Faker::Lorem.sentences.join(" ") } } +    email { Faker::Internet.email } + +    factory :ticket_with_comment do +      comments_attributes do +        { "0" => { "body" => Faker::Lorem.sentences.join(" ") } } +      end      end    end diff --git a/help/test/unit/ticket_test.rb b/help/test/unit/ticket_test.rb index ce35e1d..04832d9 100644 --- a/help/test/unit/ticket_test.rb +++ b/help/test/unit/ticket_test.rb @@ -1,41 +1,38 @@  require 'test_helper'  class TicketTest < ActiveSupport::TestCase -  #test "the truth" do -  #  assert true -  #end -  setup do -    @sample = Ticket.new +  test "ticket with default attribs is valid" do +    t = FactoryGirl.build :ticket +    assert t.valid?    end -  test "validity" do -    t = Ticket.create :title => 'test title', :email => 'blah@blah.com' +  test "ticket without email is valid" do +    t = FactoryGirl.build :ticket, email: ""      assert t.valid? -    assert_equal t.title, 'test title' +  end + +  test "ticket validates email format" do +    t = FactoryGirl.build :ticket, email: "aswerssfd" +    assert !t.valid? +  end +  test "ticket allows for multiple email addresses" do +    t = FactoryGirl.build :ticket, email: 'blah@blah.com, bb@jjj.org' +    assert !t.valid? +  end + +  test "ticket open states" do +    t = FactoryGirl.build :ticket      assert t.is_open      t.close      assert !t.is_open      t.reopen      assert t.is_open -    #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? -    t.reload.destroy    end    test "creation validated" do +    @sample = Ticket.new      assert !@sample.is_creator_validated?      #p current_user      @sample.created_by = 22 #current_user | 
