]> git.openstreetmap.org Git - rails.git/blob - test/helpers/note_helper_test.rb
Truncate if necessary and set dir=auto for note usernames
[rails.git] / test / helpers / note_helper_test.rb
1 require "test_helper"
2
3 class NoteHelperTest < ActionView::TestCase
4   include ERB::Util
5   include ApplicationHelper
6
7   def test_note_event
8     date = Time.utc(2014, 3, 5, 21, 37, 45)
9     user = create(:user)
10
11     note_event_dom = Rails::Dom::Testing.html_document_fragment.parse "<div>#{note_event('opened', date, nil)}</div>"
12     assert_dom note_event_dom, ":root", :text => /^Created by anonymous .* ago$/ do
13       assert_dom "> a", :count => 0
14       assert_dom "> time", :count => 1 do
15         assert_dom "> @title", "5 March 2014 at 21:37"
16         assert_dom "> @datetime", "2014-03-05T21:37:45Z"
17       end
18     end
19
20     note_event_dom = Rails::Dom::Testing.html_document_fragment.parse "<div>#{note_event('closed', date, user)}</div>"
21     assert_dom note_event_dom, ":root", :text => /^Resolved by #{user.display_name} .* ago$/ do
22       assert_dom "> a", :count => 1, :text => user.display_name do
23         assert_dom "> @href", "/user/#{ERB::Util.u(user.display_name)}"
24       end
25       assert_dom "> time", :count => 1 do
26         assert_dom "> @title", "5 March 2014 at 21:37"
27         assert_dom "> @datetime", "2014-03-05T21:37:45Z"
28       end
29     end
30   end
31
32   def test_note_author
33     deleted_user = create(:user, :deleted)
34     user = create(:user)
35
36     assert_equal "", note_author(nil)
37
38     assert_equal "deleted", note_author(deleted_user)
39
40     note_author_dom = Rails::Dom::Testing.html_document_fragment.parse note_author(user)
41     assert_dom note_author_dom, "a:root", :text => user.display_name do
42       assert_dom "> @href", "/user/#{ERB::Util.u(user.display_name)}"
43     end
44
45     note_author_dom = Rails::Dom::Testing.html_document_fragment.parse note_author(user, :only_path => false)
46     assert_dom note_author_dom, "a:root", :text => user.display_name do
47       assert_dom "> @href", "http://test.host/user/#{ERB::Util.u(user.display_name)}"
48     end
49   end
50 end