diff options
| author | jessib <jessib@riseup.net> | 2012-10-01 14:59:29 -0700 | 
|---|---|---|
| committer | jessib <jessib@riseup.net> | 2012-10-01 14:59:29 -0700 | 
| commit | c0f10e15d8d2ec3be620dff62315a44bd065f201 (patch) | |
| tree | 42597c24af327b10bed712d8aa49cad5ad62a350 /help/test | |
| parent | a757e173f93bf1d42bb41e92757e53b446e3d76d (diff) | |
Moving start to help engine to live within leap_web repo rather than independent engine repo.
Diffstat (limited to 'help/test')
| -rw-r--r-- | help/test/integration/navigation_test.rb | 9 | ||||
| -rw-r--r-- | help/test/leap_web_help_test.rb | 7 | ||||
| -rw-r--r-- | help/test/test_helper.rb | 15 | ||||
| -rw-r--r-- | help/test/unit/ticket_comment_test.rb | 46 | ||||
| -rw-r--r-- | help/test/unit/ticket_test.rb | 53 | 
5 files changed, 130 insertions, 0 deletions
| diff --git a/help/test/integration/navigation_test.rb b/help/test/integration/navigation_test.rb new file mode 100644 index 0000000..eec8c0e --- /dev/null +++ b/help/test/integration/navigation_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class NavigationTest < ActionDispatch::IntegrationTest + +  # test "the truth" do +  #   assert true +  # end +end + diff --git a/help/test/leap_web_help_test.rb b/help/test/leap_web_help_test.rb new file mode 100644 index 0000000..d74c087 --- /dev/null +++ b/help/test/leap_web_help_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class LeapWebHelpTest < ActiveSupport::TestCase +  test "truth" do +    assert_kind_of Module, LeapWebHelp +  end +end diff --git a/help/test/test_helper.rb b/help/test/test_helper.rb new file mode 100644 index 0000000..1e26a31 --- /dev/null +++ b/help/test/test_helper.rb @@ -0,0 +1,15 @@ +# Configure Rails Environment +ENV["RAILS_ENV"] = "test" + +require File.expand_path("../dummy/config/environment.rb",  __FILE__) +require "rails/test_help" + +Rails.backtrace_cleaner.remove_silencers! + +# Load support files +Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } + +# Load fixtures from the engine +if ActiveSupport::TestCase.method_defined?(:fixture_path=) +  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__) +end 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 + + | 
